{"version":3,"file":"assets/chunk.b332f10e33df4cd205a3.js","mappings":"yLAwDe,MAAMA,UAA4BC,KAC7CC,OAAAA,CACIC,EAAKC,GAEiC,IADtC,MAAEC,EAAK,KAAEC,GAAqDF,EAE9D,MAAO,WACH,MAAMG,EAnClB,SAAkCF,EAAcC,GAK5C,QAAKE,EAAAA,EAAAA,SAAQH,KAAUI,EAAAA,EAAAA,SAAQJ,GACpB,GAIPC,EAAKI,OAASJ,EAAKK,MAEZC,EAAAA,EAAAA,GAAEP,EAAMQ,KAAKC,GAlC5B,SACIC,EACAT,GAEA,MAAMU,EAA6C,CAAC,EASpD,OAPAC,OAAOC,QAAQZ,GAAMa,SAAQC,IAAoC,IAAlCC,EAAmBC,GAAUF,EAEpDE,IAAaC,EAAAA,EAAAA,WAAUR,EAAWO,MAClCN,EAAcK,GAAqBN,EAAWO,GAClD,IAGGE,EAAAA,GAAmBC,OAAOT,EACrC,CAoBqCU,CAA4BZ,EAAMR,MAI5DD,CACX,CAkBqCsB,OAA+BtB,EAAOC,GAQ/D,OANAC,EAAiBY,SAASL,IACtB,IAAKA,QAAsBc,IAAdd,EAAKH,WAAqCiB,IAAfd,EAAKJ,MACzC,MAAM,IAAImB,MAAM,4CAADC,OAA6CC,KAAKC,UAAUlB,IAC/E,IAGGP,CACV,EAVM,EAWX,E","sources":["src/helpers/create-dropdown-items.ts"],"sourcesContent":["import { isArray, A } from '@ember/array';\nimport Helper from '@ember/component/helper';\nimport { isEmpty, isPresent } from '@ember/utils';\nimport DropdownSelectItem from '../utils/dropdown-select-item.js';\n\nfunction convertToDropdownSelectItem(\n customItem: any,\n keys: Record\n): DropdownSelectItem {\n const newItemObject: Partial = {};\n\n Object.entries(keys).forEach(([dropdownSelectKey, customKey]) => {\n // Was a key defined and does the custom object have a value for that key?\n if (customKey && isPresent(customItem[customKey])) {\n newItemObject[dropdownSelectKey] = customItem[customKey];\n }\n });\n\n return DropdownSelectItem.create(newItemObject);\n}\n\n/**\n * Transforms the items resolved in the promise into the correct format for use in the dropdown-select.\n *\n * @note This allows a developer to define a mapping and then have the dropdown-select component handle the\n * conversion once the promise resolves.\n */\nfunction transformItemsCollection(items: any[], keys: Record): DropdownSelectItem[] {\n // NOTE: The order of checks is important here. The order of precedence is:\n // 1. Value and name mapping\n // 2. No mapping (return the same array)\n\n if (!isArray(items) || isEmpty(items)) {\n return [];\n }\n\n // Is there a known mapping of value and name?\n if (keys.value && keys.name) {\n // Create a DropdownSelectItem for each item returned from the promise.\n return A(items.map((item) => convertToDropdownSelectItem(item, keys)));\n }\n\n // No mapping was specified. Return the same array.\n return items as DropdownSelectItem[];\n}\n\nexport interface CreateDropdownItemsSignature {\n Args: {\n Named: { items: any[] | Promise; keys: Record };\n };\n Return: DropdownSelectItem[] | Promise;\n}\n\n/**\n * A template helper for generating a list of dropdown items with specific key/value pairs\n */\nexport default class CreateDropdownItems extends Helper {\n compute(\n _: [],\n { items, keys }: CreateDropdownItemsSignature['Args']['Named']\n ): CreateDropdownItemsSignature['Return'] {\n return (async () => {\n const transformedItems = transformItemsCollection(await items, keys);\n // Does each item have the correct DropdownSelectItem structure?\n transformedItems.forEach((item) => {\n if (!item || item.name === undefined || item.value === undefined) {\n throw new Error(`Item must have value and name properties ${JSON.stringify(item)}`);\n }\n });\n\n return transformedItems;\n })();\n }\n}\n"],"names":["CreateDropdownItems","Helper","compute","_","_ref2","items","keys","transformedItems","isArray","isEmpty","value","name","A","map","item","customItem","newItemObject","Object","entries","forEach","_ref","dropdownSelectKey","customKey","isPresent","DropdownSelectItem","create","convertToDropdownSelectItem","transformItemsCollection","undefined","Error","concat","JSON","stringify"],"sourceRoot":""}