{"version":3,"file":"assets/chunk.b43d3176572ceb719ff0.js","mappings":"qTACA,IAAAA,GAAAC,E,SAAAA,uBAAA,glEAAAC,IAAA,CAAAC,EAAAA,EAAAC,EAAAA,GAAAC,EAAAA,EAAAC,EAAAA,EAAAC,EAAAA,EAAAC,EAAAA,EAAAC,EAAAA,EAAAC,EAAAA,EAAAC,EAAAA,EAAAC,EAAAA,IAAA,kBAAmvEC,EAAA,IAAAC,QCoCpuE,MAAMC,UAAgBC,EAAAA,EAA4BC,WAAAA,GAAA,SAAAC,W,mJACrDC,CAAA,KAAAN,OAAAO,EAAAA,EAAAA,GAAA,cAER,gBAAIC,GAAwB,IAAAC,EACxB,OAA6B,QAA7BA,EAAOC,KAAKC,KAAKH,oBAAY,IAAAC,GAAAA,CACjC,CAEA,gBAAIG,GAAwB,IAAAC,EACxB,OAA6B,QAA7BA,EAAOH,KAAKC,KAAKC,oBAAY,IAAAC,GAAAA,CACjC,CAEQC,wBAAAA,CACJC,EACAC,EACAC,GAEA,MAAMC,EAAOH,EAAMI,MAAMD,GAASA,aAAgBD,IAClD,GAAIC,EAAM,CACN,MAAME,EAAcV,KAAKW,KAAKC,EAAE,sBAADC,OAAuBP,IAGtDE,EAAKM,KAAON,EAAKM,MAAQJ,EACzBF,EAAKO,UAAYP,EAAKO,WAAaL,CACvC,CACJ,CAEA,SAAIL,GACA,MAAM,MAAEA,GAAUL,KAAKC,KACvB,OAAKI,EAIE,WACH,MAAMW,QAAsBX,EAK5B,OAHAL,KAAKI,yBAAyBY,EAAe,OAAQC,EAAAA,IACrDjB,KAAKI,yBAAyBY,EAAe,SAAUE,EAAAA,IAGnDF,EAAcG,QAAQX,MACbA,IAASA,EAAKY,UAIbZ,aAAgBa,EAAAA,KAOjBb,EAAKc,OAASd,EAAKM,QACpBS,QAAQC,MAAM,2CAADX,OAA4CL,EAAI,iCACtD,IARPe,QAAQC,MAAM,2CAADX,OACkCL,EAAI,wCAE5C,OAUjBiB,MAAK,CAACC,EAAGC,IAAOD,aAAaR,EAAAA,GAAmB,EAAIS,aAAaT,EAAAA,IAAoB,EAAI,GAC9F,EA3BM,GAHI,EA+Bf,CAEQU,QAAAA,GAAiB,IAAAC,EAAAC,EACD,QAApBD,GAAAC,EAAA9B,KAAKC,MAAK8B,kBAAU,IAAAF,GAApBA,EAAAG,KAAAF,EACJ,CAEA,iBAAcG,CAAYzB,GAAiC,IAAA0B,QACtC,QAAjBA,EAAM1B,EAAK2B,cAAM,IAAAD,OAAA,EAAXA,EAAAF,KAAAxB,GACV,EACJ4B,EArEqB5C,GAA4C6C,EAAAA,EAAAA,GAAAD,EAAAE,UAAA,QAC5DC,EAAAA,WA+DAC,EAAAA,EAAAA,GAAAJ,EAAAE,UAAA,YAFAH,EAAAA,UAMAK,EAAAA,EAAAA,GAAAJ,EAAAE,UAAA,eAFAH,EAAAA,UAGJM,EAAAA,EAAAA,sBAAAhE,EArEoBe,E","sources":["src/components/row-item.hbs","src/components/row-item.ts"],"sourcesContent":["import { precompileTemplate } from \"@ember/template-compilation\";\nexport default precompileTemplate(\"
\\n {{#if @onRowClick}}\\n \\n {{yield}}\\n \\n {{else}}\\n
\\n {{yield}}\\n
\\n {{/if}}\\n\\n \\n {{#if @collapse}}\\n {{#if (or this.showEllipsis items.length)}}\\n \\n \\n \\n {{/if}}\\n {{else if items.length}}\\n
\\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","coalesce_","on","preventDefault_","asyncLoader_","or_","dropdownActions_","t_","buttonIcon_","buttonAsync_","fn","_intl","WeakMap","RowItem","Component","constructor","arguments","_classPrivateFieldInitSpec","i","showEllipsis","_this$args$showEllips","this","args","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","action","_RowItem","g","prototype","service","n","setComponentTemplate"],"sourceRoot":""}