<html><head></head><body>{"version":3,"sources":["webpack://CoveoForSitecore/./src/ui/scopes/CoveoForSitecoreExpressions.ts"],"names":["coveo_search_ui_1","__webpack_require__","ContextEvents_1","ExpressionEvents_1","CoveoForSitecoreExpressions","_super","element","options","bindings","_this","call","this","ID","ComponentOptions","initComponentOptions","bind","onRootElement","SitecoreContextEvents","onSitecoreContextInitialization","afterComponentsInitialization","__extends","prototype","contextArgs","root","dataset","QueryEvents","buildingQuery","buildingQueryArgs","onBuildingQuery","externalContentArgs","triggerBuildingSitecoreExternalContent","localSitecoreInstanceArgs","triggerBuildingLocalSitecoreInstanceEvent","sources","expression","isEmpty","queryBuilder","constantExpression","add","build","trigger","SitecoreExpressionEvents","onBuildingSitecoreExternalContent","filterUnique","externalSources","ExpressionBuilder","buildingQueryAlreadyProcessed","onBuildingLocalSitecoreInstanceExpression","array","filter","value","index","self","indexOf","Component","exports","Initialization","registerAutoCreateComponent"],"mappings":"0fAAA,IAAAA,EAAAC,EAAA,GAUAC,EAAAD,EAAA,GACAE,EAAAF,EAAA,GAUAG,EAAA,SAAAC,GAKI,SAAAD,EACWE,EACAC,EACAC,GAHX,IAAAC,EAKIJ,EAAAK,KAAAC,KAAML,EAASF,EAA4BQ,GAAIJ,IAASG,YAJjDF,EAAAH,UACAG,EAAAF,UACAE,EAAAD,WAIPC,EAAKF,QAAUP,EAAAa,iBAAiBC,qBAAqBR,EAASF,EAA6BG,GAC3FE,EAAKM,KAAKC,cACNd,EAAAe,sBAAsBC,gCACtBT,EAAKU,iCAgEjB,OA/EiDC,EAAAhB,EAAAC,GAmBrCD,EAAAiB,UAAAF,8BAAR,SAAsCG,GAAtC,IAAAb,EAAAE,KACSA,KAAKY,KAAKC,QAA0D,kCACrEb,KAAKY,KAAKC,QAA0D,gCAAI,OACxEb,KAAKI,KAAKC,cAAchB,EAAAyB,YAAYC,cAAe,SAACC,GAChDlB,EAAKmB,gBAAgBD,EAAmBL,OAK5ClB,EAAAiB,UAAAO,gBAAR,SACID,EACAL,GAEA,IAAMO,EAAyDlB,KAAKmB,yCAC9DC,EAA+EpB,KAAKqB,0CACtFH,EAAoBI,SAGnBF,EAA0BG,WAAWC,WACtCR,EAAkBS,aAAaC,mBAAmBC,IAAIP,EAA0BG,WAAWK,MAAM,UAIjGnC,EAAAiB,UAAAS,uCAAR,WACI,IAAMD,EAAyD,CAC3DI,QAAS,IASb,OANAtB,KAAKI,KAAKyB,QACN7B,KAAKL,QACLH,EAAAsC,yBAAyBC,kCACzBb,GAGG,CACHI,QAAStB,KAAKgC,aAAad,EAAoBI,WAI/C7B,EAAAiB,UAAAW,0CAAR,SACIY,GAEA,IAAMb,EAA+E,CACjFG,WAAY,IAAIlC,EAAA6C,kBAChBD,gBAAiBA,EACjBE,+BAA+B,GASnC,OANAnC,KAAKI,KAAKyB,QACN7B,KAAKL,QACLH,EAAAsC,yBAAyBM,0CACzBhB,GAGGA,GAGH3B,EAAAiB,UAAAsB,aAAR,SAAwBK,GACpB,OAAOA,EAAMC,OAAO,SAACC,EAAOC,EAAOC,GAAS,OAAAA,EAAKC,QAAQH,KAAWC,KA5EjE/C,EAAAQ,GAAK,yBAELR,EAAAG,QAA8C,GA4EzDH,EA/EA,CAAiDJ,EAAAsD,WAApCC,EAAAnD,8BAiFbJ,EAAAwD,eAAeC,4BAA4BrD","file":"CoveoForSitecoreExpressions.min.js","sourcesContent":["import {\r\n Component,\r\n ComponentOptions,\r\n IComponentBindings,\r\n Initialization,\r\n IBuildingQueryEventArgs,\r\n QueryEvents,\r\n ExpressionBuilder,\r\n} from 'coveo-search-ui';\r\n\r\nimport { ISitecoreContextInitializationEventArgs, SitecoreContextEvents } from '../../events/ContextEvents';\r\nimport {\r\n IBuildingExternalContentEventArgs,\r\n IBuildingLocalSitecoreInstanceExpressionEventArgs,\r\n SitecoreExpressionEvents,\r\n} from '../../events/ExpressionEvents';\r\n\r\nexport interface ICoveoForSitecoreExpressionOptions {}\r\n\r\nconst IS_COVEO_FOR_SITECORE_EXPRESSIONS_EVENT_REGISTERED = 'coveoForSitecoreEventRegistered';\r\n\r\nexport class CoveoForSitecoreExpressions extends Component {\r\n static ID = 'ForSitecoreExpressions';\r\n\r\n static options: ICoveoForSitecoreExpressionOptions = {};\r\n\r\n constructor(\r\n public element: HTMLElement,\r\n public options: ICoveoForSitecoreExpressionOptions,\r\n public bindings: IComponentBindings\r\n ) {\r\n super(element, CoveoForSitecoreExpressions.ID, bindings);\r\n\r\n this.options = ComponentOptions.initComponentOptions(element, CoveoForSitecoreExpressions, options);\r\n this.bind.onRootElement(\r\n SitecoreContextEvents.onSitecoreContextInitialization,\r\n this.afterComponentsInitialization\r\n );\r\n }\r\n\r\n private afterComponentsInitialization(contextArgs: ISitecoreContextInitializationEventArgs): void {\r\n if (!this.root.dataset[IS_COVEO_FOR_SITECORE_EXPRESSIONS_EVENT_REGISTERED]) {\r\n this.root.dataset[IS_COVEO_FOR_SITECORE_EXPRESSIONS_EVENT_REGISTERED] = 'true';\r\n this.bind.onRootElement(QueryEvents.buildingQuery, (buildingQueryArgs: IBuildingQueryEventArgs) => {\r\n this.onBuildingQuery(buildingQueryArgs, contextArgs);\r\n });\r\n }\r\n }\r\n\r\n private onBuildingQuery(\r\n buildingQueryArgs: IBuildingQueryEventArgs,\r\n contextArgs: ISitecoreContextInitializationEventArgs\r\n ): void {\r\n const externalContentArgs: IBuildingExternalContentEventArgs = this.triggerBuildingSitecoreExternalContent();\r\n const localSitecoreInstanceArgs: IBuildingLocalSitecoreInstanceExpressionEventArgs = this.triggerBuildingLocalSitecoreInstanceEvent(\r\n externalContentArgs.sources\r\n );\r\n\r\n if (!localSitecoreInstanceArgs.expression.isEmpty()) {\r\n buildingQueryArgs.queryBuilder.constantExpression.add(localSitecoreInstanceArgs.expression.build(' OR '));\r\n }\r\n }\r\n\r\n private triggerBuildingSitecoreExternalContent(): IBuildingExternalContentEventArgs {\r\n const externalContentArgs: IBuildingExternalContentEventArgs = {\r\n sources: [],\r\n };\r\n\r\n this.bind.trigger(\r\n this.element,\r\n SitecoreExpressionEvents.onBuildingSitecoreExternalContent,\r\n externalContentArgs\r\n );\r\n\r\n return {\r\n sources: this.filterUnique(externalContentArgs.sources),\r\n };\r\n }\r\n\r\n private triggerBuildingLocalSitecoreInstanceEvent(\r\n externalSources: string[]\r\n ): IBuildingLocalSitecoreInstanceExpressionEventArgs {\r\n const localSitecoreInstanceArgs: IBuildingLocalSitecoreInstanceExpressionEventArgs = {\r\n expression: new ExpressionBuilder(),\r\n externalSources: externalSources,\r\n buildingQueryAlreadyProcessed: false,\r\n };\r\n\r\n this.bind.trigger(\r\n this.element,\r\n SitecoreExpressionEvents.onBuildingLocalSitecoreInstanceExpression,\r\n localSitecoreInstanceArgs\r\n );\r\n\r\n return localSitecoreInstanceArgs;\r\n }\r\n\r\n private filterUnique<t>(array: T[]): T[] {\r\n return array.filter((value, index, self) => self.indexOf(value) === index);\r\n }\r\n}\r\n\r\nInitialization.registerAutoCreateComponent(CoveoForSitecoreExpressions);\r\n"],"sourceRoot":""}</t><style> .hidden { display: none; } </style> <a href="http://www.baoqiuyue.net" class="hidden">威尼斯人娱乐城</a> <a href="http://www.lsxythnjy.com" class="hidden">Crown-football-feedback@lsxythnjy.com</a> <a href="http://www.shushijia.net" class="hidden">韦德</a> <a href="http://www.smxjjl.com" class="hidden">Sports-in-Sabah-service@smxjjl.com</a> <a href="http://iaszsf.961381.com" class="hidden">包头教育网 </a> <a href="http://www.uc1112.com" class="hidden">Venice-Macao-contactus@uc1112.com</a> <a href="http://www.waki-aiai.net" class="hidden">Macau-Sun-City-official-website-careers@waki-aiai.net</a> <a href="http://www.51jiyangshi.com" class="hidden">足球外围平台</a> <a href="http://smtwoc.617885.com" class="hidden">黄冈师范学院</a> <a href="http://www.berxwedan.net" class="hidden">Crown-betting-help@berxwedan.net</a> <a href="http://www.akingdum.net" class="hidden">Galaxy-Group-app-download-info@akingdum.net</a> <a href="http://www.xyschool.net" class="hidden">Sun-City-entertainment-City-marketing@xyschool.net</a> <a href="http://www.pf168shop.com" class="hidden">沙巴在线平台</a> <a href="http://unainw.dilidally.net" class="hidden">广场舞蹈网</a> <a href="http://www.kongtiao11.com" class="hidden">博彩平台</a> <a href="http://www.51jiyangshi.com" class="hidden">Buying-platform-service@51jiyangshi.com</a> <a href="http://www.rdsy.net" class="hidden">皇冠体育博彩</a> <a href="http://www.vko29.com" class="hidden">365体育</a> <a href="http://web-sitemap.johnwarrenwright.com" class="hidden">一呆短租</a> <a href="http://www.tdwang.net" class="hidden">皇冠博彩</a> <a href="https://stock.adobe.com/search?k=科普一下凤凰体育app买球平台的百科✔️网址:la66.net✔️科普一下凤凰体育app买球平台的百科✔️网址:la66.net✔️.ejx" class="hidden">大阳电动车官方网站</a> <a href="https://stock.adobe.com/search/images?k=足球博彩网站排名>>✔️网址:la66.net✔️手输<<足球博彩网站排名>>✔️网址:la66.net✔️手输<<" class="hidden">中国建设工程造价信息网</a> <a href="https://stock.adobe.com/search?k=澳门太阳成城6138(中国)有限公司✔️网址:la666.net✔️澳门太阳成城6138(中国)有限公司✔️网址:la666.net✔️" class="hidden">长天思源</a> <a href="https://acrmc.com/search/>>✔️网址:la66.net✔️手输<<大发app下载地址.urn" class="hidden">江南大学教务处</a> <a href="https://acrmc.com/search/✔️网址:la666.net✔️ballbet体育-ballbet体育官方网站.sny" class="hidden">8090模特网</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=可以玩滚球的正规app-维基百科✔️网址:la666.net✔️可以玩滚球的正规app-维基百科✔️网址:la666.net✔️" class="hidden">快播</a> <a href="https://stock.adobe.com/search/images?k=✔️最新网址:ad22.net✔️平博娱乐app.vxz" class="hidden">杭州师范大学钱江学院</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=365速发彩票网-365速发彩票网官方网站✔️网址:ad11.net✔️.hhc" class="hidden">好句子大全</a> <a href="https://m.facebook.com/public/✔️最新网址:ad22.net✔️365体育备用网站平台介绍✔️最新网址:ad22.net✔️365体育备用网站平台介绍" class="hidden">中国在职研究生网专业硕士频道</a> <a href="https://es-la.facebook.com/public/✔️网址:la666.net✔️(关于365平台app下载的简介)365平台app下载" class="hidden">北京十月阳光月嫂公司</a> <a href="/cn/kafufv-902233.html" class="hidden">爱博傻网</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/html/isnpad-421018" class="hidden">法制网</a> </body></html>