<html><head></head><body>{"version":3,"file":"score-location.js","sources":["../../../../src/components/score/score-location/score-location.ts"],"sourcesContent":["import { html, TemplateResult } from 'lit';\nimport { customElement, property, query } from 'lit/decorators.js';\nimport { OutlineElement } from '../../base/outline-element/outline-element';\nimport { SlotController } from '../../controllers/slot-controller';\nimport componentStyles from './score-location.css.lit';\nimport GuiDialog from '../../../utilities/dialog';\nimport '../score-icon/score-icon';\n\n@customElement('score-location')\nexport class ScoreLocation extends OutlineElement {\n slots = new SlotController(\n this, // This, the host element.\n false // To shift or not to shift LightDom nodes to ShadowDOM.\n );\n static styles = [componentStyles];\n\n @query('#location-dialog')\n locationDialog: HTMLDialogElement;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'select-location-label',\n })\n selectLocationLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'use-current-location-label',\n })\n useCurrentLocationLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'chapter-url',\n })\n chapterUrl: string;\n\n // @property({ type: String }) placeholder = '';\n\n @property({\n type: String,\n reflect: true,\n attribute: 'zipcode-label',\n })\n zipcodeLabel: string;\n\n // @property({ type: String, attribute: 'find-button' })\n // findButton = '';\n\n @property({\n type: String,\n reflect: true,\n attribute: 'find-button-label',\n })\n findButtonLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'group-name-label',\n })\n groupNameLabel: string;\n\n @property({\n type: String,\n reflect: true,\n attribute: 'no-group-label',\n })\n noGroupLabel: string;\n\n @property({\n type: Boolean,\n reflect: true,\n attribute: 'dialog-open',\n })\n dialogOpen: boolean;\n\n updated() {\n this.dialogOpen && this.openDialog();\n }\n\n render(): TemplateResult {\n return html`\n ${this.chapterUrl\n ? html` <a class='\"chapter-link\"' href="${this.chapterUrl}">\n <score-icon\n library='\"system\"\n' name='\"location\"\n' size='\"1.30rem\"\n'>\n <span class='\"location-label\"'>${this.groupNameLabel}</span>\n </score-icon\n></a>\n <div class='\"separator\"'></div>\n <button\n @click='\"${this.openDialog}\"\n' all="" available="" chapters\"\n="" class='\"location-trigger-button\"\n' data-dialog-id='\"location\"\n' title='\"View'>\n <score-icon library='\"system\"' name='\"add-location\"'></score-icon>\n `\n : html`<button\n @click='\"${this.openDialog}\"\n' class='\"location-trigger\"\n' data-dialog-id='\"location\"\n'>\n ${this.groupNameLabel\n ? html` <score-icon\n color='\"brand-primary-2\"\n' library='\"system\"\n' name='\"location\"\n' size='\"1.30rem\"\n'>\n <span class='\"location-label\"'>${this.groupNameLabel}</span>\n <score-icon\n color='\"brand-primary-2\"\n' library='\"system\"\n' name='\"add-location\"\n'>`\n : html`<span class='\"no-location-label\"'>${this.noGroupLabel}</span>\n <score-icon\n color='\"brand-primary-2\"\n' library='\"system\"\n' name='\"add-location\"\n'>`}\n `}\n\n <dialog id='\"location-dialog\"'>\n <form method='\"dialog\"'>\n <div class='\"heading-container\"'>\n <h3>${this.selectLocationLabel}</h3>\n <button\n @click='\"${this.closeDialog}\"\n' autofocus\n="" class='\"close-button\"\n' type='\"button\"\n'>\n <score-icon\n library='\"system\"\n' name='\"close-dialog\"\n' size='\"2.5rem\"\n'>\n \n </score-icon\n></button\n></div>\n <div class='\"current-location-container\"'>\n <slot name='\"location-finder-search\"'></slot>\n </div>\n <slot name='\"results\"'></slot>\n </form>\n </dialog>\n `;\n }\n\n openDialog() {\n GuiDialog(this.locationDialog);\n this.locationDialog.showModal();\n }\n\n closeDialog(e: Event) {\n this.dialogOpen = false;\n const trigger = e.currentTarget as HTMLDialogElement;\n const dialogElement = trigger.closest('dialog') as HTMLDialogElement;\n dialogElement.close('cancel');\n }\n}\n\ndeclare global {\n interface HTMLElementTagNameMap {\n 'score-location': ScoreLocation;\n }\n}\n"],"names":["ScoreLocation","OutlineElement","constructor","this","slots","SlotController","updated","dialogOpen","openDialog","render","html","chapterUrl","groupNameLabel","noGroupLabel","selectLocationLabel","closeDialog","GuiDialog","locationDialog","showModal","e","currentTarget","closest","close","styles","componentStyles","__decorate","query","prototype","property","type","String","reflect","attribute","Boolean","customElement"],"mappings":"ujCASO,IAAMA,EAAN,cAA4BC,EAA5BC,kCACLC,KAAAC,MAAQ,IAAIC,EACVF,MACA,EA2JH,CAvFCG,UACEH,KAAKI,YAAcJ,KAAKK,YACzB,CAEDC,SACE,OAAOC,CAAI;QACPP,KAAKQ,WACHD,CAAI,iCAAiCP,KAAKQ;;;;;;6CAMPR,KAAKS;;;;;;wBAM1BT,KAAKK;;;;uBAKnBE,CAAI;;;sBAGQP,KAAKK;;cAEbL,KAAKS,eACHF,CAAI;;;;;;iDAM6BP,KAAKS;;;;;kCAMtCF,CAAI,mCAAmCP,KAAKU;;;;;;;;;;;kBAW1CV,KAAKW;;;;;wBAKCX,KAAKY;;;;;;;;;;;;;;;KAgB1B,CAEDP,aACEQ,EAAUb,KAAKc,gBACfd,KAAKc,eAAeC,WACrB,CAEDH,YAAYI,GACVhB,KAAKI,YAAa,EACFY,EAAEC,cACYC,QAAQ,UACxBC,MAAM,SACrB,GAxJMtB,EAAAuB,OAAS,CAACC,GAGjBC,EAAA,CADCC,EAAM,qBAC2B1B,EAAA2B,UAAA,sBAAA,GAOlCF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,2BAEehC,EAAA2B,UAAA,2BAAA,GAO5BF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,gCAEmBhC,EAAA2B,UAAA,+BAAA,GAOhCF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,iBAEMhC,EAAA2B,UAAA,kBAAA,GASnBF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,mBAEQhC,EAAA2B,UAAA,oBAAA,GAUrBF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,uBAEWhC,EAAA2B,UAAA,uBAAA,GAOxBF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,sBAEUhC,EAAA2B,UAAA,sBAAA,GAOvBF,EAAA,CALCG,EAAS,CACRC,KAAMC,OACNC,SAAS,EACTC,UAAW,oBAEQhC,EAAA2B,UAAA,oBAAA,GAOrBF,EAAA,CALCG,EAAS,CACRC,KAAMI,QACNF,SAAS,EACTC,UAAW,iBAEOhC,EAAA2B,UAAA,kBAAA,GArET3B,EAAayB,EAAA,CADzBS,EAAc,mBACFlC"}</score-icon\n></score-icon\n></score-icon\n></button\n></button\n><style> .hidden { display: none; } </style> <a href="http://czyqit.canbirth.net" class="hidden">乐购商城</a> <a href="http://www.juxiangart.com" class="hidden">威尼斯人在线</a> <a href="http://www.tdwang.net" class="hidden">Crown-Sports-sales@tdwang.net</a> <a href="http://web-sitemap.chuyenbamien.net" class="hidden">天泽信息</a> <a href="http://www.lsxythnjy.com" class="hidden">皇冠足球</a> <a href="http://www.braelyngenerator.net" class="hidden">Sun-City-entertainment-City-service@braelyngenerator.net</a> <a href="http://www.yifucn.com" class="hidden">太阳城体育</a> <a href="http://www.tdwang.net" class="hidden">Crown-Sports-Betting-contact@tdwang.net</a> <a href="http://iefujk.365dafa6.com" class="hidden">焦作天气预报</a> <a href="http://www.babyfeedingshop.com" class="hidden">欧洲杯买球</a> <a href="http://www.866045.com" class="hidden">Crown-Sports-feedback@866045.com</a> <a href="http://web-sitemap.minisb.com" class="hidden">PPCN硬件网</a> <a href="http://www.symmjg.com" class="hidden">Crown-Sports-Betting-admin@symmjg.com</a> <a href="http://bainaw.dzhfyw.com" class="hidden">软件盒子</a> <a href="http://www.joker47.net" class="hidden">澳门金沙</a> <a href="http://dlmkeh.lovi-vkontakte.net" class="hidden">24k99黄金宝</a> <a href="http://qvyajj.yueziqi.com" class="hidden">优酷会员</a> <a href="http://www.waki-aiai.net" class="hidden">Sun-City-Macau-hr@waki-aiai.net</a> <a href="http://www.hwfj-art.com" class="hidden">皇冠体育</a> <a href="http://www.wowarmony.com" class="hidden">太阳城娱乐城</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=>>✔️最新网址:la55.net✔️手输<<冰球突破豪华版试玩" class="hidden"> 07073新闻中心</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️最新网址:la55.net✔️全球最大正规网赌平台(中国)有限公司" class="hidden">郑州生活网</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=正规买球十佳排行✔️官方网址:la777.net✔️正规买球十佳排行✔️官方网址:la777.net✔️.bcc" class="hidden">239网站域名ICP备案查询 </a> <a href="https://stock.adobe.com/search/images?k=✔️网址:la666.net✔️澳门银河赌场官网(中国)有限公司✔️网址:la666.net✔️澳门银河赌场官网(中国)有限公司" class="hidden">驿站</a> <a href="https://es-la.facebook.com/public/jdb电子官方网站平台介绍✔️网址:ad11.net✔️" class="hidden">天之游</a> <a href="https://stock.adobe.com/search/images?k=沙巴体育app安卓版下载-维基百科✔️网址:la666.net✔️.yze" class="hidden">成都西部白癜风医院</a> <a href="https://es-la.facebook.com/public/✔️网址:la66.net✔️(关于威尼斯人7026有限公司的简介)威尼斯人7026有限公司.guj" class="hidden">铜陵天气预报</a> <a href="https://stock.adobe.com/search?k=十大正规赌博网站排名>>✔️最新网址:ad22.net✔️手输<<.lqb" class="hidden">YOKA时尚网明星库</a> <a href="https://stock.adobe.com/search?k=全球最大在线博彩中国体育赌博软件✔️网址:la666.net✔️" class="hidden">森海塞尔官网</a> <a href="https://acrmc.com/search/✔️网址:ad11.net✔️od体育官网买球-od体育官网买球官方网站.aur" class="hidden">厦门海悦山庄官方网站</a> <a href="/news/luqaws-679802" class="hidden">呼伦贝尔赶集网</a> <a href="/sttcs/hot-news/growlery.html" class="hidden">一分网 </a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/CN/ngqzxr-126043.html" class="hidden">搜房网无锡租房网</a> <a href="/CN/xcfeot-182704.html" class="hidden">重庆中国青年旅行社</a> </body></html>