calcite-action-bar.entry.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*!
  2. * All material copyright ESRI, All Rights Reserved, unless otherwise specified.
  3. * See https://github.com/Esri/calcite-components/blob/master/LICENSE.md for details.
  4. * v1.0.0-beta.82
  5. */
  6. import { r as registerInstance, c as createEvent, h, H as Host, g as getElement } from './index-8ece2564.js';
  7. import { t as toggleChildActionText, o as overflowActionsDebounceInMs, q as queryActions, a as overflowActions, E as ExpandToggle, g as getOverflowCount } from './ExpandToggle-1f6d84ba.js';
  8. import { f as focusElement, g as getSlotted } from './dom-da697a3f.js';
  9. import { c as createObserver } from './observers-b198f831.js';
  10. import { c as connectConditionalSlotComponent, d as disconnectConditionalSlotComponent } from './conditionalSlot-203be745.js';
  11. import { d as debounce } from './debounce-c4df98cc.js';
  12. import './resources-3c30f589.js';
  13. import './resources-e8f918f0.js';
  14. import './guid-b4461004.js';
  15. const CSS = {
  16. actionGroupBottom: "action-group--bottom"
  17. };
  18. const SLOTS = {
  19. bottomActions: "bottom-actions",
  20. expandTooltip: "expand-tooltip"
  21. };
  22. const TEXT = {
  23. expand: "Expand",
  24. collapse: "Collapse"
  25. };
  26. const actionBarCss = "@-webkit-keyframes in{0%{opacity:0}100%{opacity:1}}@keyframes in{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes in-down{0%{opacity:0;-webkit-transform:translate3D(0, -5px, 0);transform:translate3D(0, -5px, 0)}100%{opacity:1;-webkit-transform:translate3D(0, 0, 0);transform:translate3D(0, 0, 0)}}@keyframes in-down{0%{opacity:0;-webkit-transform:translate3D(0, -5px, 0);transform:translate3D(0, -5px, 0)}100%{opacity:1;-webkit-transform:translate3D(0, 0, 0);transform:translate3D(0, 0, 0)}}@-webkit-keyframes in-up{0%{opacity:0;-webkit-transform:translate3D(0, 5px, 0);transform:translate3D(0, 5px, 0)}100%{opacity:1;-webkit-transform:translate3D(0, 0, 0);transform:translate3D(0, 0, 0)}}@keyframes in-up{0%{opacity:0;-webkit-transform:translate3D(0, 5px, 0);transform:translate3D(0, 5px, 0)}100%{opacity:1;-webkit-transform:translate3D(0, 0, 0);transform:translate3D(0, 0, 0)}}@-webkit-keyframes in-scale{0%{opacity:0;-webkit-transform:scale3D(0.95, 0.95, 1);transform:scale3D(0.95, 0.95, 1)}100%{opacity:1;-webkit-transform:scale3D(1, 1, 1);transform:scale3D(1, 1, 1)}}@keyframes in-scale{0%{opacity:0;-webkit-transform:scale3D(0.95, 0.95, 1);transform:scale3D(0.95, 0.95, 1)}100%{opacity:1;-webkit-transform:scale3D(1, 1, 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;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:var(--calcite-animation-timing);animation-duration:var(--calcite-animation-timing)}.calcite-animate__in{-webkit-animation-name:in;animation-name:in}.calcite-animate__in-down{-webkit-animation-name:in-down;animation-name:in-down}.calcite-animate__in-up{-webkit-animation-name:in-up;animation-name:in-up}.calcite-animate__in-scale{-webkit-animation-name:in-scale;animation-name:in-scale}:host{-webkit-box-sizing:border-box;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 *{-webkit-box-sizing:border-box;box-sizing:border-box}:root{--calcite-popper-transition:var(--calcite-animation-timing)}:host([hidden]){display:none}:host{pointer-events:auto;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:stretch;align-self:stretch;max-width:15vw}:host([overflow-actions-disabled]){overflow-y:auto}:host([expanded]){max-width:20vw}::slotted(calcite-action-group){border-width:0px;border-bottom-width:1px;border-style:solid;border-color:var(--calcite-ui-border-3)}::slotted(calcite-action-group:last-child){border-bottom-width:0px}.action-group--bottom{-ms-flex-positive:1;flex-grow:1;-ms-flex-pack:end;justify-content:flex-end;padding-bottom:0px}";
  27. const ActionBar = class {
  28. constructor(hostRef) {
  29. registerInstance(this, hostRef);
  30. this.calciteActionBarToggle = createEvent(this, "calciteActionBarToggle", 7);
  31. // --------------------------------------------------------------------------
  32. //
  33. // Properties
  34. //
  35. // --------------------------------------------------------------------------
  36. /**
  37. * When set to true, the expand-toggling behavior will be disabled.
  38. */
  39. this.expandDisabled = false;
  40. /**
  41. * Indicates whether widget is expanded.
  42. */
  43. this.expanded = false;
  44. /**
  45. * Disables automatically overflowing actions that won't fit into menus.
  46. */
  47. this.overflowActionsDisabled = false;
  48. this.mutationObserver = createObserver("mutation", () => {
  49. const { el, expanded } = this;
  50. toggleChildActionText({ parent: el, expanded });
  51. this.conditionallyOverflowActions();
  52. });
  53. this.resizeObserver = createObserver("resize", (entries) => this.resizeHandlerEntries(entries));
  54. // --------------------------------------------------------------------------
  55. //
  56. // Private Methods
  57. //
  58. // --------------------------------------------------------------------------
  59. this.actionMenuOpenChangeHandler = (event) => {
  60. if (event.detail) {
  61. const composedPath = event.composedPath();
  62. Array.from(this.el.querySelectorAll("calcite-action-group")).forEach((group) => {
  63. if (!composedPath.includes(group)) {
  64. group.menuOpen = false;
  65. }
  66. });
  67. }
  68. };
  69. this.resizeHandlerEntries = (entries) => {
  70. entries.forEach(this.resizeHandler);
  71. };
  72. this.resizeHandler = (entry) => {
  73. const { height } = entry.contentRect;
  74. this.resize(height);
  75. };
  76. this.resize = debounce((height) => {
  77. var _a;
  78. const { el, expanded, expandDisabled } = this;
  79. if (!height) {
  80. return;
  81. }
  82. const actions = queryActions(el);
  83. const actionCount = expandDisabled ? actions.length : actions.length + 1;
  84. const actionGroups = Array.from(el.querySelectorAll("calcite-action-group"));
  85. const groupCount = getSlotted(el, SLOTS.bottomActions) || !expandDisabled
  86. ? actionGroups.length + 1
  87. : actionGroups.length;
  88. const overflowCount = getOverflowCount({
  89. actionCount,
  90. actionHeight: (_a = actions[0]) === null || _a === void 0 ? void 0 : _a.clientHeight,
  91. height,
  92. groupCount
  93. });
  94. overflowActions({
  95. actionGroups,
  96. expanded,
  97. overflowCount
  98. });
  99. }, overflowActionsDebounceInMs);
  100. this.conditionallyOverflowActions = () => {
  101. if (!this.overflowActionsDisabled) {
  102. this.overflowActions();
  103. }
  104. };
  105. this.toggleExpand = () => {
  106. this.expanded = !this.expanded;
  107. this.calciteActionBarToggle.emit();
  108. };
  109. this.setExpandToggleRef = (el) => {
  110. this.expandToggleEl = el;
  111. };
  112. }
  113. expandHandler() {
  114. this.conditionallyOverflowActions();
  115. }
  116. expandedHandler(expanded) {
  117. toggleChildActionText({ parent: this.el, expanded });
  118. }
  119. overflowDisabledHandler(overflowActionsDisabled) {
  120. overflowActionsDisabled
  121. ? this.resizeObserver.disconnect()
  122. : this.resizeObserver.observe(this.el);
  123. }
  124. // --------------------------------------------------------------------------
  125. //
  126. // Lifecycle
  127. //
  128. // --------------------------------------------------------------------------
  129. componentDidLoad() {
  130. this.conditionallyOverflowActions();
  131. }
  132. connectedCallback() {
  133. var _a, _b;
  134. const { el, expanded } = this;
  135. toggleChildActionText({ parent: el, expanded });
  136. (_a = this.mutationObserver) === null || _a === void 0 ? void 0 : _a.observe(el, { childList: true, subtree: true });
  137. if (!this.overflowActionsDisabled) {
  138. (_b = this.resizeObserver) === null || _b === void 0 ? void 0 : _b.observe(el);
  139. }
  140. this.conditionallyOverflowActions();
  141. connectConditionalSlotComponent(this);
  142. }
  143. disconnectedCallback() {
  144. var _a, _b;
  145. (_a = this.mutationObserver) === null || _a === void 0 ? void 0 : _a.disconnect();
  146. (_b = this.resizeObserver) === null || _b === void 0 ? void 0 : _b.disconnect();
  147. disconnectConditionalSlotComponent(this);
  148. }
  149. // --------------------------------------------------------------------------
  150. //
  151. // Methods
  152. //
  153. // --------------------------------------------------------------------------
  154. /**
  155. * Overflows actions that won't fit into menus.
  156. * @internal
  157. */
  158. async overflowActions() {
  159. this.resize(this.el.clientHeight);
  160. }
  161. /** Sets focus on the component. */
  162. async setFocus(focusId) {
  163. if (focusId === "expand-toggle") {
  164. await focusElement(this.expandToggleEl);
  165. return;
  166. }
  167. this.el.focus();
  168. }
  169. // --------------------------------------------------------------------------
  170. //
  171. // Render Methods
  172. //
  173. // --------------------------------------------------------------------------
  174. renderBottomActionGroup() {
  175. const { expanded, expandDisabled, intlExpand, intlCollapse, el, position, toggleExpand, scale } = this;
  176. const tooltip = getSlotted(el, SLOTS.expandTooltip);
  177. const expandLabel = intlExpand || TEXT.expand;
  178. const collapseLabel = intlCollapse || TEXT.collapse;
  179. 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;
  180. return getSlotted(el, SLOTS.bottomActions) || expandToggleNode ? (h("calcite-action-group", { class: CSS.actionGroupBottom, scale: scale }, h("slot", { name: SLOTS.bottomActions }), h("slot", { name: SLOTS.expandTooltip }), expandToggleNode)) : null;
  181. }
  182. render() {
  183. return (h(Host, { onCalciteActionMenuOpenChange: this.actionMenuOpenChangeHandler }, h("slot", null), this.renderBottomActionGroup()));
  184. }
  185. get el() { return getElement(this); }
  186. static get watchers() { return {
  187. "expandDisabled": ["expandHandler"],
  188. "expanded": ["expandedHandler"],
  189. "overflowActionsDisabled": ["overflowDisabledHandler"]
  190. }; }
  191. };
  192. ActionBar.style = actionBarCss;
  193. export { ActionBar as calcite_action_bar };