{"version":3,"file":"2305.bundle_074.js","mappings":"0MASiB,EAAQ,MAMlB,MAAMA,UAAc,EAAAC,sBAIvB,WAAAC,CAAYC,GACRC,MAAMD,GAENE,KAAKC,4BACLD,KAAKE,iBAAmB,EAAAC,iBAAiBC,qBAC7C,CAEA,yBAAAH,GACI,IAAII,EAAuCL,KAAKF,YAAYQ,iBAAiB,EAAAC,YAAYC,qBAAqB,EAAAC,eAAeC,MAAMA,QACnIV,KAAKW,cAAgB,IAAIC,MAEzB,IAAK,IAAIC,EAAI,EAAGA,EAAIR,EAAgBS,OAAQD,GAAK,EAAG,CAChD,IAAIE,EAA0BV,EAAgBQ,GAC1CG,EAAe,IAAI,EAAAC,aAAaF,GACpCf,KAAKW,cAAcO,KAAKF,E,CAEhC,CAEA,OAAAG,GAKA,E,mGCrCG,SAASC,KACZ,IAAAC,8BAAoC,EAAA1B,MAAO,EAAAY,YAAYC,qBAAqB,EAAAC,eAAed,MAAMA,OAAQ2B,EAC7G,CAEA,SAASA,EAAaC,GAClB,IAAIC,EAAW,IAAI,EAAA7B,MAAM4B,GACnBE,OAAQC,MAAQF,CAC1B,C","sources":["webpack://LoBSiteTemplates/./src/components/brand/brand.ts","webpack://LoBSiteTemplates/./src/components/brand/brandInitialiser.ts"],"sourcesContent":["import { IInstanceComponentBase, InstanceComponentBase } from \"../../shared/instanceComponentBase\";\r\nimport { ResponsiveState } from \"../../shared/responsiveState\";\r\nimport { AttributeEnums } from \"../../shared/utilities/enums/attributeEnums\";\r\nimport { StringEnums } from \"../../shared/utilities/enums/stringEnums\";\r\nimport { HelperUtils } from \"../../shared/utilities/helperUtils\";\r\nimport { GlobalComponents, IGlobalComponents } from \"../globalComponents/globalComponents\";\r\nimport { BannerPromotions, IBannerPromotions } from \"../promotions/bannerPromotions\";\r\nimport { YouTubeVideo } from \"../video/youTubeVideo\";\r\n\r\nconst urlPaths = require('../../config/urlPaths.json');\r\n\r\nexport interface IBrand extends IInstanceComponentBase {\r\n\r\n}\r\n\r\nexport class Brand extends InstanceComponentBase implements IBrand {\r\n public youTubeVideos: YouTubeVideo[];\r\n public globalComponents: IGlobalComponents;\r\n\r\n constructor(htmlElement: Element) {\r\n super(htmlElement);\r\n\r\n this.createYouTubeVideoFactory();\r\n this.globalComponents = GlobalComponents.getGlobalComponents();\r\n }\r\n\r\n createYouTubeVideoFactory(): void {\r\n let youTubeElements: NodeListOf<Element> = this.htmlElement.querySelectorAll(HelperUtils.addDataAttributeTags(AttributeEnums.Video.Video));\r\n this.youTubeVideos = new Array<YouTubeVideo>();\r\n\r\n for (let i = 0; i < youTubeElements.length; i += 1) {\r\n let youTubeElement: Element = youTubeElements[i] as HTMLElement;\r\n let youTubeVideo = new YouTubeVideo(youTubeElement);\r\n this.youTubeVideos.push(youTubeVideo);\r\n }\r\n }\r\n\r\n dispose(): void {\r\n try {\r\n } catch (error) {\r\n console.log('Brand: dispose ERROR', error);\r\n }\r\n }\r\n\r\n}","import { initialiseInstanceComponents } from \"../../shared/instanceComponentInitialiser\";\r\nimport { AttributeEnums } from \"../../shared/utilities/enums/attributeEnums\";\r\nimport { HelperUtils } from \"../../shared/utilities/helperUtils\";\r\nimport { Brand } from \"./brand\";\r\n\r\nexport function initialiseBrand() {\r\n initialiseInstanceComponents<Brand>(Brand, HelperUtils.addDataAttributeTags(AttributeEnums.Brand.Brand), brandFactory);\r\n}\r\n\r\nfunction brandFactory(currentElement: Element): void {\r\n let newBrand = new Brand(currentElement);\r\n (<any>window).brand = newBrand;\r\n}\r\n\r\n"],"names":["Brand","InstanceComponentBase","constructor","htmlElement","super","this","createYouTubeVideoFactory","globalComponents","GlobalComponents","getGlobalComponents","youTubeElements","querySelectorAll","HelperUtils","addDataAttributeTags","AttributeEnums","Video","youTubeVideos","Array","i","length","youTubeElement","youTubeVideo","YouTubeVideo","push","dispose","initialiseBrand","initialiseInstanceComponents","brandFactory","currentElement","newBrand","window","brand"],"sourceRoot":""}