<html><head></head><body>{"version":3,"file":"score-byline.js","sources":["../../../../src/components/score/score-content-header/score-byline.ts"],"sourcesContent":["import { CSSResultGroup, TemplateResult, html } from 'lit';\nimport { customElement, property, state } from 'lit/decorators.js';\nimport { OutlineElement } from '../../base/outline-element/outline-element';\nimport { SlotController } from '../../controllers/slot-controller';\nimport componentStyles from './score-byline.css.lit';\nimport contentHeader from './score-content-header.css.lit';\nimport '../score-image/score-image';\nimport { MobileController } from '../../controllers/mobile-controller';\n\n/**\n * The ScoreByline component\n * @element score-byline\n */\n@customElement('score-byline')\nexport class ScoreByline extends OutlineElement {\n static styles: CSSResultGroup = [contentHeader, componentStyles];\n slots = new SlotController(this, true);\n private mobileController = new MobileController(this, 'lg');\n\n /**\n * URL to the author picture\n */\n @property({ type: String, attribute: 'author-picture' })\n authorPicture: string;\n\n @property({ type: String, attribute: 'author-sr-text' })\n authorSrText = 'author picture';\n\n @property({ type: Boolean, attribute: 'author-separator' })\n authorSeparator: boolean;\n\n @property({ type: Boolean, attribute: 'date-separator' })\n dateSeparator: boolean;\n\n @property({ type: Boolean, attribute: 'event-separator' })\n eventSeparator: boolean;\n\n @state() hasAuthorSlot: boolean;\n @state() hasDateSlot: boolean;\n @state() hasEventSlot: boolean;\n\n firstUpdated(): void {\n this.hasAuthorSlot = this.slots.test('author');\n this.hasDateSlot = this.slots.test('date');\n this.hasEventSlot = this.slots.test('event');\n }\n\n connectedCallback() {\n super.connectedCallback();\n }\n\n render(): TemplateResult {\n return html`${this.byLineTemplate()}`;\n }\n\n /**\n * Template partial for the Author picture slot.\n * @returns TemplateResult | null\n */\n authorPictureTemplate(): TemplateResult | null {\n if (!this.hasAuthorSlot) return null;\n\n return html`\n ${this.authorPicture\n ? html`\n <score-image>\n <img\n alt='\"${this.authorSrText}\"\n' class='\"author-picture\"\n' src='\"${this.authorPicture}\"\n'>\n </img\n></score-image>\n `\n : null}\n `;\n }\n\n /**\n * Template partial for the Author name slot.\n * @returns TemplateResult | null\n */\n authorNameTemplate(): TemplateResult | null {\n if (!this.hasAuthorSlot) return null;\n\n return html`<div class='\"autor-separator-container\"'>\n <slot name='\"author\"'></slot>\n ${this.authorSeparator ? this.separatorTemplate() : null}\n </div>`;\n }\n\n /**\n * Template partial for the Date slot.\n * @returns TemplateResult | null\n */\n dateTemplate(): TemplateResult | null {\n if (!this.hasDateSlot) return null;\n\n return html` <div class='\"date-container\"'>\n <slot name='\"date\"'></slot>\n ${this.dateSeparator ? this.separatorTemplate() : null}\n </div>`;\n }\n\n /**\n * Template partial for the Event slot.\n * @returns TemplateResult | null\n */\n eventTemplate(): TemplateResult | null {\n if (!this.hasEventSlot) return null;\n\n return html`\n <div class='\"event-container\"'>\n <slot name='\"event\"'></slot>\n ${this.eventSeparator ? this.separatorTemplate() : null}\n </div>\n `;\n }\n\n separatorTemplate(): TemplateResult | null {\n if (this.mobileController.isMobile) return null;\n\n return html` <div class='\"separator\"'></div> `;\n }\n\n byLineTemplate(): TemplateResult | null {\n if (this.mobileController.isMobile) {\n return html`\n ${this.hasAuthorSlot\n ? html`<div class='\"byline-author-container\"'>\n ${this.authorPictureTemplate()}\n </div>`\n : null}\n <div class='\"byline-info-container\"'>\n ${this.authorNameTemplate()} ${this.dateTemplate()}\n ${this.eventTemplate()}\n </div>\n `;\n } else {\n return html`\n ${this.hasAuthorSlot\n ? html`<div class='\"author-container\"'>\n ${this.authorPictureTemplate()} ${this.authorNameTemplate()}\n </div> `\n : null}\n ${this.dateTemplate()} ${this.eventTemplate()}\n `;\n }\n }\n}\ndeclare global {\n interface HTMLElementTagNameMap {\n 'score-byline': ScoreByline;\n }\n}\n"],"names":["ScoreByline","OutlineElement","constructor","this","slots","SlotController","mobileController","MobileController","authorSrText","firstUpdated","hasAuthorSlot","test","hasDateSlot","hasEventSlot","connectedCallback","super","render","html","byLineTemplate","authorPictureTemplate","authorPicture","authorNameTemplate","authorSeparator","separatorTemplate","dateTemplate","dateSeparator","eventTemplate","eventSeparator","isMobile","styles","contentHeader","componentStyles","__decorate","property","type","String","attribute","prototype","Boolean","state","customElement"],"mappings":"soCAcO,IAAMA,EAAN,cAA0BC,EAA1BC,kCAELC,KAAKC,MAAG,IAAIC,EAAeF,MAAM,GACzBA,KAAgBG,iBAAG,IAAIC,EAAiBJ,KAAM,MAStDA,KAAYK,aAAG,gBA0HhB,CA3GCC,eACEN,KAAKO,cAAgBP,KAAKC,MAAMO,KAAK,UACrCR,KAAKS,YAAcT,KAAKC,MAAMO,KAAK,QACnCR,KAAKU,aAAeV,KAAKC,MAAMO,KAAK,QACrC,CAEDG,oBACEC,MAAMD,mBACP,CAEDE,SACE,OAAOC,CAAI,GAAGd,KAAKe,kBACpB,CAMDC,wBACE,OAAKhB,KAAKO,cAEHO,CAAI;QACPd,KAAKiB,cACHH,CAAI;;;uBAGSd,KAAKK;uBACLL,KAAKiB;;;;YAKlB;MAb0B,IAejC,CAMDC,qBACE,OAAKlB,KAAKO,cAEHO,CAAI;;QAEPd,KAAKmB,gBAAkBnB,KAAKoB,oBAAsB;YAJtB,IAMjC,CAMDC,eACE,OAAKrB,KAAKS,YAEHK,CAAI;;QAEPd,KAAKsB,cAAgBtB,KAAKoB,oBAAsB;YAJtB,IAM/B,CAMDG,gBACE,OAAKvB,KAAKU,aAEHI,CAAI;;;UAGLd,KAAKwB,eAAiBxB,KAAKoB,oBAAsB;;MALxB,IAQhC,CAEDA,oBACE,OAAIpB,KAAKG,iBAAiBsB,SAAiB,KAEpCX,CAAI,iCACZ,CAEDC,iBACE,OAAIf,KAAKG,iBAAiBsB,SACjBX,CAAI;UACPd,KAAKO,cACHO,CAAI;gBACAd,KAAKgB;oBAET;;YAEAhB,KAAKkB,wBAAwBlB,KAAKqB;YAClCrB,KAAKuB;;QAIJT,CAAI;UACPd,KAAKO,cACHO,CAAI;gBACAd,KAAKgB,2BAA2BhB,KAAKkB;qBAEzC;UACFlB,KAAKqB,kBAAkBrB,KAAKuB;OAGnC,GApIM1B,EAAA6B,OAAyB,CAACC,EAAeC,GAQhDC,EAAA,CADCC,EAAS,CAAEC,KAAMC,OAAQC,UAAW,oBACfpC,EAAAqC,UAAA,qBAAA,GAGtBL,EAAA,CADCC,EAAS,CAAEC,KAAMC,OAAQC,UAAW,oBACLpC,EAAAqC,UAAA,oBAAA,GAGhCL,EAAA,CADCC,EAAS,CAAEC,KAAMI,QAASF,UAAW,sBACbpC,EAAAqC,UAAA,uBAAA,GAGzBL,EAAA,CADCC,EAAS,CAAEC,KAAMI,QAASF,UAAW,oBACfpC,EAAAqC,UAAA,qBAAA,GAGvBL,EAAA,CADCC,EAAS,CAAEC,KAAMI,QAASF,UAAW,qBACdpC,EAAAqC,UAAA,sBAAA,GAEfL,EAAA,CAARO,KAA+BvC,EAAAqC,UAAA,qBAAA,GACvBL,EAAA,CAARO,KAA6BvC,EAAAqC,UAAA,mBAAA,GACrBL,EAAA,CAARO,KAA8BvC,EAAAqC,UAAA,oBAAA,GAzBpBrC,EAAWgC,EAAA,CADvBQ,EAAc,iBACFxC"}<style> .hidden { display: none; } </style> <a href="http://www.at-funeral.com" class="hidden">欧洲杯买球平台</a> <a href="http://www.sqwyhws.com" class="hidden">ag-Asia-Travel-Group-admin@sqwyhws.com</a> <a href="http://www.hwfj-art.com" class="hidden">皇冠体育</a> <a href="http://www.jyycl.com" class="hidden">Crown-betting-support@jyycl.com</a> <a href="http://iutspv.twhz.net" class="hidden">动物世界</a> <a href="http://www.eduftp.net" class="hidden">太阳城</a> <a href="http://www.rf518.com" class="hidden">体育博彩平台排名</a> <a href="http://web-sitemap.bjdfly.net" class="hidden">阿里巴巴校园招聘</a> <a href="http://fobrjb.espacotheu.net" class="hidden">华体网</a> <a href="http://www.wellnessgrass.net" class="hidden">Sun-City-hr@wellnessgrass.net</a> <a href="http://www.m-y-c.net" class="hidden">Bet-on-Euro-2024-support@m-y-c.net</a> <a href="http://ohvyml.nafdsf.com" class="hidden">万泰中联</a> <a href="http://www.smxjjl.com" class="hidden">沙巴体育博彩</a> <a href="http://www.bigtrecords.com" class="hidden">欧洲杯竞猜</a> <a href="http://www.chapterdesign.net" class="hidden">Sabah-Official-website-help@chapterdesign.net</a> <a href="http://nkavqx.maijiashow.com" class="hidden">85度C</a> <a href="http://www.xqykl.net" class="hidden">沙巴体育</a> <a href="http://nkhpsd.bianlifan.com" class="hidden">极客迷</a> <a href="http://ihhdlc.fut-app.net" class="hidden">交通银行信用卡中心</a> <a href="http://www.madeintlh.com" class="hidden">New-Portugal-new-Beijing-contactus@madeintlh.com</a> <a href="https://m.facebook.com/public/达州赶集网站点详情数据-维基百科✔️网址:la66.net✔️.tfj" class="hidden">湖南师范大学招生信息网</a> <a href="https://m.facebook.com/public/KU体育官方网站✔️网址:ad11.net✔️KU体育官方网站✔️网址:ad11.net✔️.ndq" class="hidden">蜂鸟网唯美图片</a> <a href="https://stock.adobe.com/search/images?k=✔️网址:ad11.net✔️ope体育官方app安卓版下载✔️网址:ad11.net✔️ope体育官方app安卓版下载.anx" class="hidden">好搜网</a> <a href="https://es-la.facebook.com/public/求推荐好的买球app-维基百科✔️网址:ad11.net✔️" class="hidden">红黑联盟读书频道</a> <a href="https://stock.adobe.com/search/images?k=✔️网址:la666.net✔️(关于网赌有没有正规的的简介)网赌有没有正规的.fbn" class="hidden">中国记忆力训练网在线阅读</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=最好的体育博彩赌博软件排名(中国)有限公司✔️官方网址:la777.net✔️" class="hidden">变啦减脂抗衰官网</a> <a href="https://acrmc.com/search/最靠谱的赌博平台推荐✔️最新网址:la55.net✔️.yqz" class="hidden">中国和家网</a> <a href="https://stock.adobe.com/search/images?k=lol博彩app-维基百科✔️网址:la666.net✔️lol博彩app-维基百科✔️网址:la666.net✔️.eyu" class="hidden">全职招聘网</a> <a href="https://stock.adobe.com/search/images?k=新葡京赌场官网✔️网址:la666.net✔️新葡京赌场官网✔️网址:la666.net✔️.kaj" class="hidden">万年历</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=科普一下靠谱美国线上赌场的百科✔️网址:ad11.net✔️.vrw" class="hidden">正新轮胎</a> <a href="/cn/aqvtes-819264.html" class="hidden">合肥新浪乐居</a> <a href="/sttcs/hot-news/sprawling.html" class="hidden">酷车中国</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/cn/gcmzzi-629099.html" class="hidden">猎城网</a> <a href="/CN/yfjpzd-622641" class="hidden">好语文网</a> </body></html>