123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- /*!
- * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
- * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
- * v1.0.0-beta.97
- */
- import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-1f9b54dc.js';
- import { t as toggleChildActionText, o as overflowActionsDebounceInMs, q as queryActions, g as geActionDimensions, a as overflowActions, E as ExpandToggle, b as getOverflowCount } from './ExpandToggle-a4a9eace.js';
- import { f as focusElement, g as getSlotted } from './dom-8f0a9ff2.js';
- import { c as createObserver } from './observers-9f44e9b3.js';
- import { c as connectConditionalSlotComponent, d as disconnectConditionalSlotComponent } from './conditionalSlot-a3e8c63a.js';
- import { d as debounce } from './debounce-d85a6654.js';
- import './resources-9a59d78c.js';
- import './resources-a75141ea.js';
- import './resources-9c476cb6.js';
- import './guid-9f15e57a.js';
- const CSS = {
- actionGroupBottom: "action-group--bottom"
- };
- const SLOTS = {
- bottomActions: "bottom-actions",
- expandTooltip: "expand-tooltip"
- };
- const TEXT = {
- expand: "Expand",
- collapse: "Collapse"
- };
- 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-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-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)}:host([hidden]){display:none}:host{pointer-events:auto;display:inline-flex;align-self:stretch;background:transparent;--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-width:0px;border-block-end-width:1px;border-style:solid;border-color:var(--calcite-ui-border-3)}:host([layout=horizontal]) ::slotted(calcite-action-group){border-width:0px;border-inline-end-width:1px;border-style:solid}::slotted(calcite-action-group:last-child){border-block-end-width:0px;border-inline-end-width:0px}.action-group--bottom{flex-grow:1;justify-content:flex-end;padding-block-end:0px;padding-inline-end:0px}";
- const ActionBar = class {
- constructor(hostRef) {
- registerInstance(this, hostRef);
- this.calciteActionBarToggle = createEvent(this, "calciteActionBarToggle", 6);
- // --------------------------------------------------------------------------
- //
- // Properties
- //
- // --------------------------------------------------------------------------
- /**
- * When `true`, the expand-toggling behavior is disabled.
- */
- this.expandDisabled = false;
- /**
- * When `true`, the component is expanded.
- */
- this.expanded = false;
- /**
- * The layout direction of the actions.
- */
- this.layout = "vertical";
- /**
- * Disables automatically overflowing `calcite-action`s that won't fit into menus.
- */
- this.overflowActionsDisabled = false;
- this.mutationObserver = createObserver("mutation", () => {
- const { el, expanded } = this;
- toggleChildActionText({ parent: el, expanded });
- this.conditionallyOverflowActions();
- });
- this.resizeObserver = createObserver("resize", (entries) => this.resizeHandlerEntries(entries));
- // --------------------------------------------------------------------------
- //
- // Private Methods
- //
- // --------------------------------------------------------------------------
- this.actionMenuOpenChangeHandler = (event) => {
- if (event.detail) {
- 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(({ width, height }) => {
- const { el, expanded, expandDisabled, layout } = this;
- if ((layout === "vertical" && !height) || (layout === "horizontal" && !width)) {
- return;
- }
- const actions = queryActions(el);
- const actionCount = expandDisabled ? actions.length : actions.length + 1;
- const actionGroups = Array.from(el.querySelectorAll("calcite-action-group"));
- const groupCount = getSlotted(el, SLOTS.bottomActions) || !expandDisabled
- ? actionGroups.length + 1
- : actionGroups.length;
- const { actionHeight, actionWidth } = geActionDimensions(actions);
- const overflowCount = getOverflowCount({
- layout,
- actionCount,
- actionHeight,
- actionWidth,
- height,
- width,
- groupCount
- });
- overflowActions({
- actionGroups,
- expanded,
- overflowCount
- });
- }, overflowActionsDebounceInMs);
- this.conditionallyOverflowActions = () => {
- if (!this.overflowActionsDisabled) {
- this.overflowActions();
- }
- };
- this.toggleExpand = () => {
- this.expanded = !this.expanded;
- this.calciteActionBarToggle.emit();
- };
- this.setExpandToggleRef = (el) => {
- this.expandToggleEl = el;
- };
- }
- expandHandler() {
- this.conditionallyOverflowActions();
- }
- expandedHandler(expanded) {
- toggleChildActionText({ parent: this.el, expanded });
- this.conditionallyOverflowActions();
- }
- overflowDisabledHandler(overflowActionsDisabled) {
- overflowActionsDisabled
- ? this.resizeObserver.disconnect()
- : this.resizeObserver.observe(this.el);
- }
- // --------------------------------------------------------------------------
- //
- // Lifecycle
- //
- // --------------------------------------------------------------------------
- componentDidLoad() {
- this.conditionallyOverflowActions();
- }
- connectedCallback() {
- var _a, _b;
- const { el, expanded } = this;
- toggleChildActionText({ parent: el, expanded });
- (_a = this.mutationObserver) === null || _a === void 0 ? void 0 : _a.observe(el, { childList: true, subtree: true });
- if (!this.overflowActionsDisabled) {
- (_b = this.resizeObserver) === null || _b === void 0 ? void 0 : _b.observe(el);
- }
- this.conditionallyOverflowActions();
- connectConditionalSlotComponent(this);
- }
- disconnectedCallback() {
- var _a, _b;
- (_a = this.mutationObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
- (_b = this.resizeObserver) === null || _b === void 0 ? void 0 : _b.disconnect();
- disconnectConditionalSlotComponent(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.
- *
- * @param focusId
- */
- async setFocus(focusId) {
- var _a;
- if (focusId === "expand-toggle") {
- await focusElement(this.expandToggleEl);
- return;
- }
- (_a = this.el) === null || _a === void 0 ? void 0 : _a.focus();
- }
- // --------------------------------------------------------------------------
- //
- // Render Methods
- //
- // --------------------------------------------------------------------------
- renderBottomActionGroup() {
- const { expanded, expandDisabled, intlExpand, intlCollapse, el, position, toggleExpand, scale, layout } = this;
- const tooltip = getSlotted(el, SLOTS.expandTooltip);
- const expandLabel = intlExpand || TEXT.expand;
- const collapseLabel = intlCollapse || TEXT.collapse;
- const expandToggleNode = !expandDisabled ? (h(ExpandToggle, { el: el, expanded: expanded, intlCollapse: collapseLabel, intlExpand: expandLabel, position: position, ref: this.setExpandToggleRef, scale: scale, toggle: toggleExpand, tooltip: tooltip })) : null;
- return getSlotted(el, SLOTS.bottomActions) || expandToggleNode ? (h("calcite-action-group", { class: CSS.actionGroupBottom, layout: layout, scale: scale }, h("slot", { name: SLOTS.bottomActions }), h("slot", { name: SLOTS.expandTooltip }), expandToggleNode)) : null;
- }
- render() {
- return (h(Host, { onCalciteActionMenuOpenChange: this.actionMenuOpenChangeHandler }, h("slot", null), this.renderBottomActionGroup()));
- }
- get el() { return getElement(this); }
- static get watchers() { return {
- "expandDisabled": ["expandHandler"],
- "expanded": ["expandedHandler"],
- "overflowActionsDisabled": ["overflowDisabledHandler"]
- }; }
- };
- ActionBar.style = actionBarCss;
- export { ActionBar as calcite_action_bar };
|