@esri/calcite-components
Version:
Web Components for Esri's Calcite Design System.
232 lines (225 loc) • 11.2 kB
JavaScript
/*!
* All material copyright ESRI, All Rights Reserved, unless otherwise specified.
* See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
* v1.5.0-next.4
*/
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-55f8a3b7.js');
const conditionalSlot = require('./conditionalSlot-4472b3c1.js');
const dom = require('./dom-18ca68ff.js');
const loadable = require('./loadable-53f729bb.js');
const locale = require('./locale-fc347462.js');
const observers = require('./observers-83b3999d.js');
const t9n = require('./t9n-14d528c4.js');
const ExpandToggle = require('./ExpandToggle-7cbfc836.js');
const debounce = require('./debounce-492319d0.js');
require('./guid-db20443e.js');
require('./resources-45d84c94.js');
require('./key-2ce02f02.js');
require('./resources-372c2745.js');
require('./resources-92796e4d.js');
const CSS = {
actionGroupBottom: "action-group--bottom"
};
const SLOTS = {
bottomActions: "bottom-actions",
expandTooltip: "expand-tooltip"
};
const actionBarCss = "@keyframes in{0%{opacity:0}100%{opacity:1}}@keyframes in-down{0%{opacity:0;transform:translate3D(0, -5px, 0)}100%{opacity:1;transform:translate3D(0, 0, 0)}}@keyframes in-up{0%{opacity:0;transform:translate3D(0, 5px, 0)}100%{opacity:1;transform:translate3D(0, 0, 0)}}@keyframes in-right{0%{opacity:0;transform:translate3D(-5px, 0, 0)}100%{opacity:1;transform:translate3D(0, 0, 0)}}@keyframes in-left{0%{opacity:0;transform:translate3D(5px, 0, 0)}100%{opacity:1;transform:translate3D(0, 0, 0)}}@keyframes in-scale{0%{opacity:0;transform:scale3D(0.95, 0.95, 1)}100%{opacity:1;transform:scale3D(1, 1, 1)}}:root{--calcite-animation-timing:calc(150ms * var(--calcite-internal-duration-factor));--calcite-internal-duration-factor:var(--calcite-duration-factor, 1);--calcite-internal-animation-timing-fast:calc(100ms * var(--calcite-internal-duration-factor));--calcite-internal-animation-timing-medium:calc(200ms * var(--calcite-internal-duration-factor));--calcite-internal-animation-timing-slow:calc(300ms * var(--calcite-internal-duration-factor))}.calcite-animate{opacity:0;animation-fill-mode:both;animation-duration:var(--calcite-animation-timing)}.calcite-animate__in{animation-name:in}.calcite-animate__in-down{animation-name:in-down}.calcite-animate__in-up{animation-name:in-up}.calcite-animate__in-right{animation-name:in-right}.calcite-animate__in-left{animation-name:in-left}.calcite-animate__in-scale{animation-name:in-scale}@media (prefers-reduced-motion: reduce){:root{--calcite-internal-duration-factor:0.01}}:host{box-sizing:border-box;background-color:var(--calcite-ui-foreground-1);color:var(--calcite-ui-text-2);font-size:var(--calcite-font-size--1)}:host *{box-sizing:border-box}:root{--calcite-floating-ui-transition:var(--calcite-animation-timing);--calcite-floating-ui-z-index:var(--calcite-app-z-index-dropdown)}:host([hidden]){display:none}:host{pointer-events:auto;display:inline-flex;align-self:stretch;--calcite-action-bar-expanded-max-width:auto}:host([layout=vertical]){flex-direction:column}:host([layout=horizontal]){flex-direction:row}:host([layout=vertical][overflow-actions-disabled]){overflow-y:auto}:host([layout=horizontal][overflow-actions-disabled]){overflow-x:auto}:host([layout=vertical][expanded]){max-inline-size:var(--calcite-action-bar-expanded-max-width)}::slotted(calcite-action-group){border-block-end:1px solid var(--calcite-ui-border-3)}:host([layout=horizontal]) ::slotted(calcite-action-group){border-block-end:0;border-inline-end:1px solid var(--calcite-ui-border-3)}:host([layout=horizontal][expand-disabled]) ::slotted(calcite-action-group:last-of-type){border-inline-end:0}::slotted(calcite-action-group:last-child){border-block-end:0;border-inline-end:0}.action-group--bottom{flex-grow:1;justify-content:flex-end}";
const ActionBar = class {
constructor(hostRef) {
index.registerInstance(this, hostRef);
this.calciteActionBarToggle = index.createEvent(this, "calciteActionBarToggle", 6);
this.mutationObserver = observers.createObserver("mutation", () => {
const { el, expanded } = this;
ExpandToggle.toggleChildActionText({ el, expanded });
this.overflowActions();
});
this.resizeObserver = observers.createObserver("resize", (entries) => this.resizeHandlerEntries(entries));
// --------------------------------------------------------------------------
//
// Private Methods
//
// --------------------------------------------------------------------------
this.actionMenuOpenHandler = (event) => {
if (event.target.menuOpen) {
const composedPath = event.composedPath();
Array.from(this.el.querySelectorAll("calcite-action-group")).forEach((group) => {
if (!composedPath.includes(group)) {
group.menuOpen = false;
}
});
}
};
this.resizeHandlerEntries = (entries) => {
entries.forEach(this.resizeHandler);
};
this.resizeHandler = (entry) => {
const { width, height } = entry.contentRect;
this.resize({ width, height });
};
this.resize = debounce.debounce(({ width, height }) => {
const { el, expanded, expandDisabled, layout, overflowActionsDisabled } = this;
if (overflowActionsDisabled ||
(layout === "vertical" && !height) ||
(layout === "horizontal" && !width)) {
return;
}
const actions = ExpandToggle.queryActions(el);
const actionCount = expandDisabled ? actions.length : actions.length + 1;
const actionGroups = Array.from(el.querySelectorAll("calcite-action-group"));
this.setGroupLayout(actionGroups);
const groupCount = dom.getSlotted(el, SLOTS.bottomActions) || !expandDisabled
? actionGroups.length + 1
: actionGroups.length;
const { actionHeight, actionWidth } = ExpandToggle.geActionDimensions(actions);
const overflowCount = ExpandToggle.getOverflowCount({
layout,
actionCount,
actionHeight,
actionWidth,
height,
width,
groupCount
});
ExpandToggle.overflowActions({
actionGroups,
expanded,
overflowCount
});
}, ExpandToggle.overflowActionsDebounceInMs);
this.toggleExpand = () => {
this.expanded = !this.expanded;
this.calciteActionBarToggle.emit();
};
this.setExpandToggleRef = (el) => {
this.expandToggleEl = el;
};
this.handleDefaultSlotChange = (event) => {
const groups = dom.slotChangeGetAssignedElements(event).filter((el) => el?.matches("calcite-action-group"));
this.setGroupLayout(groups);
};
this.expandDisabled = false;
this.expanded = false;
this.layout = "vertical";
this.overflowActionsDisabled = false;
this.position = undefined;
this.scale = undefined;
this.messages = undefined;
this.messageOverrides = undefined;
this.effectiveLocale = undefined;
this.defaultMessages = undefined;
}
expandHandler() {
this.overflowActions();
}
expandedHandler() {
const { el, expanded } = this;
ExpandToggle.toggleChildActionText({ el, expanded });
this.overflowActions();
}
layoutHandler() {
this.updateGroups();
}
overflowDisabledHandler(overflowActionsDisabled) {
overflowActionsDisabled
? this.resizeObserver.disconnect()
: this.resizeObserver.observe(this.el);
}
onMessagesChange() {
/* wired up by t9n util */
}
effectiveLocaleChange() {
t9n.updateMessages(this, this.effectiveLocale);
}
// --------------------------------------------------------------------------
//
// Lifecycle
//
// --------------------------------------------------------------------------
componentDidLoad() {
const { el, expanded } = this;
loadable.setComponentLoaded(this);
ExpandToggle.toggleChildActionText({ el, expanded });
this.overflowActions();
}
connectedCallback() {
const { el, expanded } = this;
locale.connectLocalized(this);
t9n.connectMessages(this);
ExpandToggle.toggleChildActionText({ el, expanded });
this.mutationObserver?.observe(el, { childList: true, subtree: true });
if (!this.overflowActionsDisabled) {
this.resizeObserver?.observe(el);
}
this.overflowActions();
conditionalSlot.connectConditionalSlotComponent(this);
}
async componentWillLoad() {
loadable.setUpLoadableComponent(this);
await t9n.setUpMessages(this);
}
disconnectedCallback() {
this.mutationObserver?.disconnect();
this.resizeObserver?.disconnect();
conditionalSlot.disconnectConditionalSlotComponent(this);
locale.disconnectLocalized(this);
t9n.disconnectMessages(this);
}
// --------------------------------------------------------------------------
//
// Methods
//
// --------------------------------------------------------------------------
/**
* Overflows actions that won't fit into menus.
*
* @internal
*/
async overflowActions() {
this.resize({ width: this.el.clientWidth, height: this.el.clientHeight });
}
/**
* Sets focus on the component's first focusable element.
*/
async setFocus() {
await loadable.componentLoaded(this);
this.el?.focus();
}
updateGroups() {
this.setGroupLayout(Array.from(this.el.querySelectorAll("calcite-action-group")));
}
setGroupLayout(groups) {
groups.forEach((group) => (group.layout = this.layout));
}
// --------------------------------------------------------------------------
//
// Render Methods
//
// --------------------------------------------------------------------------
renderBottomActionGroup() {
const { expanded, expandDisabled, el, position, toggleExpand, scale, layout, messages } = this;
const tooltip = dom.getSlotted(el, SLOTS.expandTooltip);
const expandToggleNode = !expandDisabled ? (index.h(ExpandToggle.ExpandToggle, { el: el, expanded: expanded, intlCollapse: messages.collapse, intlExpand: messages.expand, position: position, scale: scale, toggle: toggleExpand, tooltip: tooltip,
// eslint-disable-next-line react/jsx-sort-props
ref: this.setExpandToggleRef })) : null;
return dom.getSlotted(el, SLOTS.bottomActions) || expandToggleNode ? (index.h("calcite-action-group", { class: CSS.actionGroupBottom, layout: layout, scale: scale }, index.h("slot", { name: SLOTS.bottomActions }), index.h("slot", { name: SLOTS.expandTooltip }), expandToggleNode)) : null;
}
render() {
return (index.h(index.Host, { onCalciteActionMenuOpen: this.actionMenuOpenHandler }, index.h("slot", { onSlotchange: this.handleDefaultSlotChange }), this.renderBottomActionGroup()));
}
static get delegatesFocus() { return true; }
static get assetsDirs() { return ["assets"]; }
get el() { return index.getElement(this); }
static get watchers() { return {
"expandDisabled": ["expandHandler"],
"expanded": ["expandedHandler"],
"layout": ["layoutHandler"],
"overflowActionsDisabled": ["overflowDisabledHandler"],
"messageOverrides": ["onMessagesChange"],
"effectiveLocale": ["effectiveLocaleChange"]
}; }
};
ActionBar.style = actionBarCss;
exports.calcite_action_bar = ActionBar;