2021-03-06 07:03:39 +00:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2021-04-22 07:36:33 +00:00
|
|
|
|
$('.joe_detail__article p:empty').remove();
|
2021-04-22 00:52:00 +00:00
|
|
|
|
|
2021-04-22 07:36:33 +00:00
|
|
|
|
class JoeMtitle extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.innerHTML = `
|
2021-04-19 07:18:29 +00:00
|
|
|
|
<span class="joe_detail__article-mtitle">
|
2021-04-16 09:09:40 +00:00
|
|
|
|
<span class="text">
|
|
|
|
|
${this.getAttribute('title') || '默认标题'}
|
|
|
|
|
</span>
|
2021-04-22 07:36:33 +00:00
|
|
|
|
</span>
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-mtitle', JoeMtitle);
|
|
|
|
|
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 = `<iframe allowfullscreen="true" class="joe_detail__article-player" src="${this.options.player + this.options.src}"></iframe>`;
|
|
|
|
|
else this.innerHTML = '播放地址未填写!';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-dplayer', JoeDplayer);
|
|
|
|
|
class JoeBilibili extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.bvid = this.getAttribute('bvid');
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
if (this.bvid) this.innerHTML = `<iframe allowfullscreen="true" class="joe_detail__article-player" src="//player.bilibili.com/player.html?bvid=${this.bvid}"></iframe>`;
|
|
|
|
|
else this.innerHTML = 'Bvid未填写!';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-bilibili', JoeBilibili);
|
|
|
|
|
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 = '<span style="display: block"></span>';
|
|
|
|
|
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);
|
|
|
|
|
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 = '<span style="display: block"></span>';
|
|
|
|
|
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);
|
|
|
|
|
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 = '<span style="display: block"></span>';
|
|
|
|
|
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);
|
|
|
|
|
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 = `
|
2021-04-16 09:09:40 +00:00
|
|
|
|
<a class="joe_detail__article-abtn" style="background: ${this.options.color}; border-radius: ${this.options.radius}" href="${this.options.href}" target="_blank" rel="noopener noreferrer nofollow">
|
|
|
|
|
<span class="icon"><i class="${this.options.icon} fa"></i></span><span class="content">${this.options.content}</span>
|
|
|
|
|
</a>
|
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-abtn', JoeAbtn);
|
|
|
|
|
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 = `
|
2021-04-16 10:00:42 +00:00
|
|
|
|
<a class="joe_detail__article-anote ${this.options.type}" href="${this.options.href}" target="_blank" rel="noopener noreferrer nofollow">
|
|
|
|
|
<span class="icon"><i class="fa ${this.options.icon}"></i></span><span class="content">${this.options.content}</span>
|
|
|
|
|
</a>
|
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-anote', JoeAnote);
|
|
|
|
|
class JoeDotted extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.startColor = this.getAttribute('startColor') || '#ff6c6c';
|
|
|
|
|
this.endColor = this.getAttribute('endColor') || '#1989fa';
|
|
|
|
|
this.innerHTML = `
|
2021-04-19 07:18:29 +00:00
|
|
|
|
<span class="joe_detail__article-dotted" style="background-image: repeating-linear-gradient(-45deg, ${this.startColor} 0, ${this.startColor} 20%, transparent 0, transparent 25%, ${this.endColor} 0, ${this.endColor} 45%, transparent 0, transparent 50%)"></span>
|
2021-04-17 04:19:43 +00:00
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-dotted', JoeDotted);
|
|
|
|
|
class JoeHide extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
this.innerHTML = '<span class="joe_detail__article-hide">此处内容作者设置了 <i>回复</i> 可见</span>';
|
|
|
|
|
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);
|
|
|
|
|
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(/^(<br>)|(<br>)$/g, '') || '卡片内容'
|
|
|
|
|
};
|
|
|
|
|
const htmlStr = `
|
2021-04-19 07:18:29 +00:00
|
|
|
|
<span class="joe_detail__article-card_default" style="width: ${this.options.width}">
|
|
|
|
|
<span class="title">${this.options.label}</span>
|
|
|
|
|
<span class="content">${this.options.content}</span>
|
|
|
|
|
</span>
|
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
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);
|
|
|
|
|
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 = `
|
2021-04-19 08:00:14 +00:00
|
|
|
|
<span class="joe_detail__article-message ${this.options.type}">
|
|
|
|
|
<span class="icon"></span>
|
|
|
|
|
<span class="content">${this.options.content}</span>
|
|
|
|
|
</span>
|
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-message', JoeMessage);
|
|
|
|
|
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 = `
|
2021-04-21 07:09:39 +00:00
|
|
|
|
<span class="joe_detail__article-progress">
|
|
|
|
|
<span class="strip">
|
|
|
|
|
<span class="percent" style="width: ${this.options.percentage}; background: ${this.options.color};"></span>
|
|
|
|
|
</span>
|
|
|
|
|
<span class="percentage">${this.options.percentage}</span>
|
|
|
|
|
</span>
|
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-progress', JoeProgress);
|
|
|
|
|
class JoeCallout extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
const _temp = this.querySelector('._temp');
|
|
|
|
|
this.options = {
|
|
|
|
|
color: this.getAttribute('color') || '#f0ad4e',
|
|
|
|
|
content: _temp.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '') || '标注内容'
|
|
|
|
|
};
|
|
|
|
|
const htmlStr = `
|
2021-04-21 08:07:59 +00:00
|
|
|
|
<span class="joe_detail__article-callout" style="border-left-color: ${this.options.color};">
|
|
|
|
|
${this.options.content}
|
|
|
|
|
</span>
|
|
|
|
|
`;
|
2021-04-22 07:36:33 +00:00
|
|
|
|
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);
|
|
|
|
|
class JoeTabs extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
const _temp = this.querySelector('._temp');
|
|
|
|
|
let _innerHTML = _temp.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '');
|
|
|
|
|
let navs = '';
|
|
|
|
|
let contents = '';
|
|
|
|
|
_innerHTML.replace(/{tabs-pane([^}]*)}([\s\S]*?){\/tabs-pane}/g, function ($0, $1, $2) {
|
|
|
|
|
navs += `<div class="item" ${$1}></div>`;
|
|
|
|
|
contents += `<div style="display: none" class="item" ${$1}>${$2.trim().replace(/^(<br>)|(<br>)$/g, '')}</div>`;
|
|
|
|
|
});
|
|
|
|
|
let htmlStr = `
|
|
|
|
|
<span class="joe_detail__article-tabs">
|
|
|
|
|
<div class="heads">${navs}</div>
|
|
|
|
|
<div class="bodys">${contents}</div>
|
|
|
|
|
</span>
|
|
|
|
|
`;
|
|
|
|
|
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);
|
2021-04-22 08:30:13 +00:00
|
|
|
|
class JoeCardList extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
const _temp = this.querySelector('._temp');
|
|
|
|
|
let _innerHTML = _temp.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '');
|
|
|
|
|
let content = '';
|
|
|
|
|
_innerHTML.replace(/{card-list-item}([\s\S]*?){\/card-list-item}/g, function ($0, $1) {
|
|
|
|
|
content += `<div class="item">${$1.trim().replace(/^(<br>)|(<br>)$/g, '')}</div>`;
|
|
|
|
|
});
|
|
|
|
|
let htmlStr = `<span class="joe_detail__article-card_list">${content}</span>`;
|
|
|
|
|
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);
|
2021-04-16 10:00:42 +00:00
|
|
|
|
|
2021-04-22 07:36:33 +00:00
|
|
|
|
$('.joe_detail__article p:empty').remove();
|
|
|
|
|
/*
|
2021-04-16 10:00:42 +00:00
|
|
|
|
------------------------以下未测试------------------------------------------
|
|
|
|
|
*/
|
2021-04-22 07:36:33 +00:00
|
|
|
|
/* 点击复制 */
|
|
|
|
|
class JoeCopy extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
text: this.getAttribulte('text') || '默认文本',
|
|
|
|
|
content: this.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '') || '点击复制'
|
|
|
|
|
};
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
get template() {
|
|
|
|
|
return `<span class="joe_detail__article-copy">${this.options.content}</span>`;
|
|
|
|
|
}
|
|
|
|
|
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);
|
2021-03-06 07:03:39 +00:00
|
|
|
|
});
|