2021-03-06 07:03:39 +00:00
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
2021-04-17 04:19:43 +00:00
|
|
|
|
class JoeMtitle extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.innerHTML = `
|
2021-04-16 09:09:40 +00:00
|
|
|
|
<div class="joe_detail__article-mtitle">
|
|
|
|
|
<span class="text">
|
|
|
|
|
${this.getAttribute('title') || '默认标题'}
|
|
|
|
|
</span>
|
|
|
|
|
</div>`;
|
2021-04-17 04:19:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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 JoeMusic extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
id: this.getAttribute('id'),
|
|
|
|
|
width: this.getAttribute('width') || '100%',
|
|
|
|
|
autoplay: this.getAttribute('autoplay') ? 1 : 0
|
|
|
|
|
};
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
if (this.options.id) this.innerHTML = `<iframe style="display: block; margin: 0 auto; border: 0;" width="${this.options.width}" height="86px" src="//music.163.com/outchain/player?type=2&id=${this.options.id}&auto=${this.options.autoplay}&height=66"></iframe>`;
|
|
|
|
|
else this.innerHTML = '网易云歌曲ID未填写!';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-music', JoeMusic);
|
|
|
|
|
class JoeMlist extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
id: this.getAttribute('id'),
|
|
|
|
|
width: this.getAttribute('width') || '100%',
|
|
|
|
|
autoplay: this.getAttribute('autoplay') ? 1 : 0
|
|
|
|
|
};
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
get template() {
|
|
|
|
|
return `<iframe style="display: block; margin: 0 auto; border: 0;" width="${this.options.width}" height="450px" src="//music.163.com/outchain/player?type=0&id=${this.options.id}&auto=${this.options.autoplay}&height=430"></iframe>`;
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
if (this.options.id) this.innerHTML = this.template;
|
|
|
|
|
else this.innerHTML = '网易云歌单ID未填写!';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
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-17 04:19:43 +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-17 04:19:43 +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 = `
|
|
|
|
|
<div 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%)"></div>
|
|
|
|
|
`;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-dotted', JoeDotted);
|
2021-04-16 10:00:42 +00:00
|
|
|
|
|
2021-04-17 04:19:43 +00:00
|
|
|
|
/*
|
2021-04-16 10:00:42 +00:00
|
|
|
|
------------------------以下未测试------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
2021-04-17 04:19:43 +00:00
|
|
|
|
/* 点击复制 */
|
|
|
|
|
class JoeCopy extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
text: this.getAttribute('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);
|
|
|
|
|
/* 消息提示 */
|
|
|
|
|
class JoeMessage extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
type: /^success$|^info$|^warning$|^error$/.test(this.getAttribute('type')) ? this.getAttribute('type') : 'info',
|
|
|
|
|
content: this.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '') || '提示内容'
|
|
|
|
|
};
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
get template() {
|
|
|
|
|
return `
|
2021-03-06 07:03:39 +00:00
|
|
|
|
<div class="joe_detail__article-message ${this.options.type}">
|
|
|
|
|
<div class="icon"></div>
|
|
|
|
|
<div class="content">${this.options.content}</div>
|
|
|
|
|
</div>
|
|
|
|
|
`;
|
2021-04-17 04:19:43 +00:00
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
this.innerHTML = this.template;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-message', JoeMessage);
|
|
|
|
|
/* 默认卡片 */
|
|
|
|
|
class JoeCard extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
width: this.getAttribute('width') || '100%',
|
|
|
|
|
label: this.getAttribute('label') || '默认标题',
|
|
|
|
|
content: this.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '') || '默认内容'
|
|
|
|
|
};
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
get template() {
|
|
|
|
|
return `
|
2021-03-06 07:03:39 +00:00
|
|
|
|
<div class="joe_detail__article-card" style="width: ${this.options.width}">
|
|
|
|
|
<div class="title">${this.options.label}</div>
|
|
|
|
|
<div class="content">${this.options.content}</div>
|
|
|
|
|
</div>
|
|
|
|
|
`;
|
2021-04-17 04:19:43 +00:00
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
this.innerHTML = this.template;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-card', JoeCard);
|
|
|
|
|
/* 回复可见 - 显示状态 */
|
|
|
|
|
class JoeShow extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.options = {
|
|
|
|
|
content: this.innerHTML.trim().replace(/^(<br>)|(<br>)$/g, '') || '默认隐藏的内容'
|
|
|
|
|
};
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
this.innerHTML = this.options.content;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-show', JoeShow);
|
|
|
|
|
/* 回复可见 - 隐藏状态 */
|
|
|
|
|
class JoeHide extends HTMLElement {
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.render();
|
|
|
|
|
}
|
|
|
|
|
get template() {
|
|
|
|
|
return `
|
2021-03-06 07:03:39 +00:00
|
|
|
|
<style>
|
|
|
|
|
.container {
|
|
|
|
|
background: repeating-linear-gradient(145deg, var(--classD), var(--classD) 15px, var(--background) 0, var(--background) 25px);
|
|
|
|
|
padding: 15px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
user-select: none;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
}
|
|
|
|
|
.container i {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: var(--theme);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<div class="container">
|
|
|
|
|
此处内容作者设置了 <i>回复</i> 可见
|
|
|
|
|
</div>
|
|
|
|
|
`;
|
2021-04-17 04:19:43 +00:00
|
|
|
|
}
|
|
|
|
|
render() {
|
|
|
|
|
this.innerHTML = '';
|
|
|
|
|
this._shadowRoot = this.attachShadow({ mode: 'closed' });
|
|
|
|
|
this._shadowRoot.innerHTML = this.template;
|
|
|
|
|
this.event();
|
|
|
|
|
}
|
|
|
|
|
event() {
|
|
|
|
|
this.$button = this._shadowRoot.querySelector('i');
|
|
|
|
|
this.$button.addEventListener('click', () => {
|
|
|
|
|
const top = $('.joe_comment').offset().top - $('.joe_header').height() - 15;
|
|
|
|
|
window.scrollTo({ top, behavior: 'smooth' });
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
window.customElements.define('joe-hide', JoeHide);
|
2021-03-06 07:03:39 +00:00
|
|
|
|
});
|