diff --git a/assets/js/joe.short.js b/assets/js/joe.short.js index cd0c00d..a3c176f 100644 --- a/assets/js/joe.short.js +++ b/assets/js/joe.short.js @@ -1,268 +1,326 @@ -document.addEventListener('DOMContentLoaded', () => { - $('.joe_detail__article p:empty').remove(); +/* 获取直属子元素 */ +function getChildren(el, className) { + for (let item of el.children) if (item.className === className) return item; + return null; +} - /* OK */ - class JoeMtitle extends HTMLElement { - constructor() { - super(); - this.innerHTML = ` +document.addEventListener('DOMContentLoaded', () => { + $('.joe_detail__article p:empty').remove(); + + /* + * + * OK + * + */ + class JoeMtitle extends HTMLElement { + constructor() { + super(); + this.innerHTML = ` ${this.getAttribute('title') || '默认标题'} `; - } - } - window.customElements.define('joe-mtitle', JoeMtitle); + } + } + window.customElements.define('joe-mtitle', JoeMtitle); - /* OK */ - class JoeDplayer extends HTMLElement { - constructor() { - super(); - this.options = { - src: this.getAttribute('src'), - player: this.getAttribute('player') - }; - this.render(); - } - render() { - if (this.options.src) this.innerHTML = ``; - else this.innerHTML = '播放地址未填写!'; - } - } - window.customElements.define('joe-dplayer', JoeDplayer); + /* + * + * OK + * + */ + class JoeDplayer extends HTMLElement { + constructor() { + super(); + this.options = { + src: this.getAttribute('src'), + player: this.getAttribute('player') + }; + this.render(); + } + render() { + if (this.options.src) this.innerHTML = ``; + else this.innerHTML = '播放地址未填写!'; + } + } + window.customElements.define('joe-dplayer', JoeDplayer); - /* OK */ - class JoeBilibili extends HTMLElement { - constructor() { - super(); - this.bvid = this.getAttribute('bvid'); - this.render(); - } - render() { - if (this.bvid) this.innerHTML = ``; - else this.innerHTML = 'Bvid未填写!'; - } - } - window.customElements.define('joe-bilibili', JoeBilibili); + /* + * + * OK + * + */ + class JoeBilibili extends HTMLElement { + constructor() { + super(); + this.bvid = this.getAttribute('bvid'); + this.render(); + } + render() { + if (this.bvid) this.innerHTML = ``; + else this.innerHTML = 'Bvid未填写!'; + } + } + window.customElements.define('joe-bilibili', JoeBilibili); - /* OK */ - class JoeMp3 extends HTMLElement { - constructor() { - super(); - this.options = { - name: this.getAttribute('name'), - url: this.getAttribute('url'), - theme: this.getAttribute('theme') || '#1989fa', - cover: this.getAttribute('cover'), - autoplay: this.getAttribute('autoplay') ? true : false - }; - this.render(); - } - render() { - if (!this.options.url) return (this.innerHTML = '音频地址未填写!'); - this.innerHTML = ''; - new APlayer({ - container: this.querySelector('span'), - theme: this.options.theme, - autoplay: this.options.autoplay, - audio: [ - { - url: this.options.url, - name: this.options.name, - cover: this.options.cover - } - ] - }); - } - } - window.customElements.define('joe-mp3', JoeMp3); + /* + * + * OK + * + */ + class JoeMp3 extends HTMLElement { + constructor() { + super(); + this.options = { + name: this.getAttribute('name'), + url: this.getAttribute('url'), + theme: this.getAttribute('theme') || '#1989fa', + cover: this.getAttribute('cover'), + autoplay: this.getAttribute('autoplay') ? true : false + }; + this.render(); + } + render() { + if (!this.options.url) return (this.innerHTML = '音频地址未填写!'); + this.innerHTML = ''; + new APlayer({ + container: getChildren(this, '_content'), + theme: this.options.theme, + autoplay: this.options.autoplay, + audio: [ + { + url: this.options.url, + name: this.options.name, + cover: this.options.cover + } + ] + }); + } + } + window.customElements.define('joe-mp3', JoeMp3); - /* OK */ - class JoeMusic extends HTMLElement { - constructor() { - super(); - this.options = { - id: this.getAttribute('id'), - color: this.getAttribute('color') || '#1989fa', - autoplay: this.getAttribute('autoplay') ? true : false - }; - this.render(); - } - render() { - if (!this.options.id) return (this.innerHTML = '网易云歌曲ID未填写!'); - this.innerHTML = ''; - fetch('https://api.i-meto.com/meting/api?server=netease&type=song&id=' + this.options.id).then(async response => { - const audio = await response.json(); - new APlayer({ - container: this.querySelector('span'), - lrcType: 3, - theme: this.options.color, - autoplay: this.options.autoplay, - audio - }); - }); - } - } - window.customElements.define('joe-music', JoeMusic); + /* + * + * OK + * + */ + class JoeMusic extends HTMLElement { + constructor() { + super(); + this.options = { + id: this.getAttribute('id'), + color: this.getAttribute('color') || '#1989fa', + autoplay: this.getAttribute('autoplay') ? true : false + }; + this.render(); + } + render() { + if (!this.options.id) return (this.innerHTML = '网易云歌曲ID未填写!'); + this.innerHTML = ''; + fetch('https://api.i-meto.com/meting/api?server=netease&type=song&id=' + this.options.id).then(async response => { + const audio = await response.json(); + new APlayer({ + container: getChildren(this, '_content'), + lrcType: 3, + theme: this.options.color, + autoplay: this.options.autoplay, + audio + }); + }); + } + } + window.customElements.define('joe-music', JoeMusic); - /* OK */ - class JoeMlist extends HTMLElement { - constructor() { - super(); - this.options = { - id: this.getAttribute('id'), - color: this.getAttribute('color') || '#1989fa', - autoplay: this.getAttribute('autoplay') ? true : false - }; - this.render(); - } - render() { - if (!this.options.id) return (this.innerHTML = '网易云歌单ID未填写!'); - this.innerHTML = ''; - fetch('https://api.i-meto.com/meting/api?server=netease&type=playlist&id=' + this.options.id).then(async response => { - const audio = await response.json(); - new APlayer({ - container: this.querySelector('span'), - lrcType: 3, - theme: this.options.color, - autoplay: this.options.autoplay, - audio - }); - }); - } - } - window.customElements.define('joe-mlist', JoeMlist); + /* + * + * OK + * + */ + class JoeMlist extends HTMLElement { + constructor() { + super(); + this.options = { + id: this.getAttribute('id'), + color: this.getAttribute('color') || '#1989fa', + autoplay: this.getAttribute('autoplay') ? true : false + }; + this.render(); + } + render() { + if (!this.options.id) return (this.innerHTML = '网易云歌单ID未填写!'); + this.innerHTML = ''; + fetch('https://api.i-meto.com/meting/api?server=netease&type=playlist&id=' + this.options.id).then(async response => { + const audio = await response.json(); + new APlayer({ + container: getChildren(this, '_content'), + lrcType: 3, + theme: this.options.color, + autoplay: this.options.autoplay, + audio + }); + }); + } + } + window.customElements.define('joe-mlist', JoeMlist); - /* OK */ - class JoeAbtn extends HTMLElement { - constructor() { - super(); - this.options = { - icon: this.getAttribute('icon') || '', - color: this.getAttribute('color') || '#ff6800', - href: this.getAttribute('href') || '#', - radius: this.getAttribute('radius') || '17.5px', - content: this.getAttribute('content') || '多彩按钮' - }; - this.innerHTML = ` + /* + * + * OK + * + */ + class JoeAbtn extends HTMLElement { + constructor() { + super(); + this.options = { + icon: this.getAttribute('icon') || '', + color: this.getAttribute('color') || '#ff6800', + href: this.getAttribute('href') || '#', + radius: this.getAttribute('radius') || '17.5px', + content: this.getAttribute('content') || '多彩按钮' + }; + this.innerHTML = ` ${this.options.content} `; - } - } - window.customElements.define('joe-abtn', JoeAbtn); + } + } + window.customElements.define('joe-abtn', JoeAbtn); - /* OK */ - class JoeAnote extends HTMLElement { - constructor() { - super(); - this.options = { - icon: this.getAttribute('icon') || 'fa-download', - href: this.getAttribute('href') || '#', - type: /^secondary$|^success$|^warning$|^error$|^info$/.test(this.getAttribute('type')) ? this.getAttribute('type') : 'secondary', - content: this.getAttribute('content') || '标签按钮' - }; - this.innerHTML = ` + /* + * + * OK + * + */ + class JoeAnote extends HTMLElement { + constructor() { + super(); + this.options = { + icon: this.getAttribute('icon') || 'fa-download', + href: this.getAttribute('href') || '#', + type: /^secondary$|^success$|^warning$|^error$|^info$/.test(this.getAttribute('type')) ? this.getAttribute('type') : 'secondary', + content: this.getAttribute('content') || '标签按钮' + }; + this.innerHTML = ` ${this.options.content} `; - } - } - window.customElements.define('joe-anote', JoeAnote); + } + } + window.customElements.define('joe-anote', JoeAnote); - /* OK */ - class JoeDotted extends HTMLElement { - constructor() { - super(); - this.startColor = this.getAttribute('startColor') || '#ff6c6c'; - this.endColor = this.getAttribute('endColor') || '#1989fa'; - this.innerHTML = ` + /* + * + * OK + * + */ + class JoeDotted extends HTMLElement { + constructor() { + super(); + this.startColor = this.getAttribute('startColor') || '#ff6c6c'; + this.endColor = this.getAttribute('endColor') || '#1989fa'; + this.innerHTML = ` `; - } - } - window.customElements.define('joe-dotted', JoeDotted); + } + } + window.customElements.define('joe-dotted', JoeDotted); - /* OK */ - class JoeHide extends HTMLElement { - constructor() { - super(); - this.render(); - } - render() { - this.innerHTML = '此处内容作者设置了 回复 可见'; - this.$button = this.querySelector('i'); - const $comment = document.querySelector('.joe_comment'); - const $header = document.querySelector('.joe_header'); - if (!$comment || !$header) return; - this.$button.addEventListener('click', () => { - const top = $comment.offsetTop - $header.offsetHeight - 15; - window.scrollTo({ top, behavior: 'smooth' }); - }); - } - } - window.customElements.define('joe-hide', JoeHide); + /* + * + * OK + * + */ + class JoeHide extends HTMLElement { + constructor() { + super(); + this.render(); + } + render() { + this.innerHTML = '此处内容作者设置了 回复 可见'; + this.$button = this.querySelector('.joe_detail__article-hide > i'); + const $comment = document.querySelector('.joe_comment'); + const $header = document.querySelector('.joe_header'); + if (!$comment || !$header) return; + this.$button.addEventListener('click', () => { + const top = $comment.offsetTop - $header.offsetHeight - 15; + window.scrollTo({ top, behavior: 'smooth' }); + }); + } + } + window.customElements.define('joe-hide', JoeHide); - /* OK */ - class JoeCardDefault extends HTMLElement { - constructor() { - super(); - const _temp = this.querySelector('._temp'); - this.options = { - width: this.getAttribute('width') || '100%', - label: this.getAttribute('label') || '卡片标题', - content: _temp.innerHTML.trim().replace(/^(
)|(
)$/g, '') || '卡片内容' - }; - const htmlStr = ` + /* + * + * OK + * + */ + class JoeCardDefault extends HTMLElement { + constructor() { + super(); + const _temp = getChildren(this, '_temp'); + this.options = { + width: this.getAttribute('width') || '100%', + label: this.getAttribute('label') || '卡片标题', + content: _temp.innerHTML.trim().replace(/^(
)|(
)$/g, '') || '卡片内容' + }; + const htmlStr = `
${this.options.label}
${this.options.content}
`; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const span = document.createElement('span'); - span.style.display = 'block'; - span.className = '_content'; - span.innerHTML = htmlStr; - this.appendChild(span); - } - } - } - window.customElements.define('joe-card-default', JoeCardDefault); + if (getChildren(this, '_content')) { + getChildren(this, '_content').innerHTML = htmlStr; + } else { + const span = document.createElement('span'); + span.style.display = 'block'; + span.className = '_content'; + span.innerHTML = htmlStr; + this.appendChild(span); + } + } + } + window.customElements.define('joe-card-default', JoeCardDefault); - /* OK */ - class JoeMessage extends HTMLElement { - constructor() { - super(); - this.options = { - type: /^success$|^info$|^warning$|^error$/.test(this.getAttribute('type')) ? this.getAttribute('type') : 'info', - content: this.getAttribute('content') || '消息内容' - }; - this.innerHTML = ` + /* + * + * OK + * + */ + class JoeMessage extends HTMLElement { + constructor() { + super(); + this.options = { + type: /^success$|^info$|^warning$|^error$/.test(this.getAttribute('type')) ? this.getAttribute('type') : 'info', + content: this.getAttribute('content') || '消息内容' + }; + this.innerHTML = ` ${this.options.content} `; - } - } - window.customElements.define('joe-message', JoeMessage); + } + } + window.customElements.define('joe-message', JoeMessage); - /* OK */ - class JoeProgress extends HTMLElement { - constructor() { - super(); - this.options = { - percentage: /^\d{1,3}%$/.test(this.getAttribute('percentage')) ? this.getAttribute('percentage') : '50%', - color: this.getAttribute('color') || '#ff6c6c' - }; - this.innerHTML = ` + /* + * + * OK + * + */ + class JoeProgress extends HTMLElement { + constructor() { + super(); + this.options = { + percentage: /^\d{1,3}%$/.test(this.getAttribute('percentage')) ? this.getAttribute('percentage') : '50%', + color: this.getAttribute('color') || '#ff6c6c' + }; + this.innerHTML = ` @@ -270,164 +328,181 @@ document.addEventListener('DOMContentLoaded', () => { ${this.options.percentage} `; - } - } - window.customElements.define('joe-progress', JoeProgress); + } + } + window.customElements.define('joe-progress', JoeProgress); - /* OK */ - class JoeCallout extends HTMLElement { - constructor() { - super(); - const _temp = this.querySelector('._temp'); - this.options = { - color: this.getAttribute('color') || '#f0ad4e', - content: _temp.innerHTML.trim().replace(/^(
)|(
)$/g, '') || '标注内容' - }; - const htmlStr = ` + /* + * + * OK + * + */ + class JoeCallout extends HTMLElement { + constructor() { + super(); + const _temp = getChildren(this, '_temp'); + this.options = { + color: this.getAttribute('color') || '#f0ad4e', + content: _temp.innerHTML.trim().replace(/^(
)|(
)$/g, '') || '标注内容' + }; + const htmlStr = `
${this.options.content}
`; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const span = document.createElement('span'); - span.style.display = 'block'; - span.className = '_content'; - span.innerHTML = htmlStr; - this.appendChild(span); - } - } - } - window.customElements.define('joe-callout', JoeCallout); + if (getChildren(this, '_content')) { + getChildren(this, '_content').innerHTML = htmlStr; + } else { + const span = document.createElement('span'); + span.style.display = 'block'; + span.className = '_content'; + span.innerHTML = htmlStr; + this.appendChild(span); + } + } + } + window.customElements.define('joe-callout', JoeCallout); - /* OK */ - class JoeTabs extends HTMLElement { - constructor() { - super(); - const _temp = this.querySelector('._temp'); - let _innerHTML = _temp.innerHTML.trim().replace(/^(
)|(
)$/g, ''); - let navs = ''; - let contents = ''; - _innerHTML.replace(/{tabs-pane([^}]*)}([\s\S]*?){\/tabs-pane}/g, function ($0, $1, $2) { - navs += `
`; - contents += ``; - }); - let htmlStr = ` + /* + * + * OK + * + */ + class JoeTabs extends HTMLElement { + constructor() { + super(); + const _temp = getChildren(this, '_temp'); + let _innerHTML = _temp.innerHTML.trim().replace(/^(
)|(
)$/g, ''); + let navs = ''; + let contents = ''; + _innerHTML.replace(/{tabs-pane([^}]*)}([\s\S]*?){\/tabs-pane}/g, function ($0, $1, $2) { + navs += `
`; + contents += ``; + }); + let htmlStr = `
${navs}
${contents}
`; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const span = document.createElement('span'); - span.className = '_content'; - span.style.display = 'block'; - span.innerHTML = htmlStr; - this.appendChild(span); - } - this.querySelectorAll('.heads .item').forEach((item, index) => { - const label = item.getAttribute('label'); - item.innerHTML = label; - item.addEventListener('click', () => { - this.querySelectorAll('.heads .item').forEach(_item => _item.classList.remove('active')); - this.querySelectorAll('.bodys .item').forEach(_item => (_item.style.display = 'none')); - if (this.querySelector(`.bodys .item[label="${label}"]`)) { - this.querySelector(`.bodys .item[label="${label}"]`).style.display = 'block'; - } - item.classList.add('active'); - }); - if (index === 0) item.click(); - }); - } - } - window.customElements.define('joe-tabs', JoeTabs); + if (getChildren(this, '_content')) { + getChildren(this, '_content').innerHTML = htmlStr; + } else { + const span = document.createElement('span'); + span.className = '_content'; + span.style.display = 'block'; + span.innerHTML = htmlStr; + this.appendChild(span); + } + this.querySelectorAll('.heads > .item').forEach((item, index) => { + const label = item.getAttribute('label'); + item.innerHTML = label; + item.addEventListener('click', () => { + this.querySelectorAll('.heads > .item').forEach(_item => _item.classList.remove('active')); + this.querySelectorAll('.bodys > .item').forEach(_item => (_item.style.display = 'none')); + if (this.querySelector(`.bodys > .item[label="${label}"]`)) { + this.querySelector(`.bodys > .item[label="${label}"]`).style.display = 'block'; + } + item.classList.add('active'); + }); + if (index === 0) item.click(); + }); + } + } + window.customElements.define('joe-tabs', JoeTabs); - /* OK */ - class JoeCardList extends HTMLElement { - constructor() { - super(); - const _temp = this.querySelector('._temp'); - let _innerHTML = _temp.innerHTML.trim().replace(/^(
)|(
)$/g, ''); - let content = ''; - _innerHTML.replace(/{card-list-item}([\s\S]*?){\/card-list-item}/g, function ($0, $1) { - content += `
${$1.trim().replace(/^(
)|(
)$/g, '')}
`; - }); - let htmlStr = `
${content}
`; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const span = document.createElement('span'); - span.className = '_content'; - span.style.display = 'block'; - span.innerHTML = htmlStr; - this.appendChild(span); - } - } - } - window.customElements.define('joe-card-list', JoeCardList); + /* + * + * OK + * + */ + class JoeCardList extends HTMLElement { + constructor() { + super(); + const _temp = getChildren(this, '_temp'); + let _innerHTML = _temp.innerHTML.trim().replace(/^(
)|(
)$/g, ''); + let content = ''; + _innerHTML.replace(/{card-list-item}([\s\S]*?){\/card-list-item}/g, function ($0, $1) { + content += `
${$1.trim().replace(/^(
)|(
)$/g, '')}
`; + }); + let htmlStr = `
${content}
`; + if (getChildren(this, '_content')) { + getChildren(this, '_content').innerHTML = htmlStr; + } else { + const span = document.createElement('span'); + span.className = '_content'; + span.style.display = 'block'; + span.innerHTML = htmlStr; + this.appendChild(span); + } + } + } + window.customElements.define('joe-card-list', JoeCardList); - /* OK */ - class JoeTimeline extends HTMLElement { - constructor() { - super(); - const _temp = this.querySelector('._temp'); - let _innerHTML = _temp.innerHTML.trim().replace(/^(
)|(
)$/g, ''); - let content = ''; - _innerHTML.replace(/{timeline-item([^}]*)}([\s\S]*?){\/timeline-item}/g, function ($0, $1, $2) { - content += ` + /* + * + * OK + * + */ + class JoeTimeline extends HTMLElement { + constructor() { + super(); + const _temp = getChildren(this, '_temp'); + let _innerHTML = _temp.innerHTML.trim().replace(/^(
)|(
)$/g, ''); + let content = ''; + _innerHTML.replace(/{timeline-item([^}]*)}([\s\S]*?){\/timeline-item}/g, function ($0, $1, $2) { + content += `
${$2.trim().replace(/^(
)|(
)$/g, '')}
`; - }); - let htmlStr = `
${content}
`; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const span = document.createElement('span'); - span.className = '_content'; - span.style.display = 'block'; - span.innerHTML = htmlStr; - this.appendChild(span); - } - this.querySelectorAll('.joe_detail__article-timeline .item .circle').forEach((item, index) => { - const color = item.getAttribute('color') || '#19be6b'; - item.style.borderColor = color; - }); - } - } - window.customElements.define('joe-timeline', JoeTimeline); + }); + let htmlStr = `
${content}
`; + if (getChildren(this, '_content')) { + getChildren(this, '_content').innerHTML = htmlStr; + } else { + const span = document.createElement('span'); + span.className = '_content'; + span.style.display = 'block'; + span.innerHTML = htmlStr; + this.appendChild(span); + } + this.querySelectorAll('.joe_detail__article-timeline > .item > .circle').forEach((item, index) => { + const color = item.getAttribute('color') || '#19be6b'; + item.style.borderColor = color; + }); + } + } + window.customElements.define('joe-timeline', JoeTimeline); - $('.joe_detail__article p:empty').remove(); - /* + $('.joe_detail__article p:empty').remove(); + + /* ------------------------以下未测试------------------------------------------ */ - /* 点击复制 */ - class JoeCopy extends HTMLElement { - constructor() { - super(); - this.options = { - text: this.getAttribulte('text') || '默认文本', - content: this.innerHTML.trim().replace(/^(
)|(
)$/g, '') || '点击复制' - }; - this.render(); - } - get template() { - return `${this.options.content}`; - } - render() { - this.innerHTML = this.template; - this.event(); - } - event() { - this.$copy = this.querySelector('.joe_detail__article-copy'); - new ClipboardJS(this.$copy, { text: () => this.options.text }).on('success', () => Qmsg.success('复制成功!')); - } - } - window.customElements.define('joe-copy', JoeCopy); + /* 点击复制 */ + class JoeCopy extends HTMLElement { + constructor() { + super(); + this.options = { + text: this.getAttribulte('text') || '默认文本', + content: this.innerHTML.trim().replace(/^(
)|(
)$/g, '') || '点击复制' + }; + this.render(); + } + get template() { + return `${this.options.content}`; + } + render() { + this.innerHTML = this.template; + this.event(); + } + event() { + this.$copy = this.querySelector('.joe_detail__article-copy'); + new ClipboardJS(this.$copy, { text: () => this.options.text }).on('success', () => Qmsg.success('复制成功!')); + } + } + window.customElements.define('joe-copy', JoeCopy); }); diff --git a/assets/js/joe.short.min.js b/assets/js/joe.short.min.js index 6fd9af4..bd40bdf 100644 --- a/assets/js/joe.short.min.js +++ b/assets/js/joe.short.min.js @@ -1 +1 @@ -document.addEventListener("DOMContentLoaded",()=>{$(".joe_detail__article p:empty").remove();class t extends HTMLElement{constructor(){super(),this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t${this.getAttribute("title")||"默认标题"}\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-mtitle",t);class e extends HTMLElement{constructor(){super(),this.options={src:this.getAttribute("src"),player:this.getAttribute("player")},this.render()}render(){this.options.src?this.innerHTML=``:this.innerHTML="播放地址未填写!"}}window.customElements.define("joe-dplayer",e);class s extends HTMLElement{constructor(){super(),this.bvid=this.getAttribute("bvid"),this.render()}render(){this.bvid?this.innerHTML=``:this.innerHTML="Bvid未填写!"}}window.customElements.define("joe-bilibili",s);class n extends HTMLElement{constructor(){super(),this.options={name:this.getAttribute("name"),url:this.getAttribute("url"),theme:this.getAttribute("theme")||"#1989fa",cover:this.getAttribute("cover"),autoplay:!!this.getAttribute("autoplay")},this.render()}render(){if(!this.options.url)return this.innerHTML="音频地址未填写!";this.innerHTML='',new APlayer({container:this.querySelector("span"),theme:this.options.theme,autoplay:this.options.autoplay,audio:[{url:this.options.url,name:this.options.name,cover:this.options.cover}]})}}window.customElements.define("joe-mp3",n);class i extends HTMLElement{constructor(){super(),this.options={id:this.getAttribute("id"),color:this.getAttribute("color")||"#1989fa",autoplay:!!this.getAttribute("autoplay")},this.render()}render(){if(!this.options.id)return this.innerHTML="网易云歌曲ID未填写!";this.innerHTML='',fetch("https://api.i-meto.com/meting/api?server=netease&type=song&id="+this.options.id).then(async t=>{const e=await t.json();new APlayer({container:this.querySelector("span"),lrcType:3,theme:this.options.color,autoplay:this.options.autoplay,audio:e})})}}window.customElements.define("joe-music",i);class o extends HTMLElement{constructor(){super(),this.options={id:this.getAttribute("id"),color:this.getAttribute("color")||"#1989fa",autoplay:!!this.getAttribute("autoplay")},this.render()}render(){if(!this.options.id)return this.innerHTML="网易云歌单ID未填写!";this.innerHTML='',fetch("https://api.i-meto.com/meting/api?server=netease&type=playlist&id="+this.options.id).then(async t=>{const e=await t.json();new APlayer({container:this.querySelector("span"),lrcType:3,theme:this.options.color,autoplay:this.options.autoplay,audio:e})})}}window.customElements.define("joe-mlist",o);class r extends HTMLElement{constructor(){super(),this.options={icon:this.getAttribute("icon")||"",color:this.getAttribute("color")||"#ff6800",href:this.getAttribute("href")||"#",radius:this.getAttribute("radius")||"17.5px",content:this.getAttribute("content")||"多彩按钮"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t${this.options.content}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-abtn",r);class l extends HTMLElement{constructor(){super(),this.options={icon:this.getAttribute("icon")||"fa-download",href:this.getAttribute("href")||"#",type:/^secondary$|^success$|^warning$|^error$|^info$/.test(this.getAttribute("type"))?this.getAttribute("type"):"secondary",content:this.getAttribute("content")||"标签按钮"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t${this.options.content}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-anote",l);class c extends HTMLElement{constructor(){super(),this.startColor=this.getAttribute("startColor")||"#ff6c6c",this.endColor=this.getAttribute("endColor")||"#1989fa",this.innerHTML=`\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-dotted",c);class a extends HTMLElement{constructor(){super(),this.render()}render(){this.innerHTML='此处内容作者设置了 回复 可见',this.$button=this.querySelector("i");const t=document.querySelector(".joe_comment"),e=document.querySelector(".joe_header");t&&e&&this.$button.addEventListener("click",()=>{const s=t.offsetTop-e.offsetHeight-15;window.scrollTo({top:s,behavior:"smooth"})})}}window.customElements.define("joe-hide",a);class d extends HTMLElement{constructor(){super();const t=this.querySelector("._temp");this.options={width:this.getAttribute("width")||"100%",label:this.getAttribute("label")||"卡片标题",content:t.innerHTML.trim().replace(/^(
)|(
)$/g,"")||"卡片内容"};const e=`\n\t\t\t\t
\n\t\t\t\t\t
${this.options.label}
\n\t\t\t\t\t
${this.options.content}
\n\t\t\t\t
\n\t\t\t`;if(this.querySelector("._content"))this.querySelector("._content").innerHTML=e;else{const t=document.createElement("span");t.style.display="block",t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-card-default",d);class p extends HTMLElement{constructor(){super(),this.options={type:/^success$|^info$|^warning$|^error$/.test(this.getAttribute("type"))?this.getAttribute("type"):"info",content:this.getAttribute("content")||"消息内容"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${this.options.content}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-message",p);class h extends HTMLElement{constructor(){super(),this.options={percentage:/^\d{1,3}%$/.test(this.getAttribute("percentage"))?this.getAttribute("percentage"):"50%",color:this.getAttribute("color")||"#ff6c6c"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${this.options.percentage}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-progress",h);class u extends HTMLElement{constructor(){super();const t=this.querySelector("._temp");this.options={color:this.getAttribute("color")||"#f0ad4e",content:t.innerHTML.trim().replace(/^(
)|(
)$/g,"")||"标注内容"};const e=`\n\t\t\t\t
\n\t\t\t\t\t${this.options.content}\n\t\t\t\t
\n\t\t\t`;if(this.querySelector("._content"))this.querySelector("._content").innerHTML=e;else{const t=document.createElement("span");t.style.display="block",t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-callout",u);class m extends HTMLElement{constructor(){super();const t=this.querySelector("._temp");let e=t.innerHTML.trim().replace(/^(
)|(
)$/g,""),s="",n="";e.replace(/{tabs-pane([^}]*)}([\s\S]*?){\/tabs-pane}/g,function(t,e,i){s+=`
`,n+=``});let i=`\n
\n
${s}
\n
${n}
\n
\n `;if(this.querySelector("._content"))this.querySelector("._content").innerHTML=i;else{const t=document.createElement("span");t.className="_content",t.style.display="block",t.innerHTML=i,this.appendChild(t)}this.querySelectorAll(".heads .item").forEach((t,e)=>{const s=t.getAttribute("label");t.innerHTML=s,t.addEventListener("click",()=>{this.querySelectorAll(".heads .item").forEach(t=>t.classList.remove("active")),this.querySelectorAll(".bodys .item").forEach(t=>t.style.display="none"),this.querySelector(`.bodys .item[label="${s}"]`)&&(this.querySelector(`.bodys .item[label="${s}"]`).style.display="block"),t.classList.add("active")}),0===e&&t.click()})}}window.customElements.define("joe-tabs",m);class y extends HTMLElement{constructor(){super();const t=this.querySelector("._temp");let e=t.innerHTML.trim().replace(/^(
)|(
)$/g,""),s="";e.replace(/{card-list-item}([\s\S]*?){\/card-list-item}/g,function(t,e){s+=`
${e.trim().replace(/^(
)|(
)$/g,"")}
`});let n=`
${s}
`;if(this.querySelector("._content"))this.querySelector("._content").innerHTML=n;else{const t=document.createElement("span");t.className="_content",t.style.display="block",t.innerHTML=n,this.appendChild(t)}}}window.customElements.define("joe-card-list",y);class b extends HTMLElement{constructor(){super();const t=this.querySelector("._temp");let e=t.innerHTML.trim().replace(/^(
)|(
)$/g,""),s="";e.replace(/{timeline-item([^}]*)}([\s\S]*?){\/timeline-item}/g,function(t,e,n){s+=`\n\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
${n.trim().replace(/^(
)|(
)$/g,"")}
\n\t\t\t\t\t
\n\t\t\t\t`});let n=`
${s}
`;if(this.querySelector("._content"))this.querySelector("._content").innerHTML=n;else{const t=document.createElement("span");t.className="_content",t.style.display="block",t.innerHTML=n,this.appendChild(t)}this.querySelectorAll(".joe_detail__article-timeline .item .circle").forEach((t,e)=>{const s=t.getAttribute("color")||"#19be6b";t.style.borderColor=s})}}window.customElements.define("joe-timeline",b),$(".joe_detail__article p:empty").remove();class _ extends HTMLElement{constructor(){super(),this.options={text:this.getAttribulte("text")||"默认文本",content:this.innerHTML.trim().replace(/^(
)|(
)$/g,"")||"点击复制"},this.render()}get template(){return`${this.options.content}`}render(){this.innerHTML=this.template,this.event()}event(){this.$copy=this.querySelector(".joe_detail__article-copy"),new ClipboardJS(this.$copy,{text:()=>this.options.text}).on("success",()=>Qmsg.success("复制成功!"))}}window.customElements.define("joe-copy",_)}); \ No newline at end of file +function getChildren(t,e){for(let s of t.children)if(s.className===e)return s;return null}document.addEventListener("DOMContentLoaded",()=>{$(".joe_detail__article p:empty").remove();class t extends HTMLElement{constructor(){super(),this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t${this.getAttribute("title")||"默认标题"}\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-mtitle",t);class e extends HTMLElement{constructor(){super(),this.options={src:this.getAttribute("src"),player:this.getAttribute("player")},this.render()}render(){this.options.src?this.innerHTML=``:this.innerHTML="播放地址未填写!"}}window.customElements.define("joe-dplayer",e);class s extends HTMLElement{constructor(){super(),this.bvid=this.getAttribute("bvid"),this.render()}render(){this.bvid?this.innerHTML=``:this.innerHTML="Bvid未填写!"}}window.customElements.define("joe-bilibili",s);class n extends HTMLElement{constructor(){super(),this.options={name:this.getAttribute("name"),url:this.getAttribute("url"),theme:this.getAttribute("theme")||"#1989fa",cover:this.getAttribute("cover"),autoplay:!!this.getAttribute("autoplay")},this.render()}render(){if(!this.options.url)return this.innerHTML="音频地址未填写!";this.innerHTML='',new APlayer({container:getChildren(this,"_content"),theme:this.options.theme,autoplay:this.options.autoplay,audio:[{url:this.options.url,name:this.options.name,cover:this.options.cover}]})}}window.customElements.define("joe-mp3",n);class i extends HTMLElement{constructor(){super(),this.options={id:this.getAttribute("id"),color:this.getAttribute("color")||"#1989fa",autoplay:!!this.getAttribute("autoplay")},this.render()}render(){if(!this.options.id)return this.innerHTML="网易云歌曲ID未填写!";this.innerHTML='',fetch("https://api.i-meto.com/meting/api?server=netease&type=song&id="+this.options.id).then(async t=>{const e=await t.json();new APlayer({container:getChildren(this,"_content"),lrcType:3,theme:this.options.color,autoplay:this.options.autoplay,audio:e})})}}window.customElements.define("joe-music",i);class o extends HTMLElement{constructor(){super(),this.options={id:this.getAttribute("id"),color:this.getAttribute("color")||"#1989fa",autoplay:!!this.getAttribute("autoplay")},this.render()}render(){if(!this.options.id)return this.innerHTML="网易云歌单ID未填写!";this.innerHTML='',fetch("https://api.i-meto.com/meting/api?server=netease&type=playlist&id="+this.options.id).then(async t=>{const e=await t.json();new APlayer({container:getChildren(this,"_content"),lrcType:3,theme:this.options.color,autoplay:this.options.autoplay,audio:e})})}}window.customElements.define("joe-mlist",o);class r extends HTMLElement{constructor(){super(),this.options={icon:this.getAttribute("icon")||"",color:this.getAttribute("color")||"#ff6800",href:this.getAttribute("href")||"#",radius:this.getAttribute("radius")||"17.5px",content:this.getAttribute("content")||"多彩按钮"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t${this.options.content}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-abtn",r);class l extends HTMLElement{constructor(){super(),this.options={icon:this.getAttribute("icon")||"fa-download",href:this.getAttribute("href")||"#",type:/^secondary$|^success$|^warning$|^error$|^info$/.test(this.getAttribute("type"))?this.getAttribute("type"):"secondary",content:this.getAttribute("content")||"标签按钮"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t${this.options.content}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-anote",l);class c extends HTMLElement{constructor(){super(),this.startColor=this.getAttribute("startColor")||"#ff6c6c",this.endColor=this.getAttribute("endColor")||"#1989fa",this.innerHTML=`\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-dotted",c);class a extends HTMLElement{constructor(){super(),this.render()}render(){this.innerHTML='此处内容作者设置了 回复 可见',this.$button=this.querySelector(".joe_detail__article-hide > i");const t=document.querySelector(".joe_comment"),e=document.querySelector(".joe_header");t&&e&&this.$button.addEventListener("click",()=>{const s=t.offsetTop-e.offsetHeight-15;window.scrollTo({top:s,behavior:"smooth"})})}}window.customElements.define("joe-hide",a);class d extends HTMLElement{constructor(){super();const t=getChildren(this,"_temp");this.options={width:this.getAttribute("width")||"100%",label:this.getAttribute("label")||"卡片标题",content:t.innerHTML.trim().replace(/^(
)|(
)$/g,"")||"卡片内容"};const e=`\n\t\t\t\t
\n\t\t\t\t\t
${this.options.label}
\n\t\t\t\t\t
${this.options.content}
\n\t\t\t\t
\n\t\t\t`;if(getChildren(this,"_content"))getChildren(this,"_content").innerHTML=e;else{const t=document.createElement("span");t.style.display="block",t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-card-default",d);class h extends HTMLElement{constructor(){super(),this.options={type:/^success$|^info$|^warning$|^error$/.test(this.getAttribute("type"))?this.getAttribute("type"):"info",content:this.getAttribute("content")||"消息内容"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${this.options.content}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-message",h);class p extends HTMLElement{constructor(){super(),this.options={percentage:/^\d{1,3}%$/.test(this.getAttribute("percentage"))?this.getAttribute("percentage"):"50%",color:this.getAttribute("color")||"#ff6c6c"},this.innerHTML=`\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t${this.options.percentage}\n\t\t\t\t\n\t\t\t`}}window.customElements.define("joe-progress",p);class u extends HTMLElement{constructor(){super();const t=getChildren(this,"_temp");this.options={color:this.getAttribute("color")||"#f0ad4e",content:t.innerHTML.trim().replace(/^(
)|(
)$/g,"")||"标注内容"};const e=`\n\t\t\t\t
\n\t\t\t\t\t${this.options.content}\n\t\t\t\t
\n\t\t\t`;if(getChildren(this,"_content"))getChildren(this,"_content").innerHTML=e;else{const t=document.createElement("span");t.style.display="block",t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-callout",u);class m extends HTMLElement{constructor(){super();const t=getChildren(this,"_temp");let e=t.innerHTML.trim().replace(/^(
)|(
)$/g,""),s="",n="";e.replace(/{tabs-pane([^}]*)}([\s\S]*?){\/tabs-pane}/g,function(t,e,i){s+=`
`,n+=``});let i=`\n
\n
${s}
\n
${n}
\n
\n `;if(getChildren(this,"_content"))getChildren(this,"_content").innerHTML=i;else{const t=document.createElement("span");t.className="_content",t.style.display="block",t.innerHTML=i,this.appendChild(t)}this.querySelectorAll(".heads > .item").forEach((t,e)=>{const s=t.getAttribute("label");t.innerHTML=s,t.addEventListener("click",()=>{this.querySelectorAll(".heads > .item").forEach(t=>t.classList.remove("active")),this.querySelectorAll(".bodys > .item").forEach(t=>t.style.display="none"),this.querySelector(`.bodys > .item[label="${s}"]`)&&(this.querySelector(`.bodys > .item[label="${s}"]`).style.display="block"),t.classList.add("active")}),0===e&&t.click()})}}window.customElements.define("joe-tabs",m);class b extends HTMLElement{constructor(){super();const t=getChildren(this,"_temp");let e=t.innerHTML.trim().replace(/^(
)|(
)$/g,""),s="";e.replace(/{card-list-item}([\s\S]*?){\/card-list-item}/g,function(t,e){s+=`
${e.trim().replace(/^(
)|(
)$/g,"")}
`});let n=`
${s}
`;if(getChildren(this,"_content"))getChildren(this,"_content").innerHTML=n;else{const t=document.createElement("span");t.className="_content",t.style.display="block",t.innerHTML=n,this.appendChild(t)}}}window.customElements.define("joe-card-list",b);class g extends HTMLElement{constructor(){super();const t=getChildren(this,"_temp");let e=t.innerHTML.trim().replace(/^(
)|(
)$/g,""),s="";e.replace(/{timeline-item([^}]*)}([\s\S]*?){\/timeline-item}/g,function(t,e,n){s+=`\n\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
${n.trim().replace(/^(
)|(
)$/g,"")}
\n\t\t\t\t\t
\n\t\t\t\t`});let n=`
${s}
`;if(getChildren(this,"_content"))getChildren(this,"_content").innerHTML=n;else{const t=document.createElement("span");t.className="_content",t.style.display="block",t.innerHTML=n,this.appendChild(t)}this.querySelectorAll(".joe_detail__article-timeline > .item > .circle").forEach((t,e)=>{const s=t.getAttribute("color")||"#19be6b";t.style.borderColor=s})}}window.customElements.define("joe-timeline",g),$(".joe_detail__article p:empty").remove();class _ extends HTMLElement{constructor(){super(),this.options={text:this.getAttribulte("text")||"默认文本",content:this.innerHTML.trim().replace(/^(
)|(
)$/g,"")||"点击复制"},this.render()}get template(){return`${this.options.content}`}render(){this.innerHTML=this.template,this.event()}event(){this.$copy=this.querySelector(".joe_detail__article-copy"),new ClipboardJS(this.$copy,{text:()=>this.options.text}).on("success",()=>Qmsg.success("复制成功!"))}}window.customElements.define("joe-copy",_)}); \ No newline at end of file diff --git a/core/factory.php b/core/factory.php index 3237d5a..9de0f14 100644 --- a/core/factory.php +++ b/core/factory.php @@ -67,7 +67,7 @@ class Editor - + options->themeUrl('assets/cursor/' . $this->options->JCursorEffects); ?>" async> - + options->JCustomHeadEnd() ?> \ No newline at end of file