\\n \\n{{/if}}\")","import Component from '@glimmer/component';\nimport { tracked } from '@glimmer/tracking';\nimport { isEscapeCode } from '@adc/ember-utils/utils/a11y';\nimport { A } from '@ember/array';\nimport { assert } from '@ember/debug';\nimport { action, computed } from '@ember/object';\nimport { notEmpty } from '@ember/object/computed';\nimport { or } from '@ember/object/computed';\nimport { inject as service } from '@ember/service';\nimport { toggleBodyScroll } from '../utils/general.ts';\n\nimport type DomService from '@adc/ember-utils/services/dom';\nimport type ModalService from '../services/modals.ts';\nimport type { ButtonSimpleSignature } from './button/simple';\n\nexport interface ActionSheetButton {\n text: string;\n fn: VoidFunction;\n disabled?: boolean;\n color?: ButtonSimpleSignature['Args']['buttonColor'];\n}\n\nexport interface ActionSheetSignature {\n Element: HTMLDivElement;\n Args: {\n /** Indicates the action sheet is open. */\n isActive: boolean;\n /** Triggered when the user wants to close the action sheet. */\n close(): void;\n /** Optional title for the action sheet. */\n title?: string;\n /** Optional URI for the image to be displayed at the bottom of the action sheet. */\n imageSrc?: string;\n /** Alt text for the bottom image (must be provided if the image src is). */\n imageAlt?: string;\n /** Collection of buttons to render at the bottom of the body of the action sheet. When docked the buttons will appear stacked, 100% width, with primary buttons sorted to the top. When not docked the buttons will appear at the bottom, right aligned, with primary buttons sorted to the right. */\n buttons?: ActionSheetButton[] | Promise;\n };\n Blocks: {\n /** Optional block for rendering a trigger element. */\n trigger: [];\n /** Will render into the action sheet header, but only if a `@title` was not provided. */\n header: [];\n /** Will render into a space just below the action sheet header. */\n subheader: [];\n /** The body of the action sheet. */\n default: [];\n /** Will render below the body. */\n footer: [];\n };\n}\n\n/**\n * @classdesc\n * A popup container with a customizable title, sub-header, footer and content. Renders as a popup on large screens, and docked to the bottom of the screen with a max height slightly shorter than the screen on small screens. The main content will scroll if it overflows the action sheet.\n *\n * @see https://bitbucket.corp.adcinternal.com/projects/FALCOR/repos/adc-web-frontend/browse/addons/adc-ui-components/package/doc/action-sheet.md\n */\nexport default class ActionSheet extends Component {\n @service declare media: ADCResponsiveMediaService;\n @service declare modals: ModalService;\n @service declare dom: DomService;\n\n @tracked isFocusTrapActive = false;\n\n @notEmpty('modals.modalsToRender')\n declare areAnyModalsOpen: boolean;\n\n curtain?: Element | null;\n closeListener?: string;\n\n focusTrapOptions = {\n allowOutsideClick: true,\n escapeDeactivates: false\n };\n\n @or('media.isMobile', 'media.isTabletPortrait')\n declare isDocked: boolean;\n\n @computed('args.buttons.[]', 'isDocked')\n get buttons(): Promise {\n return (async () => {\n const all = A((await this.args.buttons) ?? []),\n buttons = [...all.filterBy('color', 'primary'), ...all.rejectBy('color', 'primary')];\n\n return this.isDocked ? buttons : buttons.reverse();\n })();\n }\n\n /**\n * Called when the action sheet element is inserted.\n */\n @action opened(el: Element): void {\n // Cache curtain so we can access in closed.\n this.curtain = this.toggleCurtain(true, el);\n\n // Is the sheet NOT docked?\n if (!this.isDocked) {\n // Need to set focus trap here because element will not transition.\n this.isFocusTrapActive = true;\n\n const { close } = this.args;\n this.closeListener = this.dom.addListener(this, el, 'keyup', (evt: KeyboardEvent & { target: Element }) => {\n if (isEscapeCode(evt.code) && evt.target.tagName.toLowerCase() !== 'input') {\n close();\n }\n });\n }\n }\n\n /**\n * Called when the action sheet element is about to be removed.\n */\n @action closed(): void {\n const { closeListener } = this;\n if (closeListener) {\n this.dom.removeListener(this, closeListener);\n }\n\n this.toggleCurtain(false);\n this.isFocusTrapActive = false;\n this.curtain = null;\n }\n\n private toggleCurtain(isOpen: boolean, el = this.curtain): Element {\n assert('[@adc/ui-components] Action sheet element not found', el);\n\n toggleBodyScroll(isOpen);\n\n const curtain = el.closest('.action-sheet-host')?.querySelector('.curtain');\n assert(\n '[@adc/ui-components] Action sheet found no host or curtain, are you sure the action-sheet-host is rendered?',\n curtain\n );\n\n curtain.classList.toggle('is-open', isOpen);\n return curtain;\n }\n}\n","import { precompileTemplate } from \"@ember/template-compilation\";\nexport default precompileTemplate(\"\\n <:default>\\n
{{@confirmationDescription}}
\\n \\n\")","import templateOnlyComponent from '@ember/component/template-only';\n\nexport interface ActionSheetsConfirmSaveSignature {\n Args: {\n close: VoidFunction;\n confirm: VoidFunction;\n disabled?: boolean;\n confirmationDescription: string;\n isActive: boolean;\n };\n Element: HTMLDivElement;\n}\n\nconst ActionSheetConfirmSave = templateOnlyComponent();\nexport default ActionSheetConfirmSave;\n","import { precompileTemplate } from \"@ember/template-compilation\";\nexport default precompileTemplate(\"\\n{{#if this.isReady}}\\n {{#in-element this.hostEl}}\\n {{yield}}\\n {{/in-element}}\\n{{/if}}\")","import Component from '@glimmer/component';\nimport { tracked } from '@glimmer/tracking';\nimport { action } from '@ember/object';\nimport { scheduleOnce } from '@ember/runloop';\n\nexport interface ElementHostSignature {\n Args: {\n /** A valid CSS selector to the element that should host the yielded content. */\n hostSelector: string;\n };\n Blocks: {\n default: [];\n };\n}\n\nexport default class ElementHost extends Component {\n @tracked isReady = false;\n\n /**\n * Returns the target host element.\n */\n get hostEl(): HTMLElement {\n return document.querySelector(this.args.hostSelector)!;\n }\n\n @action scheduleRender(): void {\n // Do not copy this deprecated usage. If you see this, please fix it\n // eslint-disable-next-line ember/no-runloop\n scheduleOnce('afterRender', this, this.updateIsReady);\n }\n\n private updateIsReady(): void {\n this.isReady = true;\n }\n}\n","import { precompileTemplate } from \"@ember/template-compilation\";\nexport default precompileTemplate(\"{{yield\\n (hash\\n toolbar=(component (ensure-safe-component this.toolbar))\\n updateNativeToolbarButtons=this.updateNativeToolbarButtons\\n disposeNativeButtons=this.disposeNativeButtons\\n )\\n}}\\n\\n\\n\\n \\n\\n {{yield (hash body=container.body)}}\\n\\n \\n\\n \\n\\n\")","import RouteView from '../route-view.js';\n\n/**\n * @classdesc\n * Root component for all \"list\" routes.\n */\nexport default class ListView extends RouteView {\n /** @override */\n useRouteViewClass = true;\n}\n","import { precompileTemplate } from \"@ember/template-compilation\";\nexport default precompileTemplate(\"
\\n {{#each items as |item|}}\\n {{#if item.visible}}\\n \\n {{/if}}\\n {{/each}}\\n
\\n {{/if}}\\n \\n
\")","import Component from '@glimmer/component';\nimport { action } from '@ember/object';\nimport { service } from '@ember/service';\nimport { DeleteActionItem, EditActionItem, ActionItem } from '../utils/action-item.js';\n\nimport type { Registry as ServiceRegistry } from '@ember/service';\n\ntype Item = Omit & {\n icon: string;\n text: string;\n};\n\nexport interface RowItemSignature {\n Element: HTMLDivElement;\n Args: {\n /** The actions to show (could be dropdown actions or toolbar buttons). */\n items?: ActionItem[] | Promise;\n /** Called when the user interacts with the row-item content (not actions). */\n onRowClick?: VoidFunction;\n /** Indicates whether the row item should have a minimum height of 64px. */\n compact?: boolean;\n /** Indicates the items should be displayed within a dropdown-actions menu. */\n collapse?: boolean;\n /** Indicates dropdown-actions button or individual toolbar buttons should all be disabled. */\n areActionsDisabled?: boolean;\n /** Indicates whether the dropdown-actions button should be visible even when items are empty. */\n showEllipsis?: boolean;\n /** CSS class applied to the row-item content node. */\n rowContentClass?: string;\n /** Indicates whether to row should have a CSS class of `highlight-row`. */\n highlightRow?: boolean;\n };\n Blocks: {\n default: [];\n };\n}\n\nexport default class RowItem extends Component {\n @service declare intl: ServiceRegistry['adc-intl'];\n\n get showEllipsis(): boolean {\n return this.args.showEllipsis ?? true;\n }\n\n get highlightRow(): boolean {\n return this.args.highlightRow ?? true;\n }\n\n private updateDefaultActionProps(\n items: ActionItem[],\n defaultTextKey: string,\n type: new () => T\n ): void {\n const item = items.find((item) => item instanceof type);\n if (item) {\n const defaultText = this.intl.t(`@adc/ui-components.${defaultTextKey}`);\n\n // Add default text and icon title if it was not defined.\n item.text = item.text || defaultText;\n item.iconTitle = item.iconTitle || defaultText;\n }\n }\n\n get items(): Item[] | Promise {\n const { items } = this.args;\n if (!items) {\n return [];\n }\n\n return (async () => {\n const resolvedItems = await items;\n\n this.updateDefaultActionProps(resolvedItems, 'edit', EditActionItem);\n this.updateDefaultActionProps(resolvedItems, 'delete', DeleteActionItem);\n\n return (\n resolvedItems.filter((item) => {\n if (!item || !item.visible) {\n return false;\n }\n\n if (!(item instanceof ActionItem)) {\n console.error(\n `[@adc/ui-components/row-item]: The item ${item} must be an instance of ActionItem.`\n );\n return false;\n }\n\n if (!item.icon || !item.text) {\n console.error(`[@adc/ui-components/row-item]: The item ${item} must have an icon and text.`);\n return false;\n }\n\n return true;\n }) as Item[]\n ).sort((a, b) => (a instanceof DeleteActionItem ? 1 : b instanceof DeleteActionItem ? -1 : 0));\n })();\n }\n\n @action clickRow(): void {\n this.args.onRowClick?.();\n }\n\n @action async clickButton(item: ActionItem): Promise {\n await item.action?.();\n }\n}\n"],"names":["TEMPLATE","createTemplateFactory","scope","elementHost_","addDelayedCss_","didInsert_","onClickOutside_","preventDefault_","stopPropagation_","on","fn","willDestroy_","focusTrap_","and_","not_","buttonIcon_","t_","scrollContainer_","asyncLoader_","buttonAsync_","_media","WeakMap","_modals","_dom","_isFocusTrapActive","_areAnyModalsOpen","_isDocked","ActionSheet","Component","constructor","arguments","_classPrivateFieldInitSpec","i","_defineProperty","allowOutsideClick","escapeDeactivates","buttons","async","all","A","_await$this$args$butt","this","args","filterBy","rejectBy","isDocked","reverse","opened","el","curtain","toggleCurtain","isFocusTrapActive","close","closeListener","dom","addListener","evt","isEscapeCode","code","target","tagName","toLowerCase","closed","removeListener","isOpen","_el$closest","length","undefined","toggleBodyScroll","closest","querySelector","classList","toggle","_ActionSheet","g","prototype","inject","tracked","notEmpty","or","n","computed","action","setComponentTemplate","actionSheet_","array","hash","coalesce_","ActionSheetConfirmSave","templateOnlyComponent","confirmSave","_isReady","ElementHost","hostEl","document","hostSelector","scheduleRender","scheduleOnce","updateIsReady","isReady","_ElementHost","ensureSafeComponent_","routeViewViewContainer_","ListView","RouteView","or_","dropdownActions_","_intl","RowItem","showEllipsis","_this$args$showEllips","highlightRow","_this$args$highlightR","updateDefaultActionProps","items","defaultTextKey","type","item","find","defaultText","intl","t","concat","text","iconTitle","resolvedItems","EditActionItem","DeleteActionItem","filter","visible","ActionItem","icon","console","error","sort","a","b","clickRow","_this$args$onRowClick","_this$args","onRowClick","call","clickButton","_item$action","_RowItem","service"],"sourceRoot":""}