{"version":3,"file":"requiredSlot.chunk-B5I6CoH0.js","sources":["../../../../../packages/web-components/src/lib/decorators/requiredSlot.ts"],"sourcesContent":["import { isServer } from 'lit';\n\n/**\n * The `@requiredSlot()` decorator can be used to indicate that\n * a render has one or more required slots. When used, if a slot\n * identified in the requiredSlotsArr is not defined by the\n * application, then the component will not render (starting in\n * v4) and will produce an error message in the console.\n *\n * The `@requiredSlot()` decorator should be used in conjunction\n * with the `@render()` function.\n */\nexport function requiredSlot(requiredSlotsArr: string[]) {\n return function requiredSlotDecorator(\n target: any,\n propertyKey: string,\n descriptor: TypedPropertyDescriptor,\n ) {\n const originalMethod = descriptor.value;\n\n // this is the error function that will report the required slots that are not populated, and in v4 will return an empty template to prevent render of the component\n const errorFunction = (\n slotsInError: any[],\n result: any,\n node: TypedPropertyDescriptor,\n ) => {\n console.error(\n 'A required slot has not been populated: ',\n slotsInError,\n node,\n );\n // TODOv4 - enable breaking change to return an empty template to prevent the component from rendering, and remove the return result line\n // return html``;\n return result;\n };\n if (!isServer) {\n // eslint-disable-next-line no-param-reassign, func-names\n descriptor.value = function (...args: any[]) {\n const result = originalMethod.apply(this, args);\n const slotsInError: any[] = [];\n\n // handle default slot entries\n requiredSlotsArr.forEach((key: any) => {\n if (key === 'default') {\n // @ts-expect-error\n const nodes = Array.from(this.childNodes);\n\n const found = nodes.some((node: any) => {\n if (\n node.nodeType === Node.TEXT_NODE &&\n node.textContent.replaceAll('/n', '').trim() !== ''\n ) {\n return true;\n }\n if (\n node &&\n node.textContent.replaceAll('/n', '').trim() !== '' &&\n node instanceof Element &&\n !node.hasAttribute('slot')\n ) {\n return true;\n }\n return false;\n });\n // @ts-expect-error\n this.requiredSlotElements[key] = found;\n // @ts-expect-error\n } else if (this.querySelector(`[slot=\"${key}\"]`)) {\n // @ts-expect-error\n this.requiredSlotElements[key] = this.querySelector(\n `[slot=\"${key}\"]`,\n );\n } else {\n // @ts-expect-error\n this.requiredSlotElements[key] = false;\n }\n });\n\n // @ts-expect-error\n Object.entries(this.requiredSlotElements).forEach(([key, value]) => {\n if (\n // @ts-expect-error\n !this.initialRenderForRequiredSlotValidation &&\n !value\n ) {\n slotsInError.push(key);\n }\n });\n\n if (slotsInError.length > 0) {\n return errorFunction(slotsInError, result, this);\n }\n // @ts-expect-error\n this.initialRenderForRequiredSlotValidation = false;\n return result;\n };\n }\n return descriptor;\n };\n}\n"],"names":["requiredSlot","requiredSlotsArr","target","propertyKey","descriptor","originalMethod","errorFunction","slotsInError","result","node","args","key","found","value"],"mappings":";AAYO,SAASA,EAAaC,GAA4B;AACvD,SAAO,SACLC,GACAC,GACAC,GACA;AACA,UAAMC,IAAiBD,EAAW,OAG5BE,IAAgB,CACpBC,GACAC,GACAC,OAEQ,QAAA;AAAA,MACN;AAAA,MACAF;AAAA,MACAE;AAAA,IACF,GAGOD;AAII,WAAAJ,EAAA,QAAQ,YAAaM,GAAa;AAC3C,YAAMF,IAASH,EAAe,MAAM,MAAMK,CAAI,GACxCH,IAAsB,CAAC;AAkDzB,aA/CaN,EAAA,QAAQ,CAACU,MAAa;AACrC,YAAIA,MAAQ,WAAW;AAIrB,gBAAMC,IAFQ,MAAM,KAAK,KAAK,UAAU,EAEpB,KAAK,CAACH,MAEtB,GAAAA,EAAK,aAAa,KAAK,aACvBA,EAAK,YAAY,WAAW,MAAM,EAAE,EAAE,KAAK,MAAM,MAKjDA,KACAA,EAAK,YAAY,WAAW,MAAM,EAAE,EAAE,KAAW,MAAA,MACjDA,aAAgB,WAChB,CAACA,EAAK,aAAa,MAAM,EAK5B;AAEI,eAAA,qBAAqBE,CAAG,IAAIC;AAAA,QAAA,OAExB,KAAK,cAAc,UAAUD,CAAG,IAAI,IAExC,KAAA,qBAAqBA,CAAG,IAAI,KAAK;AAAA,UACpC,UAAUA,CAAG;AAAA,QACf,IAGK,KAAA,qBAAqBA,CAAG,IAAI;AAAA,MACnC,CACD,GAGM,OAAA,QAAQ,KAAK,oBAAoB,EAAE,QAAQ,CAAC,CAACA,GAAKE,CAAK,MAAM;AAClE;AAAA,QAEE,CAAC,KAAK,0CACN,CAACA,KAEDN,EAAa,KAAKI,CAAG;AAAA,MACvB,CACD,GAEGJ,EAAa,SAAS,IACjBD,EAAcC,GAAcC,GAAQ,IAAI,KAGjD,KAAK,yCAAyC,IACvCA;AAAA,IACT,GAEKJ;AAAA,EACT;AACF;"}