diff --git a/assets/js/joe.short.js b/assets/js/joe.short.js index a5bb3e7..bccf29e 100644 --- a/assets/js/joe.short.js +++ b/assets/js/joe.short.js @@ -1,192 +1,239 @@ document.addEventListener('DOMContentLoaded', () => { - class JoeMtitle extends HTMLElement { - constructor() { - super(); - this.innerHTML = ` + class JoeMtitle extends HTMLElement { + constructor() { + super(); + this.innerHTML = ` ${this.getAttribute('title') || '默认标题'} `; - } - } - 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 = ``; - 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 = ``; - 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 = ``; - 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 ``; - } - 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 = ` + } + } + 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 = ``; + 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 = ``; + 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 = '
'; + new APlayer({ + container: this.querySelector('div'), + 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 = '
'; + 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('div'), + 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 = '
'; + 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('div'), + 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 = ` ${this.options.content} `; - } - } - 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 = ` + } + } + 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 = ` ${this.options.content} `; - } - } - 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 = ` + } + } + 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 = ` `; - } - } - window.customElements.define('joe-dotted', JoeDotted); - 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); - 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 = ` + } + } + window.customElements.define('joe-dotted', JoeDotted); + 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); + 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 = ` ${this.options.label} ${this.options.content} `; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const div = document.createElement('div'); - div.className = '_content'; - div.innerHTML = htmlStr; - this.appendChild(div); - } - } - } - 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 = ` + if (this.querySelector('._content')) { + this.querySelector('._content').innerHTML = htmlStr; + } else { + const div = document.createElement('div'); + div.className = '_content'; + div.innerHTML = htmlStr; + this.appendChild(div); + } + } + } + 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 = ` ${this.options.content} `; - } - } - 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 = ` + } + } + 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 = ` @@ -194,61 +241,60 @@ document.addEventListener('DOMContentLoaded', () => { ${this.options.percentage} `; - } - } - 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(/^(
)|(
)$/g, '') || '标注内容' - }; - const htmlStr = ` + } + } + 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(/^(
)|(
)$/g, '') || '标注内容' + }; + const htmlStr = ` ${this.options.content} `; - if (this.querySelector('._content')) { - this.querySelector('._content').innerHTML = htmlStr; - } else { - const div = document.createElement('div'); - div.className = '_content'; - div.innerHTML = htmlStr; - this.appendChild(div); - } - } - } - window.customElements.define('joe-callout', JoeCallout); + if (this.querySelector('._content')) { + this.querySelector('._content').innerHTML = htmlStr; + } else { + const div = document.createElement('div'); + div.className = '_content'; + div.innerHTML = htmlStr; + this.appendChild(div); + } + } + } + window.customElements.define('joe-callout', JoeCallout); - const article = document.querySelector('.joe_detail__article'); - if (article) article.innerHTML = article.innerHTML.replace(/

<\/p>/g, ''); + $('.joe_detail__article p:empty').remove(); - /* + /* ------------------------以下未测试------------------------------------------ */ - /* 点击复制 */ - class JoeCopy extends HTMLElement { - constructor() { - super(); - this.options = { - text: this.getAttribute('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.getAttribute('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 3fc1fc0..98b7d1f 100644 --- a/assets/js/joe.short.min.js +++ b/assets/js/joe.short.min.js @@ -1 +1 @@ -document.addEventListener("DOMContentLoaded",()=>{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`}}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={id:this.getAttribute("id"),width:this.getAttribute("width")||"100%",autoplay:this.getAttribute("autoplay")?1:0},this.render()}render(){this.options.id?this.innerHTML=``:this.innerHTML="网易云歌曲ID未填写!"}}window.customElements.define("joe-music",n);class i 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``}render(){this.options.id?this.innerHTML=this.template:this.innerHTML="网易云歌单ID未填写!"}}window.customElements.define("joe-mlist",i);class o 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",o);class r 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",r);class a 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",a);class c 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",c);class l 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("div");t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-card-default",l);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 d 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("div");t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-callout",d);const u=document.querySelector(".joe_detail__article");u&&(u.innerHTML=u.innerHTML.replace(/

<\/p>/g,""));class m extends HTMLElement{constructor(){super(),this.options={text:this.getAttribute("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",m)}); \ No newline at end of file +document.addEventListener("DOMContentLoaded",()=>{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`}}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("div"),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("div"),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("div"),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 a 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",a);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 l 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",l);class p 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("div");t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-card-default",p);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 d 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",d);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("div");t.className="_content",t.innerHTML=e,this.appendChild(t)}}}window.customElements.define("joe-callout",u),$(".joe_detail__article p:empty").remove();class m extends HTMLElement{constructor(){super(),this.options={text:this.getAttribute("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",m)}); \ No newline at end of file diff --git a/core/factory.php b/core/factory.php index 390b9ee..9d458f7 100644 --- a/core/factory.php +++ b/core/factory.php @@ -47,9 +47,10 @@ class Editor public static function Edit() { ?> + - + + - - - + + + ', $content); $content = preg_replace('/{music([^}]*)\/}/SU', '', $content); } + if (strpos($content, '{mp3') !== false) { + $content = preg_replace('/{mp3([^}]*)\/}/SU', '', $content); + } if (strpos($content, '{bilibili') !== false) { $content = preg_replace('/{bilibili([^}]*)\/}/SU', '', $content); } diff --git a/package.json b/package.json index 2e3fdde..5fbecf8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typecho-joe-next", - "version": "6.5.2", + "version": "6.5.3", "description": "A Theme Of Typecho", "main": "index.php", "keywords": [ diff --git a/public/footer.php b/public/footer.php index 441197c..c8d5e96 100644 --- a/public/footer.php +++ b/public/footer.php @@ -31,8 +31,6 @@ -
- + @@ -38,6 +40,6 @@ options->JCursorEffects && $this->options->JCursorEffects !== 'off') : ?> - - + + options->JCustomHeadEnd() ?> \ No newline at end of file diff --git a/typecho/write/css/joe.write.min.css b/typecho/write/css/joe.write.min.css index ff2c255..c5bcc58 100644 --- a/typecho/write/css/joe.write.min.css +++ b/typecho/write/css/joe.write.min.css @@ -1 +1 @@ -input[name='fields[keywords]']{width:100%}textarea[name='fields[description]'],textarea[name='fields[abstract]'],textarea[name='fields[thumb]'],textarea[name='fields[video]']{width:100%;height:80px}#text,#text ~ .resize{display:none}body.fullscreen{overflow:hidden}.cm-container{display:flex;flex-direction:column;position:relative;width:100%;height:550px;box-sizing:border-box;z-index:6666;content-visibility:auto;background:#222}.cm-container.fullscreen{position:fixed;top:0;left:0;width:100%;height:100%}.cm-container *{outline:none !important}.cm-container .cm-tools{display:flex;flex-wrap:wrap;background-color:#303133;padding:5px 0 0 5px}.cm-container .cm-tools .cm-tools-item{position:relative;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:2px;padding:5px;margin:0 5px 5px 0;transition:background 0.25s}.cm-container .cm-tools .cm-tools-item:hover{background:#393939}.cm-container .cm-tools .cm-tools-item:hover svg{fill:#efefef}.cm-container .cm-tools .cm-tools-item.active{background:#393939}.cm-container .cm-tools .cm-tools-item.active svg{fill:#efefef}.cm-container .cm-tools .cm-tools-item.active .cm-tools__dropdown{visibility:visible;opacity:1;-webkit-transform:translateX(-50%) rotateX(0);transform:translateX(-50%) rotateX(0)}.cm-container .cm-tools .cm-tools-item svg{vertical-align:middle;fill:#bfbfbf}.cm-container .cm-tools__dropdown{position:absolute;top:42px;left:50%;z-index:1000;background:#393939;padding:5px 0;border-radius:4px;visibility:hidden;-webkit-transform-origin:top;transform-origin:top;opacity:0;-webkit-transform:translateX(-50%) rotateX(-90deg);transform:translateX(-50%) rotateX(-90deg);transition:visibility 0.25s, opacity 0.25s, -webkit-transform 0.25s;transition:visibility 0.25s, transform 0.25s, opacity 0.25s;transition:visibility 0.25s, transform 0.25s, opacity 0.25s, -webkit-transform 0.25s}.cm-container .cm-tools__dropdown-item{padding:0 20px;line-height:32px;transition:background 0.25s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:15px;color:#bfbfbf;font-weight:600}.cm-container .cm-tools__dropdown-item:hover{background:#444}.cm-container .cm-tools__dropdown::before{content:'';position:absolute;top:-7px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:0;height:0;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #393939}.cm-container .cm-mainer{position:relative;flex:1;min-height:0;display:flex;width:100%}.cm-container .cm-mainer .cm-wrap{flex-shrink:0;height:100%;flex:1;min-width:0;font-size:14px}.cm-container .cm-mainer .cm-wrap .cm-scroller{line-height:1.5;font-family:Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;-ms-scroll-chaining:none;overscroll-behavior:none}.cm-container .cm-mainer .cm-wrap .cm-scroller::-webkit-scrollbar-track{background:#222}.cm-container .cm-mainer .cm-wrap .cm-scroller::-webkit-scrollbar{width:6px;height:6px}.cm-container .cm-mainer .cm-wrap .cm-scroller::-webkit-scrollbar-thumb{border-radius:3px;background:rgba(255,255,255,0.25)}.cm-container .cm-mainer .cm-wrap .cm-scroller ::-moz-selection{background-color:rgba(221,240,255,0.2)}.cm-container .cm-mainer .cm-wrap .cm-scroller ::selection{background-color:rgba(221,240,255,0.2)}.cm-container .cm-mainer .cm-wrap .cm-scroller .cm-content{width:100%;white-space:normal;overflow-wrap:break-word;color:#ccc;caret-color:#ccc;padding:15px 13px 15px 11px;-webkit-user-modify:read-write-plaintext-only}.cm-container .cm-mainer .cm-wrap .cm-scroller .cm-matchingBracket{color:#8f938f;border:1px solid rgba(255,255,255,0.25);margin:-1px}.cm-container .cm-mainer .cm-wrap .cm-scroller .cm-nonmatchingBracket{color:#ff5627}.cm-container .cm-mainer .cm-resize{flex-shrink:0;height:100%;position:relative;width:16px;background:#303133;cursor:col-resize}.cm-container .cm-mainer .cm-resize::before{content:'';position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:4px;height:40px;border-radius:2px;background:#fff}.cm-container .cm-mainer .cm-preview{position:relative;flex-shrink:0;width:0;height:100%;background:#fff;overflow:auto;box-sizing:border-box;-ms-scroll-chaining:none;overscroll-behavior:none}.cm-container .cm-mainer .cm-preview.move{pointer-events:none}.cm-container .cm-mainer .cm-preview::-webkit-scrollbar-track{background:#fff}.cm-container .cm-mainer .cm-preview::-webkit-scrollbar{width:6px;height:6px}.cm-container .cm-mainer .cm-preview::-webkit-scrollbar-thumb{border-radius:3px;background:#c0c4cc}.cm-container .cm-mainer .cm-preview .cm-preview-content{padding:20px;font-size:14px;font-family:'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;white-space:normal;overflow-wrap:break-word;color:#606266;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cm-container .cm-mainer .cm-preview .cm-preview-content h1,.cm-container .cm-mainer .cm-preview .cm-preview-content h2,.cm-container .cm-mainer .cm-preview .cm-preview-content h3,.cm-container .cm-mainer .cm-preview .cm-preview-content h4,.cm-container .cm-mainer .cm-preview .cm-preview-content h5,.cm-container .cm-mainer .cm-preview .cm-preview-content h6{color:#303133;font-size:18px;line-height:24px;margin:0;margin-bottom:15px;position:relative}.cm-container .cm-mainer .cm-preview .cm-preview-content h1{padding:0 15px}.cm-container .cm-mainer .cm-preview .cm-preview-content h1::before{content:'';position:absolute;top:8.5px;left:0;height:7px;width:7px;border-radius:50%;background:#409eff}.cm-container .cm-mainer .cm-preview .cm-preview-content h2{padding:0 15px}.cm-container .cm-mainer .cm-preview .cm-preview-content h2::before{content:'';position:absolute;top:10%;bottom:10%;left:0;width:4px;border-radius:2px;background:#409eff}.cm-container .cm-mainer .cm-preview .cm-preview-content h3{padding:0 15px 0 20px}.cm-container .cm-mainer .cm-preview .cm-preview-content h3::before{content:'#';color:#409eff;font-weight:700;position:absolute;top:0;left:0;line-height:24px}.cm-container .cm-mainer .cm-preview .cm-preview-content h4::before{content:'「';color:#409eff;font-weight:600;margin-right:5px}.cm-container .cm-mainer .cm-preview .cm-preview-content h4::after{content:'」';color:#409eff;font-weight:600;margin-left:5px}.cm-container .cm-mainer .cm-preview .cm-preview-content h5{padding:0 15px 0 28px}.cm-container .cm-mainer .cm-preview .cm-preview-content h5::before{content:'';position:absolute;top:2px;left:0;width:20px;height:20px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg==");background-size:100% 100%}.cm-container .cm-mainer .cm-preview .cm-preview-content h6{padding:0 15px 0 28px}.cm-container .cm-mainer .cm-preview .cm-preview-content h6::before{content:'';position:absolute;top:2px;left:0;width:20px;height:20px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC");background-size:100% 100%}.cm-container .cm-mainer .cm-preview .cm-preview-content hr{margin:0;border:none;height:1px;background-color:#e4e7ed;margin-bottom:15px}.cm-container .cm-mainer .cm-preview .cm-preview-content p{line-height:26px;margin:0;margin-bottom:15px}.cm-container .cm-mainer .cm-preview .cm-preview-content blockquote{margin:0;line-height:26px;margin-bottom:15px;background:#ecf8ff;border-left:5px solid #50bfff;color:#50bfff;padding:8px 15px;border-radius:0 4px 4px 0}.cm-container .cm-mainer .cm-preview .cm-preview-content blockquote p{margin:0}.cm-container .cm-mainer .cm-preview .cm-preview-content pre{margin:0;margin-bottom:15px}.cm-container .cm-mainer .cm-preview .cm-preview-content pre::-webkit-scrollbar-track{background:#fff}.cm-container .cm-mainer .cm-preview .cm-preview-content pre::-webkit-scrollbar{width:6px;height:6px}.cm-container .cm-mainer .cm-preview .cm-preview-content pre::-webkit-scrollbar-thumb{border-radius:3px;background:#c0c4cc}.cm-container .cm-mainer .cm-preview .cm-preview-content p code{display:inline-block;min-height:26px;line-height:26px;border-radius:4px;font-size:12px;background:#fdf6ec;padding:0 8px;color:#e6a23c;vertical-align:top}.cm-container .cm-mainer .cm-preview .cm-preview-content ol,.cm-container .cm-mainer .cm-preview .cm-preview-content ul{margin:0;margin-bottom:15px;padding-left:36px}.cm-container .cm-mainer .cm-preview .cm-preview-content ol li,.cm-container .cm-mainer .cm-preview .cm-preview-content ul li{line-height:26px}.cm-container .cm-mainer .cm-preview .cm-preview-content ol li{list-style:decimal}.cm-container .cm-mainer .cm-preview .cm-preview-content ul li{list-style:disc}.cm-container .cm-mainer .cm-preview .cm-preview-content table{width:100%;max-width:100%;table-layout:fixed;color:#909399;margin-bottom:15px;font-size:13px;border-top:1px solid #ebeef5;border-left:1px solid #ebeef5;border-collapse:collapse}.cm-container .cm-mainer .cm-preview .cm-preview-content table td,.cm-container .cm-mainer .cm-preview .cm-preview-content table th{padding:8px;border-bottom:1px solid #ebeef5;border-right:1px solid #ebeef5}.cm-container .cm-mainer .cm-preview .cm-preview-content table thead th{font-weight:500;background:#ebeef5}.cm-container .cm-mainer .cm-preview .cm-preview-content img:not(.owo){display:block;max-width:100%;border-radius:4px;transition:box-shadow 0.35s, -webkit-transform 0.35s;transition:transform 0.35s, box-shadow 0.35s;transition:transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s;margin:0 auto}.cm-container .cm-mainer .cm-preview .cm-preview-content .owo{max-height:26px;vertical-align:top}.cm-container .cm-mainer .cm-preview .cm-preview-content a:not(.joe_detail__article-anote):not(.joe_detail__article-abtn){display:inline-block;line-height:26px;color:#409eff;position:relative;text-decoration:none}.cm-container .cm-mainer .cm-autosave{position:absolute;top:0;left:0;width:100%;z-index:999}.cm-container .cm-mainer .cm-autosave::before,.cm-container .cm-mainer .cm-autosave::after{content:'';position:absolute;top:0;width:0;height:3px;transition:width 0.5s}.cm-container .cm-mainer .cm-autosave::before{border-radius:0 1.5px 1.5px 0;left:50%;background:linear-gradient(to right, #4cd964, #5ac8fa, #007aff)}.cm-container .cm-mainer .cm-autosave::after{border-radius:1.5px 0 0 1.5px;right:50%;background:linear-gradient(to left, #4cd964, #5ac8fa, #007aff)}.cm-container .cm-mainer .cm-autosave.active::before,.cm-container .cm-mainer .cm-autosave.active::after{width:50%}.cm-container .cm-progress-left,.cm-container .cm-progress-right{position:absolute;top:0;width:0;height:3px;background-color:#ff5627;transition:width 0.5s;z-index:1}.cm-container .cm-progress-left{right:50%;border-radius:1.5px 0 0 1.5px}.cm-container .cm-progress-right{left:50%;border-radius:0 1.5px 1.5px 0}.cm-modal{display:flex;align-items:center;justify-content:center;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;background:rgba(0,0,0,0);visibility:hidden;transition:background 0.25s, visibility 0.25s;will-change:background, visibility}.cm-modal__wrapper{width:380px;background:#fff;color:#606266;border-radius:4px;opacity:0;-webkit-transform:translateY(-30%);transform:translateY(-30%);transition:opacity 0.25s, -webkit-transform 0.25s;transition:opacity 0.25s, transform 0.25s;transition:opacity 0.25s, transform 0.25s, -webkit-transform 0.25s}.cm-modal__wrapper-header{padding:10px 20px;border-bottom:1px solid #e4e7ed;display:flex;align-items:center;justify-content:space-between}.cm-modal__wrapper-header--close{font-size:20px;cursor:pointer}.cm-modal__wrapper-bodyer{padding:20px}.cm-modal__wrapper-bodyer .fitem{display:flex;align-items:center;margin-bottom:15px}.cm-modal__wrapper-bodyer .fitem:last-child{margin-bottom:0}.cm-modal__wrapper-bodyer .fitem label{margin-right:10px}.cm-modal__wrapper-bodyer .fitem input,.cm-modal__wrapper-bodyer .fitem select,.cm-modal__wrapper-bodyer .fitem textarea{width:auto;flex:1;-webkit-appearance:none;outline:none;border:1px solid #dcdfe6;height:34px;box-sizing:border-box;padding:0 10px;border-radius:3px;color:#606266}.cm-modal__wrapper-bodyer .fitem textarea{height:80px;padding:5px}.cm-modal__wrapper-bodyer .tabbar{position:relative;width:100%;overflow-x:auto;display:flex;margin-bottom:20px}.cm-modal__wrapper-bodyer .tabbar::-webkit-scrollbar{display:none}.cm-modal__wrapper-bodyer .tabbar-item{white-space:nowrap;margin-right:15px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cm-modal__wrapper-bodyer .tabbar-item:last-child{margin-right:0}.cm-modal__wrapper-bodyer .tabbar-item.active{color:#409eff}.cm-modal__wrapper-bodyer .lists{display:none;grid-template-columns:repeat(6, 1fr);font-size:18px;border-left:1px solid #e4e7ed;border-top:1px solid #e4e7ed;font-family:'Meiryo UI', 'Microsoft YaHei', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, 'Monaco', monospace, Tahoma, STXihei, '华文细黑', STHeiti, 'Helvetica Neue', 'Droid Sans', 'wenquanyi micro hei', FreeSans, Arimo, Arial, SimSun, '宋体', Heiti, '黑体', sans-serif;max-height:350px;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:none}.cm-modal__wrapper-bodyer .lists[data-show='颜文字']{grid-template-columns:repeat(2, 1fr);font-size:12px}.cm-modal__wrapper-bodyer .lists::-webkit-scrollbar-track{background:#fff}.cm-modal__wrapper-bodyer .lists::-webkit-scrollbar{width:6px;height:6px}.cm-modal__wrapper-bodyer .lists::-webkit-scrollbar-thumb{border-radius:3px;background:#c0c4cc}.cm-modal__wrapper-bodyer .lists.active{display:grid}.cm-modal__wrapper-bodyer .lists-item{display:flex;align-items:center;justify-content:center;border-right:1px solid #e4e7ed;border-bottom:1px solid #e4e7ed;cursor:pointer;transition:background 0.25s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#888;padding:5px 0}.cm-modal__wrapper-bodyer .lists-item img{max-width:70%}.cm-modal__wrapper-bodyer .lists-item:hover,.cm-modal__wrapper-bodyer .lists-item .active{background:#e4e7ed}.cm-modal__wrapper-footer{display:flex;align-items:center;justify-content:flex-end;padding:0 20px 10px}.cm-modal__wrapper-footer--cancle,.cm-modal__wrapper-footer--confirm{cursor:pointer;border:none;outline:none;margin-left:5px;background:#fff;color:#606266;-webkit-appearance:none;padding:7px 15px;border-radius:3px}.cm-modal__wrapper-footer--confirm{color:#fff;background:#409eff}.cm-modal.active{visibility:visible;background:rgba(0,0,0,0.75)}.cm-modal.active .cm-modal__wrapper{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.joe_detail__article-checkbox{-webkit-appearance:none;position:relative;border-radius:2px;width:15px;height:15px;border:2px solid #409eff;vertical-align:-3px;box-sizing:border-box;margin:0}.joe_detail__article-checkbox:disabled{cursor:not-allowed}.joe_detail__article-checkbox:checked{border:none;background:#409eff}.joe_detail__article-checkbox:checked::after{content:'';width:3px;height:7px;position:absolute;top:2px;left:5px;border:2px solid #fff;border-top:0;border-left:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.joe_detail__article-card_default{display:block;margin:0 auto;box-shadow:0 2px 12px 0 rgba(0,0,0,0.1);border-radius:4px;border:1px solid #ebeef5;background:#fff}.joe_detail__article-card_default>.title{display:block;padding:8px 10px;border-bottom:1px solid #ebeef5;color:#303133;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.joe_detail__article-card_default>.content{display:block;padding:10px;color:#606266}.joe_detail__article-card_default>.content *:last-child{margin-bottom:0 !important}.joe_detail__article-mtitle{display:flex;justify-content:center}.joe_detail__article-mtitle>.text{position:relative;color:#909399;padding:0 12px;transition:padding 0.35s}.joe_detail__article-mtitle>.text::before,.joe_detail__article-mtitle>.text::after{content:'';position:absolute;top:50%;width:20px;height:1px;background:#409eff}.joe_detail__article-mtitle>.text::before{left:-35px}.joe_detail__article-mtitle>.text::after{right:-35px}.joe_detail__article-player{width:100%;height:180px;border:none}.joe_detail__article-hide{display:block;background:repeating-linear-gradient(145deg, #f2f6fc, #f2f6fc 15px, #fff 0, #fff 25px);padding:15px 0;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:normal}.joe_detail__article-hide>i{position:relative;font-style:normal;cursor:pointer;color:#409eff}.joe_detail__article-abtn{display:inline-block;color:#fff;height:35px;line-height:35px;padding:0 15px}.joe_detail__article-abtn>.icon{display:inline-block;vertical-align:top;text-align:center}.joe_detail__article-abtn>.icon .fa{color:#fff}.joe_detail__article-abtn>.icon [class^='fa-']{margin-right:8px}.joe_detail__article-abtn>.content{color:#fff;display:inline-block;vertical-align:top;max-width:200px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.joe_detail__article-abtn:hover{color:#fff}.joe_detail__article-anote{position:relative;display:inline-block;color:#fff;height:35px;line-height:35px}.joe_detail__article-anote>.icon{display:inline-block;vertical-align:top;width:35px;height:35px;text-align:center;background:rgba(0,0,0,0.2)}.joe_detail__article-anote>.icon .fa{color:#fff}.joe_detail__article-anote>.content{display:inline-block;vertical-align:top;padding:0 12px;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fff}.joe_detail__article-anote.secondary{background:#34495e}.joe_detail__article-anote.success{background:#27ae60}.joe_detail__article-anote.warning{background:#f39c12}.joe_detail__article-anote.error{background:#e74c3c}.joe_detail__article-anote.info{background:#3498db}.joe_detail__article-anote:hover{color:#fff}.joe_detail__article-dotted{display:block;width:100%;height:2px;background-size:80px}.joe_detail__article-message{display:block;position:relative;border-left-width:4px;border-left-style:solid;padding:8px 15px;border-radius:0 4px 4px 0}.joe_detail__article-message>.icon{position:absolute;top:-9px;left:-11px;width:18px;height:18px;border-radius:50%;transition:-webkit-transform 0.85s;transition:transform 0.85s;transition:transform 0.85s, -webkit-transform 0.85s}.joe_detail__article-message>.icon::before{content:'';position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:10px;height:10px;fill:#fff;background-repeat:no-repeat;background-size:100% 100%}.joe_detail__article-message.success{border-left-color:#2bde3f;background:#2bde3f20;color:#2bde3f}.joe_detail__article-message.success .icon{background:#2bde3f}.joe_detail__article-message.success .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MDE1ODgxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQxMTU3IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00MTMuMjU1IDY5MS40MzZjMTguNTQ2LTE3LjQ1IDMzLjE4Ni0zMC41NTIgNDcuMDc2LTQ0LjQyNyAxMzMuMDQtMTMyLjgxIDI2Ni4xODItMjY1LjUxMyAzOTguNzI0LTM5OC44MzcgMzIuMDc0LTMyLjI0NCA2NS42NjYtNDguNDUyIDEwNC45OTctMTQuNzUyIDMyLjk4MyAyOC4yNDEgMjguMDQ5IDY3LjQ2NS0xMi45MiAxMDguNTc0LTE1Ny4xNzUgMTU3LjcxLTMxNC41ODcgMzE1LjE4NC00NzIuMjkyIDQ3Mi4zOC00OS4zODkgNDkuMjI1LTc2LjMwOCA0OS41NDYtMTI0LjcxNiAxLjYwNy04NS41OS04NC43NjUtMTcwLjEzNS0xNzAuNTc5LTI1NS44LTI1NS4yNTctMzIuMjkyLTMxLjkyMy00OC42OC02NS41MTYtMTQuOTk3LTEwNC45NzYgMjguMTctMzIuOTk1IDY3LjU1Ny0yOC4xNTUgMTA4LjU1OCAxMi42NzUgNzMuNDI3IDczLjE2IDE0Ni4wNzkgMTQ3LjA5IDIyMS4zNyAyMjMuMDEzeiIgcC1pZD0iNDExNTgiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L3N2Zz4=)}.joe_detail__article-message.info{border-left-color:#1d72f3;background:#1d72f320;color:#1d72f3}.joe_detail__article-message.info .icon{background:#1d72f3}.joe_detail__article-message.info .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MzM4MjIxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjYxNjg0IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik03NjcuOTczOTc1IDExNi4zNDYwODZjMCA2NC4yNTI3MzQtNDEuNjgzMjE0IDExNi4zODg3NS05My4wOTM5MzUgMTE2LjM4ODc1UzU4MS43ODYxMDYgMTgwLjU5ODgyIDU4MS43ODYxMDYgMTE2LjM0NjA4NkM1ODEuNzg2MTA2IDUyLjA5MzM1MiA2MjMuNDY5MzIgMCA2NzQuODgwMDQgMFM3NjcuOTczOTc1IDUyLjA5MzM1MiA3NjcuOTczOTc1IDExNi4zNDYwODZ6TTI1NiA1MDQuMjk0MzY1czcwLjgyMzA2Ni0yODQuNzg1NTIzIDI4Ni43NDgwOS0yNzEuMDQ3NTU1YzIxNS45MjUwMjQgMTMuNjk1MzA0IDY3LjIzOTI0OSAyNjEuNDQ4MDQzLTEzLjI2ODY1OSA1MDEuNjQ5MTY2LTgwLjUwNzkwOCAyNDAuMjAxMTIzIDEwMC4yNjE1NyA3MS40MjAzNjkgMTQ1LjQwMDYwOS03LjU1MTYxNiAwIDAtOTMuMTM2NTk5IDQwNi43NjMzMjMtMzY3LjM0MTMyNyAyNjcuNjc3MDYtMTI4LjU0ODEzMi02NS4yMzQwMTcgMzIuMjU0MzYtMzk4LjA1OTc2NSAxMDMuMTIwMDkyLTU0NS41OTM1OTlDNDgxLjU2NzIgMzAxLjgwODY1OCAzMzYuNjM1OTAxIDM4Ny42MDY5NjMgMjU2IDUwNC4yNTE3MDF6IiBmaWxsPSIjZmZmZmZmIiBwLWlkPSI2MTY4NSI+PC9wYXRoPjwvc3ZnPg==)}.joe_detail__article-message.warning{border-left-color:#ffc007;background:#ffc00720;color:#ffc007}.joe_detail__article-message.warning .icon{background:#ffc007}.joe_detail__article-message.warning .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MTI5NTE1IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ3NDkyIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00NzkuODE3MTQzIDY2NS42YzEwLjI0IDMwLjcyIDMwLjcyIDUxLjIgNjEuNDQgNTEuMnM1MS4yLTIwLjQ4IDYxLjQ0LTUxLjJsNDAuOTYtNTYzLjJDNjQzLjY1NzE0MyA0MC45NiA1OTIuNDU3MTQzIDAgNTQxLjI1NzE0MyAwIDQ3OS44MTcxNDMgMCA0MzguODU3MTQzIDUxLjIgNDM4Ljg1NzE0MyAxMTIuNjRsNDAuOTYgNTUyLjk2eiBtNjEuNDQgMTUzLjZjLTYxLjQ0IDAtMTAyLjQgNDAuOTYtMTAyLjQgMTAyLjQgMCA2MS40NCA0MC45NiAxMDIuNCAxMDIuNCAxMDIuNCA2MS40NCAwIDEwMi40LTQwLjk2IDEwMi40LTEwMi40IDAtNjEuNDQtNDAuOTYtMTAyLjQtMTAyLjQtMTAyLjR6IiBwLWlkPSI0NzQ5MyIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==)}.joe_detail__article-message.error{border-left-color:#f56c6c;background:#f56c6c20;color:#f56c6c}.joe_detail__article-message.error .icon{background:#f56c6c}.joe_detail__article-message.error .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MjAyNDk4IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ4OTE1IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0xOTMuOCA4MzAuMmMtMTkuNC0xOS40LTE5LjQtNTEuMyAwLTcwLjdsNTY1LjctNTY1LjdjMTkuNC0xOS40IDUxLjMtMTkuNCA3MC43IDAgMTkuNCAxOS40IDE5LjQgNTEuMyAwIDcwLjdMMjY0LjUgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAweiIgZmlsbD0iI2ZmZmZmZiIgcC1pZD0iNDg5MTYiPjwvcGF0aD48cGF0aCBkPSJNODMwLjIgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAwTDE5My44IDI2NC41Yy0xOS40LTE5LjQtMTkuNC01MS4zIDAtNzAuNyAxOS40LTE5LjQgNTEuMy0xOS40IDcwLjcgMGw1NjUuNyA1NjUuN2MxOS40IDE5LjQgMTkuNCA1MS4zIDAgNzAuN3oiIGZpbGw9IiNmZmZmZmYiIHAtaWQ9IjQ4OTE3Ij48L3BhdGg+PC9zdmc+)}.joe_detail__article-message>.content{display:block}.joe_detail__article-progress{width:100%;display:flex;align-items:center}.joe_detail__article-progress .strip{height:12px;border-radius:6px;overflow:hidden;background:#ebeef5;min-width:0;flex:1;margin-right:10px}.joe_detail__article-progress .strip .percent{position:relative;display:block;height:100%;border-radius:6px;transition:width 0.35s}.joe_detail__article-progress .strip .percent::before{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#fff;border-radius:6px;-webkit-animation:progress-active 3s ease-in-out infinite;animation:progress-active 3s ease-in-out infinite}.joe_detail__article-progress .percentage{color:#909399}.joe_detail__article-callout{display:block;padding:12px;border:1px solid #ebeef5;border-left-width:4px;border-radius:4px;color:#606266}.joe_detail__article-callout *:last-child{margin-bottom:0 !important}@media (max-width: 768px){.cm-modal__wrapper{width:90%}}@-webkit-keyframes progress-active{0%{opacity:0.3;width:0}to{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:0.3;width:0}to{opacity:0;width:100%}} +input[name='fields[keywords]']{width:100%}textarea[name='fields[description]'],textarea[name='fields[abstract]'],textarea[name='fields[thumb]'],textarea[name='fields[video]']{width:100%;height:80px}#text,#text ~ .resize{display:none}body.fullscreen{overflow:hidden}.cm-container{display:flex;flex-direction:column;position:relative;width:100%;height:550px;box-sizing:border-box;z-index:6666;content-visibility:auto;background:#222}.cm-container.fullscreen{position:fixed;top:0;left:0;width:100%;height:100%}.cm-container *{outline:none !important}.cm-container .cm-tools{display:flex;flex-wrap:wrap;background-color:#303133;padding:5px 0 0 5px}.cm-container .cm-tools .cm-tools-item{position:relative;cursor:pointer;display:flex;align-items:center;justify-content:center;border-radius:2px;padding:5px;margin:0 5px 5px 0;transition:background 0.25s}.cm-container .cm-tools .cm-tools-item:hover{background:#393939}.cm-container .cm-tools .cm-tools-item:hover svg{fill:#efefef}.cm-container .cm-tools .cm-tools-item.active{background:#393939}.cm-container .cm-tools .cm-tools-item.active svg{fill:#efefef}.cm-container .cm-tools .cm-tools-item.active .cm-tools__dropdown{visibility:visible;opacity:1;-webkit-transform:translateX(-50%) rotateX(0);transform:translateX(-50%) rotateX(0)}.cm-container .cm-tools .cm-tools-item svg{vertical-align:middle;fill:#bfbfbf}.cm-container .cm-tools__dropdown{position:absolute;top:42px;left:50%;z-index:1000;background:#393939;padding:5px 0;border-radius:4px;visibility:hidden;-webkit-transform-origin:top;transform-origin:top;opacity:0;-webkit-transform:translateX(-50%) rotateX(-90deg);transform:translateX(-50%) rotateX(-90deg);transition:visibility 0.25s, opacity 0.25s, -webkit-transform 0.25s;transition:visibility 0.25s, transform 0.25s, opacity 0.25s;transition:visibility 0.25s, transform 0.25s, opacity 0.25s, -webkit-transform 0.25s}.cm-container .cm-tools__dropdown-item{padding:0 20px;line-height:32px;transition:background 0.25s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-size:15px;color:#bfbfbf;font-weight:600}.cm-container .cm-tools__dropdown-item:hover{background:#444}.cm-container .cm-tools__dropdown::before{content:'';position:absolute;top:-7px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:0;height:0;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #393939}.cm-container .cm-mainer{position:relative;flex:1;min-height:0;display:flex;width:100%}.cm-container .cm-mainer .cm-wrap{flex-shrink:0;height:100%;flex:1;min-width:0;font-size:14px}.cm-container .cm-mainer .cm-wrap .cm-scroller{line-height:1.5;font-family:Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;-ms-scroll-chaining:none;overscroll-behavior:none}.cm-container .cm-mainer .cm-wrap .cm-scroller::-webkit-scrollbar-track{background:#222}.cm-container .cm-mainer .cm-wrap .cm-scroller::-webkit-scrollbar{width:6px;height:6px}.cm-container .cm-mainer .cm-wrap .cm-scroller::-webkit-scrollbar-thumb{border-radius:3px;background:rgba(255,255,255,0.25)}.cm-container .cm-mainer .cm-wrap .cm-scroller ::-moz-selection{background-color:rgba(221,240,255,0.2)}.cm-container .cm-mainer .cm-wrap .cm-scroller ::selection{background-color:rgba(221,240,255,0.2)}.cm-container .cm-mainer .cm-wrap .cm-scroller .cm-content{width:100%;white-space:normal;overflow-wrap:break-word;color:#ccc;caret-color:#ccc;padding:15px 13px 15px 11px;-webkit-user-modify:read-write-plaintext-only}.cm-container .cm-mainer .cm-wrap .cm-scroller .cm-matchingBracket{color:#8f938f;border:1px solid rgba(255,255,255,0.25);margin:-1px}.cm-container .cm-mainer .cm-wrap .cm-scroller .cm-nonmatchingBracket{color:#ff5627}.cm-container .cm-mainer .cm-resize{flex-shrink:0;height:100%;position:relative;width:16px;background:#303133;cursor:col-resize}.cm-container .cm-mainer .cm-resize::before{content:'';position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:4px;height:40px;border-radius:2px;background:#fff}.cm-container .cm-mainer .cm-preview{position:relative;flex-shrink:0;width:0;height:100%;background:#fff;overflow:auto;box-sizing:border-box;-ms-scroll-chaining:none;overscroll-behavior:none}.cm-container .cm-mainer .cm-preview.move{pointer-events:none}.cm-container .cm-mainer .cm-preview::-webkit-scrollbar-track{background:#fff}.cm-container .cm-mainer .cm-preview::-webkit-scrollbar{width:6px;height:6px}.cm-container .cm-mainer .cm-preview::-webkit-scrollbar-thumb{border-radius:3px;background:#c0c4cc}.cm-container .cm-mainer .cm-autosave{position:absolute;top:0;left:0;width:100%;z-index:999}.cm-container .cm-mainer .cm-autosave::before,.cm-container .cm-mainer .cm-autosave::after{content:'';position:absolute;top:0;width:0;height:3px;transition:width 0.5s}.cm-container .cm-mainer .cm-autosave::before{border-radius:0 1.5px 1.5px 0;left:50%;background:linear-gradient(to right, #4cd964, #5ac8fa, #007aff)}.cm-container .cm-mainer .cm-autosave::after{border-radius:1.5px 0 0 1.5px;right:50%;background:linear-gradient(to left, #4cd964, #5ac8fa, #007aff)}.cm-container .cm-mainer .cm-autosave.active::before,.cm-container .cm-mainer .cm-autosave.active::after{width:50%}.cm-container .cm-progress-left,.cm-container .cm-progress-right{position:absolute;top:0;width:0;height:3px;background-color:#ff5627;transition:width 0.5s;z-index:1}.cm-container .cm-progress-left{right:50%;border-radius:1.5px 0 0 1.5px}.cm-container .cm-progress-right{left:50%;border-radius:0 1.5px 1.5px 0}.cm-preview-content{padding:20px;font-size:14px;font-family:'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;white-space:normal;overflow-wrap:break-word;color:#606266;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.cm-preview-content h1,.cm-preview-content h2,.cm-preview-content h3,.cm-preview-content h4,.cm-preview-content h5,.cm-preview-content h6{color:#303133;font-size:18px;line-height:24px;margin:0;margin-bottom:15px;position:relative}.cm-preview-content h1{padding:0 15px}.cm-preview-content h1::before{content:'';position:absolute;top:8.5px;left:0;height:7px;width:7px;border-radius:50%;background:#409eff}.cm-preview-content h2{padding:0 15px}.cm-preview-content h2::before{content:'';position:absolute;top:10%;bottom:10%;left:0;width:4px;border-radius:2px;background:#409eff}.cm-preview-content h3{padding:0 15px 0 20px}.cm-preview-content h3::before{content:'#';color:#409eff;font-weight:700;position:absolute;top:0;left:0;line-height:24px}.cm-preview-content h4::before{content:'「';color:#409eff;font-weight:600;margin-right:5px}.cm-preview-content h4::after{content:'」';color:#409eff;font-weight:600;margin-left:5px}.cm-preview-content h5{padding:0 15px 0 28px}.cm-preview-content h5::before{content:'';position:absolute;top:2px;left:0;width:20px;height:20px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg==");background-size:100% 100%}.cm-preview-content h6{padding:0 15px 0 28px}.cm-preview-content h6::before{content:'';position:absolute;top:2px;left:0;width:20px;height:20px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC");background-size:100% 100%}.cm-preview-content hr{margin:0;border:none;height:1px;background-color:#e4e7ed;margin-bottom:15px}.cm-preview-content p{line-height:26px;margin:0;margin-bottom:15px}.cm-preview-content blockquote{margin:0;line-height:26px;margin-bottom:15px;background:#ecf8ff;border-left:5px solid #50bfff;color:#50bfff;padding:8px 15px;border-radius:0 4px 4px 0}.cm-preview-content blockquote p{margin:0}.cm-preview-content pre{margin:0;margin-bottom:15px}.cm-preview-content pre::-webkit-scrollbar-track{background:#fff}.cm-preview-content pre::-webkit-scrollbar{width:6px;height:6px}.cm-preview-content pre::-webkit-scrollbar-thumb{border-radius:3px;background:#c0c4cc}.cm-preview-content p code{display:inline-block;min-height:26px;line-height:26px;border-radius:4px;font-size:12px;background:#fdf6ec;padding:0 8px;color:#e6a23c;vertical-align:top}.cm-preview-content ol,.cm-preview-content ul{margin:0;margin-bottom:15px;padding-left:36px}.cm-preview-content ol li,.cm-preview-content ul li{line-height:26px}.cm-preview-content ol li{list-style:decimal}.cm-preview-content ul li{list-style:disc}.cm-preview-content table{width:100%;max-width:100%;table-layout:fixed;color:#909399;margin-bottom:15px;font-size:13px;border-top:1px solid #ebeef5;border-left:1px solid #ebeef5;border-collapse:collapse}.cm-preview-content table td,.cm-preview-content table th{padding:8px;border-bottom:1px solid #ebeef5;border-right:1px solid #ebeef5}.cm-preview-content table thead th{font-weight:500;background:#ebeef5}.cm-preview-content img:not(.owo){display:block;max-width:100%;border-radius:4px;transition:box-shadow 0.35s, -webkit-transform 0.35s;transition:transform 0.35s, box-shadow 0.35s;transition:transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s;margin:0 auto}.cm-preview-content .owo{max-height:26px;vertical-align:top}.cm-preview-content a:not(.joe_detail__article-anote):not(.joe_detail__article-abtn){display:inline-block;line-height:26px;color:#409eff;position:relative;text-decoration:none}.cm-modal{display:flex;align-items:center;justify-content:center;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;background:rgba(0,0,0,0);visibility:hidden;transition:background 0.25s, visibility 0.25s;will-change:background, visibility}.cm-modal__wrapper{width:380px;background:#fff;color:#606266;border-radius:4px;opacity:0;-webkit-transform:translateY(-30%);transform:translateY(-30%);transition:opacity 0.25s, -webkit-transform 0.25s;transition:opacity 0.25s, transform 0.25s;transition:opacity 0.25s, transform 0.25s, -webkit-transform 0.25s}.cm-modal__wrapper-header{padding:10px 20px;border-bottom:1px solid #e4e7ed;display:flex;align-items:center;justify-content:space-between}.cm-modal__wrapper-header--close{font-size:20px;cursor:pointer}.cm-modal__wrapper-bodyer{padding:20px}.cm-modal__wrapper-bodyer .fitem{display:flex;align-items:center;margin-bottom:15px}.cm-modal__wrapper-bodyer .fitem:last-child{margin-bottom:0}.cm-modal__wrapper-bodyer .fitem label{margin-right:10px}.cm-modal__wrapper-bodyer .fitem input,.cm-modal__wrapper-bodyer .fitem select,.cm-modal__wrapper-bodyer .fitem textarea{width:auto;flex:1;-webkit-appearance:none;outline:none;border:1px solid #dcdfe6;height:34px;box-sizing:border-box;padding:0 10px;border-radius:3px;color:#606266}.cm-modal__wrapper-bodyer .fitem textarea{height:80px;padding:5px}.cm-modal__wrapper-bodyer .tabbar{position:relative;width:100%;overflow-x:auto;display:flex;margin-bottom:20px}.cm-modal__wrapper-bodyer .tabbar::-webkit-scrollbar{display:none}.cm-modal__wrapper-bodyer .tabbar-item{white-space:nowrap;margin-right:15px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.cm-modal__wrapper-bodyer .tabbar-item:last-child{margin-right:0}.cm-modal__wrapper-bodyer .tabbar-item.active{color:#409eff}.cm-modal__wrapper-bodyer .lists{display:none;grid-template-columns:repeat(6, 1fr);font-size:18px;border-left:1px solid #e4e7ed;border-top:1px solid #e4e7ed;font-family:'Meiryo UI', 'Microsoft YaHei', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, 'Monaco', monospace, Tahoma, STXihei, '华文细黑', STHeiti, 'Helvetica Neue', 'Droid Sans', 'wenquanyi micro hei', FreeSans, Arimo, Arial, SimSun, '宋体', Heiti, '黑体', sans-serif;max-height:350px;overflow-y:auto;-ms-scroll-chaining:none;overscroll-behavior:none}.cm-modal__wrapper-bodyer .lists[data-show='颜文字']{grid-template-columns:repeat(2, 1fr);font-size:12px}.cm-modal__wrapper-bodyer .lists::-webkit-scrollbar-track{background:#fff}.cm-modal__wrapper-bodyer .lists::-webkit-scrollbar{width:6px;height:6px}.cm-modal__wrapper-bodyer .lists::-webkit-scrollbar-thumb{border-radius:3px;background:#c0c4cc}.cm-modal__wrapper-bodyer .lists.active{display:grid}.cm-modal__wrapper-bodyer .lists-item{display:flex;align-items:center;justify-content:center;border-right:1px solid #e4e7ed;border-bottom:1px solid #e4e7ed;cursor:pointer;transition:background 0.25s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:#888;padding:5px 0}.cm-modal__wrapper-bodyer .lists-item img{max-width:70%}.cm-modal__wrapper-bodyer .lists-item:hover,.cm-modal__wrapper-bodyer .lists-item .active{background:#e4e7ed}.cm-modal__wrapper-footer{display:flex;align-items:center;justify-content:flex-end;padding:0 20px 10px}.cm-modal__wrapper-footer--cancle,.cm-modal__wrapper-footer--confirm{cursor:pointer;border:none;outline:none;margin-left:5px;background:#fff;color:#606266;-webkit-appearance:none;padding:7px 15px;border-radius:3px}.cm-modal__wrapper-footer--confirm{color:#fff;background:#409eff}.cm-modal.active{visibility:visible;background:rgba(0,0,0,0.75)}.cm-modal.active .cm-modal__wrapper{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}.joe_detail__article-checkbox{-webkit-appearance:none;position:relative;border-radius:2px;width:15px;height:15px;border:2px solid #409eff;vertical-align:-3px;box-sizing:border-box;margin:0}.joe_detail__article-checkbox:disabled{cursor:not-allowed}.joe_detail__article-checkbox:checked{border:none;background:#409eff}.joe_detail__article-checkbox:checked::after{content:'';width:3px;height:7px;position:absolute;top:2px;left:5px;border:2px solid #fff;border-top:0;border-left:0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.joe_detail__article-card_default{display:block;margin:0 auto;box-shadow:0 2px 12px 0 rgba(0,0,0,0.1);border-radius:4px;border:1px solid #ebeef5;background:#fff}.joe_detail__article-card_default>.title{display:block;padding:8px 10px;border-bottom:1px solid #ebeef5;color:#303133;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.joe_detail__article-card_default>.content{display:block;padding:10px;color:#606266}.joe_detail__article-card_default>.content *:last-child{margin-bottom:0 !important}.joe_detail__article-mtitle{display:flex;justify-content:center}.joe_detail__article-mtitle>.text{position:relative;color:#909399;padding:0 12px;transition:padding 0.35s}.joe_detail__article-mtitle>.text::before,.joe_detail__article-mtitle>.text::after{content:'';position:absolute;top:50%;width:20px;height:1px;background:#409eff}.joe_detail__article-mtitle>.text::before{left:-35px}.joe_detail__article-mtitle>.text::after{right:-35px}.joe_detail__article-player{width:100%;height:180px;border:none}.joe_detail__article-hide{display:block;background:repeating-linear-gradient(145deg, #f2f6fc, #f2f6fc 15px, #fff 0, #fff 25px);padding:15px 0;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:normal}.joe_detail__article-hide>i{position:relative;font-style:normal;cursor:pointer;color:#409eff}.joe_detail__article-abtn{display:inline-block;color:#fff;height:35px;line-height:35px;padding:0 15px}.joe_detail__article-abtn>.icon{display:inline-block;vertical-align:top;text-align:center}.joe_detail__article-abtn>.icon .fa{color:#fff}.joe_detail__article-abtn>.icon [class^='fa-']{margin-right:8px}.joe_detail__article-abtn>.content{color:#fff;display:inline-block;vertical-align:top;max-width:200px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.joe_detail__article-abtn:hover{color:#fff}.joe_detail__article-anote{position:relative;display:inline-block;color:#fff;height:35px;line-height:35px}.joe_detail__article-anote>.icon{display:inline-block;vertical-align:top;width:35px;height:35px;text-align:center;background:rgba(0,0,0,0.2)}.joe_detail__article-anote>.icon .fa{color:#fff}.joe_detail__article-anote>.content{display:inline-block;vertical-align:top;padding:0 12px;max-width:200px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#fff}.joe_detail__article-anote.secondary{background:#34495e}.joe_detail__article-anote.success{background:#27ae60}.joe_detail__article-anote.warning{background:#f39c12}.joe_detail__article-anote.error{background:#e74c3c}.joe_detail__article-anote.info{background:#3498db}.joe_detail__article-anote:hover{color:#fff}.joe_detail__article-dotted{display:block;width:100%;height:2px;background-size:80px}.joe_detail__article-message{display:block;position:relative;border-left-width:4px;border-left-style:solid;padding:8px 15px;border-radius:0 4px 4px 0}.joe_detail__article-message>.icon{position:absolute;top:-9px;left:-11px;width:18px;height:18px;border-radius:50%;transition:-webkit-transform 0.85s;transition:transform 0.85s;transition:transform 0.85s, -webkit-transform 0.85s}.joe_detail__article-message>.icon::before{content:'';position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);transform:translate(-50%, -50%);width:10px;height:10px;fill:#fff;background-repeat:no-repeat;background-size:100% 100%}.joe_detail__article-message.success{border-left-color:#2bde3f;background:#2bde3f20;color:#2bde3f}.joe_detail__article-message.success .icon{background:#2bde3f}.joe_detail__article-message.success .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MDE1ODgxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQxMTU3IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00MTMuMjU1IDY5MS40MzZjMTguNTQ2LTE3LjQ1IDMzLjE4Ni0zMC41NTIgNDcuMDc2LTQ0LjQyNyAxMzMuMDQtMTMyLjgxIDI2Ni4xODItMjY1LjUxMyAzOTguNzI0LTM5OC44MzcgMzIuMDc0LTMyLjI0NCA2NS42NjYtNDguNDUyIDEwNC45OTctMTQuNzUyIDMyLjk4MyAyOC4yNDEgMjguMDQ5IDY3LjQ2NS0xMi45MiAxMDguNTc0LTE1Ny4xNzUgMTU3LjcxLTMxNC41ODcgMzE1LjE4NC00NzIuMjkyIDQ3Mi4zOC00OS4zODkgNDkuMjI1LTc2LjMwOCA0OS41NDYtMTI0LjcxNiAxLjYwNy04NS41OS04NC43NjUtMTcwLjEzNS0xNzAuNTc5LTI1NS44LTI1NS4yNTctMzIuMjkyLTMxLjkyMy00OC42OC02NS41MTYtMTQuOTk3LTEwNC45NzYgMjguMTctMzIuOTk1IDY3LjU1Ny0yOC4xNTUgMTA4LjU1OCAxMi42NzUgNzMuNDI3IDczLjE2IDE0Ni4wNzkgMTQ3LjA5IDIyMS4zNyAyMjMuMDEzeiIgcC1pZD0iNDExNTgiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L3N2Zz4=)}.joe_detail__article-message.info{border-left-color:#1d72f3;background:#1d72f320;color:#1d72f3}.joe_detail__article-message.info .icon{background:#1d72f3}.joe_detail__article-message.info .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MzM4MjIxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjYxNjg0IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik03NjcuOTczOTc1IDExNi4zNDYwODZjMCA2NC4yNTI3MzQtNDEuNjgzMjE0IDExNi4zODg3NS05My4wOTM5MzUgMTE2LjM4ODc1UzU4MS43ODYxMDYgMTgwLjU5ODgyIDU4MS43ODYxMDYgMTE2LjM0NjA4NkM1ODEuNzg2MTA2IDUyLjA5MzM1MiA2MjMuNDY5MzIgMCA2NzQuODgwMDQgMFM3NjcuOTczOTc1IDUyLjA5MzM1MiA3NjcuOTczOTc1IDExNi4zNDYwODZ6TTI1NiA1MDQuMjk0MzY1czcwLjgyMzA2Ni0yODQuNzg1NTIzIDI4Ni43NDgwOS0yNzEuMDQ3NTU1YzIxNS45MjUwMjQgMTMuNjk1MzA0IDY3LjIzOTI0OSAyNjEuNDQ4MDQzLTEzLjI2ODY1OSA1MDEuNjQ5MTY2LTgwLjUwNzkwOCAyNDAuMjAxMTIzIDEwMC4yNjE1NyA3MS40MjAzNjkgMTQ1LjQwMDYwOS03LjU1MTYxNiAwIDAtOTMuMTM2NTk5IDQwNi43NjMzMjMtMzY3LjM0MTMyNyAyNjcuNjc3MDYtMTI4LjU0ODEzMi02NS4yMzQwMTcgMzIuMjU0MzYtMzk4LjA1OTc2NSAxMDMuMTIwMDkyLTU0NS41OTM1OTlDNDgxLjU2NzIgMzAxLjgwODY1OCAzMzYuNjM1OTAxIDM4Ny42MDY5NjMgMjU2IDUwNC4yNTE3MDF6IiBmaWxsPSIjZmZmZmZmIiBwLWlkPSI2MTY4NSI+PC9wYXRoPjwvc3ZnPg==)}.joe_detail__article-message.warning{border-left-color:#ffc007;background:#ffc00720;color:#ffc007}.joe_detail__article-message.warning .icon{background:#ffc007}.joe_detail__article-message.warning .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MTI5NTE1IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ3NDkyIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00NzkuODE3MTQzIDY2NS42YzEwLjI0IDMwLjcyIDMwLjcyIDUxLjIgNjEuNDQgNTEuMnM1MS4yLTIwLjQ4IDYxLjQ0LTUxLjJsNDAuOTYtNTYzLjJDNjQzLjY1NzE0MyA0MC45NiA1OTIuNDU3MTQzIDAgNTQxLjI1NzE0MyAwIDQ3OS44MTcxNDMgMCA0MzguODU3MTQzIDUxLjIgNDM4Ljg1NzE0MyAxMTIuNjRsNDAuOTYgNTUyLjk2eiBtNjEuNDQgMTUzLjZjLTYxLjQ0IDAtMTAyLjQgNDAuOTYtMTAyLjQgMTAyLjQgMCA2MS40NCA0MC45NiAxMDIuNCAxMDIuNCAxMDIuNCA2MS40NCAwIDEwMi40LTQwLjk2IDEwMi40LTEwMi40IDAtNjEuNDQtNDAuOTYtMTAyLjQtMTAyLjQtMTAyLjR6IiBwLWlkPSI0NzQ5MyIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==)}.joe_detail__article-message.error{border-left-color:#f56c6c;background:#f56c6c20;color:#f56c6c}.joe_detail__article-message.error .icon{background:#f56c6c}.joe_detail__article-message.error .icon::before{background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MjAyNDk4IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ4OTE1IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0xOTMuOCA4MzAuMmMtMTkuNC0xOS40LTE5LjQtNTEuMyAwLTcwLjdsNTY1LjctNTY1LjdjMTkuNC0xOS40IDUxLjMtMTkuNCA3MC43IDAgMTkuNCAxOS40IDE5LjQgNTEuMyAwIDcwLjdMMjY0LjUgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAweiIgZmlsbD0iI2ZmZmZmZiIgcC1pZD0iNDg5MTYiPjwvcGF0aD48cGF0aCBkPSJNODMwLjIgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAwTDE5My44IDI2NC41Yy0xOS40LTE5LjQtMTkuNC01MS4zIDAtNzAuNyAxOS40LTE5LjQgNTEuMy0xOS40IDcwLjcgMGw1NjUuNyA1NjUuN2MxOS40IDE5LjQgMTkuNCA1MS4zIDAgNzAuN3oiIGZpbGw9IiNmZmZmZmYiIHAtaWQ9IjQ4OTE3Ij48L3BhdGg+PC9zdmc+)}.joe_detail__article-message>.content{display:block}.joe_detail__article-progress{width:100%;display:flex;align-items:center}.joe_detail__article-progress .strip{height:12px;border-radius:6px;overflow:hidden;background:#ebeef5;min-width:0;flex:1;margin-right:10px}.joe_detail__article-progress .strip .percent{position:relative;display:block;height:100%;border-radius:6px;transition:width 0.35s}.joe_detail__article-progress .strip .percent::before{content:'';opacity:0;position:absolute;top:0;left:0;right:0;bottom:0;background:#fff;border-radius:6px;-webkit-animation:progress-active 3s ease-in-out infinite;animation:progress-active 3s ease-in-out infinite}.joe_detail__article-progress .percentage{color:#909399}.joe_detail__article-callout{display:block;padding:12px;border:1px solid #ebeef5;border-left-width:4px;border-radius:4px;color:#606266}.joe_detail__article-callout *:last-child{margin-bottom:0 !important}@media (max-width: 768px){.cm-modal__wrapper{width:90%}}@-webkit-keyframes progress-active{0%{opacity:0.3;width:0}to{opacity:0;width:100%}}@keyframes progress-active{0%{opacity:0.3;width:0}to{opacity:0;width:100%}} diff --git a/typecho/write/css/joe.write.min.scss b/typecho/write/css/joe.write.min.scss index 9b2c87e..1c9ad43 100644 --- a/typecho/write/css/joe.write.min.scss +++ b/typecho/write/css/joe.write.min.scss @@ -206,214 +206,6 @@ body.fullscreen { border-radius: 3px; background: #c0c4cc; } - .cm-preview-content { - padding: 20px; - font-size: 14px; - font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif; - white-space: normal; - overflow-wrap: break-word; - color: #606266; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - h1, - h2, - h3, - h4, - h5, - h6 { - color: #303133; - font-size: 18px; - line-height: 24px; - margin: 0; - margin-bottom: 15px; - position: relative; - } - h1 { - padding: 0 15px; - &::before { - content: ''; - position: absolute; - top: 8.5px; - left: 0; - height: 7px; - width: 7px; - border-radius: 50%; - background: #409eff; - } - } - h2 { - padding: 0 15px; - &::before { - content: ''; - position: absolute; - top: 10%; - bottom: 10%; - left: 0; - width: 4px; - border-radius: 2px; - background: #409eff; - } - } - h3 { - padding: 0 15px 0 20px; - &::before { - content: '#'; - color: #409eff; - font-weight: 700; - position: absolute; - top: 0; - left: 0; - line-height: 24px; - } - } - h4 { - &::before { - content: '「'; - color: #409eff; - font-weight: 600; - margin-right: 5px; - } - &::after { - content: '」'; - color: #409eff; - font-weight: 600; - margin-left: 5px; - } - } - h5 { - padding: 0 15px 0 28px; - &::before { - content: ''; - position: absolute; - top: 2px; - left: 0; - width: 20px; - height: 20px; - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg=='); - background-size: 100% 100%; - } - } - h6 { - padding: 0 15px 0 28px; - &::before { - content: ''; - position: absolute; - top: 2px; - left: 0; - width: 20px; - height: 20px; - background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC'); - background-size: 100% 100%; - } - } - hr { - margin: 0; - border: none; - height: 1px; - background-color: #e4e7ed; - margin-bottom: 15px; - } - p { - line-height: 26px; - margin: 0; - margin-bottom: 15px; - } - blockquote { - margin: 0; - line-height: 26px; - margin-bottom: 15px; - background: #ecf8ff; - border-left: 5px solid #50bfff; - color: #50bfff; - padding: 8px 15px; - border-radius: 0 4px 4px 0; - p { - margin: 0; - } - } - pre { - margin: 0; - margin-bottom: 15px; - &::-webkit-scrollbar-track { - background: #fff; - } - &::-webkit-scrollbar { - width: 6px; - height: 6px; - } - &::-webkit-scrollbar-thumb { - border-radius: 3px; - background: #c0c4cc; - } - } - p code { - display: inline-block; - min-height: 26px; - line-height: 26px; - border-radius: 4px; - font-size: 12px; - background: #fdf6ec; - padding: 0 8px; - color: #e6a23c; - vertical-align: top; - } - ol, - ul { - margin: 0; - margin-bottom: 15px; - padding-left: 36px; - li { - line-height: 26px; - } - } - ol li { - list-style: decimal; - } - ul li { - list-style: disc; - } - table { - width: 100%; - max-width: 100%; - table-layout: fixed; - color: #909399; - margin-bottom: 15px; - font-size: 13px; - border-top: 1px solid #ebeef5; - border-left: 1px solid #ebeef5; - border-collapse: collapse; - td, - th { - padding: 8px; - border-bottom: 1px solid #ebeef5; - border-right: 1px solid #ebeef5; - } - thead { - th { - font-weight: 500; - background: #ebeef5; - } - } - } - img:not(.owo) { - display: block; - max-width: 100%; - border-radius: 4px; - transition: transform 0.35s, box-shadow 0.35s; - margin: 0 auto; - } - .owo { - max-height: 26px; - vertical-align: top; - } - a:not(.joe_detail__article-anote):not(.joe_detail__article-abtn) { - display: inline-block; - line-height: 26px; - color: #409eff; - position: relative; - text-decoration: none; - } - } } .cm-autosave { position: absolute; @@ -468,6 +260,215 @@ body.fullscreen { } } +.cm-preview-content { + padding: 20px; + font-size: 14px; + font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif; + white-space: normal; + overflow-wrap: break-word; + color: #606266; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + h1, + h2, + h3, + h4, + h5, + h6 { + color: #303133; + font-size: 18px; + line-height: 24px; + margin: 0; + margin-bottom: 15px; + position: relative; + } + h1 { + padding: 0 15px; + &::before { + content: ''; + position: absolute; + top: 8.5px; + left: 0; + height: 7px; + width: 7px; + border-radius: 50%; + background: #409eff; + } + } + h2 { + padding: 0 15px; + &::before { + content: ''; + position: absolute; + top: 10%; + bottom: 10%; + left: 0; + width: 4px; + border-radius: 2px; + background: #409eff; + } + } + h3 { + padding: 0 15px 0 20px; + &::before { + content: '#'; + color: #409eff; + font-weight: 700; + position: absolute; + top: 0; + left: 0; + line-height: 24px; + } + } + h4 { + &::before { + content: '「'; + color: #409eff; + font-weight: 600; + margin-right: 5px; + } + &::after { + content: '」'; + color: #409eff; + font-weight: 600; + margin-left: 5px; + } + } + h5 { + padding: 0 15px 0 28px; + &::before { + content: ''; + position: absolute; + top: 2px; + left: 0; + width: 20px; + height: 20px; + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg=='); + background-size: 100% 100%; + } + } + h6 { + padding: 0 15px 0 28px; + &::before { + content: ''; + position: absolute; + top: 2px; + left: 0; + width: 20px; + height: 20px; + background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC'); + background-size: 100% 100%; + } + } + hr { + margin: 0; + border: none; + height: 1px; + background-color: #e4e7ed; + margin-bottom: 15px; + } + p { + line-height: 26px; + margin: 0; + margin-bottom: 15px; + } + blockquote { + margin: 0; + line-height: 26px; + margin-bottom: 15px; + background: #ecf8ff; + border-left: 5px solid #50bfff; + color: #50bfff; + padding: 8px 15px; + border-radius: 0 4px 4px 0; + p { + margin: 0; + } + } + pre { + margin: 0; + margin-bottom: 15px; + &::-webkit-scrollbar-track { + background: #fff; + } + &::-webkit-scrollbar { + width: 6px; + height: 6px; + } + &::-webkit-scrollbar-thumb { + border-radius: 3px; + background: #c0c4cc; + } + } + p code { + display: inline-block; + min-height: 26px; + line-height: 26px; + border-radius: 4px; + font-size: 12px; + background: #fdf6ec; + padding: 0 8px; + color: #e6a23c; + vertical-align: top; + } + ol, + ul { + margin: 0; + margin-bottom: 15px; + padding-left: 36px; + li { + line-height: 26px; + } + } + ol li { + list-style: decimal; + } + ul li { + list-style: disc; + } + table { + width: 100%; + max-width: 100%; + table-layout: fixed; + color: #909399; + margin-bottom: 15px; + font-size: 13px; + border-top: 1px solid #ebeef5; + border-left: 1px solid #ebeef5; + border-collapse: collapse; + td, + th { + padding: 8px; + border-bottom: 1px solid #ebeef5; + border-right: 1px solid #ebeef5; + } + thead { + th { + font-weight: 500; + background: #ebeef5; + } + } + } + img:not(.owo) { + display: block; + max-width: 100%; + border-radius: 4px; + transition: transform 0.35s, box-shadow 0.35s; + margin: 0 auto; + } + .owo { + max-height: 26px; + vertical-align: top; + } + a:not(.joe_detail__article-anote):not(.joe_detail__article-abtn) { + display: inline-block; + line-height: 26px; + color: #409eff; + position: relative; + text-decoration: none; + } +} + .cm-modal { display: flex; align-items: center; diff --git a/typecho/write/js/_actions.js b/typecho/write/js/_actions.js index 3c24e74..ae9ddd4 100644 --- a/typecho/write/js/_actions.js +++ b/typecho/write/js/_actions.js @@ -350,15 +350,15 @@ export default class JoeAction { } handleNetease(cm, type) { this._openModal({ - title: type ? '网易云歌单' : '网抑云单首', + title: type ? '网易云歌单' : '网易云单首', innerHtml: `
- - + +
@@ -370,9 +370,9 @@ export default class JoeAction { `, confirm: () => { const id = $(".cm-modal input[name='id']").val(); - const width = $(".cm-modal input[name='width']").val() || '100%'; + const color = $(".cm-modal input[name='color']").val(); const autoplay = $(".cm-modal select[name='autoplay']").val(); - const str = `\n{${type ? 'music-list' : 'music'} id="${id}" width="${width}" ${autoplay === '1' ? 'autoplay="autoplay"' : ''}/}\n\n`; + const str = `\n{${type ? 'music-list' : 'music'} id="${id}" color="${color}" ${autoplay === '1' ? 'autoplay="autoplay"' : ''}/}\n\n`; if (this._getLineCh(cm)) this._replaceSelection(cm, '\n' + str); else this._replaceSelection(cm, str); cm.focus(); @@ -679,4 +679,45 @@ export default class JoeAction { } }); } + handleMp3(cm) { + this._openModal({ + title: '插入音乐', + innerHtml: ` +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ `, + confirm: () => { + const name = $(".cm-modal input[name='name']").val(); + const url = $(".cm-modal input[name='url']").val(); + const cover = $(".cm-modal input[name='cover']").val(); + const theme = $(".cm-modal input[name='theme']").val(); + const autoplay = $(".cm-modal select[name='autoplay']").val(); + const str = `\n{mp3 name="${name}" url="${url}" cover="${cover}" theme="${theme}" ${autoplay === '1' ? 'autoplay="autoplay"' : ''}/}\n\n`; + if (this._getLineCh(cm)) this._replaceSelection(cm, '\n' + str); + else this._replaceSelection(cm, str); + cm.focus(); + } + }); + } } diff --git a/typecho/write/js/_create.js b/typecho/write/js/_create.js index ec4a5fa..7fc6f91 100644 --- a/typecho/write/js/_create.js +++ b/typecho/write/js/_create.js @@ -1,39 +1,38 @@ const parser = new HyperDown(); const player = window.JoeConfig.playerAPI; +const div = document.createElement('div'); + export default function createPreviewHtml(str) { - str = str.replace(/ /g, ' '); + str = str.replace(/ /g, ' '); - /* 生成HTML元素 */ - str = parser.makeHtml(str); + str = parser.makeHtml(str); - str = str.replace(/{x}/g, ''); - str = str.replace(/{ }/g, ''); - str = str.replace(/\:\:\(\s*(呵呵|哈哈|吐舌|太开心|笑眼|花心|小乖|乖|捂嘴笑|滑稽|你懂的|不高兴|怒|汗|黑线|泪|真棒|喷|惊哭|阴险|鄙视|酷|啊|狂汗|what|疑问|酸爽|呀咩爹|委屈|惊讶|睡觉|笑尿|挖鼻|吐|犀利|小红脸|懒得理|勉强|爱心|心碎|玫瑰|礼物|彩虹|太阳|星星月亮|钱币|茶杯|蛋糕|大拇指|胜利|haha|OK|沙发|手纸|香蕉|便便|药丸|红领巾|蜡烛|音乐|灯泡|开心|钱|咦|呼|冷|生气|弱|吐血|狗头)\s*\)/g, function ($0, $1) { - $1 = encodeURI($1).replace(/%/g, ''); - return ``; - }); - str = str.replace(/\:\@\(\s*(高兴|小怒|脸红|内伤|装大款|赞一个|害羞|汗|吐血倒地|深思|不高兴|无语|亲亲|口水|尴尬|中指|想一想|哭泣|便便|献花|皱眉|傻笑|狂汗|吐|喷水|看不见|鼓掌|阴暗|长草|献黄瓜|邪恶|期待|得意|吐舌|喷血|无所谓|观察|暗地观察|肿包|中枪|大囧|呲牙|抠鼻|不说话|咽气|欢呼|锁眉|蜡烛|坐等|击掌|惊喜|喜极而泣|抽烟|不出所料|愤怒|无奈|黑线|投降|看热闹|扇耳光|小眼睛|中刀)\s*\)/g, function ($0, $1) { - $1 = encodeURI($1).replace(/%/g, ''); - return ``; - }); - str = str.replace(/{mtitle([^}]*)\/}/g, ''); - str = str.replace(/{dplayer([^}]*)\/}/g, ''); - str = str.replace(/{bilibili([^}]*)\/}/g, ''); - str = str.replace(/{music-list([^}]*)\/}/g, ''); - str = str.replace(/{music([^}]*)\/}/g, ''); - str = str.replace(/{abtn([^}]*)\/}/g, ''); - str = str.replace(/{anote([^}]*)\/}/g, ''); - str = str.replace(/{dotted([^}]*)\/}/g, ''); - str = str.replace(/{message([^}]*)\/}/g, ''); - str = str.replace(/{progress([^}]*)\/}/g, ''); - str = str.replace(/{hide[^}]*}([\s\S]*?){\/hide}/g, ''); - str = str.replace(/{card-default([^}]*)}([\s\S]*?){\/card-default}/g, '
'); - str = str.replace(/{callout([^}]*)}([\s\S]*?){\/callout}/g, '
'); + str = str.replace(/{x}/g, ''); + str = str.replace(/{ }/g, ''); + str = str.replace(/\:\:\(\s*(呵呵|哈哈|吐舌|太开心|笑眼|花心|小乖|乖|捂嘴笑|滑稽|你懂的|不高兴|怒|汗|黑线|泪|真棒|喷|惊哭|阴险|鄙视|酷|啊|狂汗|what|疑问|酸爽|呀咩爹|委屈|惊讶|睡觉|笑尿|挖鼻|吐|犀利|小红脸|懒得理|勉强|爱心|心碎|玫瑰|礼物|彩虹|太阳|星星月亮|钱币|茶杯|蛋糕|大拇指|胜利|haha|OK|沙发|手纸|香蕉|便便|药丸|红领巾|蜡烛|音乐|灯泡|开心|钱|咦|呼|冷|生气|弱|吐血|狗头)\s*\)/g, function ($0, $1) { + $1 = encodeURI($1).replace(/%/g, ''); + return ``; + }); + str = str.replace(/\:\@\(\s*(高兴|小怒|脸红|内伤|装大款|赞一个|害羞|汗|吐血倒地|深思|不高兴|无语|亲亲|口水|尴尬|中指|想一想|哭泣|便便|献花|皱眉|傻笑|狂汗|吐|喷水|看不见|鼓掌|阴暗|长草|献黄瓜|邪恶|期待|得意|吐舌|喷血|无所谓|观察|暗地观察|肿包|中枪|大囧|呲牙|抠鼻|不说话|咽气|欢呼|锁眉|蜡烛|坐等|击掌|惊喜|喜极而泣|抽烟|不出所料|愤怒|无奈|黑线|投降|看热闹|扇耳光|小眼睛|中刀)\s*\)/g, function ($0, $1) { + $1 = encodeURI($1).replace(/%/g, ''); + return ``; + }); + str = str.replace(/{mtitle([^}]*)\/}/g, ''); + str = str.replace(/{dplayer([^}]*)\/}/g, ''); + str = str.replace(/{bilibili([^}]*)\/}/g, ''); + str = str.replace(/{music-list([^}]*)\/}/g, ''); + str = str.replace(/{music([^}]*)\/}/g, ''); + str = str.replace(/{mp3([^}]*)\/}/g, ''); + str = str.replace(/{abtn([^}]*)\/}/g, ''); + str = str.replace(/{anote([^}]*)\/}/g, ''); + str = str.replace(/{dotted([^}]*)\/}/g, ''); + str = str.replace(/{message([^}]*)\/}/g, ''); + str = str.replace(/{progress([^}]*)\/}/g, ''); + str = str.replace(/{hide[^}]*}([\s\S]*?){\/hide}/g, ''); + str = str.replace(/{card-default([^}]*)}([\s\S]*?){\/card-default}/g, '
'); + str = str.replace(/{callout([^}]*)}([\s\S]*?){\/callout}/g, '
'); - const div = document.createElement('div'); - div.innerHTML = str; - div.innerHTML = div.innerHTML.replace(/

<\/p>/g, ''); - const _ = div.innerHTML; - $('.cm-preview-content').html(_); - $('.cm-preview-content pre code').each((i, el) => Prism.highlightElement(el)); + $('.cm-preview-content').html(str); + $('.cm-preview-content p:empty').remove(); + $('.cm-preview-content pre code').each((i, el) => Prism.highlightElement(el)); } diff --git a/typecho/write/js/_tools.js b/typecho/write/js/_tools.js index d1b513a..305d476 100644 --- a/typecho/write/js/_tools.js +++ b/typecho/write/js/_tools.js @@ -180,6 +180,11 @@ export default [ title: '标注', innerHTML: '' }, + { + type: 'mp3', + title: '外部音乐', + innerHTML: '' + }, /* --------------------------- 短代码结束 --------------------------- */ { type: 'clean', diff --git a/typecho/write/js/joe.write.chunk.js b/typecho/write/js/joe.write.chunk.js index b13f9fb..4410da9 100644 --- a/typecho/write/js/joe.write.chunk.js +++ b/typecho/write/js/joe.write.chunk.js @@ -1,4 +1,4 @@ -!function(){"use strict";let r="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(t=>t?parseInt(t,36):1);for(let t=1;te)return r[t-1]<=e}(e))n+=d(e),t=e;else{if(!s(e))break;{let t=0,e=n-2;for(;0<=e&&s(c(i,e));)t++,e-=2;if(t%2==0)break;n+=2}}}return n}function a(t,e){for(;0this.length)throw new RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw new RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,e,i){var n=[];return this.decompose(0,t,n,2),i.length&&i.decompose(0,i.length,n,3),this.decompose(e,this.length,n,1),m.from(n,this.length-(e-t)+i.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,e=this.length){var i=[];return this.decompose(t,e,i,0),m.from(i,e-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let e=new v(this),i=new v(t);for(;;){if(e.next(),i.next(),e.lineBreak!=i.lineBreak||e.done!=i.done||e.value!=i.value)return!1;if(e.done)return!0}}iter(t=1){return new v(this,t)}iterRange(t,e=this.length){return new i(this,t,e)}toString(){return this.sliceString(0)}toJSON(){var t=[];return this.flatten(t),t}static of(t){if(0==t.length)throw new RangeError("A document must have at least one line");return 1!=t.length||t[0]?t.length<=32?new g(t):m.from(g.split(t,[])):u.empty}}"undefined"!=typeof Symbol&&(u.prototype[Symbol.iterator]=function(){return this.iter()});class g extends u{constructor(t,e=function(t){let e=-1;for(var i of t)e+=i.length+1;return e}(t)){super(),this.text=t,this.length=e}get lines(){return this.text.length}get children(){return null}lineInner(e,i,n,r){for(let t=0;;t++){var s=this.text[t],o=r+s.length;if(e<=(i?n:o))return new w(r,o,n,s);r=o+1,n++}}decompose(i,t,n,r){i=i<=0&&t>=this.length?this:new g(p(this.text,i,t),Math.min(t,this.length)-Math.max(0,i));if(1&r){let t=n.pop(),e=f(i.text,t.text.slice(),0,i.length);e.length<=32?n.push(new g(e,t.length+i.length)):(r=e.length>>1,n.push(new g(e.slice(0,r)),new g(e.slice(r))))}else n.push(i)}replace(t,e,i){if(!(i instanceof g))return super.replace(t,e,i);var n=f(this.text,f(i.text,p(this.text,0,t)),e),t=this.length+i.length-(e-t);return n.length<=32?new g(n,t):m.from(g.split(n,[]),t)}sliceString(r,s=this.length,o="\n"){let a="";for(let i=0,n=0;i<=s&&nr&&n&&(a+=o),ri&&(a+=t.slice(Math.max(0,r-i),s-i)),i=e+1}return a}flatten(t){for(var e of this.text)t.push(e)}static split(t,e){let i=[],n=-1;for(var r of t)i.push(r),n+=r.length+1,32==i.length&&(e.push(new g(i,n)),i=[],n=-1);return-1=n&&(l=a&((n<=r?1:0)|(s<=e?2:0)),n>=r&&e<=s&&!l?o.push(t):t.decompose(r-n,s-n,o,l)),n=e+1}}replace(r,s,o){if(o.lines=n&&s<=e){var a=t.replace(r-n,s-n,o),l=this.lines-t.lines+a.lines;if(a.lines>4&&a.lines>l>>6){let t=this.children.slice();return t[i]=a,new m(t,this.length-(s-r)+o.length)}return super.replace(n,e,a)}n=e+1}return super.replace(r,s,o)}sliceString(r,s=this.length,o="\n"){let a="";for(let i=0,n=0;ir&&i&&(a+=o),rn&&(a+=t.sliceString(r-n,s-n,o)),n=e+1}return a}flatten(t){for(var e of this.children)e.flatten(t)}static from(t,e=t.reduce((t,e)=>t+e.length+1,-1)){let i=0;for(var n of t)i+=n.lines;if(i<32){var r,s=[];for(r of t)r.flatten(s);return new g(s,e)}let o=Math.max(32,i>>5),a=o<<1,l=o>>1,h=[],c=0,d=-1,u=[];function f(){0!=c&&(h.push(1==u.length?u[0]:m.from(u,d)),d=-1,c=u.length=0)}for(var p of t)!function t(e){let i;if(e.lines>a&&e instanceof m)for(var n of e.children)t(n);else e.lines>l&&(c>l||!c)?(f(),h.push(e)):e instanceof g&&c&&(i=u[u.length-1])instanceof g&&e.lines+i.lines<=32?(c+=e.lines,d+=e.length+1,u[u.length-1]=new g(i.text.concat(e.text),i.length+1+e.length)):(c+e.lines>o&&f(),c+=e.lines,d+=e.length+1,u.push(e))}(p);return f(),1==h.length?h[0]:new m(h,e)}}function f(s,o,a=0,l=1e9){for(let i=0,n=0,r=!0;nMath.max(0,n))return this.value=0==n?t:0t.length?n-=t.length:(this.nodes.push(t),this.offsets.push(0this.limit&&(this.value=0r)throw new RangeError(`Position ${e} is out of range for changeset of length ${r}`);return s}touchesRange(i,n=i){for(let t=0,e=0;t"number"!=typeof t))throw new RangeError("Invalid JSON representation of ChangeDesc");return new x(t)}}class k extends x{constructor(t,e){super(t),this.inserted=e}apply(s){if(this.length!=s.length)throw new RangeError("Applying change set to a document with the wrong length");return T(this,(t,e,i,n,r)=>s=s.replace(i,i+(e-t),r),!1),s}mapDesc(t,e=!1){return D(this,t,e,!0)}invert(i){let n=this.sections.slice(),r=[];for(let t=0,e=0;t>1;r.length>1].toJSON()))}return n}static of(t,s,o){let a=[],l=[],h=0,i=null;function c(t=!1){if(t||a.length){hh&&M(a,t-h,-1),M(a,e-t,n),C(l,a,r),h=e)}}(t),c(!i),i}static empty(t){return new k(t?[t,-1]:[],[])}static fromJSON(i){if(!Array.isArray(i))throw new RangeError("Invalid JSON representation of ChangeSet");let n=[],r=[];for(let e=0;ee&&"string"!=typeof t))throw new RangeError("Invalid JSON representation of ChangeSet");if(1==t.length)n.push(t[0],0);else{for(;r.length>1;if(n>1])),!(c||a==l.sections.length||l.sections[a+1]<0);)n=l.sections[a++],r=l.sections[a++];h(s,t,o,e,i),s=t,o=e}}}function D(t,e,r,i=!1){var s=[],o=i?[]:null;let a=new L(t),l=new L(e);for(let i=0,n=0;;)if(-1==a.ins)i+=a.len,a.next();else if(-1==l.ins&&nn&&!a.done&&i+a.leni&&n+l.lenl||0<=o.ins&&o.len>l)&&(t||h>1;return e>=t.length?u.empty:t[e]}textBit(t){let{inserted:e}=this.set,i=this.i-2>>1;return i>=e.length&&!t?u.empty:e[i].slice(this.off,null==t?void 0:this.off+t)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){-1==this.ins?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class O{constructor(t,e,i){this.from=t,this.to=e,this.flags=i}get anchor(){return 16&this.flags?this.to:this.from}get head(){return 16&this.flags?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return 4&this.flags?-1:8&this.flags?1:0}get bidiLevel(){var t=3&this.flags;return 3==t?null:t}get goalColumn(){var t=this.flags>>5;return 33554431==t?void 0:t}map(t,e=-1){var i=t.mapPos(this.from,e),e=t.mapPos(this.to,e);return i==this.from&&e==this.to?this:new O(i,e,this.flags)}extend(t,e=t){if(t<=this.anchor&&e>=this.anchor)return H.range(t,e);e=Math.abs(t-this.anchor)>Math.abs(e-this.anchor)?t:e;return H.range(this.anchor,e)}eq(t){return this.anchor==t.anchor&&this.head==t.head}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||"number"!=typeof t.anchor||"number"!=typeof t.head)throw new RangeError("Invalid JSON representation for SelectionRange");return H.range(t.anchor,t.head)}}class H{constructor(t,e=0){this.ranges=t,this.mainIndex=e}map(e,i=-1){return e.empty?this:H.create(this.ranges.map(t=>t.map(e,i)),this.mainIndex)}eq(e){if(this.ranges.length!=e.ranges.length||this.mainIndex!=e.mainIndex)return!1;for(let t=0;tt.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||"number"!=typeof t.main||t.main>=t.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new H(t.ranges.map(t=>O.fromJSON(t)),t.main)}static single(t,e=t){return new H([H.range(t,e)],0)}static create(i,n=0){if(0==i.length)throw new RangeError("A selection needs at least one range");for(let t=0,e=0;et.from-e.from),i=e.indexOf(t);for(let t=1;tr.head?H.range(s,n):H.range(n,s)))}return new H(e,i)}(i.slice(),n);t=r.to}return new H(i,n)}static cursor(t,e=0,i,n){return new O(t,t,(0==e?0:e<0?4:8)|(null==i?3:Math.min(2,i))|(null!=n?n:33554431)<<5)}static range(t,e,i){i=(null!=i?i:33554431)<<5;return ee)throw new RangeError("Selection points outside of document")}let _=0;class E{constructor(t,e,i,n,r){this.combine=t,this.compareInput=e,this.compare=i,this.isStatic=n,this.extensions=r,this.id=_++,this.default=t([])}static define(t={}){return new E(t.combine||(t=>t),t.compareInput||((t,e)=>t===e),t.compare||(t.combine?(t,e)=>t===e:z),!!t.static,t.enables)}of(t){return new P([],this,0,t)}compute(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new P(t,this,1,e)}computeN(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new P(t,this,2,e)}from(e,i){return i=i||(t=>t),this.compute([e],t=>i(t.field(e)))}}function z(t,i){return t==i||t.length==i.length&&t.every((t,e)=>t===i[e])}class P{constructor(t,e,i,n){this.dependencies=t,this.facet=e,this.type=i,this.value=n,this.id=_++}dynamicSlot(t){var e,i;let n=this.value,r=this.facet.compareInput,s=t[this.id]>>1,o=2==this.type,a=!1,l=!1,h=[];for(i of this.dependencies)"doc"==i?a=!0:"selection"==i?l=!0:0==(1&(null!==(e=t[i.id])&&void 0!==e?e:1))&&h.push(t[i.id]);return(e,t)=>{if(!t||t.reconfigured)return e.values[s]=n(e),1;if(!(a&&t.docChanged||l&&(t.docChanged||t.selection)||h.some(t=>0<(1&J(e,t)))))return 0;var i=n(e),t=t.startState.values[s];return(o?function(e,i,n){if(e.length!=i.length)return!1;for(let t=0;tt===e),t);return t.provide&&(e.provides=t.provide(e)),e}create(t){let e=t.facet(N).find(t=>t.field==this);return((null===e||void 0===e?void 0:e.create)||this.createF)(t)}slot(t){let o=t[this.id]>>1;return(t,e)=>{if(!e)return t.values[o]=this.create(t),1;let i,n=0;var r,s;e.reconfigured?(r=e.startState,s=this.id,s=null==(s=r.config.address[s])?null:s>>1,i=null==s?this.create(e.startState):e.startState.values[s],n=1):i=e.startState.values[o];e=this.updateF(i,e);return n||this.compareF(i,e)||(n=1),n&&(t.values[o]=e),n}}init(t){return[this,N.of({field:this,create:t})]}get extension(){return this}}const V={fallback:3,default:2,extend:1,override:0};function t(e){return t=>new j(t,e)}const I={fallback:t(V.fallback),default:t(V.default),extend:t(V.extend),override:t(V.override)};class j{constructor(t,e){this.inner=t,this.prec=e}}class W{of(t){return new q(this,t)}reconfigure(t){return W.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class q{constructor(t,e){this.compartment=t,this.inner=e}}class F{constructor(t,e,i,n,r){for(this.base=t,this.compartments=e,this.dynamicSlots=i,this.address=n,this.staticValues=r,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,e,n){let i=[],r=Object.create(null);var s,o,a=new Map;for(s of function(t,a,l){let h=[[],[],[],[]],c=new Map;return function t(e,i){var n=c.get(e);if(null!=n){if(i<=n)return;var r=h[n].indexOf(e);-1t.concat(e))}(t,e,a))(s instanceof R?i:r[s.facet.id]||(r[s.facet.id]=[])).push(s);let l=Object.create(null),h=[],c=[];for(let e of i)l[e.id]=c.length<<1,c.push(t=>e.slot(t));for(o in r){let i=r[o],e=i[0].facet;if(i.every(t=>0==t.type)){l[e.id]=h.length<<1|1;let t=e.combine(i.map(t=>t.value));var d=n?n.config.address[e.id]:null;null!=d&&(d=U(n,d),e.compare(t,d)&&(t=d)),h.push(t)}else{for(let e of i)0==e.type?(l[e.id]=h.length<<1|1,h.push(e.value)):(l[e.id]=c.length<<1,c.push(t=>e.dynamicSlot(t)));l[e.id]=c.length<<1,c.push(t=>function(e,h,t){let c=t.map(t=>e[t.id]),d=t.map(t=>t.type),u=c.filter(t=>!(1&t)),f=e[h.id]>>1;return(e,t)=>{var i,n=t?t.reconfigured?t.startState.config.address[h.id]:f<<1:null;let r=null==n;for(i of u)1&J(e,i)&&(r=!0);if(!r)return 0;let s=[];for(let t=0;tt(l)),l,h)}}function J(t,e){if(1&e)return 2;var i=e>>1,e=t.status[i];if(4==e)throw new Error("Cyclic dependency between fields and/or facets");if(2&e)return e;t.status[i]=4;e=t.config.dynamicSlots[i](t,t.applying);return t.status[i]=2|e}function U(t,e){return(1&e?t.config.staticValues:t.values)[e>>1]}const K=E.define(),G=E.define({combine:t=>t.some(t=>t),static:!0}),X=E.define({combine:t=>t.length?t[0]:void 0,static:!0}),Y=E.define(),Q=E.define(),Z=E.define();class tt{constructor(t,e){this.type=t,this.value=e}static define(){return new et}}class et{of(t){return new tt(this,t)}}class it{constructor(t){this.map=t}of(t){return new nt(this,t)}}class nt{constructor(t,e){this.type=t,this.value=e}map(t){t=this.type.map(this.value,t);return void 0===t?void 0:t==this.value?this:new nt(this.type,t)}is(t){return this.type==t}static define(t={}){return new it(t.map||(t=>t))}static mapEffects(t,e){if(!t.length)return t;let i=[];for(var n of t){n=n.map(e);n&&i.push(n)}return i}}nt.reconfigure=nt.define(),nt.appendConfig=nt.define();class rt{constructor(t,e,i,n,r,s){this.startState=t,this.changes=e,this.selection=i,this.effects=n,this.annotations=r,this.scrollIntoView=s,this._doc=null,this._state=null,i&&B(i,e.newLength),r.some(t=>t.type==rt.time)||(this.annotations=r.concat(rt.time.of(Date.now())))}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(var e of this.annotations)if(e.type==t)return e.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}}function st(t,e,i){let n,r,s;return s=i?(n=e.changes,r=k.empty(e.changes.length),t.changes.compose(e.changes)):(n=e.changes.map(t.changes),r=t.changes.mapDesc(e.changes,!0),t.changes.compose(n)),{changes:s,selection:e.selection?e.selection.map(r):null===(i=t.selection)||void 0===i?void 0:i.map(n),effects:nt.mapEffects(t.effects,n).concat(nt.mapEffects(e.effects,r)),annotations:t.annotations.length?t.annotations.concat(e.annotations):e.annotations,scrollIntoView:t.scrollIntoView||e.scrollIntoView}}function ot(t,e,i){var n=e.selection;return{changes:e.changes instanceof k?e.changes:k.of(e.changes||[],i,t.facet(X)),selection:n&&(n instanceof H?n:H.single(n.anchor,n.head)),effects:ht(e.effects),annotations:ht(e.annotations),scrollIntoView:!!e.scrollIntoView}}function at(e,i,n){let r=ot(e,i.length?i[0]:{},e.doc.length);i.length&&!1===i[0].filter&&(n=!1);for(let t=1;t=r[i]))t=r[i++],e=r[i++];else{if(!(n{if(!/\S/.test(e))return ct.Space;if(function(i){if(ut)return ut.test(i);for(let e=0;enull),n)for(var r in t.address){var s=t.address[r],r=n.startState.config.address[r];null!=r&&0==(1&s)&&(this.values[s>>1]=U(n.startState,r))}(this.applying=n)&&(n._state=this);for(let t=0;tn.set(e,t)),e=null),n.set(r.value.compartment,r.value.extension)):r.is(nt.reconfigure)?(e=null,i=r.value):r.is(nt.appendConfig)&&(e=null,i=ht(i).concat(r.value));new pt(e||F.resolve(i,n,this),t.newDoc,t.newSelection,t)}replaceSelection(e){return"string"==typeof e&&(e=this.toText(e)),this.changeByRange(t=>({changes:{from:t.from,to:t.to,insert:e},range:H.cursor(t.from+e.length)}))}changeByRange(r){var s=this.selection,t=r(s.ranges[0]);let o=this.changes(t.changes),a=[t.range],l=ht(t.effects);for(let n=1;ne.spec.fromJSON(i,t)))}return pt.create({doc:t.doc,selection:H.fromJSON(t.selection),extensions:e.extensions?r.concat([e.extensions]):r})}static create(t={}){let e=F.resolve(t.extensions||[],new Map);var i=t.doc instanceof u?t.doc:u.of((t.doc||"").split(e.staticFacet(pt.lineSeparator)||y));let n=t.selection?t.selection instanceof H?t.selection:H.single(t.selection.anchor,t.selection.head):H.single(0);return B(n,i.length),e.staticFacet(G)||(n=n.asSingle()),new pt(e,i,n)}get tabSize(){return this.facet(pt.tabSize)}get lineBreak(){return this.facet(pt.lineSeparator)||"\n"}phrase(t){for(var e of this.facet(pt.phrases))if(Object.prototype.hasOwnProperty.call(e,t))return e[t];return t}languageDataAt(t,e){let i=[];for(var n of this.facet(K))for(var r of n(this,e))Object.prototype.hasOwnProperty.call(r,t)&&i.push(r[t]);return i}charCategorizer(t){return ft(this.languageDataAt("wordChars",t).join(""))}wordAt(t){let{text:e,from:i,length:n}=this.doc.lineAt(t),r=this.charCategorizer(t),s=t-i,o=t-i;for(;0t.length?t[0]:4}),pt.lineSeparator=X,pt.phrases=E.define(),pt.languageData=K,pt.changeFilter=Y,pt.transactionFilter=Q,pt.transactionExtender=Z,W.reconfigure=nt.define();const mt="undefined"==typeof Symbol?"__ͼ":Symbol.for("ͼ"),vt="undefined"==typeof Symbol?"__styleSet"+Math.floor(1e8*Math.random()):Symbol("styleSet"),wt="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:{};class yt{constructor(t,e){this.rules=[];let{finish:c}=e||{};function d(t){return/^@/.test(t)?[t]:t.split(/,\s*/)}for(var i in t)!function t(i,e,n,r){let s=[],o=/^@(\w+)\b/.exec(i[0]),a=o&&"keyframes"==o[1];if(o&&null==e)return n.push(i[0]+";");for(var l in e){var h=e[l];if(/&/.test(l))t(l.split(/,\s*/).map(e=>i.map(t=>e.replace(/&/,t))).reduce((t,e)=>t.concat(e)),h,n);else if(h&&"object"==typeof h){if(!o)throw new RangeError("The value of a property ("+l+") should be a primitive value.");t(d(l),h,s,a)}else null!=h&&s.push(l.replace(/_.*/,"").replace(/[A-Z]/g,t=>"-"+t.toLowerCase())+": "+h+";")}(s.length||a)&&n.push((!c||o||r?i:i.map(c)).join(", ")+" {"+s.join(" ")+"}")}(d(i),t[i],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let t=wt[mt]||1;return wt[mt]=t+1,"ͼ"+t.toString(36)}static mount(t,e){(t[vt]||new xt(t)).mount(Array.isArray(e)?e:[e])}}let bt=null;class xt{constructor(e){if(!e.head&&e.adoptedStyleSheets&&"undefined"!=typeof CSSStyleSheet){if(bt)return e.adoptedStyleSheets=[bt.sheet].concat(e.adoptedStyleSheets),e[vt]=bt;this.sheet=new CSSStyleSheet,e.adoptedStyleSheets=[this.sheet].concat(e.adoptedStyleSheets),bt=this}else{this.styleTag=(e.ownerDocument||e).createElement("style");let t=e.head||e;t.insertBefore(this.styleTag,t.firstChild)}this.modules=[],e[vt]=this}mount(n){let r=this.sheet,s=0,o=0;for(let i=0;i>1,l=o[a]-i||(n<0?this.value[a].startSide:this.value[a].endSide)-r;if(a==t)return 0<=l?t:e;0<=l?e=a:t=1+a}}between(i,n,r,s){for(let t=this.findIndex(n,-1),e=this.findIndex(r,1,void 0,t);tr||n==r&&0this.chunkEnd(o.chunkIndex)||ro.to||r500<=t.maxPoint||t!=Ct.empty&&i.indexOf(t)<0&&t.maxPoint>=r),o=i.filter(t=>500<=t.maxPoint||t!=Ct.empty&&e.indexOf(t)<0&&t.maxPoint>=r),a=function(t,e){let i=new Map;for(var n of t)for(let t=0;tBt(l,t,h,e,i,n)),t.empty&&0==t.length&&Bt(l,0,h,0,0,n)}static spans(t,e,i,n,r=-1){let s=new Ht(t,null,r).goto(e),o=e,a=s.openStart;for(;;){var l=Math.min(s.to,i);if(s.point?(n.point(o,l,s.point,s.activeForPoint(s.to),a),a=s.openEnd(l)+(s.to>l?1:0)):l>o&&(n.span(o,l,s.active,a),a=s.openEnd(l)),s.to>i)break;o=s.to,s.next()}return a}static of(t,e=!1){let i=new Tt;for(var n of t instanceof St?[t]:e?t.slice().sort(At):t)i.add(n.from,n.to,n.value);return i.finish()}}Ct.empty=new Ct([],[],null,-1),Ct.empty.nextLayer=Ct.empty;class Tt{constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}finishChunk(t){this.chunks.push(new Mt(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}add(t,e,i){this.addInner(t,e,i)||(this.nextLayer||(this.nextLayer=new Tt)).add(t,e,i)}addInner(t,e,i){var n=t-this.lastTo||i.startSide-this.last.endSide;if(n<=0&&(t-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return!(n<0)&&(250==this.from.length&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(e-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=e,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,e-t)),!0)}addChunk(t,e){if((t-this.lastTo||e.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,e.maxPoint),this.chunks.push(e),this.chunkPos.push(t);var i=e.value.length-1;return this.last=e.value[i],this.lastFrom=e.from[i]+t,this.lastTo=e.to[i]+t,!0}finish(){return this.finishInner(Ct.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),0==this.chunks.length)return t;t=new Ct(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,t}}class Dt{constructor(t,e,i,n=0){this.layer=t,this.skip=e,this.minPoint=i,this.rank=n}get startSide(){return this.value?this.value.startSide:0}get endSide(){return this.value?this.value.endSide:0}goto(t,e=-1e9){return this.chunkIndex=this.rangeIndex=0,this.gotoInner(t,e,!1),this}gotoInner(t,e,i){for(;this.chunkIndex=this.minPoint)break}}nextChunk(){this.chunkIndex++,this.rangeIndex=0,this.next()}compare(t){return this.from-t.from||this.startSide-t.startSide||this.to-t.to||this.endSide-t.endSide}}class Lt{constructor(t){this.heap=t}static from(i,n=null,r=-1){let s=[];for(let e=0;e=r&&s.push(new Dt(t,n,r,e));return 1==s.length?s[0]:new Lt(s)}get startSide(){return this.value?this.value.startSide:0}goto(t,e=-1e9){for(var i of this.heap)i.goto(t,e);for(let t=this.heap.length>>1;0<=t;t--)Ot(this.heap,t);return this.next(),this}forward(t,e){for(var i of this.heap)i.forward(t,e);for(let t=this.heap.length>>1;0<=t;t--)Ot(this.heap,t);(this.to-t||this.value.endSide-e)<0&&this.next()}next(){if(0==this.heap.length)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),Ot(this.heap,0)}}}function Ot(n,r){for(let i=n[r];;){let t=1+(r<<1);if(t>=n.length)break;let e=n[t];if(t+1e){this.to=this.activeTo[t],this.endSide=this.active[t].endSide;break}this.removeActive(t),i&&_t(i,t)}else{if(!this.cursor.value){this.to=this.endSide=1e9;break}if(this.cursor.from>e){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}t=this.cursor.value;if(t.point){this.point=t,this.pointFrom=this.cursor.from,this.pointRank=this.cursor.rank,this.to=this.cursor.to,this.endSide=t.endSide,this.cursor.frome&&this.forward(this.to,this.endSide);break}this.addActive(i),this.cursor.next()}}if(i){let t=0;for(;tthis.pointRank);t++)(this.activeTo[t]>e||this.activeTo[t]==e&&this.active[t].endSide>this.point.endSide)&&i.push(this.active[t]);return i}openEnd(t){let e=0;for(;et;)e++;return e}}function Bt(t,e,i,n,r,s){t.goto(e),i.goto(n);var o=n+r;let a=n,l=n-e;for(;;){var h=t.to+l-i.to||t.endSide-i.endSide,c=h<0?t.to+l:i.to,d=Math.min(c,o);if(t.point||i.point?t.point&&i.point&&(t.point==i.point||t.point.eq(i.point))||s.comparePoint(a,d,t.point,i.point):d>a&&!function(e,i){if(e.length!=i.length)return!1;for(let t=0;t=i;t--)e[t+1]=e[t];e[i]=t}function $t(e,i){let n=-1,r=1e9;for(let t=0;t",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"',229:"Q"},Nt="undefined"!=typeof navigator&&/Chrome\/(\d+)/.exec(navigator.userAgent),Rt="undefined"!=typeof navigator&&/Apple Computer/.test(navigator.vendor),Vt="undefined"!=typeof navigator&&/Gecko\/\d+/.test(navigator.userAgent),It="undefined"!=typeof navigator&&/Mac/.test(navigator.platform),jt="undefined"!=typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),Wt=Nt&&(It||+Nt[1]<57)||Vt&&It,qt=0;qt<10;qt++)zt[48+qt]=zt[96+qt]=String(qt);for(qt=1;qt<=24;qt++)zt[qt+111]="F"+qt;for(var Ft,qt=65;qt<=90;qt++)zt[qt]=String.fromCharCode(qt+32),Pt[qt]=String.fromCharCode(qt);for(Ft in zt)Pt.hasOwnProperty(Ft)||(Pt[Ft]=zt[Ft]);var[Jt,Ut]="undefined"!=typeof navigator?[navigator,document]:[{userAgent:"",vendor:"",platform:""},{documentElement:{style:{}}}],Kt=/Edge\/(\d+)/.exec(Jt.userAgent),Gt=/MSIE \d/.test(Jt.userAgent),Xt=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(Jt.userAgent),Yt=!!(Gt||Xt||Kt),Qt=!Yt&&/gecko\/(\d+)/i.test(Jt.userAgent),Zt=!Yt&&/Chrome\/(\d+)/.exec(Jt.userAgent),te="webkitFontSmoothing"in Ut.documentElement.style,ee=!Yt&&/Apple Computer/.test(Jt.vendor),ie={mac:/Mac/.test(Jt.platform),ie:Yt,ie_version:Gt?Ut.documentMode||6:Xt?+Xt[1]:Kt?+Kt[1]:0,gecko:Qt,gecko_version:Qt?+(/Firefox\/(\d+)/.exec(Jt.userAgent)||[0,0])[1]:0,chrome:!!Zt,chrome_version:Zt?+Zt[1]:0,ios:ee&&(/Mobile\/\w+/.test(Jt.userAgent)||2this.pos||t==this.pos&&(0t.width)||a),o?ue(a,o<0):a}class De extends Ae{constructor(t,e,i){super(),this.widget=t,this.length=e,this.side=i}static create(t,e,i){return new(t.customView||De)(t,e,i)}slice(t){return De.create(this.widget,this.length-t,this.side)}sync(){this.dom&&this.widget.updateDOM(this.dom)||(this.setDOM(this.widget.toDOM(this.editorView)),this.dom.contentEditable="false")}getSide(){return this.side}merge(t,e,i,n,r){return!(i&&(!(i instanceof De&&this.widget.compare(i.widget))||0i&&st?i[r]=Math.max(i[r],e):i.push(t,e)}Ie.prototype.point=!0;class qe extends be{constructor(){super(...arguments),this.children=[],this.length=0,this.prevAttrs=void 0,this.attrs=null,this.breakAfter=0}merge(t,e,i,n,r,s){if(i){if(!(i instanceof qe))return!1;this.dom||i.transferDOM(this)}return n&&this.setDeco(i?i.attrs:null),Oe(this,t,e,i?i.children:Fe,r,s),!0}split(t){let e=new qe;if(e.breakAfter=this.breakAfter,0==this.length)return e;let{i,off:n}=this.childPos(t);n&&(e.append(this.children[i].slice(n),0),this.children[i].merge(n,this.children[i].length,null,0,0),i++);for(let t=i;t!t.length||t[0]});class ri{constructor(t,e){this.field=t,this.get=e}}class si{from(t){return new ri(this,t)}static define(){return new si}}si.decorations=si.define(),si.scrollMargins=si.define();let oi=0;const ai=E.define();class li{constructor(t,e,i){this.id=t,this.create=e,this.fields=i,this.extension=ai.of(this)}static define(t,e){let{eventHandlers:i,provide:n,decorations:r}=e||{},s=[];if(n)for(var o of Array.isArray(n)?n:[n])s.push(o);return i&&s.push(hi.from(t=>({plugin:t,handlers:i}))),r&&s.push(si.decorations.from(r)),new li(oi++,t,s)}static fromClass(e,t){return li.define(t=>new e(t),t)}}const hi=si.define();class ci{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}takeField(t,e){for(var{field:i,get:n}of this.spec.fields)i==t&&e.push(n(this.value))}update(e){if(this.value){if(this.mustUpdate){var i=this.mustUpdate;if(this.mustUpdate=null,!this.value.update)return this;try{this.value.update(i)}catch(t){if(ii(i.state,t,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch(t){}return ci.dummy}}}else try{this.value=this.spec.create(e)}catch(t){return ii(e.state,t,"CodeMirror plugin crashed"),ci.dummy}return this}destroy(e){var t;if(null!==(t=this.value)&&void 0!==t&&t.destroy)try{this.value.destroy()}catch(t){ii(e.state,t,"CodeMirror plugin crashed")}}}ci.dummy=new ci(li.define(()=>({})));const di=E.define({combine:t=>t.reduce((t,e)=>_e(e,t),{})}),ui=E.define({combine:t=>t.reduce((t,e)=>_e(e,t),{})}),fi=E.define(),pi=E.define();class gi{constructor(t,e,i,n){this.fromA=t,this.toA=e,this.fromB=i,this.toB=n}join(t){return new gi(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let e=t.length,i=this;for(;0i.toA)){if(n.toAr.push(new gi(t,e,i,n))),this.changedRanges=r;i=t.hasFocus;i!=t.inputState.notifiedFocused&&(t.inputState.notifiedFocused=i,this.flags|=1),this.docChanged&&(this.flags|=2)}get viewportChanged(){return 0<(4&this.flags)}get heightChanged(){return 0<(2&this.flags)}get geometryChanged(){return this.docChanged||0<(18&this.flags)}get focusChanged(){return 0<(1&this.flags)}get docChanged(){return this.transactions.some(t=>t.docChanged)}get selectionSet(){return this.transactions.some(t=>t.selection)}get empty(){return 0==this.flags&&0==this.transactions.length}}class vi extends be{constructor(t){super(),this.view=t,this.compositionDeco=Ne.none,this.decorations=[],this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.setDOM(t.contentDOM),this.children=[new qe],this.children[0].setParent(this),this.updateInner([new gi(0,0,0,t.state.doc.length)],this.updateDeco(),0)}get root(){return this.view.root}get editorView(){return this.view}get length(){return this.view.state.doc.length}update(t){let e=t.changedRanges;0ethis.minWidthTo)?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=0),this.view.inputState.composing<0?this.compositionDeco=Ne.none:t.transactions.length&&(this.compositionDeco=function(t,e){var i=ne(t.root),i=i.focusNode&&bi(i.focusNode,i.focusOffset,0);if(!i)return Ne.none;let n=t.docView.nearest(i),r,s,o=i;if(n instanceof Ae){for(;n.parent instanceof Ae;)n=n.parent;r=n.posAtStart,s=r+n.length,o=n.dom}else{if(!(n instanceof qe))return Ne.none;{for(;o.parentNode!=n.dom;)o=o.parentNode;let t=o.previousSibling;for(;t&&!be.get(t);)t=t.previousSibling;r=s=t?be.get(t).posAtEnd:n.posAtStart}}let a=e.mapPos(r,1),l=Math.max(a,e.mapPos(s,-1)),h=i.nodeValue,{state:c}=t;if(l-a"pointerselection"==t.annotation(rt.userEvent));return 0==this.dirty&&0==e.length&&!(12&t.flags)&&t.state.selection.main.from>=this.view.viewport.from&&t.state.selection.main.to<=this.view.viewport.to?(this.updateSelection(s,o),!1):(this.updateInner(e,a,t.startState.doc.length,s,o),!0)}updateInner(t,e,i,n=!1,r=!1){this.updateChildren(t,e,i),this.view.observer.ignore(()=>{this.dom.style.height=this.view.viewState.domHeight+"px",this.dom.style.minWidth=this.minWidth?this.minWidth+"px":"";var t=ie.chrome?{node:ne(this.view.root).focusNode,written:!1}:void 0;this.sync(t),this.dirty=0,null!=t&&t.written&&(n=!0),this.updateSelection(n,r),this.dom.style.height=""})}updateChildren(e,i,t){let n=this.childCursor(t);for(let t=e.length-1;;t--){var r=0<=t?e[t]:null;if(!r)break;var{fromA:s,toA:o,fromB:a,toB:l}=r,{content:h,breakAtStart:c,openStart:d,openEnd:r}=Ue.build(this.view.state.doc,a,l,i),{i:a,off:l}=n.findPos(o,1),{i:o,off:s}=n.findPos(s,-1);this.replaceRange(o,s,a,l,h,c,d,r)}}replaceRange(e,i,n,r,s,o,a,l){let h=this.children[e],c=s.length?s[s.length-1]:null;var d=c?c.breakAfter:o;if(e!=n||o||d||!(s.length<2)||!h.merge(i,r,s.length?c:null,0==i,a,l)){let t=this.children[n];for(rn.node.insertBefore(t,n.node.childNodes[n.offset]||null)),n=r=new we(t,0),e=!0}let s=ne(this.root);!(e||!s.focusNode||ie.gecko&&i.empty&&xi(s.focusNode,s.focusOffset))&&ae(n.node,n.offset,s.anchorNode,s.anchorOffset)&&ae(r.node,r.offset,s.focusNode,s.focusOffset)||this.view.observer.ignore(()=>{var t,e;if(i.empty)ie.gecko&&(!(t=xi(n.node,n.offset))||3==t||(e=bi(n.node,n.offset,1==t?1:-1))&&(n=new we(e,1==t?0:e.nodeValue.length))),s.collapse(n.node,n.offset),null!=i.bidiLevel&&null!=s.cursorBidiLevel&&(s.cursorBidiLevel=i.bidiLevel);else if(s.extend)s.collapse(n.node,n.offset),s.extend(r.node,r.offset);else{let t=document.createRange();i.anchor>i.head&&([n,r]=[r,n]),t.setEnd(r.node,r.offset),t.setStart(n.node,n.offset),s.removeAllRanges(),s.addRange(t)}}),this.impreciseAnchor=n.precise?null:new we(s.anchorNode,s.anchorOffset),this.impreciseHead=r.precise?null:new we(s.focusNode,s.focusOffset)}}enforceCursorAssoc(){var t,e,i=this.view.state.selection.main;let n=ne(this.root);i.empty&&i.assoc&&n.modify&&((e=qe.find(this,i.head))&&(t=e.posAtStart,i.head!=t&&i.head!=t+e.length&&(t=this.coordsAt(i.head,-1),e=this.coordsAt(i.head,1),!t||!e||t.bottom>e.top||(e=this.domAtPos(i.head+i.assoc),n.collapse(e.node,e.offset),n.modify("move",i.assoc<0?"forward":"backward","lineboundary")))))}mayControlSelection(){return this.view.state.facet(ni)?this.root.activeElement==this.dom:se(this.dom,ne(this.root))}nearest(e){for(let t=e;t;){var i=be.get(t);if(i&&i.rootView==this)return i;t=t.parentNode}return null}posFromDOM(t,e){let i=this.nearest(t);if(!i)throw new RangeError("Trying to find position for a DOM position outside of the document");return i.localPosFromDOM(t,e)+i.posAtStart}domAtPos(t){let{i:e,off:i}=this.childCursor().findPos(t,-1);for(;e=s&&(r.push(t.dom.getBoundingClientRect().height),(l=t.dom.scrollWidth)>a&&(this.minWidth=a=l,this.minWidthFrom=i,this.minWidthTo=e)),i=e+t.breakAfter}return r}measureTextSize(){for(var t of this.children)if(t instanceof qe){t=t.measureTextSize();if(t)return t}let e=document.createElement("div"),i,n;return e.className="cm-line",e.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.dom.appendChild(e);var t=oe(e.firstChild)[0];i=e.getBoundingClientRect().height,n=t?t.width/27:7,e.remove()}),{lineHeight:i,charWidth:n}}childCursor(t=this.length){let e=this.children.length;return e&&(t-=this.children[--e].length),new ke(this.children,t,e)}computeBlockGapDeco(){let i=[],n=this.view.viewState;for(let t=0,e=0;;e++){var r,s=e==n.viewports.length?null:n.viewports[e],o=s?s.from-1:this.length;if(o>t&&(r=n.lineAt(o,0).bottom-n.lineAt(t,0).top,i.push(Ne.replace({widget:new wi(r),block:!0,inclusive:!0}).range(t,o))),!s)break;t=s.to+1}return Ne.set(i)}updateDeco(){return this.decorations=[this.computeBlockGapDeco(),this.view.viewState.lineGapDeco,this.compositionDeco,...this.view.state.facet(fi),...this.view.pluginField(si.decorations)]}scrollPosIntoView(t,r){var s,o,a,r=this.coordsAt(t,r);if(r){let t=0,e=0,i=0,n=0;for(var l of this.view.pluginField(si.scrollMargins))l&&({left:s,right:o,top:a,bottom:l}=l,null!=s&&(t=Math.max(t,s)),null!=o&&(e=Math.max(e,o)),null!=a&&(i=Math.max(i,a)),null!=l&&(n=Math.max(n,l)));!function(t,s){let e=t.ownerDocument,o=e.defaultView;for(let r=t.parentNode;r;)if(1==r.nodeType){let t,e=r==document.body;if(e)t={left:0,right:(l=o).innerWidth,top:0,bottom:l.innerHeight};else{if(r.scrollHeight<=r.clientHeight&&r.scrollWidth<=r.clientWidth){r=r.parentNode;continue}l=r.getBoundingClientRect();t={left:l.left,right:l.left+r.clientWidth,top:l.top,bottom:l.top+r.clientHeight}}let i=0,n=0;var a;if(s.topt.bottom&&(n=s.bottom-t.bottom+5),s.leftt.right&&(i=s.right-t.right+5),(i||n)&&(e?o.scrollBy(i,n):(n&&(a=r.scrollTop,r.scrollTop+=n,n=r.scrollTop-a),i&&(a=r.scrollLeft,r.scrollLeft+=i,i=r.scrollLeft-a),s={left:s.left-i,top:s.top-n,right:s.right-i,bottom:s.bottom-n})),e)break;r=r.parentNode}else{if(11!=r.nodeType)break;r=r.host}var l}(this.dom,{left:r.left-t,top:r.top-i,right:r.right+e,bottom:r.bottom+n})}}}class wi extends ze{constructor(t){super(),this.height=t}toDOM(){var t=document.createElement("div");return this.updateDOM(t),t}eq(t){return t.height==this.height}updateDOM(t){return t.style.height=this.height+"px",!0}get estimatedHeight(){return this.height}}class yi extends ze{constructor(t,e){super(),this.top=t,this.text=e}eq(t){return this.top==t.top&&this.text==t.text}toDOM(){return this.top}ignoreEvent(){return!1}get customView(){return Le}}function bi(t,e,i){for(;;){if(3==t.nodeType)return t;if(1==t.nodeType&&0=i){if(o.level==n)return t;(s<0||(0!=r?r<0?o.fromi:e[s].level>o.level))&&(s=t)}}if(s<0)throw new RangeError("Index out of range");return s}}const zi=[];function Pi(o,t){var r,a=o.length,l=t==Mi?1:2,h=t==Mi?2:1;if(!o||1==l&&!Ei.test(o))return Ni(a);for(let e=0,i=l,n=l;ep;){for(var m=t,v=2!=zi[--t];t>p&&v==(2!=zi[t-1]);)t--;i.push(new $i(t,m,v?2:1))}else i.push(new $i(p,e,0))}else for(let t=0;te.top+1}function Ii(t,e){return et.bottom?{top:t.top,left:t.left,right:t.right,bottom:e}:t}function Wi(t,n,r){let s,o,a,l,h,c,d,u;for(let i=t.firstChild;i;i=i.nextSibling){var f=oe(i);for(let e=0;em?g.left-m:Math.max(0,m-g.right)),g=(m=r,(g=t).top>m?g.top-m:Math.max(0,m-g.bottom));if(0==p&&0==g)return(3==i.nodeType?qi:Wi)(i,n,r);(!s||l>g||l==g&&a>p)&&(s=i,o=t,a=p,l=g),0==p?r>t.bottom&&(!d||d.bottomt.top)&&(c=i,u=t):d&&Vi(d,t)?d=ji(d,t.bottom):u&&Vi(u,t)&&(u=Ii(u,t.top))}}var m,g;if(d&&d.bottom>=r?(s=h,o=d):u&&u.top<=r&&(s=c,o=u),!s)return{node:t,offset:0};var e=Math.max(o.left,Math.min(o.right,n));return 3==s.nodeType?qi(s,e,r):a||"true"!=s.contentEditable?{node:t,offset:Array.prototype.indexOf.call(t.childNodes,s)+(n>=(o.left+o.right)/2?1:0)}:Wi(s,e,r)}function qi(n,r,e){var t=n.nodeValue.length;let s=-1,o=1e9,a=0;for(let i=0;ie?h.top-e:e-h.bottom)-1;if(h.left-1<=r&&h.right+1>=r&&c=(h.left+h.right)/2,e=t;if((ie.chrome||ie.gecko)&&ve(n,i).getBoundingClientRect().left==h.right&&(e=!t),c<=0)return{node:n,offset:i+(e?1:0)};s=i+(e?1:0),o=c}}}}return{node:n,offset:-1i||s.bottomi?-1:1,i=Math.min(s.bottom-o,Math.max(s.top+o,i)),t)return-1;t=!0}if(s.type==Pe.Text)break;i=0e.viewport.to)return e.viewport.to==e.state.doc.length?e.state.doc.length:null;t=Math.max(r.left+1,Math.min(r.right-1,t));let h=e.root,c=h.elementFromPoint(t,i),d,u=-1;return!c||!e.contentDOM.contains(c)||e.docView.nearest(c)instanceof De||(h.caretPositionFromPoint?(a=h.caretPositionFromPoint(t,i))&&({offsetNode:d,offset:u}=a):!h.caretRangeFromPoint||(a=h.caretRangeFromPoint(t,i))&&({startContainer:d,startOffset:u}=a,ie.safari&&function(e,t,i){let n;if(3!=e.nodeType||t!=(n=e.nodeValue.length))return!1;for(let t=e.nextSibling;t;t=e.nextSibling)if(1!=t.nodeType||"BR"!=t.nodeName)return!1;return ve(e,n-1,n).getBoundingClientRect().left>i}(d,u,t)&&(d=void 0))),d&&e.docView.dom.contains(d)||(l=qe.find(e.docView,l),{node:d,offset:u}=Wi(l.dom,t,i)),e.docView.posFromDOM(d,u)}function Ji(r,t,s,o){let a=r.state.doc.lineAt(t.head),l=r.bidiSpans(a);for(let i=t,n=null;;){let t=function(t,e,i,n,r){let s=n.head-t.from,o=-1;if(0==s){if(!r||!t.length)return null;e[0].level!=i&&(s=e[0].side(!1,i),o=0)}else if(s==t.length){if(r)return null;let t=e[e.length-1];t.level!=i&&(s=t.side(!0,i),o=e.length-1)}o<0&&(o=$i.find(e,s,null!==(l=n.bidiLevel)&&void 0!==l?l:-1,n.assoc));let a=e[o];s==a.side(r,i)&&(a=e[o+=r?1:-1],s=a.side(!r,i));var l=r==(a.dir==i),n=S(t.text,s,l);if(Ri=t.text.slice(Math.min(s,n),Math.max(s,n)),n!=a.side(r,i))return H.cursor(n+t.from,l?-1:1,a.level);let h=o==(r?e.length-1:0)?null:e[o+(r?1:-1)];return h||a.level==i?h&&h.level>1;for(let t=s<0?o.top:o.bottom,e=0;e<50;e+=10){var d=Fi(i,{x:h,y:t+(c+e)*s},s);if(null==d)break;if(d!=r)return H.cursor(d,void 0,void 0,l)}}let{doc:u}=i.state,f=u.lineAt(r),p=i.state.tabSize,g=t.goalColumn,m=0;if(null==g){for(const x=u.iterRange(f.from,r);!x.next().done;)m=A(x.value,m,p);g=m*i.defaultCharacterWidth}else m=Math.round(g/i.defaultCharacterWidth);if(s<0&&0==f.from)return H.cursor(0);if(0=m&&!k.next().done;){var{offset:y,leftOver:b}=function(e,i,n,r){for(let t=0;t{"keydown"==i&&this.keydown(n,t)||Yi(n,t)&&!this.ignoreDuringComposition(t)&&(this.mustFlushObserver(t)&&n.observer.forceFlush(),this.runCustomHandlers(i,n,t)?t.preventDefault():e(n,t))}),this.registeredEvents.push(i)}this.notifiedFocused=n.hasFocus,this.ensureHandlers(n)}setSelectionOrigin(t){this.lastSelectionOrigin=t,this.lastSelectionTime=Date.now()}ensureHandlers(i){var t;for(t of this.customHandlers=i.pluginField(hi))for(let e in t.handlers)this.registeredEvents.indexOf(e)<0&&"scroll"!=e&&(this.registeredEvents.push(e),i.contentDOM.addEventListener(e,t=>{Yi(i,t)&&this.runCustomHandlers(e,i,t)&&t.preventDefault()}))}runCustomHandlers(i,n,r){for(var s of this.customHandlers){let t=s.handlers[i],e=!1;if(t){try{e=t.call(s.plugin,r,n)}catch(t){ii(n.state,t)}if(e||r.defaultPrevented)return ie.android&&"keydown"==i&&13==r.keyCode&&n.observer.flushSoon(),!0}}return!1}runScrollHandlers(e,i){for(var n of this.customHandlers){let t=n.handlers.scroll;if(t)try{t.call(n.plugin,i,e)}catch(t){ii(e.state,t)}}}keydown(t,e){if(this.lastKeyCode=e.keyCode,this.lastKeyTime=Date.now(),!this.screenKeyEvent(t,e))return!(!ie.ios||13!=e.keyCode&&8!=e.keyCode||e.ctrlKey||e.altKey||e.metaKey||e.synthetic)&&(this[13==e.keyCode?"lastIOSEnter":"lastIOSBackspace"]=Date.now(),!0)}ignoreDuringComposition(t){return!!/^key/.test(t.type)&&(0=e.clientX&&s.top<=e.clientY&&s.bottom>=e.clientY)return!0}return!1}(e,i)&&null,!1===this.dragging&&(i.preventDefault(),this.select(i))}move(t){if(0==t.buttons)return this.destroy();!1===this.dragging&&this.select(t)}up(t){null==this.dragging&&this.select(this.startEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.inputState.mouseSelection=null}select(t){let e=this.style.get(t,this.extend,this.multiple);e.eq(this.view.state.selection)&&e.main.assoc==this.view.state.selection.main.assoc||this.view.dispatch({selection:e,annotations:rt.userEvent.of("pointerselection"),scrollIntoView:!0})}update(t){t.docChanged&&this.dragging&&(this.dragging=this.dragging.map(t.changes)),this.style.update(t)}}function Yi(i,n){if(!n.bubbles)return 1;if(!n.defaultPrevented){for(let t=n.target,e;t!=i.contentDOM;t=t.parentNode)if(!t||11==t.nodeType||(e=be.get(t))&&e.ignoreEvent(n))return;return 1}}const Qi=Object.create(null),Zi=ie.ie&&ie.ie_version<15||ie.ios&&ie.webkit_version<604;function tn(t,r){let{state:s}=t,e,o=1,a=s.toText(r),l=a.lines==s.selection.ranges.length;if(cn&&s.selection.ranges.every(t=>t.empty)&&cn==a.toString()){let n=-1;e=s.changeByRange(t=>{var e=s.doc.lineAt(t.from);if(e.from==n)return{range:t};n=e.from;var i=s.toText((l?a.line(o++).text:r)+s.lineBreak);return{changes:{from:e.from,insert:i},range:H.cursor(t.from+i.length)}})}else e=l?s.changeByRange(t=>{var e=a.line(o++);return{changes:{from:t.from,to:t.to,insert:e.text},range:H.cursor(t.from+e.length)}}):s.replaceSelection(a);t.dispatch(e,{annotations:rt.userEvent.of("paste"),scrollIntoView:!0})}Qi.keydown=(t,e)=>{t.inputState.setSelectionOrigin("keyboardselection")};let en=0;function nn(i,n,r,t){if(1==t)return H.cursor(n,r);if(2==t)return function(t,e,i=1){let n=t.charCategorizer(e),r=t.doc.lineAt(e),s=e-r.from;if(0==r.length)return H.cursor(e);0==s?i=1:s==r.length&&(i=-1);let o=s,a=s;i<0?o=S(r.text,s,!1):a=S(r.text,s);for(var l=n(r.text.slice(o,a));0{1==(e=e).touches.length&&e.touches[0].radiusX<=1&&e.touches[0].radiusY<=1||(en=Date.now()),t.inputState.setSelectionOrigin("pointerselection")},Qi.touchmove=t=>{t.inputState.setSelectionOrigin("pointerselection")},Qi.mousedown=(e,i)=>{if(e.observer.flush(),!(en>Date.now()-2e3)){let t=null;for(var n of e.state.facet(Qe))if(t=n(e,i),t)break;t||0!=i.button||(t=function(o,t){let a=on(o,t),l=function(t){if(!an)return t.detail;var e=ln;return ln=t,hn=!e||e.timeStamp>Date.now()-400&&Math.abs(e.clientX-t.clientX)<2&&Math.abs(e.clientY-t.clientY)<2?(hn+1)%3:1}(t),h=o.state.selection,c=a,d=t;return{update(t){t.changes&&(a&&(a.pos=t.changes.mapPos(a.pos)),h=h.map(t.changes))},get(t,e,i){let n;if(t.clientX==d.clientX&&t.clientY==d.clientY?n=c:(n=c=on(o,t),d=t),!n||!a)return h;let r=nn(o,n.pos,n.bias,l);var s;return a.pos==n.pos||e||(s=nn(o,a.pos,a.bias,l),t=Math.min(s.from,r.from),s=Math.max(s.to,r.to),r=tge(e.contentDOM)),e.inputState.startMouseSelection(e,i,t))}};let rn=(t,e)=>t>=e.top&&t<=e.bottom,sn=(t,e,i)=>rn(e,i)&&t>=i.left&&t<=i.right;function on(t,e){var i=t.posAtCoords({x:e.clientX,y:e.clientY});return null==i?null:{pos:i,bias:function(t,e,i,n){let r=qe.find(t.docView,e);return r&&0!=(t=e-r.posAtStart)&&(t==r.length||(e=r.coordsAt(t,-1))&&sn(i,n,e)||(!(t=r.coordsAt(t,1))||!sn(i,n,t))&&e&&rn(n,e))?-1:1}(t,i,e.clientX,e.clientY)}}const an=ie.ie&&ie.ie_version<=11;let ln=null,hn=0;Qi.dragstart=(t,e)=>{var{selection:{main:i}}=t.state;let{mouseSelection:n}=t.inputState;n&&(n.dragging=i),e.dataTransfer&&(e.dataTransfer.setData("Text",t.state.sliceDoc(i.from,i.to)),e.dataTransfer.effectAllowed="copyMove")},Qi.drop=(e,i)=>{if(i.dataTransfer&&e.state.facet(ni)){var n=e.posAtCoords({x:i.clientX,y:i.clientY}),r=i.dataTransfer.getData("Text");if(null!=n&&r){i.preventDefault();var{mouseSelection:i}=e.inputState,i=i&&i.dragging&&i.dragMove?{from:i.dragging.from,to:i.dragging.to}:null,r={from:n,insert:r};let t=e.state.changes(i?[i,r]:r);e.focus(),e.dispatch({changes:t,selection:{anchor:t.mapPos(n,-1),head:t.mapPos(n,1)},annotations:rt.userEvent.of("drop")})}}},Qi.paste=(e,i)=>{if(e.state.facet(ni)){e.observer.flush();let t=Zi?null:i.clipboardData;var n=t&&t.getData("text/plain");n?(tn(e,n),i.preventDefault()):function(e){let i=e.dom.parentNode;if(i){let t=i.appendChild(document.createElement("textarea"));t.style.cssText="position: fixed; left: -10000px; top: 10px",t.focus(),setTimeout(()=>{e.focus(),t.remove(),tn(e,t.value)},50)}}(e)}};let cn=null;function dn(t){t.docView.compositionDeco.size&&t.update([])}Qi.copy=Qi.cut=(e,i)=>{var{text:n,ranges:r,linewise:s}=function(e){let i=[],n=[],r=!1;for(var t of e.selection.ranges)t.empty||(i.push(e.sliceDoc(t.from,t.to)),n.push(t));if(!i.length){let t=-1;for(var{from:s}of e.selection.ranges){s=e.doc.lineAt(s);s.number>t&&(i.push(s.text),n.push({from:s.from,to:Math.min(e.doc.length,s.to+1)})),t=s.number}r=!0}return{text:i.join(e.lineBreak),ranges:n,linewise:r}}(e.state);if(n){cn=s?n:null;let t=Zi?null:i.clipboardData;t?(i.preventDefault(),t.clearData(),t.setData("text/plain",n)):function(e,i){let n=e.dom.parentNode;if(n){let t=n.appendChild(document.createElement("textarea"));t.style.cssText="position: fixed; left: -10000px; top: 10px",t.value=i,t.focus(),t.selectionEnd=i.length,t.selectionStart=0,setTimeout(()=>{t.remove(),e.focus()},50)}}(e,n),"cut"==i.type&&e.state.facet(ni)&&e.dispatch({changes:r,scrollIntoView:!0,annotations:rt.userEvent.of("cut")})}},Qi.focus=Qi.blur=t=>{setTimeout(()=>{t.hasFocus!=t.inputState.notifiedFocused&&t.update([])},10)},Qi.beforeprint=t=>{t.viewState.printing=!0,t.requestMeasure(),setTimeout(()=>{t.viewState.printing=!1,t.requestMeasure()},2e3)},Qi.compositionstart=Qi.compositionupdate=t=>{t.inputState.composing<0&&(t.docView.compositionDeco.size&&(t.observer.flush(),dn(t)),t.inputState.composing=0)},Qi.compositionend=t=>{t.inputState.composing=-1,t.inputState.compositionEndedAt=Date.now(),setTimeout(()=>{t.inputState.composing<0&&dn(t)},50)};const un=["pre-wrap","normal","pre-line"];class fn{constructor(){this.doc=u.empty,this.lineWrapping=!1,this.direction=Ai.LTR,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.lineLength=30,this.heightChanged=!1}heightForGap(t,e){let i=this.doc.lineAt(e).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.ceil((e-t-i*this.lineLength*.5)/this.lineLength)),this.lineHeight*i}heightForLine(t){return this.lineWrapping?(1+Math.max(0,Math.ceil((t-this.lineLength)/(this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(t){return this.doc=t,this}mustRefresh(e,t,i){let n=!1;for(let t=0;t=e?r:c.lineAt(e,mn.ByPosNoHeight,a,0,0);for(n+=d.to-e,e=d.to;02*r){var o=t[e-1];o.break?t.splice(--e,1,o.left,null,o.right):t.splice(--e,1,o.left,o.right),i+=1+o.break,n-=o.size}else{if(!(r>2*n))break;o=t[i];o.break?t.splice(i,1,o.left,null,o.right):t.splice(i,1,o.left,o.right),i+=2+o.break,r-=o.size}else nt&&e.push(new bn(r.from-t-1).updateHeight(n,t));i<=s&&r.more;){var o=n.doc.lineAt(i).length;e.length&&e.push(null);let t=new yn(o,r.heights[r.index++]);t.outdated=!1,e.push(t),i+=o+1}return i<=s&&e.push(null,new bn(s-i).updateHeight(n,i)),n.heightChanged=!0,vn.of(e)}return(e||this.outdated)&&(this.setHeight(n,n.heightForGap(t,t+this.length)),this.outdated=!1),this}toString(){return`gap(${this.length})`}}class xn extends vn{constructor(t,e,i){super(t.length+e+i.length,t.height+i.height,e|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return 1&this.flags}blockAt(t,e,i,n){var r=i+this.left.height;return to))return l;e=e==mn.ByPosNoHeight?mn.ByPosNoHeight:mn.ByPos;return a?l.join(this.right.lineAt(o,e,i,s,o)):this.left.lineAt(o,e,i,n,r).join(l)}forEachLine(t,e,i,n,r,s){var o,a=n+this.left.height,l=r+this.left.length+this.break;this.break?(t=t&&o.from<=e&&s(o),e>o.to&&this.right.forEachLine(o.to+1,e,i,a,l,s))}replace(t,e,i){var n=this.left.length+this.break;if(ethis.left.length)return this.balanced(this.left,this.right.replace(t-n,e-n,i));let r=[];0=i&&e.push(null)),t>i&&this.right.decomposeLeft(t-i,e)}decomposeRight(t,e){var i=this.left.length,n=i+this.break;if(n<=t)return this.right.decomposeRight(t-n,e);t2*e.size||e.size>2*t.size?vn.of(this.break?[t,null,e]:[t,e]):(this.left=t,this.right=e,this.height=t.height+e.height,this.outdated=t.outdated||e.outdated,this.size=t.size+e.size,this.length=t.length+this.break+e.length,this)}updateHeight(t,e=0,i=!1,n){let{left:r,right:s}=this,o=e+r.length+this.break,a=null;return n&&n.from<=e+r.length&&n.more?a=r=r.updateHeight(t,e,i,n):r.updateHeight(t,e,i),n&&n.from<=o+s.length&&n.more?a=s=s.updateHeight(t,o,i,n):s.updateHeight(t,o,i),a?this.balanced(r,s):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function kn(t,e){let i,n;null==t[e]&&(i=t[e-1])instanceof bn&&(n=t[e+1])instanceof bn&&t.splice(e-1,3,new bn(i.length+1+n.length))}class Sn{constructor(t,e){this.pos=t,this.oracle=e,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,i){if(-1this.pos||!this.isCovered)&&this.nodes.push(new yn(t-this.pos,-1)),(this.writtenTo=t)t&&this.nodes.push(new yn(this.pos-t,-1)),this.writtenTo=this.pos)}blankContent(t,e){let i=new bn(e-t);return this.oracle.doc.lineAt(t).to==e&&(i.flags|=4),i}ensureLine(){this.enterLine();var t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof yn)return t;t=new yn(0,-1);return this.nodes.push(t),t}addBlock(t){this.enterLine(),t.type!=Pe.WidgetAfter||this.isCovered||this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,t.type!=Pe.WidgetBefore&&(this.covering=t)}addLineDeco(t,e){let i=this.ensureLine();i.length+=e,i.collapsed+=e,i.widgetHeight=Math.max(i.widgetHeight,t),this.writtenTo=this.pos=this.pos+e}finish(t){var e,i=0==this.nodes.length?null:this.nodes[this.nodes.length-1];!(-1t.draw(!1))),this.computeVisibleRanges()}updateForViewport(){let e=[this.viewport],{main:n}=this.state.selection;for(let t=0;t<=1;t++){let i=t?n.head:n.anchor;var r,s;e.some(({from:t,to:e})=>i>=t&&i<=e)||({from:r,to:s}=this.lineAt(i,0),e.push(new Dn(r,s)))}this.viewports=e.sort((t,e)=>t.from-e.from),this.scaler=this.heightMap.height<=7e6?Bn:new _n(this.heightOracle.doc,this.heightMap,this.viewports)}update(t,e=null){var i=this.state;this.state=t.state;var n,r,s,o=this.state.facet(fi),a=t.changedRanges,s=gi.extendWithRanges(a,(n=t.startState.facet(fi),r=o,s=t?t.changes:k.empty(this.state.doc.length),a=new An,Ct.compare(n,r,s,a,0),a.changes)),a=this.heightMap.height;this.heightMap=this.heightMap.applyChanges(o,i.doc,this.heightOracle.setDoc(this.state.doc),s),this.heightMap.height!=a&&(t.flags|=2);let l=s.length?this.mapViewport(this.viewport,t.changes):this.viewport;(e&&(e.headl.to)||!this.viewportIsAppropriate(l))&&(l=this.getViewport(0,e)),l.eq(this.viewport)||(this.viewport=l,t.flags|=4),this.updateForViewport(),(this.lineGaps.length||15e3t.clientHeight||t.scrollWidth>t.clientWidth)&&"visible"!=window.getComputedStyle(t).overflow&&(i=t.getBoundingClientRect(),r=Math.max(r,i.left),s=Math.min(s,i.right),o=Math.max(o,i.top),a=Math.min(a,i.bottom)),t=t.parentNode;else{if(11!=t.nodeType)break;t=t.host}return{left:r-n.left,right:s-n.left,top:o-(n.top+t),bottom:a-(n.top+t)}}(i,this.paddingTop),o=s.top-this.pixelViewport.top,a=s.bottom-this.pixelViewport.bottom;if(this.pixelViewport=s,this.inView=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left,!this.inView)return 0;var l,h=t.measureVisibleLineHeights();let c=!1,d=0,u=0,f=this.heightOracle;return e||(l=t.dom.clientWidth,(f.mustRefresh(h,n,r)||f.lineWrapping&&Math.abs(l-this.contentWidth)>f.charWidth)&&({lineHeight:s,charWidth:e}=t.measureTextSize(),c=f.refresh(n,r,s,e,l/e,h),c&&(t.minWidth=0,u|=16)),this.contentWidth!=l&&(this.contentWidth=l,u|=16),0this.viewport.to))&&((h=this.getViewport(d,this.scrollTo)).from==this.viewport.from&&h.to==this.viewport.to||(this.viewport=h,u|=4)),this.updateForViewport(),(this.lineGaps.length||15e3o.to&&({bottom:e}=i.lineAt(e.head,mn.ByPos,n,0,0),o=new Dn(i.lineAt(e-(s-r)-500,mn.ByHeight,n,0,0).from,i.lineAt(e+500,mn.ByHeight,n,0,0).to))),o}mapViewport(t,e){var i=e.mapPos(t.from,-1),t=e.mapPos(t.to,1);return new Dn(this.heightMap.lineAt(i,mn.ByPos,this.state.doc,0,0).from,this.heightMap.lineAt(t,mn.ByPos,this.state.doc,0,0).to)}viewportIsAppropriate({from:t,to:e},i=0){var{top:n}=this.heightMap.lineAt(t,mn.ByPos,this.state.doc,0,0),{bottom:r}=this.heightMap.lineAt(e,mn.ByPos,this.state.doc,0,0),{visibleTop:s,visibleBottom:o}=this;return(0==t||n<=s-Math.max(10,Math.min(-i,250)))&&(e==this.state.doc.length||r>=o+Math.max(10,Math.min(i,250)))&&s-2e3{if(!(r.length<1e4)){var s=function(t,e,i){let n=[],r=t,s=0;Ct.spans(i.facet(fi),t,e,{span(){},point(t,e){t>r&&(n.push({from:r,to:t}),s+=t-r),r=e}},20),r=r.from&&(t=o.from),o.from<=r.to&&o.to>=e&&(e=o.to);let i=t-1e4,n=e+1e4;i>r.from+5e3&&l.push(Hn(a,t=>t.from==r.from&&t.to>i-5e3&&t.to<5e3+i)||new Mn(r.from,i,this.gapSize(r,i,!0,s))),nt.to==r.to&&t.from>n-5e3&&t.fromt.draw(this.heightOracle.lineWrapping))),8)}computeVisibleRanges(){let t=this.state.facet(fi);this.lineGaps.length&&(t=t.concat(this.lineGapDeco));let i=[];Ct.spans(t,this.viewport.from,this.viewport.to,{span(t,e){i.push({from:t,to:e})},point(){}},20),this.visibleRanges=i}lineAt(t,e){return e+=this.paddingTop,En(this.heightMap.lineAt(t,mn.ByPos,this.state.doc,e,0),this.scaler,e)}lineAtHeight(t,e){return e+=this.paddingTop,En(this.heightMap.lineAt(this.scaler.fromDOM(t,e),mn.ByHeight,this.state.doc,e,0),this.scaler,e)}blockAtHeight(t,e){return e+=this.paddingTop,En(this.heightMap.blockAt(this.scaler.fromDOM(t,e),this.state.doc,e,0),this.scaler,e)}forEachLine(t,e,i,n){return n+=this.paddingTop,this.heightMap.forEachLine(t,e,this.state.doc,n,0,1==this.scaler.scale?i:t=>i(En(t,this.scaler,n)))}get contentHeight(){return this.domHeight+this.paddingTop+this.paddingBottom}get domHeight(){return this.scaler.toDOM(this.heightMap.height,this.paddingTop)}}class Dn{constructor(t,e){this.from=t,this.to=e}eq(t){return this.from==t.from&&this.to==t.to}}function Ln({total:t,ranges:e},i){if(i<=0)return e[0].from;if(1<=i)return e[e.length-1].to;let n=Math.floor(t*i);for(let t=0;;t++){var{from:r,to:s}=e[t],s=s-r;if(n<=s)return r+n;n-=s}}function On(t,e){let i=0;for(var{from:n,to:r}of t.ranges){if(e<=r){i+=e-n;break}i+=r-n}return i/t.total}function Hn(t,e){for(var i of t)if(e(i))return i}const Bn={toDOM(t){return t},fromDOM(t){return t},scale:1};class _n{constructor(r,s,t){let o=0,e=0,i=0;this.viewports=t.map(({from:t,to:e})=>{var i=s.lineAt(t,mn.ByPos,r,0,0).top,n=s.lineAt(e,mn.ByPos,r,0,0).bottom;return o+=n-i,{from:t,to:e,top:i,bottom:n,domTop:0,domBottom:0}}),this.scale=(7e6-o)/(s.height-o);for(var n of this.viewports)n.domTop=i+(n.top-e)*this.scale,i=n.domBottom=n.domTop+(n.bottom-n.top),e=n.bottom}toDOM(n,r){n-=r;for(let t=0,e=0,i=0;;t++){var s=tEn(t,e,i)):t.type)}const $n=E.define({combine:t=>t.join(" ")}),zn=E.define({combine:t=>-1{if("&"==t)return e;if(!i||!i[t])throw new RangeError(`Unsupported selector: ${t}`);return i[t]}):e+" "+t}})}const jn=In("."+Pn,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,flexGrow:2,overflowX:"auto",position:"relative",zIndex:0},".cm-content":{margin:0,flexGrow:2,minHeight:"100%",display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",padding:"4px 0",outline:"none"},".cm-lineWrapping":{whiteSpace:"pre-wrap",overflowWrap:"anywhere"},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 4px"},".cm-selectionLayer":{zIndex:-1,contain:"size style"},".cm-selectionBackground":{position:"absolute"},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{zIndex:100,contain:"size style",pointerEvents:"none"},"&.cm-focused .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{visibility:"hidden"},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{visibility:"hidden"},"100%":{}},".cm-cursor":{position:"absolute",borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none",display:"none"},"&dark .cm-cursor":{borderLeftColor:"#444"},"&.cm-focused .cm-cursor":{display:"block"},"&light .cm-activeLine":{backgroundColor:"#f3f9ff"},"&dark .cm-activeLine":{backgroundColor:"#223039"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-placeholder":{color:"#888",display:"inline-block"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"3px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},Vn),Wn={childList:!0,characterData:!0,subtree:!0,characterDataOldValue:!0},qn=ie.ie&&ie.ie_version<=11;class Fn{constructor(i,t,e){this.view=i,this.onChange=t,this.onScrollChanged=e,this.active=!1,this.ignoreSelection=new fe,this.delayedFlush=-1,this.queue=[],this.scrollTargets=[],this.intersection=null,this.intersecting=!1,this.parentCheck=-1,this.dom=i.contentDOM,this.observer=new MutationObserver(t=>{for(var e of t)this.queue.push(e);(ie.ie&&ie.ie_version<=11||ie.ios&&i.composing)&&t.some(t=>"childList"==t.type&&t.removedNodes.length||"characterData"==t.type&&t.oldValue.length>t.target.nodeValue.length)?this.flushSoon():this.flush()}),qn&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.start(),this.onScroll=this.onScroll.bind(this),window.addEventListener("scroll",this.onScroll),"function"==typeof IntersectionObserver&&(this.intersection=new IntersectionObserver(t=>{this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),0{this.delayedFlush=-1,this.flush()},20))}forceFlush(){0<=this.delayedFlush&&(window.clearTimeout(this.delayedFlush),this.delayedFlush=-1,this.flush())}flush(){if(!(0<=this.delayedFlush)){let n=this.queue;for(var t of this.observer.takeRecords())n.push(t);n.length&&(this.queue=[]);var r=ne(this.view.root),s=!this.ignoreSelection.eq(r)&&se(this.dom,r);if(0!=n.length||s){let t=-1,e=-1,i=!1;for(var o of n){o=this.readMutation(o);o&&(o.typeOver&&(i=!0),-1==t?{from:t,to:e}=o:(t=Math.min(o.from,t),e=Math.max(o.to,e)))}r=this.view.state;(-1this.view.docView.sync()),this.view.docView.dirty=0),this.view.docView.updateSelection()),this.clearSelection()}}}readMutation(t){let e=this.view.docView.nearest(t.target);if(!e||e.ignoreMutation(t))return null;if(e.markDirty(),"childList"!=t.type)return{from:e.posAtStart,to:e.posAtEnd,typeOver:t.target.nodeValue==t.oldValue};var i=Jn(e,t.previousSibling||t.target.previousSibling,-1),t=Jn(e,t.nextSibling||t.target.nextSibling,1);return{from:i?e.posAfter(i):e.posAtStart,to:t?e.posBefore(t):e.posAtEnd,typeOver:!1}}destroy(){this.stop(),this.intersection&&this.intersection.disconnect();for(var t of this.scrollTargets)t.removeEventListener("scroll",this.onScroll);window.removeEventListener("scroll",this.onScroll),clearTimeout(this.parentCheck)}}function Jn(t,e,i){for(;e;){var n=be.get(e);if(n&&n.parent==t)return n;n=e.parentNode;e=n!=t.dom?n:0Date.now()-100||ie.android&&t.text.length=o?s-i:0,s-=l,a=s+(a-o),o=s):a=a?s-i:0,s-=i,o=s+(o-a),a=s)}return{from:s,toA:o,toB:a}}(n.state.sliceDoc(h,c),t.text,e-h,i);d&&(s={from:h+d.from,to:h+d.toA,insert:n.state.toText(t.text.slice(d.from,d.toB))})}else!n.hasFocus&&n.state.facet(ni)||(c=ne(n.root),{impreciseHead:h,impreciseAnchor:d}=n.docView,h=h&&h.node==c.focusNode&&h.offset==c.focusOffset||!re(n.contentDOM,c.focusNode)?n.state.selection.main.head:n.docView.posFromDOM(c.focusNode,c.focusOffset),c=d&&d.node==c.anchorNode&&d.offset==c.anchorOffset||!re(n.contentDOM,c.anchorNode)?n.state.selection.main.anchor:function(t){let e=t.isCollapsed;return e&&ie.chrome&&t.rangeCount&&!t.getRangeAt(0).collapsed&&(e=!1),e}(c)?h:n.docView.posFromDOM(c.anchorNode,c.anchorOffset),h==a.head&&c==a.anchor||(o=H.single(c,h)));if(s||o)if(!s&&r&&!a.empty&&o&&o.main.empty&&(s={from:a.from,to:a.to,insert:n.state.doc.slice(a.from,a.to)}),s){let i=n.state;if(!(ie.android&&(s.from==a.from&&s.to==a.to&&1==s.insert.length&&2==s.insert.lines&&Yn(n,"Enter",13)||s.from==a.from-1&&s.to==a.to&&0==s.insert.length&&Yn(n,"Backspace",8)||s.from==a.from&&s.to==a.to+1&&0==s.insert.length&&Yn(n,"Delete",46))||ie.ios&&(n.inputState.lastIOSEnter>Date.now()-225&&1Date.now()-225&&!s.insert.length&&Yn(n,"Backspace",8)))){let e=s.insert.toString();if(!n.state.facet(ei).some(t=>t(n,s.from,s.to,e))){0<=n.inputState.composing&&n.inputState.composing++;let t;var u;t=s.from>=a.from&&s.to<=a.to&&s.to-s.from>=(a.to-a.from)/3&&(!o||o.main.empty&&o.main.from==s.from+s.insert.length)?(r=a.froms.to?i.sliceDoc(s.to,a.to):"",i.replaceSelection(n.state.toText(r+s.insert.sliceString(0,void 0,n.state.lineBreak)+u))):{changes:u=i.changes(s),selection:o&&!i.selection.main.eq(o.main)&&o.main.to<=u.newLength?i.selection.replaceRange(o.main):void 0},n.dispatch(t,{scrollIntoView:!0,annotations:rt.userEvent.of("input")})}}}else if(o&&!o.main.eq(a)){let t=!1,e;n.inputState.lastSelectionTime>Date.now()-50&&("keyboardselection"==n.inputState.lastSelectionOrigin?t=!0:e=rt.userEvent.of(n.inputState.lastSelectionOrigin)),n.dispatch({selection:o,scrollIntoView:t,annotations:e})}}class Kn{constructor(t,e){this.points=t,this.view=e,this.text="",this.lineBreak=e.state.lineBreak}readRange(e,i){if(e){var n=e.parentNode;for(let t=e;;){this.findPointBefore(n,t),this.readNode(t);var r=t.nextSibling;if(r==i)break;var s=be.get(t),o=be.get(r);((s?s.breakAfter:Gn(t))||(o?o.breakAfter:Gn(r))&&("BR"!=t.nodeName||t.cmIgnore))&&(this.text+=this.lineBreak),t=r}this.findPointBefore(n,i)}}readNode(i){if(!i.cmIgnore){var n=be.get(i);let t=n&&n.overrideDOMText,e;null!=t?e=t.sliceString(0,void 0,this.lineBreak):3==i.nodeType?e=i.nodeValue:"BR"==i.nodeName?e=i.nextSibling?this.lineBreak:"":1==i.nodeType&&this.readRange(i.firstChild,null),null!=e&&(this.findPointIn(i,e.length),this.text+=e,ie.chrome&&13==this.view.inputState.lastKeyCode&&!i.nextSibling&&/\n\n$/.test(this.text)&&(this.text=this.text.slice(0,-1)))}}findPointBefore(t,e){for(var i of this.points)i.node==t&&t.childNodes[i.offset]==e&&(i.pos=this.text.length)}findPointIn(t,e){for(var i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,e))}}function Gn(t){return 1==t.nodeType&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(t.nodeName)}class Xn{constructor(t,e){this.node=t,this.offset=e,this.pos=-1}}function Yn(t,e,i){i={key:e,code:e,keyCode:i,which:i,cancelable:!0};let n=new KeyboardEvent("keydown",i);n.synthetic=!0,t.contentDOM.dispatchEvent(n);let r=new KeyboardEvent("keyup",i);return r.synthetic=!0,t.contentDOM.dispatchEvent(r),n.defaultPrevented||r.defaultPrevented}class Qn{constructor(t={}){this.plugins=[],this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.style.cssText="position: absolute; top: -10000px",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),this._dispatch=t.dispatch||(t=>this.update([t])),this.dispatch=this.dispatch.bind(this),this.root=t.root||document,this.viewState=new Tn(t.state||pt.create()),this.plugins=this.state.facet(ai).map(t=>new ci(t).update(this)),this.observer=new Fn(this,(t,e,i)=>{Un(this,t,e,i)},t=>{this.inputState.runScrollHandlers(this,t),this.measure()}),this.inputState=new Ki(this),this.docView=new vi(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,window.addEventListener("resize",()=>{-1==er&&(er=setTimeout(ir,50))}),this.requestMeasure(),t.parent&&t.parent.appendChild(this.dom)}get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return 0t.scrollIntoView)?n.selection.main:null;this.viewState.update(i,s),this.bidiCache=rr.update(this.bidiCache,i.changes),i.empty||this.updatePlugins(i),e=this.docView.update(i),this.state.facet(pi)!=this.styleModules&&this.mountStyles(),this.updateAttrs(),this.showAnnouncements(t)}finally{this.updateState=0}if((e||scrollTo||this.viewState.mustEnforceCursorAssoc)&&this.requestMeasure(),!i.empty)for(var o of this.state.facet(ti))o(i)}setState(t){if(0!=this.updateState)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");this.updateState=2;try{for(var e of this.plugins)e.destroy(this);this.viewState=new Tn(t),this.plugins=t.facet(ai).map(t=>new ci(t).update(this)),this.docView=new vi(this),this.inputState.ensureHandlers(this),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}this.requestMeasure()}updatePlugins(i){let t=i.startState.facet(ai),n=i.state.facet(ai);if(t!=n){let e=[];for(var r of n){var s=t.indexOf(r);if(s<0)e.push(new ci(r));else{let t=this.plugins[s];t.mustUpdate=i,e.push(t)}}for(var o of this.plugins)o.mustUpdate!=i&&o.destroy(this);this.plugins=e,this.inputState.ensureHandlers(this)}else for(var e of this.plugins)e.mustUpdate=i;for(let t=0;t{try{return t.read(this)}catch(t){return ii(this.state,t),nr}});let t=new mi(this,this.state);t.flags|=r,n?n.flags|=r:n=t,this.updateState=2,t.empty||this.updatePlugins(t),this.updateAttrs(),r&&this.docView.update(t);for(let t=0;tthis.measure())),e){if(null!=e.key)for(let t=0;tfunction(t,e,i){let n=t.state.charCategorizer(e),r=n(i);return t=>{t=n(t);return r==ct.Space&&(r=t),r==t}}(this,e.head,t))}moveToLineBoundary(t,e,i=!0){return function(t,e,i,n){var r=t.state.doc.lineAt(e.head),s=n&&t.lineWrapping?t.coordsAtPos(e.assoc<0&&e.head>r.from?e.head-1:e.head):null;if(s){n=t.dom.getBoundingClientRect(),s=t.posAtCoords({x:i==(t.textDirection==Ai.LTR)?n.right-1:n.left+1,y:(s.top+s.bottom)/2});if(null!=s)return H.cursor(s,i?-1:1)}return e=qe.find(t.docView,e.head),r=e?i?e.posAtEnd:e.posAtStart:i?r.to:r.from,H.cursor(r,i?-1:1)}(this,t,e,i)}moveVertically(t,e,i){return Ui(this,t,e,i)}scrollPosIntoView(t){this.viewState.scrollTo=H.cursor(t),this.requestMeasure()}domAtPos(t){return this.docView.domAtPos(t)}posAtDOM(t,e=0){return this.docView.posFromDOM(t,e)}posAtCoords(t){return this.readMeasured(),Fi(this,t)}coordsAtPos(t,e=1){this.readMeasured();var i=this.docView.coordsAt(t,e);if(!i||i.left==i.right)return i;var n=this.state.doc.lineAt(t),r=this.bidiSpans(n);return ue(i,r[$i.find(r,t-n.from,-1,e)].dir==Ai.LTR==0Zn)return Ni(t.length);var e,i=this.textDirection;for(e of this.bidiCache)if(e.from==t.from&&e.dir==i)return e.order;var n=Pi(t.text,this.textDirection);return this.bidiCache.push(new rr(t.from,t.to,i,n)),n}get hasFocus(){return document.hasFocus()&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{ge(this.contentDOM),this.docView.updateSelection()})}destroy(){for(var t of this.plugins)t.destroy(this);this.inputState.destroy(),this.dom.remove(),this.observer.destroy(),-1({}),{eventHandlers:t})}static theme(t,e){var i=yt.newName();let n=[$n.of(i),pi.of(In(`.${i}`,t))];return e&&e.dark&&n.push(zn.of(!0)),n}static baseTheme(t){return I.fallback(pi.of(In("."+Pn,t,Vn)))}}Qn.styleModule=pi,Qn.inputHandler=ei,Qn.exceptionSink=Ze,Qn.updateListener=ti,Qn.editable=ni,Qn.mouseSelectionStyle=Qe,Qn.dragMovesSelection=Ye,Qn.clickAddsSelectionRange=Xe,Qn.decorations=fi,Qn.contentAttributes=ui,Qn.editorAttributes=di,Qn.lineWrapping=Qn.contentAttributes.of({class:"cm-lineWrapping"}),Qn.announce=nt.define();const Zn=4096;function tr(t,e){return null==t?e.getBoundingClientRect().top:t}let er=-1;function ir(){er=-1;var i=document.querySelectorAll(".cm-content");for(let e=0;e{if(t){for(var e of t.commands)if(e(i))return!0;t.preventDefault&&(a=!0)}return!1},h=t[n],c;if(h){if(l(h[o+or(r,e,!s)]))return!0;if(s&&(e.shiftKey||e.altKey||e.metaKey)&&(c=zt[e.keyCode])&&c!=r){if(l(h[o+or(c,e,!0)]))return!0}else if(s&&e.shiftKey&&l(h[o+or(r,e,!0)]))return!0}return a}(function(t){let e=t.facet(ar),i=lr.get(e);i||lr.set(e,i=function(t,a=sr){let l=Object.create(null),n=Object.create(null),h=(t,e)=>{var i=n[t];if(null==i)n[t]=e;else if(i!=e)throw new Error("Key binding "+t+" is used both as a regular binding and as a multi-stroke prefix")},e=(n,t,e,i)=>{let r=l[n]||(l[n]=Object.create(null)),s=t.split(/ (?!$)/).map(t=>function(t,e){var i=t.split(/-(?!$)/);let n=i[i.length-1];"Space"==n&&(n=" ");let r,s,o,a;for(let t=0;t{let e=hr={view:t,prefix:i,scope:n};return setTimeout(()=>{hr==e&&(hr=null)},cr),!0}]})}t=s.join(" ");h(t,!1);let o=r[t]||(r[t]={preventDefault:!1,commands:[]});o.commands.push(e),i&&(o.preventDefault=!0)};for(var i of t){var r=i[a]||i.key;if(r)for(var s of i.scope?i.scope.split(" "):["editor"])e(s,r,i.run,i.preventDefault),i.shift&&e(s,"Shift-"+r,i.shift,i.preventDefault)}return l}(e.reduce((t,e)=>t.concat(e),[])));return i}(e.state),t,e,"editor")}})}),lr=new WeakMap;let hr=null;const cr=4e3;ie.ios;let dr=0;const ur=new WeakMap;class fr{constructor({deserialize:t}={}){this.id=dr++,this.deserialize=t||(()=>{throw new Error("This node type doesn't define a deserialize function")})}static string(){return new fr({deserialize:t=>t})}static number(){return new fr({deserialize:Number})}static flag(){return new fr({deserialize:()=>!0})}set(t,e){return t[this.id]=e,t}add(e){return"function"!=typeof e&&(e=gr.match(e)),t=>{t=e(t);return void 0===t?null:[this,t]}}}fr.closedBy=new fr({deserialize:t=>t.split(" ")}),fr.openedBy=new fr({deserialize:t=>t.split(" ")}),fr.group=new fr({deserialize:t=>t.split(" ")});const pr=Object.create(null);class gr{constructor(t,e,i,n=0){this.name=t,this.props=e,this.id=i,this.flags=n}static define(t){var e=t.props&&t.props.length?Object.create(null):pr,i=(t.top?1:0)|(t.skipped?2:0)|(t.error?4:0)|(null==t.name?8:0),n=new gr(t.name||"",e,t.id,i);if(t.props)for(var r of t.props)Array.isArray(r)||(r=r(n)),r&&r[0].set(e,r[1]);return n}prop(t){return this.props[t.id]}get isTop(){return 0<(1&this.flags)}get isSkipped(){return 0<(2&this.flags)}get isError(){return 0<(4&this.flags)}get isAnonymous(){return 0<(8&this.flags)}is(e){if("string"!=typeof e)return this.id==e;{if(this.name==e)return!0;let t=this.prop(fr.group);return!!t&&-1{for(let t=i.prop(fr.group),e=-1;e<(t?t.length:0);e++){var n=r[e<0?i.name:t[e]];if(n)return n}}}}gr.none=new gr("",Object.create(null),0,8);class mr{constructor(t,e,i,n){this.type=t,this.children=e,this.positions=i,this.length=n}toString(){var t=this.children.map(t=>t.toString()).join();return this.type.name?(/\W/.test(this.type.name)&&!this.type.isError?JSON.stringify(this.type.name):this.type.name)+(t.length?"("+t+")":""):t}cursor(t,e=0){var i=null!=t&&ur.get(this)||this.topNode;let n=new Sr(i);return null!=t&&(n.moveTo(t,e),ur.set(this,n._tree)),n}fullCursor(){return new Sr(this.topNode,!0)}get topNode(){return new yr(this,0,0,null)}resolve(t,e=0){return this.cursor(t,e).node}iterate(t){let{enter:i,leave:n,from:r=0,to:s=this.length}=t;for(let e=this.cursor();;){let t=!1;if(e.from<=s&&e.to>=r&&(e.type.isAnonymous||!1!==i(e.type,e.from,e.to))){if(e.firstChild())continue;e.type.isAnonymous||(t=!0)}for(;t&&n&&n(e.type,e.from,e.to),t=e.type.isAnonymous,!e.nextSibling();){if(!e.parent())return;t=!0}}}balance(t=1024){return this.children.length<=Cr?this:Tr(this.type,gr.none,this.children,this.positions,0,this.children.length,0,t,this.length,0)}static build(t){let{buffer:e,nodeSet:m,topID:i=0,maxBufferLength:v=1024,reused:w=[],minRepeatType:y=m.types.length}=t,b=Array.isArray(e)?new Mr(e,e.length):e,x=m.types,k=0;function S(i,t,e,n,r){var{id:s,start:o,end:a,size:l}=b;let h=o-i;if(l<0)return-1==l?(e.push(w[s]),n.push(h)):k=s,void b.next();let c=x[s],d,u;if(a-o<=v&&(u=function(t,e){let i=b.fork(),n=0,r=0,s=0,o=i.end-v,a={size:0,start:0,skip:0};t:for(var l=i.pos-t;i.pos>l;)if(i.id!=e){var h=i.size,c=i.pos-h;if(h<0||c=y?4:0;var d=i.start;for(i.next();i.pos>c;){if(i.size<0)break t;i.id>=y&&(t+=4),i.next()}r=d,n+=h,s+=t}else a.size=n,a.start=r,a.skip=s,s+=4,n+=4,i.next();(e<0||n==t)&&(a.size=n,a.start=r,a.skip=s);return 4t;)e=function t(e,i,n,r){var{id:s,start:o,end:a,size:l}=b;b.next();if(s==r)return n;var h=n;if(4c;)n=t(e,i,n,r);s=y?s:-1;b.pos>p;)b.id==g?b.next():S(o,p,t,e,g);t.reverse(),e.reverse(),d=-1Cr?Tr(c,c,t,e,0,t.length,0,v,a-o,k):vr(new mr(c,t,e,a-o),k)}e.push(d),n.push(h)}let n=[],r=[];for(;0=t:this.from>t)||(-1=t:this.from>t)||(-1!t.type.isAnonymous||t instanceof wr||Ar(t))}class Mr{constructor(t,e){this.buffer=t,this.index=e}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new Mr(this.buffer,this.index)}}const Cr=8;function Tr(t,i,n,r,s,o,a,l,e,h){let c=[],d=[];if(e<=l)for(let t=s;tu<<1){for(let t=0;t=i)for(;s&&s.from=t.from||u<=t.to||l)&&(h=Math.max(t.from,a)-l,c=Math.min(t.to,u)-l,t=c<=h?null:new Dr(h,c,t.tree,t.offset+l,(0u)break;s=rt.length&&n.push(r);return n}}const Lr=new fr;class Or{constructor(t,e,i,n=[]){this.data=t,this.topNode=i,pt.prototype.hasOwnProperty("tree")||Object.defineProperty(pt.prototype,"tree",{get(){return Br(this)}}),this.parser=e,this.extension=[Vr.of(this),pt.languageData.of((t,e)=>t.facet(Hr(t,e)))].concat(n)}isActiveAt(t,e){return Hr(t,e)==this.data}findRegions(t){var e=t.facet(Vr);if((null==e?void 0:e.data)==this.data)return[{from:0,to:t.doc.length}];if(!e||!e.allowsNesting)return[];let n=[];return Br(t).iterate({enter:(t,e,i)=>{if(t.isTop&&t.prop(Lr)==this.data)return n.push({from:e,to:i}),!1}}),n}get allowsNesting(){return!0}parseString(t){var e=u.of(t.split("\n"));let i=this.parser.startParse(new _r(e),0,new Er(this.parser,pt.create({doc:e}),[],mr.empty,{from:0,to:t.length},[],null)),n;for(;!(n=i.advance()););return n}}function Hr(t,e){var i=t.facet(Vr);if(!i)return null;if(!i.allowsNesting)return i.data;let n=Br(t),r=n.resolve(e,-1);for(;r;){var s=r.type.prop(Lr);if(s)return s;r=r.parent}return i.data}function Br(t){t=t.field(Or.state,!1);return t?t.tree:mr.empty}Or.setState=nt.define();class _r{constructor(t,e=t.length){this.doc=t,this.length=e,this.cursorPos=0,this.string="",this.prevString="",this.cursor=t.iter()}syncTo(t){return t=this.length)return-1;let e=this.cursorPos-this.string.length;if(t=this.cursorPos){if(t=e-this.prevString.length)return this.prevString.charCodeAt(t-(e-this.prevString.length));e=this.syncTo(t)}return this.string.charCodeAt(t-e)}lineAfter(t){if(t>=this.length||t<0)return"";let e=this.cursorPos-this.string.length;return(t=this.cursorPos)&&(e=this.syncTo(t)),this.cursor.lineBreak?"":this.string.slice(t-e,Math.min(this.length-e,this.string.length))}read(t,e){var i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,e):this.string.slice(t-i,e-i)}clip(t){return new _r(this.doc,t)}}class Er{constructor(t,e,i=[],n,r,s,o){this.parser=t,this.state=e,this.fragments=i,this.tree=n,this.viewport=r,this.skipped=s,this.scheduleOn=o,this.parse=null,this.tempSkipped=[]}work(t,e){if(this.tree!=mr.empty&&(null==e?this.tree.length==this.state.doc.length:this.tree.length>=e))return this.takeTree(),!0;this.parse||(this.parse=this.parser.startParse(new _r(this.state.doc),0,this));for(var i=Date.now()+t;;){var n=this.parse.advance();if(n)return this.fragments=this.withoutTempSkipped(Dr.addTree(n)),this.parse=null,this.tree=n,!0;if(null!=e&&this.parse.pos>=e)return this.takeTree(),!0;if(Date.now()>i)return!1}}takeTree(){this.parse&&this.parse.pos>this.tree.length&&(this.tree=this.parse.forceFinish(),this.fragments=this.withoutTempSkipped(Dr.addTree(this.tree,this.fragments,!0)))}withoutTempSkipped(t){for(var e;e=this.tempSkipped.pop();)t=$r(t,e.from,e.to);return t}changes(t,e){let{fragments:i,tree:n,viewport:s,skipped:o}=this;if(this.takeTree(),!t.empty){let r=[];if(t.iterChangedRanges((t,e,i,n)=>r.push({fromA:t,toA:e,fromB:i,toB:n})),i=Dr.applyChanges(i,r),n=mr.empty,s={from:t.mapPos(s.from,-1),to:t.mapPos(s.to,1)},this.skipped.length){o=[];for(var a of this.skipped){var l=t.mapPos(a.from,1),a=t.mapPos(a.to,-1);le.from&&(this.fragments=$r(this.fragments,i,n),this.skipped.splice(t--,1))}return this.skipped.length=t}}function $r(t,e,i){return Dr.applyChanges(t,[{fromA:e,toA:i,fromB:e,toB:i}])}Er.skippingParser=Er.getSkippingParser();class zr{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged)return this;let e=this.context.changes(t.changes,t.state);t=this.context.tree.length==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.tree.length),e.viewport.to);return e.work(25,t)||e.takeTree(),new zr(e)}static init(t){let e=new Er(t.facet(Vr).parser,t,[],mr.empty,{from:0,to:t.doc.length},[],null);return e.work(25)||e.takeTree(),new zr(e)}}Or.state=R.define({create:zr.init,update(t,e){for(var i of e.effects)if(i.is(Or.setState))return i.value;return e.startState.facet(Vr)!=e.state.facet(Vr)?zr.init(e.state):t.apply(e)}});let Pr="undefined"!=typeof window&&window.requestIdleCallback||((t,{timeout:e})=>setTimeout(t,e)),Nr="undefined"!=typeof window&&window.cancelIdleCallback||clearTimeout;var Rr=li.fromClass(class{constructor(t){this.view=t,this.working=-1,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let e=this.view.state.field(Or.state).context;t.viewportChanged&&(e.updateViewport(t.view.viewport)&&e.reset(),this.view.viewport.to>e.tree.length&&this.scheduleWork()),t.docChanged&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(e)}scheduleWork(i=!1){if(!(-1=t.doc.length||(this.working=Pr(this.work,{timeout:500}))}}work(n){this.working=-1;var r=Date.now();if(this.chunkEnd=e+1e6||(n=Math.min(this.chunkBudget,n?Math.max(25,n.timeRemaining()):100),n=i.context.work(n,e+1e6),this.chunkBudget-=Date.now()-r,(n||this.chunkBudget<=0||i.context.movedPast(e))&&(i.context.takeTree(),this.view.dispatch({effects:Or.setState.of(new zr(i.context))})),!n&&0this.scheduleWork(!0)),t.scheduleOn=null)}destroy(){0<=this.working&&Nr(this.working)}},{eventHandlers:{focus(){this.scheduleWork()}}});const Vr=E.define({combine(t){return t.length?t[0]:null},enables:[Or.state,Rr]}),Ir=E.define(),jr=E.define({combine:t=>{if(!t.length)return" ";if(!/^(?: +|\t+)$/.test(t[0]))throw new Error("Invalid indent unit: "+JSON.stringify(t[0]));return t[0]}});function Wr(t){let e=t.facet(jr);return 9==e.charCodeAt(0)?t.tabSize*e.length:e.length}function qr(t,e){let i="",n=t.tabSize;if(9==t.facet(jr).charCodeAt(0))for(;n<=e;)i+="\t",e-=n;for(let t=0;tfunction(t,e,i,n,r){let s=t.textAfter,o=s.match(/^\s*/)[0].length,a=n&&s.slice(o,o+n.length)==n||r==t.pos+o,l=e?function(t){let e=t.node,i=e.childAfter(e.from),n=e.lastChild;if(!i)return null;var r=null===(r=t.options)||void 0===r?void 0:r.simulateBreak,t=t.state.doc.lineAt(i.from),s=null==r||r<=t.from?t.to:Math.min(t.to,r);for(let t=i.to;;){var o=e.childAfter(t);if(!o||o==n)return null;if(!o.type.isSkipped)return o.fromQn.decorations.from(t)}),Qr];function ss(t,e,i){var n=t.prop(e<0?fr.openedBy:fr.closedBy);if(n)return n;if(1==t.name.length){t=i.indexOf(t.name);if(-1=e.to){if(0==o&&-1>1==l>>1};d--}}0"},ls=nt.define({map(t,e){t=e.mapPos(t,-1,b.TrackAfter);return null==t?void 0:t}}),hs=nt.define({map(t,e){return e.mapPos(t)}}),cs=new class extends kt{};cs.startSide=1,cs.endSide=-1;const ds=R.define({create(){return Ct.empty},update(t,i){var e,n;i.selection&&(e=i.state.doc.lineAt(i.selection.main.head).from,n=i.startState.doc.lineAt(i.startState.selection.main.head).from,e!=i.changes.mapPos(n,-1)&&(t=Ct.empty)),t=t.map(i.changes);for(let e of i.effects)e.is(ls)?t=t.update({add:[cs.range(e.value,e.value+1)]}):e.is(hs)&&(t=t.update({filter:t=>t!=e.value}));return t}});const us="()[]{}<>";function fs(e){for(let t=0;t>10),56320+(1023&t)));var t}function ps(t,e){return t.languageDataAt("closeBrackets",e)[0]||as}function gs(t,e,i,n){if(t.composing)return!1;var r=t.state.selection.main;if(2{if(!t.empty)return{changes:[{insert:s,from:t.from},{insert:s,from:t.to}],effects:ls.of(t.to+s.length),range:H.range(t.anchor+s.length,t.head+s.length)};var e=t.head,i=ws(r.doc,e);if(i==s){if(ys(r,e))return{changes:{insert:s+s,from:e},effects:ls.of(e+s.length),range:H.cursor(e+s.length)};if(vs(r,e)){var n=o&&r.sliceDoc(e,e+3*s.length)==s+s+s;return{range:H.cursor(e+s.length*(n?3:1)),effects:hs.of(e)}}}else{if(o&&r.sliceDoc(e-2*s.length,e)==s+s&&ys(r,e-2*s.length))return{changes:{insert:s+s+s+s,from:e},effects:ls.of(e+s.length),range:H.cursor(e+s.length)};if(r.charCategorizer(e)(i)!=ct.Word){i=r.sliceDoc(e-1,e);if(i!=s&&r.charCategorizer(e)(i)!=ct.Word)return{changes:{insert:s+s,from:e},effects:ls.of(e+s.length),range:H.cursor(e+s.length)}}}return{range:a=t}});return a?null:r.update(t,{scrollIntoView:!0,annotations:rt.userEvent.of("input")})}(t,r,-1{if(!t.empty)return{changes:[{insert:n,from:t.from},{insert:r,from:t.to}],effects:ls.of(t.to+n.length),range:H.range(t.anchor+n.length,t.head+n.length)};var e=ws(i.doc,t.head);return!e||/\s/.test(e)||-1t.empty&&ws(e.doc,t.head)==i?H.cursor(t.head+i.length):n=t);return n?null:e.update({selection:H.create(t,e.selection.mainIndex),scrollIntoView:!0,effects:e.selection.ranges.map(({from:t})=>hs.of(t))})}(t,(r,s))}return null}(t.state,n);return!!n&&(t.dispatch(n),!0)}const ms=[{key:"Backspace",run:({state:n,dispatch:t})=>{let r=ps(n,n.selection.main.head).brackets||as.brackets,s=null,e=n.changeByRange(t=>{if(t.empty){var e,i=function(t,e){let i=t.sliceString(e-2,e);return d(c(i,0))==i.length?i:i.slice(1)}(n.doc,t.head);for(e of r)if(e==i&&ws(n.doc,t.head)==fs(c(e,0)))return{changes:{from:t.head-e.length,to:t.head+e.length},range:H.cursor(t.head-e.length),annotations:rt.userEvent.of("delete")}}return{range:s=t}});return s||t(n.update(e,{scrollIntoView:!0})),!s}}];function vs(t,e){let i=!1;return t.field(ds).between(0,t.doc.length,t=>{t==e&&(i=!0)}),i}function ws(t,e){let i=t.sliceString(e,e+2);return i.slice(0,d(c(i,0)))}function ys(t,e){t=Br(t).resolve(e+1);return t.parent&&t.from==e}function bs(t,e){return H.create(t.ranges.map(e),t.mainIndex)}function xs(t,e){return t.update({selection:e,scrollIntoView:!0,annotations:rt.userEvent.of("keyboardselection")})}function ks({state:t,dispatch:e},i){let n=bs(t.selection,i);return!n.eq(t.selection)&&(e(xs(t,n)),!0)}function Ss(t,e){return H.cursor(e?t.to:t.from)}function As(e,i){return ks(e,t=>t.empty?e.moveByChar(t,i):Ss(t,i))}var Ms=t=>As(t,t.textDirection!=Ai.LTR),Cs=t=>As(t,t.textDirection==Ai.LTR);function Ts(e,i){return ks(e,t=>t.empty?e.moveByGroup(t,i):Ss(t,i))}function Ds(e,i,n){let r=Br(e).resolve(i.head);var s,o,a,l=n?fr.closedBy:fr.openedBy;for(let t=i.head;;){var h=n?r.childAfter(t):r.childBefore(t);if(!h)break;s=e,a=l,(o=h).type.prop(a)||((a=o.to-o.from)&&(2t.empty?e.moveVertically(t,i):Ss(t,i))}var Os=t=>Ls(t,!1),Hs=t=>Ls(t,!0);function Bs(e,i){return ks(e,t=>t.empty?e.moveVertically(t,i,e.dom.clientHeight):Ss(t,i))}var _s=t=>Bs(t,!1),Es=t=>Bs(t,!0);function $s(t,e,i){let n=t.visualLineAt(e.head),r=t.moveToLineBoundary(e,i);return r.head==e.head&&r.head!=(i?n.to:n.from)&&(r=t.moveToLineBoundary(e,i,!1)),i||r.head!=n.from||!n.length||(t=/^\s*/.exec(t.state.sliceDoc(n.from,Math.min(n.from+100,n.to)))[0].length)&&e.head!=n.from+t&&(r=H.cursor(n.from+t)),r}var zs=e=>ks(e,t=>H.cursor(e.visualLineAt(t.head).from,1)),Ps=e=>ks(e,t=>H.cursor(e.visualLineAt(t.head).to,-1));function Ns(t,i){let e=bs(t.state.selection,t=>{var e=i(t);return H.range(t.anchor,e.head,e.goalColumn)});return!e.eq(t.state.selection)&&(t.dispatch(xs(t.state,e)),!0)}function Rs(e,i){return Ns(e,t=>e.moveByChar(t,i))}var Vs=t=>Rs(t,t.textDirection!=Ai.LTR),Is=t=>Rs(t,t.textDirection==Ai.LTR);function js(e,i){return Ns(e,t=>e.moveByGroup(t,i))}function Ws(e,i){return Ns(e,t=>e.moveVertically(t,i))}var qs=t=>Ws(t,!1),Nt=t=>Ws(t,!0);function Fs(e,i){return Ns(e,t=>e.moveVertically(t,i,e.dom.clientHeight))}Vt=t=>Fs(t,!1),It=t=>Fs(t,!0),Yt=e=>Ns(e,t=>H.cursor(e.visualLineAt(t.head).from)),Gt=e=>Ns(e,t=>H.cursor(e.visualLineAt(t.head).to)),Xt=({state:t,dispatch:e})=>(e(xs(t,{anchor:0})),!0),Kt=({state:t,dispatch:e})=>(e(xs(t,{anchor:t.doc.length})),!0),Qt=({state:t,dispatch:e})=>(e(xs(t,{anchor:t.selection.main.anchor,head:0})),!0),Zt=({state:t,dispatch:e})=>(e(xs(t,{anchor:t.selection.main.anchor,head:t.doc.length})),!0);function Js({state:t,dispatch:e},r){var i=t.changeByRange(t=>{let{from:e,to:i}=t;var n;return e==i&&(n=r(e),e=Math.min(e,n),i=Math.max(i,n)),e==i?{range:t}:{changes:{from:e,to:i},range:H.cursor(e)}});return!i.changes.empty&&(e(t.update(i,{scrollIntoView:!0,annotations:rt.userEvent.of("delete")})),!0)}const Us=(a,l,h)=>Js(a,e=>{let{state:t}=a,i=t.doc.lineAt(e),n;if(!l&&e>i.from&&eUs(t,!1,!0),ee=t=>Us(t,!0,!1);const Ks=(t,h)=>Js(t,e=>{let i=e,{state:n}=t,r=n.doc.lineAt(i),s=n.charCategorizer(i);for(let t=null;;){if(i==(h?r.to:r.from)){i==e&&r.number!=(h?n.doc.lines:1)&&(i+=h?1:-1);break}var o=S(r.text,i-r.from,h)+r.from,a=r.text.slice(Math.min(i,o)-r.from,Math.max(i,o)-r.from),l=s(a);if(null!=t&&l!=t)break;" "==a&&i==e||(t=l),i=o}return i});te=t=>Ks(t,!1),Ut=t=>Ks(t,!0),Rr=i=>Js(i,t=>{var e=i.visualLineAt(t).to;return t{var i=[];for(let t=e.from;t<=e.to;){var n=r.doc.lineAt(t);n.number>o&&(e.empty||e.to>n.from)&&(s(n,i,e),o=n.number),t=n.to+1}let t=r.changes(i);return{changes:i,range:H.range(t.mapPos(e.anchor,1),t.mapPos(e.head,1))}})}Qr=({state:o,dispatch:t})=>{let a=Object.create(null),l=new Jr(o,{overrideIndentation:t=>{t=a[t];return null==t?-1:t}});var e=Qs(o,(t,e,i)=>{var n,r,s=Fr(l,t.from);null==s||((n=/^\s*/.exec(t.text)[0])!=(r=qr(o,s))||i.from(t(i.update(Qs(i,(t,e)=>{e.push({from:t.from,insert:i.facet(jr)})}))),!0);const to=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:e=>ks(e,t=>Ds(e.state,t,e.textDirection!=Ai.LTR)),shift:e=>Ns(e,t=>Ds(e.state,t,e.textDirection!=Ai.LTR))},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:e=>ks(e,t=>Ds(e.state,t,e.textDirection==Ai.LTR)),shift:e=>Ns(e,t=>Ds(e.state,t,e.textDirection==Ai.LTR))},{key:"Alt-ArrowUp",run:({state:t,dispatch:e})=>Xs(t,e,!1)},{key:"Shift-Alt-ArrowUp",run:({state:t,dispatch:e})=>Ys(t,e,!1)},{key:"Alt-ArrowDown",run:({state:t,dispatch:e})=>Xs(t,e,!0)},{key:"Shift-Alt-ArrowDown",run:({state:t,dispatch:e})=>Ys(t,e,!0)},{key:"Escape",run:({state:t,dispatch:e})=>{let i=t.selection,n=null;return 1{var e=Gs(i).map(({from:t,to:e})=>H.range(t,Math.min(e+1,i.doc.length)));return t(i.update({selection:H.create(e),annotations:rt.userEvent.of("keyboardselection")})),!0}},{key:"Mod-i",run:({state:n,dispatch:t})=>{var e=bs(n.selection,t=>{var e;let i=Br(n).resolve(t.head,1);for(;!(i.from=t.to||i.to>t.to&&i.from<=t.from||null===(e=i.parent)||void 0===e)&&e.parent;)i=i.parent;return H.range(i.to,i.from)});return t(xs(n,e)),!0}},{key:"Mod-[",run:({state:o,dispatch:t})=>(t(o.update(Qs(o,(n,r)=>{let s=/^\s*/.exec(n.text)[0];if(s){let t=A(s,0,o.tabSize),e=0,i=qr(o,Math.max(0,t-Wr(o)));for(;e{let{state:i}=e,t=i.changes(Gs(i).map(({from:t,to:e})=>(0e.moveVertically(t,!0)).map(t);return e.dispatch({changes:t,selection:n,scrollIntoView:!0}),!0}},{key:"Shift-Mod-\\",run:({state:t,dispatch:e})=>function(i,t,n){let r=!1,e=bs(i.selection,t=>{var e=os(i,t.head,-1)||os(i,t.head,1)||0Ts(t,t.textDirection!=Ai.LTR),shift:t=>js(t,t.textDirection!=Ai.LTR)},{mac:"Cmd-ArrowLeft",run:zs,shift:Yt},{key:"ArrowRight",run:Cs,shift:Is},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:t=>Ts(t,t.textDirection==Ai.LTR),shift:t=>js(t,t.textDirection==Ai.LTR)},{mac:"Cmd-ArrowRight",run:Ps,shift:Gt},{key:"ArrowUp",run:Os,shift:qs},{mac:"Cmd-ArrowUp",run:Xt,shift:Qt},{mac:"Ctrl-ArrowUp",run:_s,shift:Vt},{key:"ArrowDown",run:Hs,shift:Nt},{mac:"Cmd-ArrowDown",run:Kt,shift:Zt},{mac:"Ctrl-ArrowDown",run:Es,shift:It},{key:"PageUp",run:_s,shift:Vt},{key:"PageDown",run:Es,shift:It},{key:"Home",run:e=>ks(e,t=>$s(e,t,!1)),shift:e=>Ns(e,t=>$s(e,t,!1))},{key:"Mod-Home",run:Xt,shift:Qt},{key:"End",run:e=>ks(e,t=>$s(e,t,!0)),shift:e=>Ns(e,t=>$s(e,t,!0))},{key:"Mod-End",run:Kt,shift:Zt},{key:"Enter",run:({state:a,dispatch:t})=>{var e=a.changeByRange(({from:t,to:e})=>{var i=t==e&&function(t,e){if(/\(\)|\[\]|\{\}/.test(t.sliceDoc(e-1,e+1)))return{from:e,to:e};let i=Br(t).resolve(e),n=i.childBefore(e),r=i.childAfter(e),s;return n&&r&&n.to<=e&&r.from>=e&&(s=n.type.prop(fr.closedBy))&&-1s.from&&t(e(t.update({selection:{anchor:0,head:t.doc.length},annotations:rt.userEvent.of("keyboardselection")})),!0)},{key:"Backspace",run:Jt,shift:Jt},{key:"Delete",run:ee,shift:ee},{key:"Mod-Backspace",mac:"Alt-Backspace",run:te},{key:"Mod-Delete",mac:"Alt-Delete",run:Ut},{mac:"Mod-Backspace",run:i=>Js(i,t=>{var e=i.visualLineAt(t).from;return eUs(t,!1,!1)},{key:"Ctrl-k",run:Rr},{key:"Alt-d",run:Ut},{key:"Ctrl-Alt-h",run:te},{key:"Ctrl-o",run:({state:t,dispatch:e})=>{var i=t.changeByRange(t=>({changes:{from:t.from,to:t.to,insert:u.of(["",""])},range:H.cursor(t.from)}));return e(t.update(i,{scrollIntoView:!0,annotations:rt.userEvent.of("input")})),!0}},{key:"Ctrl-t",run:({state:n,dispatch:t})=>{var e=n.changeByRange(t=>{if(!t.empty||0==t.from||t.from==n.doc.length)return{range:t};var e=t.from,i=n.doc.lineAt(e),t=e==i.from?e-1:S(i.text,e-i.from,!1)+i.from,i=e==i.to?e+1:S(i.text,e-i.from,!0)+i.from;return{changes:{from:t,to:i,insert:n.doc.slice(e,i).append(n.doc.slice(t,e))},range:H.cursor(i)}});return!e.changes.empty&&(t(n.update(e,{scrollIntoView:!0})),!0)}},{key:"Alt-f",run:t=>Ts(t,!0),shift:t=>js(t,!0)},{key:"Alt-b",run:t=>Ts(t,!1),shift:t=>js(t,!1)},{key:"Alt-<",run:Xt},{key:"Alt->",run:Kt},{key:"Ctrl-v",run:Es},{key:"Alt-v",run:_s}].map(t=>({mac:t.key,run:t.run,shift:t.shift})))),eo={key:"Tab",run:({state:t,dispatch:e})=>t.selection.ranges.some(t=>!t.empty)?Zs({state:t,dispatch:e}):(e(t.update(t.replaceSelection("\t"),{scrollIntoView:!0,annotations:rt.userEvent.of("input")})),!0),shift:Qr},io=tt.define(),no=tt.define(),ro=E.define(),so=E.define({combine(t){return gt(t,{minDepth:100,newGroupDelay:500},{minDepth:Math.max,newGroupDelay:Math.min})}}),oo=R.define({create(){return wo.empty},update(e,i){var n=i.state.facet(so),r=i.annotation(io);if(r){var s=co.fromTransaction(i),o=r.side;let t=0==o?e.undone:e.done;return t=s?uo(t,t.length,n.minDepth,s):mo(t,i.startState.selection),new wo(0==o?r.rest:t,0==o?t:r.rest)}var t=i.annotation(no);if("full"!=t&&"before"!=t||(e=e.isolate()),!1===i.annotation(rt.addToHistory))return i.changes.empty?e:e.addMapping(i.changes.desc);s=co.fromTransaction(i),o=i.annotation(rt.time),r=i.annotation(rt.userEvent);return s?e=e.addChanges(s,o,r,n.newGroupDelay,n.minDepth):i.selection&&(e=e.addSelection(i.startState.selection,o,r,n.newGroupDelay)),e="full"==t||"after"==t?e.isolate():e},toJSON(t){return{done:t.done.map(t=>t.toJSON()),undone:t.undone.map(t=>t.toJSON())}},fromJSON(t){return new wo(t.done.map(co.fromJSON),t.undone.map(co.fromJSON))}});function ao(n,r){return function({state:t,dispatch:e}){let i=t.field(oo,!1);if(!i)return!1;t=i.pop(n,t,r);return!!t&&(e(t),!0)}}const lo=ao(0,!1),ho=ao(1,!1);zs=ao(0,!0),Yt=ao(1,!0);class co{constructor(t,e,i,n,r){this.changes=t,this.effects=e,this.mapped=i,this.startSelection=n,this.selectionsAfter=r}setSelAfter(t){return new co(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){var t;return{changes:null===(t=this.changes)||void 0===t?void 0:t.toJSON(),mapped:null===(t=this.mapped)||void 0===t?void 0:t.toJSON(),startSelection:null===(t=this.startSelection)||void 0===t?void 0:t.toJSON(),selectionsAfter:this.selectionsAfter.map(t=>t.toJSON())}}static fromJSON(t){return new co(t.changes&&k.fromJSON(t.changes),[],t.mapped&&x.fromJSON(t.mapped),t.startSelection&&H.fromJSON(t.startSelection),t.selectionsAfter.map(H.fromJSON))}static fromTransaction(t){let e=po;for(var i of t.startState.facet(ro)){i=i(t);i.length&&(e=e.concat(i))}return!e.length&&t.changes.empty?null:new co(t.changes.invert(t.startState.doc),e,void 0,t.startState.selection,po)}static selection(t){return new co(void 0,po,void 0,void 0,t)}}function uo(t,e,i,n){let r=t.slice(i+20t.map(e)):po,i);if(!t.changes)return co.selection(n);var r=t.changes.map(e),s=e.mapDesc(t.changes,!0),i=t.mapped?t.mapped.composeDesc(s):s;return new co(r,nt.mapEffects(t.effects,e),i,t.startSelection.map(s),n)}(e[i-1],t,n);if(r.changes&&!r.changes.empty||r.effects.length){let t=e.slice(0,i);return t[i-1]=r,t}t=r.mapped,i--,n=r.selectionsAfter}return n.length?[co.selection(n)]:po}class wo{constructor(t,e,i=0,n=void 0){this.done=t,this.undone=e,this.prevTime=i,this.prevUserEvent=n}isolate(){return this.prevTime?new wo(this.done,this.undone):this}addChanges(t,e,i,n,r){let s=this.done,o=s[s.length-1];return s=o&&o.changes&&e-this.prevTimeo.push(t,e)),e.iterChangedRanges((t,e,i,n)=>{for(let t=0;tt.empty!=r.ranges[e].empty).length)?this:new wo(mo(this.done,t),this.undone,e,i)}addMapping(t){return new wo(vo(this.done,t),vo(this.undone,t),this.prevTime,this.prevUserEvent)}pop(e,i,t){let n=0==e?this.done:this.undone;if(0==n.length)return null;var r=n[n.length-1];if(t&&r.selectionsAfter.length)return i.update({selection:r.selectionsAfter[r.selectionsAfter.length-1],annotations:io.of({side:e,rest:function(t){let e=t[t.length-1],i=t.slice();return i[t.length-1]=e.setSelAfter(e.selectionsAfter.slice(0,e.selectionsAfter.length-1)),i}(n)})});if(r.changes){let t=1==n.length?po:n.slice(0,n.length-1);return r.mapped&&(t=vo(t,r.mapped)),i.update({changes:r.changes,selection:r.startSelection,effects:r.effects,annotations:io.of({side:e,rest:t}),filter:!1})}return null}}wo.empty=new wo(po,po);const yo=[{key:"Mod-z",run:lo,preventDefault:!0},{key:"Mod-y",mac:"Mod-Shift-z",run:ho,preventDefault:!0},{key:"Mod-u",run:zs,preventDefault:!0},{key:"Alt-u",mac:"Mod-Shift-u",run:Yt,preventDefault:!0}];let bo=0;class xo{constructor(t,e,i){this.set=t,this.base=e,this.modified=i,this.id=bo++}static define(t){if(null!=t&&t.base)throw new Error("Can not derive from a modified tag");let e=new xo([],null,[]);if(e.set.push(e),t)for(var i of t.set)e.set.push(i);return e}static defineModifier(){let e=new So;return t=>-1t.id-e.id))}}let ko=0;class So{constructor(){this.instances=[],this.id=ko++}static get(e,i){if(!i.length)return e;var t,n=i[0].instances.find(t=>t.base==e&&function(t,i){return t.length==i.length&&t.every((t,e)=>t==i[e])}(i,t.modified));if(n)return n;let r=[],s=new xo(r,e,i);for(t of i)t.instances.push(s);var o,a=function e(i){let n=[i];for(let t=0;tt.scope)?void 0:Object.create(null);return(t,e)=>{var i,n=a&&a[t.id];if(void 0!==n)return n;let r=null;for(i of o){var s=i.match(t,e);s&&(r=r?r+" "+s:s)}return a&&(a[t.id]=r),r}}static define(t,e){return new Lo(t,e||{})}static get(t,e,i){return Do(t)(e,i||gr.none)}}const Oo=I.fallback(li.fromClass(class{constructor(t){this.markCache=Object.create(null),this.tree=Br(t.state),this.decorations=this.buildDeco(t,Do(t.state))}update(t){var e=Br(t.state),i=Do(t.state),n=i!=t.startState.facet(Mo);e.lengthr-1)){for(let t=r-1,e=i.length-1;0<=e;e--,t--){var s=i[e];if(s&&s!=n[t])return}return 1}}(e.context,Ho,s)){for(var h of e.tags)(h=u(h,o))&&(t&&(t+=" "),t+=h,1==e.mode?r+=(r?" ":"")+h:0==e.mode&&(i=!0));break}e=e.next}if(t!=g&&(l>p&&g&&f(p,m.from,g),p=l,g=t),!i&&m.firstChild()){do{var c=m.to;n(r,s+1,o),g!=t&&((c=Math.min(d,c))>p&&g&&f(p,c,g),p=c,g=t)}while(m.nextSibling());m.parent()}}}("",0,t.type)}(this.tree,i,r,e,(t,e,i)=>{n.add(t,e,this.markCache[i]||(this.markCache[i]=Ne.mark({class:i})))});return n.finish()}},{decorations:t=>t.decorations})),Ho=[""];const Bo=xo.define;Ps=Bo(),Gt=Bo(),ee=Bo(Gt),Rr=Bo(),Ut=Bo(Rr),te=Bo(Rr),Xt=Bo(),Kt=Bo(Xt),Es=Bo(),_s=Bo(),Qr=Bo(),zs=Bo(Qr),Yt=Bo();const _o={comment:Ps,lineComment:Bo(Ps),blockComment:Bo(Ps),docComment:Bo(Ps),name:Gt,variableName:Bo(Gt),typeName:ee,tagName:Bo(ee),propertyName:Bo(Gt),className:Bo(Gt),labelName:Bo(Gt),namespace:Bo(Gt),macroName:Bo(Gt),literal:Rr,string:Ut,docString:Bo(Ut),character:Bo(Ut),number:te,integer:Bo(te),float:Bo(te),bool:Bo(Rr),regexp:Bo(Rr),escape:Bo(Rr),color:Bo(Rr),url:Bo(Rr),keyword:Es,self:Bo(Es),null:Bo(Es),atom:Bo(Es),unit:Bo(Es),modifier:Bo(Es),operatorKeyword:Bo(Es),controlKeyword:Bo(Es),definitionKeyword:Bo(Es),operator:_s,derefOperator:Bo(_s),arithmeticOperator:Bo(_s),logicOperator:Bo(_s),bitwiseOperator:Bo(_s),compareOperator:Bo(_s),updateOperator:Bo(_s),definitionOperator:Bo(_s),typeOperator:Bo(_s),controlOperator:Bo(_s),punctuation:Qr,separator:Bo(Qr),bracket:zs,angleBracket:Bo(zs),squareBracket:Bo(zs),paren:Bo(zs),brace:Bo(zs),content:Xt,heading:Kt,heading1:Bo(Kt),heading2:Bo(Kt),heading3:Bo(Kt),heading4:Bo(Kt),heading5:Bo(Kt),heading6:Bo(Kt),contentSeparator:Bo(Xt),list:Bo(Xt),quote:Bo(Xt),emphasis:Bo(Xt),strong:Bo(Xt),link:Bo(Xt),monospace:Bo(Xt),inserted:Bo(),deleted:Bo(),changed:Bo(),invalid:Bo(),meta:Yt,documentMeta:Bo(Yt),annotation:Bo(Yt),processingInstruction:Bo(Yt),definition:xo.defineModifier(),constant:xo.defineModifier(),function:xo.defineModifier(),standard:xo.defineModifier(),local:xo.defineModifier(),special:xo.defineModifier()};Lo.define([{tag:_o.link,textDecoration:"underline"},{tag:_o.heading,textDecoration:"underline",fontWeight:"bold"},{tag:_o.emphasis,fontStyle:"italic"},{tag:_o.strong,fontWeight:"bold"},{tag:_o.keyword,color:"#708"},{tag:[_o.atom,_o.bool,_o.url,_o.contentSeparator,_o.labelName],color:"#219"},{tag:[_o.literal,_o.inserted],color:"#164"},{tag:[_o.string,_o.deleted],color:"#a11"},{tag:[_o.regexp,_o.escape,_o.special(_o.string)],color:"#e40"},{tag:_o.definition(_o.variableName),color:"#00f"},{tag:_o.local(_o.variableName),color:"#30a"},{tag:[_o.typeName,_o.namespace],color:"#085"},{tag:_o.className,color:"#167"},{tag:[_o.special(_o.variableName),_o.macroName],color:"#256"},{tag:_o.definition(_o.propertyName),color:"#00c"},{tag:_o.comment,color:"#940"},{tag:_o.meta,color:"#7a757a"},{tag:_o.invalid,color:"#f00"}]);const Eo=Lo.define([{tag:_o.link,class:"cmt-link"},{tag:_o.heading,class:"cmt-heading"},{tag:_o.emphasis,class:"cmt-emphasis"},{tag:_o.strong,class:"cmt-strong"},{tag:_o.keyword,class:"cmt-keyword"},{tag:_o.atom,class:"cmt-atom"},{tag:_o.bool,class:"cmt-bool"},{tag:_o.url,class:"cmt-url"},{tag:_o.labelName,class:"cmt-labelName"},{tag:_o.inserted,class:"cmt-inserted"},{tag:_o.deleted,class:"cmt-deleted"},{tag:_o.literal,class:"cmt-literal"},{tag:_o.string,class:"cmt-string"},{tag:_o.number,class:"cmt-number"},{tag:[_o.regexp,_o.escape,_o.special(_o.string)],class:"cmt-string2"},{tag:_o.variableName,class:"cmt-variableName"},{tag:_o.local(_o.variableName),class:"cmt-variableName cmt-local"},{tag:_o.definition(_o.variableName),class:"cmt-variableName cmt-definition"},{tag:_o.special(_o.variableName),class:"cmt-variableName2"},{tag:_o.typeName,class:"cmt-typeName"},{tag:_o.namespace,class:"cmt-namespace"},{tag:_o.macroName,class:"cmt-macroName"},{tag:_o.propertyName,class:"cmt-propertyName"},{tag:_o.operator,class:"cmt-operator"},{tag:_o.comment,class:"cmt-comment"},{tag:_o.meta,class:"cmt-meta"},{tag:_o.invalid,class:"cmt-invalid"},{tag:_o.punctuation,class:"cmt-punctuation"}]);var $o=[{type:"undo",title:"撤销",innerHTML:''},{type:"redo",title:"重做",innerHTML:''},{type:"bold",title:"加粗",innerHTML:''},{type:"italic",title:"倾斜",innerHTML:''},{type:"delete",title:"删除",innerHTML:''},{type:"code-inline",title:"行内代码",innerHTML:''},{type:"hr",title:"横线",innerHTML:''},{type:"quote",title:"引用",innerHTML:''},{type:"title",title:"标题",innerHTML:''},{type:"ordered-list",title:"有序列表",innerHTML:''},{type:"unordered-list",title:"无序列表",innerHTML:''},{type:"link",title:"超链接",innerHTML:''},{type:"image",title:"插入图片",innerHTML:''},{type:"table",title:"表格",innerHTML:''},{type:"code-block",title:"代码块",innerHTML:''},{type:"html",title:"原生HTML",innerHTML:''},{type:"time",title:"当前时间",innerHTML:''},{type:"indent",title:"缩进",innerHTML:''},{type:"character",title:"实体符号",innerHTML:''},{type:"emoji",title:"符号表情",innerHTML:''},{type:"expression",title:"图片表情",innerHTML:''},{type:"task-no",title:"任务 - 未完成",innerHTML:''},{type:"task-yes",title:"任务 - 已完成",innerHTML:''},{type:"mtitle",title:"居中标题",innerHTML:''},{type:"dplayer",title:"M3U8/MP4视频",innerHTML:''},{type:"bilibili",title:"哔哩哔哩视频",innerHTML:''},{type:"netease-list",title:"网易云列表",innerHTML:''},{type:"netease-single",title:"网易云单首",innerHTML:''},{type:"abtn",title:"多彩按钮",innerHTML:''},{type:"anote",title:"便条按钮",innerHTML:''},{type:"dotted",title:"彩色虚线",innerHTML:''},{type:"hide",title:"回复可见",innerHTML:''},{type:"card-default",title:"默认卡片",innerHTML:''},{type:"message",title:"消息提示",innerHTML:''},{type:"progress",title:"进度条",innerHTML:''},{type:"callout",title:"标注",innerHTML:''},{type:"clean",title:"清屏",innerHTML:''},{type:"download",title:"下载",innerHTML:''},{type:"fullScreen",title:"全屏/取消全屏",innerHTML:''},{type:"draft",title:"保存草稿",innerHTML:''},{type:"publish",title:"发布文章",innerHTML:''},{type:"about",title:"关于",innerHTML:''}];const zo=new HyperDown,Po=window.JoeConfig.playerAPI;function No(t){t=t.replace(/ /g," "),t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=zo.makeHtml(t)).replace(/{x}/g,'')).replace(/{ }/g,'')).replace(/\:\:\(\s*(呵呵|哈哈|吐舌|太开心|笑眼|花心|小乖|乖|捂嘴笑|滑稽|你懂的|不高兴|怒|汗|黑线|泪|真棒|喷|惊哭|阴险|鄙视|酷|啊|狂汗|what|疑问|酸爽|呀咩爹|委屈|惊讶|睡觉|笑尿|挖鼻|吐|犀利|小红脸|懒得理|勉强|爱心|心碎|玫瑰|礼物|彩虹|太阳|星星月亮|钱币|茶杯|蛋糕|大拇指|胜利|haha|OK|沙发|手纸|香蕉|便便|药丸|红领巾|蜡烛|音乐|灯泡|开心|钱|咦|呼|冷|生气|弱|吐血|狗头)\s*\)/g,function(t,e){return e=encodeURI(e).replace(/%/g,""),``})).replace(/\:\@\(\s*(高兴|小怒|脸红|内伤|装大款|赞一个|害羞|汗|吐血倒地|深思|不高兴|无语|亲亲|口水|尴尬|中指|想一想|哭泣|便便|献花|皱眉|傻笑|狂汗|吐|喷水|看不见|鼓掌|阴暗|长草|献黄瓜|邪恶|期待|得意|吐舌|喷血|无所谓|观察|暗地观察|肿包|中枪|大囧|呲牙|抠鼻|不说话|咽气|欢呼|锁眉|蜡烛|坐等|击掌|惊喜|喜极而泣|抽烟|不出所料|愤怒|无奈|黑线|投降|看热闹|扇耳光|小眼睛|中刀)\s*\)/g,function(t,e){return e=encodeURI(e).replace(/%/g,""),``})).replace(/{mtitle([^}]*)\/}/g,"")).replace(/{dplayer([^}]*)\/}/g,'')).replace(/{bilibili([^}]*)\/}/g,"")).replace(/{music-list([^}]*)\/}/g,"")).replace(/{music([^}]*)\/}/g,"")).replace(/{abtn([^}]*)\/}/g,"")).replace(/{anote([^}]*)\/}/g,"")).replace(/{dotted([^}]*)\/}/g,"")).replace(/{message([^}]*)\/}/g,"")).replace(/{progress([^}]*)\/}/g,"")).replace(/{hide[^}]*}([\s\S]*?){\/hide}/g,"")).replace(/{card-default([^}]*)}([\s\S]*?){\/card-default}/g,'

')).replace(/{callout([^}]*)}([\s\S]*?){\/callout}/g,'
');const e=document.createElement("div");e.innerHTML=t,e.innerHTML=e.innerHTML.replace(/

<\/p>/g,"");t=e.innerHTML;$(".cm-preview-content").html(t),$(".cm-preview-content pre code").each((t,e)=>Prism.highlightElement(e))}class Ro extends class{constructor(){$("body").append(` +!function(){"use strict";let s="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(t=>t?parseInt(t,36):1);for(let t=1;te)return s[t-1]<=e}(e))n+=d(e),t=e;else{if(!r(e))break;{let t=0,e=n-2;for(;0<=e&&r(c(i,e));)t++,e-=2;if(t%2==0)break;n+=2}}}return n}function a(t,e){for(;0this.length)throw new RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw new RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,e,i){var n=[];return this.decompose(0,t,n,2),i.length&&i.decompose(0,i.length,n,3),this.decompose(e,this.length,n,1),g.from(n,this.length-(e-t)+i.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,e=this.length){var i=[];return this.decompose(t,e,i,0),g.from(i,e-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let e=new v(this),i=new v(t);for(;;){if(e.next(),i.next(),e.lineBreak!=i.lineBreak||e.done!=i.done||e.value!=i.value)return!1;if(e.done)return!0}}iter(t=1){return new v(this,t)}iterRange(t,e=this.length){return new i(this,t,e)}toString(){return this.sliceString(0)}toJSON(){var t=[];return this.flatten(t),t}static of(t){if(0==t.length)throw new RangeError("A document must have at least one line");return 1!=t.length||t[0]?t.length<=32?new m(t):g.from(m.split(t,[])):u.empty}}"undefined"!=typeof Symbol&&(u.prototype[Symbol.iterator]=function(){return this.iter()});class m extends u{constructor(t,e=function(t){let e=-1;for(var i of t)e+=i.length+1;return e}(t)){super(),this.text=t,this.length=e}get lines(){return this.text.length}get children(){return null}lineInner(e,i,n,s){for(let t=0;;t++){var r=this.text[t],o=s+r.length;if(e<=(i?n:o))return new w(s,o,n,r);s=o+1,n++}}decompose(i,t,n,s){i=i<=0&&t>=this.length?this:new m(p(this.text,i,t),Math.min(t,this.length)-Math.max(0,i));if(1&s){let t=n.pop(),e=f(i.text,t.text.slice(),0,i.length);e.length<=32?n.push(new m(e,t.length+i.length)):(s=e.length>>1,n.push(new m(e.slice(0,s)),new m(e.slice(s))))}else n.push(i)}replace(t,e,i){if(!(i instanceof m))return super.replace(t,e,i);var n=f(this.text,f(i.text,p(this.text,0,t)),e),t=this.length+i.length-(e-t);return n.length<=32?new m(n,t):g.from(m.split(n,[]),t)}sliceString(s,r=this.length,o="\n"){let a="";for(let i=0,n=0;i<=r&&ns&&n&&(a+=o),si&&(a+=t.slice(Math.max(0,s-i),r-i)),i=e+1}return a}flatten(t){for(var e of this.text)t.push(e)}static split(t,e){let i=[],n=-1;for(var s of t)i.push(s),n+=s.length+1,32==i.length&&(e.push(new m(i,n)),i=[],n=-1);return-1=n&&(l=a&((n<=s?1:0)|(r<=e?2:0)),n>=s&&e<=r&&!l?o.push(t):t.decompose(s-n,r-n,o,l)),n=e+1}}replace(s,r,o){if(o.lines=n&&r<=e){var a=t.replace(s-n,r-n,o),l=this.lines-t.lines+a.lines;if(a.lines>4&&a.lines>l>>6){let t=this.children.slice();return t[i]=a,new g(t,this.length-(r-s)+o.length)}return super.replace(n,e,a)}n=e+1}return super.replace(s,r,o)}sliceString(s,r=this.length,o="\n"){let a="";for(let i=0,n=0;is&&i&&(a+=o),sn&&(a+=t.sliceString(s-n,r-n,o)),n=e+1}return a}flatten(t){for(var e of this.children)e.flatten(t)}static from(t,e=t.reduce((t,e)=>t+e.length+1,-1)){let i=0;for(var n of t)i+=n.lines;if(i<32){var s,r=[];for(s of t)s.flatten(r);return new m(r,e)}let o=Math.max(32,i>>5),a=o<<1,l=o>>1,h=[],c=0,d=-1,u=[];function f(){0!=c&&(h.push(1==u.length?u[0]:g.from(u,d)),d=-1,c=u.length=0)}for(var p of t)!function t(e){let i;if(e.lines>a&&e instanceof g)for(var n of e.children)t(n);else e.lines>l&&(c>l||!c)?(f(),h.push(e)):e instanceof m&&c&&(i=u[u.length-1])instanceof m&&e.lines+i.lines<=32?(c+=e.lines,d+=e.length+1,u[u.length-1]=new m(i.text.concat(e.text),i.length+1+e.length)):(c+e.lines>o&&f(),c+=e.lines,d+=e.length+1,u.push(e))}(p);return f(),1==h.length?h[0]:new g(h,e)}}function f(r,o,a=0,l=1e9){for(let i=0,n=0,s=!0;nMath.max(0,n))return this.value=0==n?t:0t.length?n-=t.length:(this.nodes.push(t),this.offsets.push(0this.limit&&(this.value=0s)throw new RangeError(`Position ${e} is out of range for changeset of length ${s}`);return r}touchesRange(i,n=i){for(let t=0,e=0;t"number"!=typeof t))throw new RangeError("Invalid JSON representation of ChangeDesc");return new x(t)}}class k extends x{constructor(t,e){super(t),this.inserted=e}apply(r){if(this.length!=r.length)throw new RangeError("Applying change set to a document with the wrong length");return T(this,(t,e,i,n,s)=>r=r.replace(i,i+(e-t),s),!1),r}mapDesc(t,e=!1){return D(this,t,e,!0)}invert(i){let n=this.sections.slice(),s=[];for(let t=0,e=0;t>1;s.length>1].toJSON()))}return n}static of(t,r,o){let a=[],l=[],h=0,i=null;function c(t=!1){if(t||a.length){hh&&M(a,t-h,-1),M(a,e-t,n),C(l,a,s),h=e)}}(t),c(!i),i}static empty(t){return new k(t?[t,-1]:[],[])}static fromJSON(i){if(!Array.isArray(i))throw new RangeError("Invalid JSON representation of ChangeSet");let n=[],s=[];for(let e=0;ee&&"string"!=typeof t))throw new RangeError("Invalid JSON representation of ChangeSet");if(1==t.length)n.push(t[0],0);else{for(;s.length>1;if(n>1])),!(c||a==l.sections.length||l.sections[a+1]<0);)n=l.sections[a++],s=l.sections[a++];h(r,t,o,e,i),r=t,o=e}}}function D(t,e,s,i=!1){var r=[],o=i?[]:null;let a=new L(t),l=new L(e);for(let i=0,n=0;;)if(-1==a.ins)i+=a.len,a.next();else if(-1==l.ins&&nn&&!a.done&&i+a.leni&&n+l.lenl||0<=o.ins&&o.len>l)&&(t||h>1;return e>=t.length?u.empty:t[e]}textBit(t){let{inserted:e}=this.set,i=this.i-2>>1;return i>=e.length&&!t?u.empty:e[i].slice(this.off,null==t?void 0:this.off+t)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){-1==this.ins?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class O{constructor(t,e,i){this.from=t,this.to=e,this.flags=i}get anchor(){return 16&this.flags?this.to:this.from}get head(){return 16&this.flags?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return 4&this.flags?-1:8&this.flags?1:0}get bidiLevel(){var t=3&this.flags;return 3==t?null:t}get goalColumn(){var t=this.flags>>5;return 33554431==t?void 0:t}map(t,e=-1){var i=t.mapPos(this.from,e),e=t.mapPos(this.to,e);return i==this.from&&e==this.to?this:new O(i,e,this.flags)}extend(t,e=t){if(t<=this.anchor&&e>=this.anchor)return H.range(t,e);e=Math.abs(t-this.anchor)>Math.abs(e-this.anchor)?t:e;return H.range(this.anchor,e)}eq(t){return this.anchor==t.anchor&&this.head==t.head}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||"number"!=typeof t.anchor||"number"!=typeof t.head)throw new RangeError("Invalid JSON representation for SelectionRange");return H.range(t.anchor,t.head)}}class H{constructor(t,e=0){this.ranges=t,this.mainIndex=e}map(e,i=-1){return e.empty?this:H.create(this.ranges.map(t=>t.map(e,i)),this.mainIndex)}eq(e){if(this.ranges.length!=e.ranges.length||this.mainIndex!=e.mainIndex)return!1;for(let t=0;tt.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||"number"!=typeof t.main||t.main>=t.ranges.length)throw new RangeError("Invalid JSON representation for EditorSelection");return new H(t.ranges.map(t=>O.fromJSON(t)),t.main)}static single(t,e=t){return new H([H.range(t,e)],0)}static create(i,n=0){if(0==i.length)throw new RangeError("A selection needs at least one range");for(let t=0,e=0;et.from-e.from),i=e.indexOf(t);for(let t=1;ts.head?H.range(r,n):H.range(n,r)))}return new H(e,i)}(i.slice(),n);t=s.to}return new H(i,n)}static cursor(t,e=0,i,n){return new O(t,t,(0==e?0:e<0?4:8)|(null==i?3:Math.min(2,i))|(null!=n?n:33554431)<<5)}static range(t,e,i){i=(null!=i?i:33554431)<<5;return ee)throw new RangeError("Selection points outside of document")}let _=0;class E{constructor(t,e,i,n,s){this.combine=t,this.compareInput=e,this.compare=i,this.isStatic=n,this.extensions=s,this.id=_++,this.default=t([])}static define(t={}){return new E(t.combine||(t=>t),t.compareInput||((t,e)=>t===e),t.compare||(t.combine?(t,e)=>t===e:z),!!t.static,t.enables)}of(t){return new P([],this,0,t)}compute(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new P(t,this,1,e)}computeN(t,e){if(this.isStatic)throw new Error("Can't compute a static facet");return new P(t,this,2,e)}from(e,i){return i=i||(t=>t),this.compute([e],t=>i(t.field(e)))}}function z(t,i){return t==i||t.length==i.length&&t.every((t,e)=>t===i[e])}class P{constructor(t,e,i,n){this.dependencies=t,this.facet=e,this.type=i,this.value=n,this.id=_++}dynamicSlot(t){var e,i;let n=this.value,s=this.facet.compareInput,r=t[this.id]>>1,o=2==this.type,a=!1,l=!1,h=[];for(i of this.dependencies)"doc"==i?a=!0:"selection"==i?l=!0:0==(1&(null!==(e=t[i.id])&&void 0!==e?e:1))&&h.push(t[i.id]);return(e,t)=>{if(!t||t.reconfigured)return e.values[r]=n(e),1;if(!(a&&t.docChanged||l&&(t.docChanged||t.selection)||h.some(t=>0<(1&J(e,t)))))return 0;var i=n(e),t=t.startState.values[r];return(o?function(e,i,n){if(e.length!=i.length)return!1;for(let t=0;tt===e),t);return t.provide&&(e.provides=t.provide(e)),e}create(t){let e=t.facet(N).find(t=>t.field==this);return((null===e||void 0===e?void 0:e.create)||this.createF)(t)}slot(t){let o=t[this.id]>>1;return(t,e)=>{if(!e)return t.values[o]=this.create(t),1;let i,n=0;var s,r;e.reconfigured?(s=e.startState,r=this.id,r=null==(r=s.config.address[r])?null:r>>1,i=null==r?this.create(e.startState):e.startState.values[r],n=1):i=e.startState.values[o];e=this.updateF(i,e);return n||this.compareF(i,e)||(n=1),n&&(t.values[o]=e),n}}init(t){return[this,N.of({field:this,create:t})]}get extension(){return this}}const V={fallback:3,default:2,extend:1,override:0};function t(e){return t=>new j(t,e)}const I={fallback:t(V.fallback),default:t(V.default),extend:t(V.extend),override:t(V.override)};class j{constructor(t,e){this.inner=t,this.prec=e}}class W{of(t){return new q(this,t)}reconfigure(t){return W.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class q{constructor(t,e){this.compartment=t,this.inner=e}}class F{constructor(t,e,i,n,s){for(this.base=t,this.compartments=e,this.dynamicSlots=i,this.address=n,this.staticValues=s,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,e,n){let i=[],s=Object.create(null);var r,o,a=new Map;for(r of function(t,a,l){let h=[[],[],[],[]],c=new Map;return function t(e,i){var n=c.get(e);if(null!=n){if(i<=n)return;var s=h[n].indexOf(e);-1t.concat(e))}(t,e,a))(r instanceof R?i:s[r.facet.id]||(s[r.facet.id]=[])).push(r);let l=Object.create(null),h=[],c=[];for(let e of i)l[e.id]=c.length<<1,c.push(t=>e.slot(t));for(o in s){let i=s[o],e=i[0].facet;if(i.every(t=>0==t.type)){l[e.id]=h.length<<1|1;let t=e.combine(i.map(t=>t.value));var d=n?n.config.address[e.id]:null;null!=d&&(d=U(n,d),e.compare(t,d)&&(t=d)),h.push(t)}else{for(let e of i)0==e.type?(l[e.id]=h.length<<1|1,h.push(e.value)):(l[e.id]=c.length<<1,c.push(t=>e.dynamicSlot(t)));l[e.id]=c.length<<1,c.push(t=>function(e,h,t){let c=t.map(t=>e[t.id]),d=t.map(t=>t.type),u=c.filter(t=>!(1&t)),f=e[h.id]>>1;return(e,t)=>{var i,n=t?t.reconfigured?t.startState.config.address[h.id]:f<<1:null;let s=null==n;for(i of u)1&J(e,i)&&(s=!0);if(!s)return 0;let r=[];for(let t=0;tt(l)),l,h)}}function J(t,e){if(1&e)return 2;var i=e>>1,e=t.status[i];if(4==e)throw new Error("Cyclic dependency between fields and/or facets");if(2&e)return e;t.status[i]=4;e=t.config.dynamicSlots[i](t,t.applying);return t.status[i]=2|e}function U(t,e){return(1&e?t.config.staticValues:t.values)[e>>1]}const K=E.define(),G=E.define({combine:t=>t.some(t=>t),static:!0}),X=E.define({combine:t=>t.length?t[0]:void 0,static:!0}),Y=E.define(),Q=E.define(),Z=E.define();class tt{constructor(t,e){this.type=t,this.value=e}static define(){return new et}}class et{of(t){return new tt(this,t)}}class it{constructor(t){this.map=t}of(t){return new nt(this,t)}}class nt{constructor(t,e){this.type=t,this.value=e}map(t){t=this.type.map(this.value,t);return void 0===t?void 0:t==this.value?this:new nt(this.type,t)}is(t){return this.type==t}static define(t={}){return new it(t.map||(t=>t))}static mapEffects(t,e){if(!t.length)return t;let i=[];for(var n of t){n=n.map(e);n&&i.push(n)}return i}}nt.reconfigure=nt.define(),nt.appendConfig=nt.define();class st{constructor(t,e,i,n,s,r){this.startState=t,this.changes=e,this.selection=i,this.effects=n,this.annotations=s,this.scrollIntoView=r,this._doc=null,this._state=null,i&&B(i,e.newLength),s.some(t=>t.type==st.time)||(this.annotations=s.concat(st.time.of(Date.now())))}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(var e of this.annotations)if(e.type==t)return e.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}}function rt(t,e,i){let n,s,r;return r=i?(n=e.changes,s=k.empty(e.changes.length),t.changes.compose(e.changes)):(n=e.changes.map(t.changes),s=t.changes.mapDesc(e.changes,!0),t.changes.compose(n)),{changes:r,selection:e.selection?e.selection.map(s):null===(i=t.selection)||void 0===i?void 0:i.map(n),effects:nt.mapEffects(t.effects,n).concat(nt.mapEffects(e.effects,s)),annotations:t.annotations.length?t.annotations.concat(e.annotations):e.annotations,scrollIntoView:t.scrollIntoView||e.scrollIntoView}}function ot(t,e,i){var n=e.selection;return{changes:e.changes instanceof k?e.changes:k.of(e.changes||[],i,t.facet(X)),selection:n&&(n instanceof H?n:H.single(n.anchor,n.head)),effects:ht(e.effects),annotations:ht(e.annotations),scrollIntoView:!!e.scrollIntoView}}function at(e,i,n){let s=ot(e,i.length?i[0]:{},e.doc.length);i.length&&!1===i[0].filter&&(n=!1);for(let t=1;t=s[i]))t=s[i++],e=s[i++];else{if(!(n{if(!/\S/.test(e))return ct.Space;if(function(i){if(ut)return ut.test(i);for(let e=0;enull),n)for(var s in t.address){var r=t.address[s],s=n.startState.config.address[s];null!=s&&0==(1&r)&&(this.values[r>>1]=U(n.startState,s))}(this.applying=n)&&(n._state=this);for(let t=0;tn.set(e,t)),e=null),n.set(s.value.compartment,s.value.extension)):s.is(nt.reconfigure)?(e=null,i=s.value):s.is(nt.appendConfig)&&(e=null,i=ht(i).concat(s.value));new pt(e||F.resolve(i,n,this),t.newDoc,t.newSelection,t)}replaceSelection(e){return"string"==typeof e&&(e=this.toText(e)),this.changeByRange(t=>({changes:{from:t.from,to:t.to,insert:e},range:H.cursor(t.from+e.length)}))}changeByRange(s){var r=this.selection,t=s(r.ranges[0]);let o=this.changes(t.changes),a=[t.range],l=ht(t.effects);for(let n=1;ne.spec.fromJSON(i,t)))}return pt.create({doc:t.doc,selection:H.fromJSON(t.selection),extensions:e.extensions?s.concat([e.extensions]):s})}static create(t={}){let e=F.resolve(t.extensions||[],new Map);var i=t.doc instanceof u?t.doc:u.of((t.doc||"").split(e.staticFacet(pt.lineSeparator)||y));let n=t.selection?t.selection instanceof H?t.selection:H.single(t.selection.anchor,t.selection.head):H.single(0);return B(n,i.length),e.staticFacet(G)||(n=n.asSingle()),new pt(e,i,n)}get tabSize(){return this.facet(pt.tabSize)}get lineBreak(){return this.facet(pt.lineSeparator)||"\n"}phrase(t){for(var e of this.facet(pt.phrases))if(Object.prototype.hasOwnProperty.call(e,t))return e[t];return t}languageDataAt(t,e){let i=[];for(var n of this.facet(K))for(var s of n(this,e))Object.prototype.hasOwnProperty.call(s,t)&&i.push(s[t]);return i}charCategorizer(t){return ft(this.languageDataAt("wordChars",t).join(""))}wordAt(t){let{text:e,from:i,length:n}=this.doc.lineAt(t),s=this.charCategorizer(t),r=t-i,o=t-i;for(;0t.length?t[0]:4}),pt.lineSeparator=X,pt.phrases=E.define(),pt.languageData=K,pt.changeFilter=Y,pt.transactionFilter=Q,pt.transactionExtender=Z,W.reconfigure=nt.define();const gt="undefined"==typeof Symbol?"__ͼ":Symbol.for("ͼ"),vt="undefined"==typeof Symbol?"__styleSet"+Math.floor(1e8*Math.random()):Symbol("styleSet"),wt="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:{};class yt{constructor(t,e){this.rules=[];let{finish:c}=e||{};function d(t){return/^@/.test(t)?[t]:t.split(/,\s*/)}for(var i in t)!function t(i,e,n,s){let r=[],o=/^@(\w+)\b/.exec(i[0]),a=o&&"keyframes"==o[1];if(o&&null==e)return n.push(i[0]+";");for(var l in e){var h=e[l];if(/&/.test(l))t(l.split(/,\s*/).map(e=>i.map(t=>e.replace(/&/,t))).reduce((t,e)=>t.concat(e)),h,n);else if(h&&"object"==typeof h){if(!o)throw new RangeError("The value of a property ("+l+") should be a primitive value.");t(d(l),h,r,a)}else null!=h&&r.push(l.replace(/_.*/,"").replace(/[A-Z]/g,t=>"-"+t.toLowerCase())+": "+h+";")}(r.length||a)&&n.push((!c||o||s?i:i.map(c)).join(", ")+" {"+r.join(" ")+"}")}(d(i),t[i],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let t=wt[gt]||1;return wt[gt]=t+1,"ͼ"+t.toString(36)}static mount(t,e){(t[vt]||new xt(t)).mount(Array.isArray(e)?e:[e])}}let bt=null;class xt{constructor(e){if(!e.head&&e.adoptedStyleSheets&&"undefined"!=typeof CSSStyleSheet){if(bt)return e.adoptedStyleSheets=[bt.sheet].concat(e.adoptedStyleSheets),e[vt]=bt;this.sheet=new CSSStyleSheet,e.adoptedStyleSheets=[this.sheet].concat(e.adoptedStyleSheets),bt=this}else{this.styleTag=(e.ownerDocument||e).createElement("style");let t=e.head||e;t.insertBefore(this.styleTag,t.firstChild)}this.modules=[],e[vt]=this}mount(n){let s=this.sheet,r=0,o=0;for(let i=0;i>1,l=o[a]-i||(n<0?this.value[a].startSide:this.value[a].endSide)-s;if(a==t)return 0<=l?t:e;0<=l?e=a:t=1+a}}between(i,n,s,r){for(let t=this.findIndex(n,-1),e=this.findIndex(s,1,void 0,t);ts||n==s&&0this.chunkEnd(o.chunkIndex)||so.to||s500<=t.maxPoint||t!=Ct.empty&&i.indexOf(t)<0&&t.maxPoint>=s),o=i.filter(t=>500<=t.maxPoint||t!=Ct.empty&&e.indexOf(t)<0&&t.maxPoint>=s),a=function(t,e){let i=new Map;for(var n of t)for(let t=0;tBt(l,t,h,e,i,n)),t.empty&&0==t.length&&Bt(l,0,h,0,0,n)}static spans(t,e,i,n,s=-1){let r=new Ht(t,null,s).goto(e),o=e,a=r.openStart;for(;;){var l=Math.min(r.to,i);if(r.point?(n.point(o,l,r.point,r.activeForPoint(r.to),a),a=r.openEnd(l)+(r.to>l?1:0)):l>o&&(n.span(o,l,r.active,a),a=r.openEnd(l)),r.to>i)break;o=r.to,r.next()}return a}static of(t,e=!1){let i=new Tt;for(var n of t instanceof St?[t]:e?t.slice().sort(At):t)i.add(n.from,n.to,n.value);return i.finish()}}Ct.empty=new Ct([],[],null,-1),Ct.empty.nextLayer=Ct.empty;class Tt{constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}finishChunk(t){this.chunks.push(new Mt(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}add(t,e,i){this.addInner(t,e,i)||(this.nextLayer||(this.nextLayer=new Tt)).add(t,e,i)}addInner(t,e,i){var n=t-this.lastTo||i.startSide-this.last.endSide;if(n<=0&&(t-this.lastFrom||i.startSide-this.last.startSide)<0)throw new Error("Ranges must be added sorted by `from` position and `startSide`");return!(n<0)&&(250==this.from.length&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(e-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=e,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,e-t)),!0)}addChunk(t,e){if((t-this.lastTo||e.value[0].startSide-this.last.endSide)<0)return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,e.maxPoint),this.chunks.push(e),this.chunkPos.push(t);var i=e.value.length-1;return this.last=e.value[i],this.lastFrom=e.from[i]+t,this.lastTo=e.to[i]+t,!0}finish(){return this.finishInner(Ct.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),0==this.chunks.length)return t;t=new Ct(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,t}}class Dt{constructor(t,e,i,n=0){this.layer=t,this.skip=e,this.minPoint=i,this.rank=n}get startSide(){return this.value?this.value.startSide:0}get endSide(){return this.value?this.value.endSide:0}goto(t,e=-1e9){return this.chunkIndex=this.rangeIndex=0,this.gotoInner(t,e,!1),this}gotoInner(t,e,i){for(;this.chunkIndex=this.minPoint)break}}nextChunk(){this.chunkIndex++,this.rangeIndex=0,this.next()}compare(t){return this.from-t.from||this.startSide-t.startSide||this.to-t.to||this.endSide-t.endSide}}class Lt{constructor(t){this.heap=t}static from(i,n=null,s=-1){let r=[];for(let e=0;e=s&&r.push(new Dt(t,n,s,e));return 1==r.length?r[0]:new Lt(r)}get startSide(){return this.value?this.value.startSide:0}goto(t,e=-1e9){for(var i of this.heap)i.goto(t,e);for(let t=this.heap.length>>1;0<=t;t--)Ot(this.heap,t);return this.next(),this}forward(t,e){for(var i of this.heap)i.forward(t,e);for(let t=this.heap.length>>1;0<=t;t--)Ot(this.heap,t);(this.to-t||this.value.endSide-e)<0&&this.next()}next(){if(0==this.heap.length)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),Ot(this.heap,0)}}}function Ot(n,s){for(let i=n[s];;){let t=1+(s<<1);if(t>=n.length)break;let e=n[t];if(t+1e){this.to=this.activeTo[t],this.endSide=this.active[t].endSide;break}this.removeActive(t),i&&_t(i,t)}else{if(!this.cursor.value){this.to=this.endSide=1e9;break}if(this.cursor.from>e){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}t=this.cursor.value;if(t.point){this.point=t,this.pointFrom=this.cursor.from,this.pointRank=this.cursor.rank,this.to=this.cursor.to,this.endSide=t.endSide,this.cursor.frome&&this.forward(this.to,this.endSide);break}this.addActive(i),this.cursor.next()}}if(i){let t=0;for(;tthis.pointRank);t++)(this.activeTo[t]>e||this.activeTo[t]==e&&this.active[t].endSide>this.point.endSide)&&i.push(this.active[t]);return i}openEnd(t){let e=0;for(;et;)e++;return e}}function Bt(t,e,i,n,s,r){t.goto(e),i.goto(n);var o=n+s;let a=n,l=n-e;for(;;){var h=t.to+l-i.to||t.endSide-i.endSide,c=h<0?t.to+l:i.to,d=Math.min(c,o);if(t.point||i.point?t.point&&i.point&&(t.point==i.point||t.point.eq(i.point))||r.comparePoint(a,d,t.point,i.point):d>a&&!function(e,i){if(e.length!=i.length)return!1;for(let t=0;t=i;t--)e[t+1]=e[t];e[i]=t}function Et(e,i){let n=-1,s=1e9;for(let t=0;t",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"',229:"Q"},Nt="undefined"!=typeof navigator&&/Chrome\/(\d+)/.exec(navigator.userAgent),Rt="undefined"!=typeof navigator&&/Apple Computer/.test(navigator.vendor),Vt="undefined"!=typeof navigator&&/Gecko\/\d+/.test(navigator.userAgent),It="undefined"!=typeof navigator&&/Mac/.test(navigator.platform),jt="undefined"!=typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),Wt=Nt&&(It||+Nt[1]<57)||Vt&&It,qt=0;qt<10;qt++)zt[48+qt]=zt[96+qt]=String(qt);for(qt=1;qt<=24;qt++)zt[qt+111]="F"+qt;for(var Ft,qt=65;qt<=90;qt++)zt[qt]=String.fromCharCode(qt+32),Pt[qt]=String.fromCharCode(qt);for(Ft in zt)Pt.hasOwnProperty(Ft)||(Pt[Ft]=zt[Ft]);var[Jt,Ut]="undefined"!=typeof navigator?[navigator,document]:[{userAgent:"",vendor:"",platform:""},{documentElement:{style:{}}}],Kt=/Edge\/(\d+)/.exec(Jt.userAgent),Gt=/MSIE \d/.test(Jt.userAgent),Xt=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(Jt.userAgent),Yt=!!(Gt||Xt||Kt),Qt=!Yt&&/gecko\/(\d+)/i.test(Jt.userAgent),Zt=!Yt&&/Chrome\/(\d+)/.exec(Jt.userAgent),te="webkitFontSmoothing"in Ut.documentElement.style,ee=!Yt&&/Apple Computer/.test(Jt.vendor),ie={mac:/Mac/.test(Jt.platform),ie:Yt,ie_version:Gt?Ut.documentMode||6:Xt?+Xt[1]:Kt?+Kt[1]:0,gecko:Qt,gecko_version:Qt?+(/Firefox\/(\d+)/.exec(Jt.userAgent)||[0,0])[1]:0,chrome:!!Zt,chrome_version:Zt?+Zt[1]:0,ios:ee&&(/Mobile\/\w+/.test(Jt.userAgent)||2this.pos||t==this.pos&&(0t.width)||a),o?ue(a,o<0):a}class De extends Ae{constructor(t,e,i){super(),this.widget=t,this.length=e,this.side=i}static create(t,e,i){return new(t.customView||De)(t,e,i)}slice(t){return De.create(this.widget,this.length-t,this.side)}sync(){this.dom&&this.widget.updateDOM(this.dom)||(this.setDOM(this.widget.toDOM(this.editorView)),this.dom.contentEditable="false")}getSide(){return this.side}merge(t,e,i,n,s){return!(i&&(!(i instanceof De&&this.widget.compare(i.widget))||0i&&rt?i[s]=Math.max(i[s],e):i.push(t,e)}Ie.prototype.point=!0;class qe extends be{constructor(){super(...arguments),this.children=[],this.length=0,this.prevAttrs=void 0,this.attrs=null,this.breakAfter=0}merge(t,e,i,n,s,r){if(i){if(!(i instanceof qe))return!1;this.dom||i.transferDOM(this)}return n&&this.setDeco(i?i.attrs:null),Oe(this,t,e,i?i.children:Fe,s,r),!0}split(t){let e=new qe;if(e.breakAfter=this.breakAfter,0==this.length)return e;let{i,off:n}=this.childPos(t);n&&(e.append(this.children[i].slice(n),0),this.children[i].merge(n,this.children[i].length,null,0,0),i++);for(let t=i;t!t.length||t[0]});class si{constructor(t,e){this.field=t,this.get=e}}class ri{from(t){return new si(this,t)}static define(){return new ri}}ri.decorations=ri.define(),ri.scrollMargins=ri.define();let oi=0;const ai=E.define();class li{constructor(t,e,i){this.id=t,this.create=e,this.fields=i,this.extension=ai.of(this)}static define(t,e){let{eventHandlers:i,provide:n,decorations:s}=e||{},r=[];if(n)for(var o of Array.isArray(n)?n:[n])r.push(o);return i&&r.push(hi.from(t=>({plugin:t,handlers:i}))),s&&r.push(ri.decorations.from(s)),new li(oi++,t,r)}static fromClass(e,t){return li.define(t=>new e(t),t)}}const hi=ri.define();class ci{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}takeField(t,e){for(var{field:i,get:n}of this.spec.fields)i==t&&e.push(n(this.value))}update(e){if(this.value){if(this.mustUpdate){var i=this.mustUpdate;if(this.mustUpdate=null,!this.value.update)return this;try{this.value.update(i)}catch(t){if(ii(i.state,t,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch(t){}return ci.dummy}}}else try{this.value=this.spec.create(e)}catch(t){return ii(e.state,t,"CodeMirror plugin crashed"),ci.dummy}return this}destroy(e){var t;if(null!==(t=this.value)&&void 0!==t&&t.destroy)try{this.value.destroy()}catch(t){ii(e.state,t,"CodeMirror plugin crashed")}}}ci.dummy=new ci(li.define(()=>({})));const di=E.define({combine:t=>t.reduce((t,e)=>_e(e,t),{})}),ui=E.define({combine:t=>t.reduce((t,e)=>_e(e,t),{})}),fi=E.define(),pi=E.define();class mi{constructor(t,e,i,n){this.fromA=t,this.toA=e,this.fromB=i,this.toB=n}join(t){return new mi(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let e=t.length,i=this;for(;0i.toA)){if(n.toAs.push(new mi(t,e,i,n))),this.changedRanges=s;i=t.hasFocus;i!=t.inputState.notifiedFocused&&(t.inputState.notifiedFocused=i,this.flags|=1),this.docChanged&&(this.flags|=2)}get viewportChanged(){return 0<(4&this.flags)}get heightChanged(){return 0<(2&this.flags)}get geometryChanged(){return this.docChanged||0<(18&this.flags)}get focusChanged(){return 0<(1&this.flags)}get docChanged(){return this.transactions.some(t=>t.docChanged)}get selectionSet(){return this.transactions.some(t=>t.selection)}get empty(){return 0==this.flags&&0==this.transactions.length}}class vi extends be{constructor(t){super(),this.view=t,this.compositionDeco=Ne.none,this.decorations=[],this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.setDOM(t.contentDOM),this.children=[new qe],this.children[0].setParent(this),this.updateInner([new mi(0,0,0,t.state.doc.length)],this.updateDeco(),0)}get root(){return this.view.root}get editorView(){return this.view}get length(){return this.view.state.doc.length}update(t){let e=t.changedRanges;0ethis.minWidthTo)?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=0),this.view.inputState.composing<0?this.compositionDeco=Ne.none:t.transactions.length&&(this.compositionDeco=function(t,e){var i=ne(t.root),i=i.focusNode&&bi(i.focusNode,i.focusOffset,0);if(!i)return Ne.none;let n=t.docView.nearest(i),s,r,o=i;if(n instanceof Ae){for(;n.parent instanceof Ae;)n=n.parent;s=n.posAtStart,r=s+n.length,o=n.dom}else{if(!(n instanceof qe))return Ne.none;{for(;o.parentNode!=n.dom;)o=o.parentNode;let t=o.previousSibling;for(;t&&!be.get(t);)t=t.previousSibling;s=r=t?be.get(t).posAtEnd:n.posAtStart}}let a=e.mapPos(s,1),l=Math.max(a,e.mapPos(r,-1)),h=i.nodeValue,{state:c}=t;if(l-a"pointerselection"==t.annotation(st.userEvent));return 0==this.dirty&&0==e.length&&!(12&t.flags)&&t.state.selection.main.from>=this.view.viewport.from&&t.state.selection.main.to<=this.view.viewport.to?(this.updateSelection(r,o),!1):(this.updateInner(e,a,t.startState.doc.length,r,o),!0)}updateInner(t,e,i,n=!1,s=!1){this.updateChildren(t,e,i),this.view.observer.ignore(()=>{this.dom.style.height=this.view.viewState.domHeight+"px",this.dom.style.minWidth=this.minWidth?this.minWidth+"px":"";var t=ie.chrome?{node:ne(this.view.root).focusNode,written:!1}:void 0;this.sync(t),this.dirty=0,null!=t&&t.written&&(n=!0),this.updateSelection(n,s),this.dom.style.height=""})}updateChildren(e,i,t){let n=this.childCursor(t);for(let t=e.length-1;;t--){var s=0<=t?e[t]:null;if(!s)break;var{fromA:r,toA:o,fromB:a,toB:l}=s,{content:h,breakAtStart:c,openStart:d,openEnd:s}=Ue.build(this.view.state.doc,a,l,i),{i:a,off:l}=n.findPos(o,1),{i:o,off:r}=n.findPos(r,-1);this.replaceRange(o,r,a,l,h,c,d,s)}}replaceRange(e,i,n,s,r,o,a,l){let h=this.children[e],c=r.length?r[r.length-1]:null;var d=c?c.breakAfter:o;if(e!=n||o||d||!(r.length<2)||!h.merge(i,s,r.length?c:null,0==i,a,l)){let t=this.children[n];for(sn.node.insertBefore(t,n.node.childNodes[n.offset]||null)),n=s=new we(t,0),e=!0}let r=ne(this.root);!(e||!r.focusNode||ie.gecko&&i.empty&&xi(r.focusNode,r.focusOffset))&&ae(n.node,n.offset,r.anchorNode,r.anchorOffset)&&ae(s.node,s.offset,r.focusNode,r.focusOffset)||this.view.observer.ignore(()=>{var t,e;if(i.empty)ie.gecko&&(!(t=xi(n.node,n.offset))||3==t||(e=bi(n.node,n.offset,1==t?1:-1))&&(n=new we(e,1==t?0:e.nodeValue.length))),r.collapse(n.node,n.offset),null!=i.bidiLevel&&null!=r.cursorBidiLevel&&(r.cursorBidiLevel=i.bidiLevel);else if(r.extend)r.collapse(n.node,n.offset),r.extend(s.node,s.offset);else{let t=document.createRange();i.anchor>i.head&&([n,s]=[s,n]),t.setEnd(s.node,s.offset),t.setStart(n.node,n.offset),r.removeAllRanges(),r.addRange(t)}}),this.impreciseAnchor=n.precise?null:new we(r.anchorNode,r.anchorOffset),this.impreciseHead=s.precise?null:new we(r.focusNode,r.focusOffset)}}enforceCursorAssoc(){var t,e,i=this.view.state.selection.main;let n=ne(this.root);i.empty&&i.assoc&&n.modify&&((e=qe.find(this,i.head))&&(t=e.posAtStart,i.head!=t&&i.head!=t+e.length&&(t=this.coordsAt(i.head,-1),e=this.coordsAt(i.head,1),!t||!e||t.bottom>e.top||(e=this.domAtPos(i.head+i.assoc),n.collapse(e.node,e.offset),n.modify("move",i.assoc<0?"forward":"backward","lineboundary")))))}mayControlSelection(){return this.view.state.facet(ni)?this.root.activeElement==this.dom:re(this.dom,ne(this.root))}nearest(e){for(let t=e;t;){var i=be.get(t);if(i&&i.rootView==this)return i;t=t.parentNode}return null}posFromDOM(t,e){let i=this.nearest(t);if(!i)throw new RangeError("Trying to find position for a DOM position outside of the document");return i.localPosFromDOM(t,e)+i.posAtStart}domAtPos(t){let{i:e,off:i}=this.childCursor().findPos(t,-1);for(;e=r&&(s.push(t.dom.getBoundingClientRect().height),(l=t.dom.scrollWidth)>a&&(this.minWidth=a=l,this.minWidthFrom=i,this.minWidthTo=e)),i=e+t.breakAfter}return s}measureTextSize(){for(var t of this.children)if(t instanceof qe){t=t.measureTextSize();if(t)return t}let e=document.createElement("div"),i,n;return e.className="cm-line",e.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.dom.appendChild(e);var t=oe(e.firstChild)[0];i=e.getBoundingClientRect().height,n=t?t.width/27:7,e.remove()}),{lineHeight:i,charWidth:n}}childCursor(t=this.length){let e=this.children.length;return e&&(t-=this.children[--e].length),new ke(this.children,t,e)}computeBlockGapDeco(){let i=[],n=this.view.viewState;for(let t=0,e=0;;e++){var s,r=e==n.viewports.length?null:n.viewports[e],o=r?r.from-1:this.length;if(o>t&&(s=n.lineAt(o,0).bottom-n.lineAt(t,0).top,i.push(Ne.replace({widget:new wi(s),block:!0,inclusive:!0}).range(t,o))),!r)break;t=r.to+1}return Ne.set(i)}updateDeco(){return this.decorations=[this.computeBlockGapDeco(),this.view.viewState.lineGapDeco,this.compositionDeco,...this.view.state.facet(fi),...this.view.pluginField(ri.decorations)]}scrollPosIntoView(t,s){var r,o,a,s=this.coordsAt(t,s);if(s){let t=0,e=0,i=0,n=0;for(var l of this.view.pluginField(ri.scrollMargins))l&&({left:r,right:o,top:a,bottom:l}=l,null!=r&&(t=Math.max(t,r)),null!=o&&(e=Math.max(e,o)),null!=a&&(i=Math.max(i,a)),null!=l&&(n=Math.max(n,l)));!function(t,r){let e=t.ownerDocument,o=e.defaultView;for(let s=t.parentNode;s;)if(1==s.nodeType){let t,e=s==document.body;if(e)t={left:0,right:(l=o).innerWidth,top:0,bottom:l.innerHeight};else{if(s.scrollHeight<=s.clientHeight&&s.scrollWidth<=s.clientWidth){s=s.parentNode;continue}l=s.getBoundingClientRect();t={left:l.left,right:l.left+s.clientWidth,top:l.top,bottom:l.top+s.clientHeight}}let i=0,n=0;var a;if(r.topt.bottom&&(n=r.bottom-t.bottom+5),r.leftt.right&&(i=r.right-t.right+5),(i||n)&&(e?o.scrollBy(i,n):(n&&(a=s.scrollTop,s.scrollTop+=n,n=s.scrollTop-a),i&&(a=s.scrollLeft,s.scrollLeft+=i,i=s.scrollLeft-a),r={left:r.left-i,top:r.top-n,right:r.right-i,bottom:r.bottom-n})),e)break;s=s.assignedSlot||s.parentNode}else{if(11!=s.nodeType)break;s=s.host}var l}(this.dom,{left:s.left-t,top:s.top-i,right:s.right+e,bottom:s.bottom+n})}}}class wi extends ze{constructor(t){super(),this.height=t}toDOM(){var t=document.createElement("div");return this.updateDOM(t),t}eq(t){return t.height==this.height}updateDOM(t){return t.style.height=this.height+"px",!0}get estimatedHeight(){return this.height}}class yi extends ze{constructor(t,e){super(),this.top=t,this.text=e}eq(t){return this.top==t.top&&this.text==t.text}toDOM(){return this.top}ignoreEvent(){return!1}get customView(){return Le}}function bi(t,e,i){for(;;){if(3==t.nodeType)return t;if(1==t.nodeType&&0=i){if(o.level==n)return t;(r<0||(0!=s?s<0?o.fromi:e[r].level>o.level))&&(r=t)}}if(r<0)throw new RangeError("Index out of range");return r}}const zi=[];function Pi(o,t){var s,a=o.length,l=t==Mi?1:2,h=t==Mi?2:1;if(!o||1==l&&!$i.test(o))return Ni(a);for(let e=0,i=l,n=l;ep;){for(var g=t,v=2!=zi[--t];t>p&&v==(2!=zi[t-1]);)t--;i.push(new Ei(t,g,v?2:1))}else i.push(new Ei(p,e,0))}else for(let t=0;te.top+1}function Ii(t,e){return et.bottom?{top:t.top,left:t.left,right:t.right,bottom:e}:t}function Wi(t,n,s){let r,o,a,l,h,c,d,u;for(let i=t.firstChild;i;i=i.nextSibling){var f=oe(i);for(let e=0;eg?m.left-g:Math.max(0,g-m.right)),m=(g=s,(m=t).top>g?m.top-g:Math.max(0,g-m.bottom));if(0==p&&0==m)return(3==i.nodeType?qi:Wi)(i,n,s);(!r||l>m||l==m&&a>p)&&(r=i,o=t,a=p,l=m),0==p?s>t.bottom&&(!d||d.bottomt.top)&&(c=i,u=t):d&&Vi(d,t)?d=ji(d,t.bottom):u&&Vi(u,t)&&(u=Ii(u,t.top))}}var g,m;if(d&&d.bottom>=s?(r=h,o=d):u&&u.top<=s&&(r=c,o=u),!r)return{node:t,offset:0};var e=Math.max(o.left,Math.min(o.right,n));return 3==r.nodeType?qi(r,e,s):a||"true"!=r.contentEditable?{node:t,offset:Array.prototype.indexOf.call(t.childNodes,r)+(n>=(o.left+o.right)/2?1:0)}:Wi(r,e,s)}function qi(n,s,e){var t=n.nodeValue.length;let r=-1,o=1e9,a=0;for(let i=0;ie?h.top-e:e-h.bottom)-1;if(h.left-1<=s&&h.right+1>=s&&c=(h.left+h.right)/2,e=t;if((ie.chrome||ie.gecko)&&ve(n,i).getBoundingClientRect().left==h.right&&(e=!t),c<=0)return{node:n,offset:i+(e?1:0)};r=i+(e?1:0),o=c}}}}return{node:n,offset:-1i||r.bottomi?-1:1,i=Math.min(r.bottom-o,Math.max(r.top+o,i)),t)return-1;t=!0}if(r.type==Pe.Text)break;i=0e.viewport.to)return e.viewport.to==e.state.doc.length?e.state.doc.length:null;t=Math.max(s.left+1,Math.min(s.right-1,t));let h=e.root,c=h.elementFromPoint(t,i),d,u=-1;return!c||!e.contentDOM.contains(c)||e.docView.nearest(c)instanceof De||(h.caretPositionFromPoint?(a=h.caretPositionFromPoint(t,i))&&({offsetNode:d,offset:u}=a):!h.caretRangeFromPoint||(a=h.caretRangeFromPoint(t,i))&&({startContainer:d,startOffset:u}=a,ie.safari&&function(e,t,i){let n;if(3!=e.nodeType||t!=(n=e.nodeValue.length))return!1;for(let t=e.nextSibling;t;t=e.nextSibling)if(1!=t.nodeType||"BR"!=t.nodeName)return!1;return ve(e,n-1,n).getBoundingClientRect().left>i}(d,u,t)&&(d=void 0))),d&&e.docView.dom.contains(d)||(l=qe.find(e.docView,l),{node:d,offset:u}=Wi(l.dom,t,i)),e.docView.posFromDOM(d,u)}function Ji(s,t,r,o){let a=s.state.doc.lineAt(t.head),l=s.bidiSpans(a);for(let i=t,n=null;;){let t=function(t,e,i,n,s){let r=n.head-t.from,o=-1;if(0==r){if(!s||!t.length)return null;e[0].level!=i&&(r=e[0].side(!1,i),o=0)}else if(r==t.length){if(s)return null;let t=e[e.length-1];t.level!=i&&(r=t.side(!0,i),o=e.length-1)}o<0&&(o=Ei.find(e,r,null!==(l=n.bidiLevel)&&void 0!==l?l:-1,n.assoc));let a=e[o];r==a.side(s,i)&&(a=e[o+=s?1:-1],r=a.side(!s,i));var l=s==(a.dir==i),n=S(t.text,r,l);if(Ri=t.text.slice(Math.min(r,n),Math.max(r,n)),n!=a.side(s,i))return H.cursor(n+t.from,l?-1:1,a.level);let h=o==(s?e.length-1:0)?null:e[o+(s?1:-1)];return h||a.level==i?h&&h.level>1;for(let t=r<0?o.top:o.bottom,e=0;e<50;e+=10){var d=Fi(i,{x:h,y:t+(c+e)*r},r);if(null==d)break;if(d!=s)return H.cursor(d,void 0,void 0,l)}}let{doc:u}=i.state,f=u.lineAt(s),p=i.state.tabSize,m=t.goalColumn,g=0;if(null==m){for(const x=u.iterRange(f.from,s);!x.next().done;)g=A(x.value,g,p);m=g*i.defaultCharacterWidth}else g=Math.round(m/i.defaultCharacterWidth);if(r<0&&0==f.from)return H.cursor(0);if(0=g&&!k.next().done;){var{offset:y,leftOver:b}=function(e,i,n,s){for(let t=0;t{"keydown"==i&&this.keydown(n,t)||Yi(n,t)&&!this.ignoreDuringComposition(t)&&(this.mustFlushObserver(t)&&n.observer.forceFlush(),this.runCustomHandlers(i,n,t)?t.preventDefault():e(n,t))}),this.registeredEvents.push(i)}this.notifiedFocused=n.hasFocus,this.ensureHandlers(n)}setSelectionOrigin(t){this.lastSelectionOrigin=t,this.lastSelectionTime=Date.now()}ensureHandlers(i){var t;for(t of this.customHandlers=i.pluginField(hi))for(let e in t.handlers)this.registeredEvents.indexOf(e)<0&&"scroll"!=e&&(this.registeredEvents.push(e),i.contentDOM.addEventListener(e,t=>{Yi(i,t)&&this.runCustomHandlers(e,i,t)&&t.preventDefault()}))}runCustomHandlers(i,n,s){for(var r of this.customHandlers){let t=r.handlers[i],e=!1;if(t){try{e=t.call(r.plugin,s,n)}catch(t){ii(n.state,t)}if(e||s.defaultPrevented)return ie.android&&"keydown"==i&&13==s.keyCode&&n.observer.flushSoon(),!0}}return!1}runScrollHandlers(e,i){for(var n of this.customHandlers){let t=n.handlers.scroll;if(t)try{t.call(n.plugin,i,e)}catch(t){ii(e.state,t)}}}keydown(t,e){if(this.lastKeyCode=e.keyCode,this.lastKeyTime=Date.now(),!this.screenKeyEvent(t,e))return!(!ie.ios||13!=e.keyCode&&8!=e.keyCode||e.ctrlKey||e.altKey||e.metaKey||e.synthetic)&&(this[13==e.keyCode?"lastIOSEnter":"lastIOSBackspace"]=Date.now(),!0)}ignoreDuringComposition(t){return!!/^key/.test(t.type)&&(0=e.clientX&&r.top<=e.clientY&&r.bottom>=e.clientY)return!0}return!1}(e,i)&&null,!1===this.dragging&&(i.preventDefault(),this.select(i))}move(t){if(0==t.buttons)return this.destroy();!1===this.dragging&&this.select(t)}up(t){null==this.dragging&&this.select(this.startEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.inputState.mouseSelection=null}select(t){let e=this.style.get(t,this.extend,this.multiple);e.eq(this.view.state.selection)&&e.main.assoc==this.view.state.selection.main.assoc||this.view.dispatch({selection:e,annotations:st.userEvent.of("pointerselection"),scrollIntoView:!0})}update(t){t.docChanged&&this.dragging&&(this.dragging=this.dragging.map(t.changes)),this.style.update(t)}}function Yi(i,n){if(!n.bubbles)return 1;if(!n.defaultPrevented){for(let t=n.target,e;t!=i.contentDOM;t=t.parentNode)if(!t||11==t.nodeType||(e=be.get(t))&&e.ignoreEvent(n))return;return 1}}const Qi=Object.create(null),Zi=ie.ie&&ie.ie_version<15||ie.ios&&ie.webkit_version<604;function tn(t,s){let{state:r}=t,e,o=1,a=r.toText(s),l=a.lines==r.selection.ranges.length;if(cn&&r.selection.ranges.every(t=>t.empty)&&cn==a.toString()){let n=-1;e=r.changeByRange(t=>{var e=r.doc.lineAt(t.from);if(e.from==n)return{range:t};n=e.from;var i=r.toText((l?a.line(o++).text:s)+r.lineBreak);return{changes:{from:e.from,insert:i},range:H.cursor(t.from+i.length)}})}else e=l?r.changeByRange(t=>{var e=a.line(o++);return{changes:{from:t.from,to:t.to,insert:e.text},range:H.cursor(t.from+e.length)}}):r.replaceSelection(a);t.dispatch(e,{annotations:st.userEvent.of("paste"),scrollIntoView:!0})}Qi.keydown=(t,e)=>{t.inputState.setSelectionOrigin("keyboardselection")};let en=0;function nn(i,n,s,t){if(1==t)return H.cursor(n,s);if(2==t)return function(t,e,i=1){let n=t.charCategorizer(e),s=t.doc.lineAt(e),r=e-s.from;if(0==s.length)return H.cursor(e);0==r?i=1:r==s.length&&(i=-1);let o=r,a=r;i<0?o=S(s.text,r,!1):a=S(s.text,r);for(var l=n(s.text.slice(o,a));0{1==(e=e).touches.length&&e.touches[0].radiusX<=1&&e.touches[0].radiusY<=1||(en=Date.now()),t.inputState.setSelectionOrigin("pointerselection")},Qi.touchmove=t=>{t.inputState.setSelectionOrigin("pointerselection")},Qi.mousedown=(e,i)=>{if(e.observer.flush(),!(en>Date.now()-2e3)){let t=null;for(var n of e.state.facet(Qe))if(t=n(e,i),t)break;t||0!=i.button||(t=function(o,t){let a=on(o,t),l=function(t){if(!an)return t.detail;var e=ln;return ln=t,hn=!e||e.timeStamp>Date.now()-400&&Math.abs(e.clientX-t.clientX)<2&&Math.abs(e.clientY-t.clientY)<2?(hn+1)%3:1}(t),h=o.state.selection,c=a,d=t;return{update(t){t.changes&&(a&&(a.pos=t.changes.mapPos(a.pos)),h=h.map(t.changes))},get(t,e,i){let n;if(t.clientX==d.clientX&&t.clientY==d.clientY?n=c:(n=c=on(o,t),d=t),!n||!a)return h;let s=nn(o,n.pos,n.bias,l);var r;return a.pos==n.pos||e||(r=nn(o,a.pos,a.bias,l),t=Math.min(r.from,s.from),r=Math.max(r.to,s.to),s=tme(e.contentDOM)),e.inputState.startMouseSelection(e,i,t))}};let sn=(t,e)=>t>=e.top&&t<=e.bottom,rn=(t,e,i)=>sn(e,i)&&t>=i.left&&t<=i.right;function on(t,e){var i=t.posAtCoords({x:e.clientX,y:e.clientY});return null==i?null:{pos:i,bias:function(t,e,i,n){let s=qe.find(t.docView,e);return s&&0!=(t=e-s.posAtStart)&&(t==s.length||(e=s.coordsAt(t,-1))&&rn(i,n,e)||(!(t=s.coordsAt(t,1))||!rn(i,n,t))&&e&&sn(n,e))?-1:1}(t,i,e.clientX,e.clientY)}}const an=ie.ie&&ie.ie_version<=11;let ln=null,hn=0;Qi.dragstart=(t,e)=>{var{selection:{main:i}}=t.state;let{mouseSelection:n}=t.inputState;n&&(n.dragging=i),e.dataTransfer&&(e.dataTransfer.setData("Text",t.state.sliceDoc(i.from,i.to)),e.dataTransfer.effectAllowed="copyMove")},Qi.drop=(e,i)=>{if(i.dataTransfer&&e.state.facet(ni)){var n=e.posAtCoords({x:i.clientX,y:i.clientY}),s=i.dataTransfer.getData("Text");if(null!=n&&s){i.preventDefault();var{mouseSelection:i}=e.inputState,i=i&&i.dragging&&i.dragMove?{from:i.dragging.from,to:i.dragging.to}:null,s={from:n,insert:s};let t=e.state.changes(i?[i,s]:s);e.focus(),e.dispatch({changes:t,selection:{anchor:t.mapPos(n,-1),head:t.mapPos(n,1)},annotations:st.userEvent.of("drop")})}}},Qi.paste=(e,i)=>{if(e.state.facet(ni)){e.observer.flush();let t=Zi?null:i.clipboardData;var n=t&&t.getData("text/plain");n?(tn(e,n),i.preventDefault()):function(e){let i=e.dom.parentNode;if(i){let t=i.appendChild(document.createElement("textarea"));t.style.cssText="position: fixed; left: -10000px; top: 10px",t.focus(),setTimeout(()=>{e.focus(),t.remove(),tn(e,t.value)},50)}}(e)}};let cn=null;function dn(t){t.docView.compositionDeco.size&&t.update([])}Qi.copy=Qi.cut=(e,i)=>{var{text:n,ranges:s,linewise:r}=function(e){let i=[],n=[],s=!1;for(var t of e.selection.ranges)t.empty||(i.push(e.sliceDoc(t.from,t.to)),n.push(t));if(!i.length){let t=-1;for(var{from:r}of e.selection.ranges){r=e.doc.lineAt(r);r.number>t&&(i.push(r.text),n.push({from:r.from,to:Math.min(e.doc.length,r.to+1)})),t=r.number}s=!0}return{text:i.join(e.lineBreak),ranges:n,linewise:s}}(e.state);if(n){cn=r?n:null;let t=Zi?null:i.clipboardData;t?(i.preventDefault(),t.clearData(),t.setData("text/plain",n)):function(e,i){let n=e.dom.parentNode;if(n){let t=n.appendChild(document.createElement("textarea"));t.style.cssText="position: fixed; left: -10000px; top: 10px",t.value=i,t.focus(),t.selectionEnd=i.length,t.selectionStart=0,setTimeout(()=>{t.remove(),e.focus()},50)}}(e,n),"cut"==i.type&&e.state.facet(ni)&&e.dispatch({changes:s,scrollIntoView:!0,annotations:st.userEvent.of("cut")})}},Qi.focus=Qi.blur=t=>{setTimeout(()=>{t.hasFocus!=t.inputState.notifiedFocused&&t.update([])},10)},Qi.beforeprint=t=>{t.viewState.printing=!0,t.requestMeasure(),setTimeout(()=>{t.viewState.printing=!1,t.requestMeasure()},2e3)},Qi.compositionstart=Qi.compositionupdate=t=>{t.inputState.composing<0&&(t.docView.compositionDeco.size&&(t.observer.flush(),dn(t)),t.inputState.composing=0)},Qi.compositionend=t=>{t.inputState.composing=-1,t.inputState.compositionEndedAt=Date.now(),setTimeout(()=>{t.inputState.composing<0&&dn(t)},50)};const un=["pre-wrap","normal","pre-line"];class fn{constructor(){this.doc=u.empty,this.lineWrapping=!1,this.direction=Ai.LTR,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.lineLength=30,this.heightChanged=!1}heightForGap(t,e){let i=this.doc.lineAt(e).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.ceil((e-t-i*this.lineLength*.5)/this.lineLength)),this.lineHeight*i}heightForLine(t){return this.lineWrapping?(1+Math.max(0,Math.ceil((t-this.lineLength)/(this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(t){return this.doc=t,this}mustRefresh(e,t,i){let n=!1;for(let t=0;t=e?s:c.lineAt(e,gn.ByPosNoHeight,a,0,0);for(n+=d.to-e,e=d.to;02*s){var o=t[e-1];o.break?t.splice(--e,1,o.left,null,o.right):t.splice(--e,1,o.left,o.right),i+=1+o.break,n-=o.size}else{if(!(s>2*n))break;o=t[i];o.break?t.splice(i,1,o.left,null,o.right):t.splice(i,1,o.left,o.right),i+=2+o.break,s-=o.size}else nt&&e.push(new bn(s.from-t-1).updateHeight(n,t));i<=r&&s.more;){var o=n.doc.lineAt(i).length;e.length&&e.push(null);let t=new yn(o,s.heights[s.index++]);t.outdated=!1,e.push(t),i+=o+1}return i<=r&&e.push(null,new bn(r-i).updateHeight(n,i)),n.heightChanged=!0,vn.of(e)}return(e||this.outdated)&&(this.setHeight(n,n.heightForGap(t,t+this.length)),this.outdated=!1),this}toString(){return`gap(${this.length})`}}class xn extends vn{constructor(t,e,i){super(t.length+e+i.length,t.height+i.height,e|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return 1&this.flags}blockAt(t,e,i,n){var s=i+this.left.height;return to))return l;e=e==gn.ByPosNoHeight?gn.ByPosNoHeight:gn.ByPos;return a?l.join(this.right.lineAt(o,e,i,r,o)):this.left.lineAt(o,e,i,n,s).join(l)}forEachLine(t,e,i,n,s,r){var o,a=n+this.left.height,l=s+this.left.length+this.break;this.break?(t=t&&o.from<=e&&r(o),e>o.to&&this.right.forEachLine(o.to+1,e,i,a,l,r))}replace(t,e,i){var n=this.left.length+this.break;if(ethis.left.length)return this.balanced(this.left,this.right.replace(t-n,e-n,i));let s=[];0=i&&e.push(null)),t>i&&this.right.decomposeLeft(t-i,e)}decomposeRight(t,e){var i=this.left.length,n=i+this.break;if(n<=t)return this.right.decomposeRight(t-n,e);t2*e.size||e.size>2*t.size?vn.of(this.break?[t,null,e]:[t,e]):(this.left=t,this.right=e,this.height=t.height+e.height,this.outdated=t.outdated||e.outdated,this.size=t.size+e.size,this.length=t.length+this.break+e.length,this)}updateHeight(t,e=0,i=!1,n){let{left:s,right:r}=this,o=e+s.length+this.break,a=null;return n&&n.from<=e+s.length&&n.more?a=s=s.updateHeight(t,e,i,n):s.updateHeight(t,e,i),n&&n.from<=o+r.length&&n.more?a=r=r.updateHeight(t,o,i,n):r.updateHeight(t,o,i),a?this.balanced(s,r):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function kn(t,e){let i,n;null==t[e]&&(i=t[e-1])instanceof bn&&(n=t[e+1])instanceof bn&&t.splice(e-1,3,new bn(i.length+1+n.length))}class Sn{constructor(t,e){this.pos=t,this.oracle=e,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,i){if(-1this.pos||!this.isCovered)&&this.nodes.push(new yn(t-this.pos,-1)),(this.writtenTo=t)t&&this.nodes.push(new yn(this.pos-t,-1)),this.writtenTo=this.pos)}blankContent(t,e){let i=new bn(e-t);return this.oracle.doc.lineAt(t).to==e&&(i.flags|=4),i}ensureLine(){this.enterLine();var t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof yn)return t;t=new yn(0,-1);return this.nodes.push(t),t}addBlock(t){this.enterLine(),t.type!=Pe.WidgetAfter||this.isCovered||this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,t.type!=Pe.WidgetBefore&&(this.covering=t)}addLineDeco(t,e){let i=this.ensureLine();i.length+=e,i.collapsed+=e,i.widgetHeight=Math.max(i.widgetHeight,t),this.writtenTo=this.pos=this.pos+e}finish(t){var e,i=0==this.nodes.length?null:this.nodes[this.nodes.length-1];!(-1t.draw(!1))),this.computeVisibleRanges()}updateForViewport(){let e=[this.viewport],{main:n}=this.state.selection;for(let t=0;t<=1;t++){let i=t?n.head:n.anchor;var s,r;e.some(({from:t,to:e})=>i>=t&&i<=e)||({from:s,to:r}=this.lineAt(i,0),e.push(new Dn(s,r)))}this.viewports=e.sort((t,e)=>t.from-e.from),this.scaler=this.heightMap.height<=7e6?Bn:new _n(this.heightOracle.doc,this.heightMap,this.viewports)}update(t,e=null){var i=this.state;this.state=t.state;var n,s,r,o=this.state.facet(fi),a=t.changedRanges,r=mi.extendWithRanges(a,(n=t.startState.facet(fi),s=o,r=t?t.changes:k.empty(this.state.doc.length),a=new An,Ct.compare(n,s,r,a,0),a.changes)),a=this.heightMap.height;this.heightMap=this.heightMap.applyChanges(o,i.doc,this.heightOracle.setDoc(this.state.doc),r),this.heightMap.height!=a&&(t.flags|=2);let l=r.length?this.mapViewport(this.viewport,t.changes):this.viewport;(e&&(e.headl.to)||!this.viewportIsAppropriate(l))&&(l=this.getViewport(0,e)),l.eq(this.viewport)||(this.viewport=l,t.flags|=4),this.updateForViewport(),(this.lineGaps.length||15e3t.clientHeight||t.scrollWidth>t.clientWidth)&&"visible"!=window.getComputedStyle(t).overflow&&(i=t.getBoundingClientRect(),s=Math.max(s,i.left),r=Math.min(r,i.right),o=Math.max(o,i.top),a=Math.min(a,i.bottom)),t=t.parentNode;else{if(11!=t.nodeType)break;t=t.host}return{left:s-n.left,right:r-n.left,top:o-(n.top+t),bottom:a-(n.top+t)}}(i,this.paddingTop),o=r.top-this.pixelViewport.top,a=r.bottom-this.pixelViewport.bottom;if(this.pixelViewport=r,this.inView=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left,!this.inView)return 0;var l,h=t.measureVisibleLineHeights();let c=!1,d=0,u=0,f=this.heightOracle;return e||(l=t.dom.clientWidth,(f.mustRefresh(h,n,s)||f.lineWrapping&&Math.abs(l-this.contentWidth)>f.charWidth)&&({lineHeight:r,charWidth:e}=t.measureTextSize(),c=f.refresh(n,s,r,e,l/e,h),c&&(t.minWidth=0,u|=16)),this.contentWidth!=l&&(this.contentWidth=l,u|=16),0this.viewport.to))&&((h=this.getViewport(d,this.scrollTo)).from==this.viewport.from&&h.to==this.viewport.to||(this.viewport=h,u|=4)),this.updateForViewport(),(this.lineGaps.length||15e3o.to&&({bottom:e}=i.lineAt(e.head,gn.ByPos,n,0,0),o=new Dn(i.lineAt(e-(r-s)-500,gn.ByHeight,n,0,0).from,i.lineAt(e+500,gn.ByHeight,n,0,0).to))),o}mapViewport(t,e){var i=e.mapPos(t.from,-1),t=e.mapPos(t.to,1);return new Dn(this.heightMap.lineAt(i,gn.ByPos,this.state.doc,0,0).from,this.heightMap.lineAt(t,gn.ByPos,this.state.doc,0,0).to)}viewportIsAppropriate({from:t,to:e},i=0){var{top:n}=this.heightMap.lineAt(t,gn.ByPos,this.state.doc,0,0),{bottom:s}=this.heightMap.lineAt(e,gn.ByPos,this.state.doc,0,0),{visibleTop:r,visibleBottom:o}=this;return(0==t||n<=r-Math.max(10,Math.min(-i,250)))&&(e==this.state.doc.length||s>=o+Math.max(10,Math.min(i,250)))&&r-2e3{if(!(s.length<1e4)){var r=function(t,e,i){let n=[],s=t,r=0;Ct.spans(i.facet(fi),t,e,{span(){},point(t,e){t>s&&(n.push({from:s,to:t}),r+=t-s),s=e}},20),s=s.from&&(t=o.from),o.from<=s.to&&o.to>=e&&(e=o.to);let i=t-1e4,n=e+1e4;i>s.from+5e3&&l.push(Hn(a,t=>t.from==s.from&&t.to>i-5e3&&t.to<5e3+i)||new Mn(s.from,i,this.gapSize(s,i,!0,r))),nt.to==s.to&&t.from>n-5e3&&t.fromt.draw(this.heightOracle.lineWrapping))),8)}computeVisibleRanges(){let t=this.state.facet(fi);this.lineGaps.length&&(t=t.concat(this.lineGapDeco));let i=[];Ct.spans(t,this.viewport.from,this.viewport.to,{span(t,e){i.push({from:t,to:e})},point(){}},20),this.visibleRanges=i}lineAt(t,e){return e+=this.paddingTop,$n(this.heightMap.lineAt(t,gn.ByPos,this.state.doc,e,0),this.scaler,e)}lineAtHeight(t,e){return e+=this.paddingTop,$n(this.heightMap.lineAt(this.scaler.fromDOM(t,e),gn.ByHeight,this.state.doc,e,0),this.scaler,e)}blockAtHeight(t,e){return e+=this.paddingTop,$n(this.heightMap.blockAt(this.scaler.fromDOM(t,e),this.state.doc,e,0),this.scaler,e)}forEachLine(t,e,i,n){return n+=this.paddingTop,this.heightMap.forEachLine(t,e,this.state.doc,n,0,1==this.scaler.scale?i:t=>i($n(t,this.scaler,n)))}get contentHeight(){return this.domHeight+this.paddingTop+this.paddingBottom}get domHeight(){return this.scaler.toDOM(this.heightMap.height,this.paddingTop)}}class Dn{constructor(t,e){this.from=t,this.to=e}eq(t){return this.from==t.from&&this.to==t.to}}function Ln({total:t,ranges:e},i){if(i<=0)return e[0].from;if(1<=i)return e[e.length-1].to;let n=Math.floor(t*i);for(let t=0;;t++){var{from:s,to:r}=e[t],r=r-s;if(n<=r)return s+n;n-=r}}function On(t,e){let i=0;for(var{from:n,to:s}of t.ranges){if(e<=s){i+=e-n;break}i+=s-n}return i/t.total}function Hn(t,e){for(var i of t)if(e(i))return i}const Bn={toDOM(t){return t},fromDOM(t){return t},scale:1};class _n{constructor(s,r,t){let o=0,e=0,i=0;this.viewports=t.map(({from:t,to:e})=>{var i=r.lineAt(t,gn.ByPos,s,0,0).top,n=r.lineAt(e,gn.ByPos,s,0,0).bottom;return o+=n-i,{from:t,to:e,top:i,bottom:n,domTop:0,domBottom:0}}),this.scale=(7e6-o)/(r.height-o);for(var n of this.viewports)n.domTop=i+(n.top-e)*this.scale,i=n.domBottom=n.domTop+(n.bottom-n.top),e=n.bottom}toDOM(n,s){n-=s;for(let t=0,e=0,i=0;;t++){var r=t$n(t,e,i)):t.type)}const En=E.define({combine:t=>t.join(" ")}),zn=E.define({combine:t=>-1{if("&"==t)return e;if(!i||!i[t])throw new RangeError(`Unsupported selector: ${t}`);return i[t]}):e+" "+t}})}const jn=In("."+Pn,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,flexGrow:2,overflowX:"auto",position:"relative",zIndex:0},".cm-content":{margin:0,flexGrow:2,minHeight:"100%",display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",padding:"4px 0",outline:"none"},".cm-lineWrapping":{whiteSpace:"pre-wrap",overflowWrap:"anywhere"},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 4px"},".cm-selectionLayer":{zIndex:-1,contain:"size style"},".cm-selectionBackground":{position:"absolute"},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{zIndex:100,contain:"size style",pointerEvents:"none"},"&.cm-focused .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{visibility:"hidden"},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{visibility:"hidden"},"100%":{}},".cm-cursor":{position:"absolute",borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none",display:"none"},"&dark .cm-cursor":{borderLeftColor:"#444"},"&.cm-focused .cm-cursor":{display:"block"},"&light .cm-activeLine":{backgroundColor:"#f3f9ff"},"&dark .cm-activeLine":{backgroundColor:"#223039"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-placeholder":{color:"#888",display:"inline-block"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"3px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},Vn),Wn={childList:!0,characterData:!0,subtree:!0,characterDataOldValue:!0},qn=ie.ie&&ie.ie_version<=11;class Fn{constructor(i,t,e){this.view=i,this.onChange=t,this.onScrollChanged=e,this.active=!1,this.ignoreSelection=new fe,this.delayedFlush=-1,this.queue=[],this.scrollTargets=[],this.intersection=null,this.intersecting=!1,this.parentCheck=-1,this.dom=i.contentDOM,this.observer=new MutationObserver(t=>{for(var e of t)this.queue.push(e);(ie.ie&&ie.ie_version<=11||ie.ios&&i.composing)&&t.some(t=>"childList"==t.type&&t.removedNodes.length||"characterData"==t.type&&t.oldValue.length>t.target.nodeValue.length)?this.flushSoon():this.flush()}),qn&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.start(),this.onScroll=this.onScroll.bind(this),window.addEventListener("scroll",this.onScroll),"function"==typeof IntersectionObserver&&(this.intersection=new IntersectionObserver(t=>{this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),0{this.delayedFlush=-1,this.flush()},20))}forceFlush(){0<=this.delayedFlush&&(window.clearTimeout(this.delayedFlush),this.delayedFlush=-1,this.flush())}flush(){if(!(0<=this.delayedFlush)){let n=this.queue;for(var t of this.observer.takeRecords())n.push(t);n.length&&(this.queue=[]);var s=ne(this.view.root),r=!this.ignoreSelection.eq(s)&&re(this.dom,s);if(0!=n.length||r){let t=-1,e=-1,i=!1;for(var o of n){o=this.readMutation(o);o&&(o.typeOver&&(i=!0),-1==t?{from:t,to:e}=o:(t=Math.min(o.from,t),e=Math.max(o.to,e)))}s=this.view.state;(-1this.view.docView.sync()),this.view.docView.dirty=0),this.view.docView.updateSelection()),this.clearSelection()}}}readMutation(t){let e=this.view.docView.nearest(t.target);if(!e||e.ignoreMutation(t))return null;if(e.markDirty(),"childList"!=t.type)return{from:e.posAtStart,to:e.posAtEnd,typeOver:t.target.nodeValue==t.oldValue};var i=Jn(e,t.previousSibling||t.target.previousSibling,-1),t=Jn(e,t.nextSibling||t.target.nextSibling,1);return{from:i?e.posAfter(i):e.posAtStart,to:t?e.posBefore(t):e.posAtEnd,typeOver:!1}}destroy(){this.stop(),this.intersection&&this.intersection.disconnect();for(var t of this.scrollTargets)t.removeEventListener("scroll",this.onScroll);window.removeEventListener("scroll",this.onScroll),clearTimeout(this.parentCheck)}}function Jn(t,e,i){for(;e;){var n=be.get(e);if(n&&n.parent==t)return n;n=e.parentNode;e=n!=t.dom?n:0Date.now()-100||ie.android&&t.text.length=o?r-i:0,r-=l,a=r+(a-o),o=r):a=a?r-i:0,r-=i,o=r+(o-a),a=r)}return{from:r,toA:o,toB:a}}(n.state.sliceDoc(h,c),t.text,e-h,i);d&&(r={from:h+d.from,to:h+d.toA,insert:n.state.toText(t.text.slice(d.from,d.toB))})}else!n.hasFocus&&n.state.facet(ni)||(c=ne(n.root),{impreciseHead:h,impreciseAnchor:d}=n.docView,h=h&&h.node==c.focusNode&&h.offset==c.focusOffset||!se(n.contentDOM,c.focusNode)?n.state.selection.main.head:n.docView.posFromDOM(c.focusNode,c.focusOffset),c=d&&d.node==c.anchorNode&&d.offset==c.anchorOffset||!se(n.contentDOM,c.anchorNode)?n.state.selection.main.anchor:function(t){let e=t.isCollapsed;return e&&ie.chrome&&t.rangeCount&&!t.getRangeAt(0).collapsed&&(e=!1),e}(c)?h:n.docView.posFromDOM(c.anchorNode,c.anchorOffset),h==a.head&&c==a.anchor||(o=H.single(c,h)));if(r||o)if(!r&&s&&!a.empty&&o&&o.main.empty?r={from:a.from,to:a.to,insert:n.state.doc.slice(a.from,a.to)}:r&&r.from>=a.from&&r.to<=a.to&&(r.from!=a.from||r.to!=a.to)&&a.to-a.from-(r.to-r.from)<=4&&(r={from:a.from,to:a.to,insert:n.state.doc.slice(a.from,r.from).append(r.insert).append(n.state.doc.slice(r.to,a.to))}),r){let i=n.state;if(!(ie.android&&(r.from==a.from&&r.to==a.to&&1==r.insert.length&&2==r.insert.lines&&Yn(n,"Enter",13)||r.from==a.from-1&&r.to==a.to&&0==r.insert.length&&Yn(n,"Backspace",8)||r.from==a.from&&r.to==a.to+1&&0==r.insert.length&&Yn(n,"Delete",46))||ie.ios&&(n.inputState.lastIOSEnter>Date.now()-225&&1Date.now()-225&&!r.insert.length&&Yn(n,"Backspace",8)))){let e=r.insert.toString();if(!n.state.facet(ei).some(t=>t(n,r.from,r.to,e))){0<=n.inputState.composing&&n.inputState.composing++;let t;var u;t=r.from>=a.from&&r.to<=a.to&&r.to-r.from>=(a.to-a.from)/3&&(!o||o.main.empty&&o.main.from==r.from+r.insert.length)?(s=a.fromr.to?i.sliceDoc(r.to,a.to):"",i.replaceSelection(n.state.toText(s+r.insert.sliceString(0,void 0,n.state.lineBreak)+u))):{changes:u=i.changes(r),selection:o&&!i.selection.main.eq(o.main)&&o.main.to<=u.newLength?i.selection.replaceRange(o.main):void 0},n.dispatch(t,{scrollIntoView:!0,annotations:st.userEvent.of("input")})}}}else if(o&&!o.main.eq(a)){let t=!1,e;n.inputState.lastSelectionTime>Date.now()-50&&("keyboardselection"==n.inputState.lastSelectionOrigin?t=!0:e=st.userEvent.of(n.inputState.lastSelectionOrigin)),n.dispatch({selection:o,scrollIntoView:t,annotations:e})}}class Kn{constructor(t,e){this.points=t,this.view=e,this.text="",this.lineBreak=e.state.lineBreak}readRange(e,i){if(e){var n=e.parentNode;for(let t=e;;){this.findPointBefore(n,t),this.readNode(t);var s=t.nextSibling;if(s==i)break;var r=be.get(t),o=be.get(s);((r?r.breakAfter:Gn(t))||(o?o.breakAfter:Gn(s))&&("BR"!=t.nodeName||t.cmIgnore))&&(this.text+=this.lineBreak),t=s}this.findPointBefore(n,i)}}readNode(i){if(!i.cmIgnore){var n=be.get(i);let t=n&&n.overrideDOMText,e;null!=t?e=t.sliceString(0,void 0,this.lineBreak):3==i.nodeType?e=i.nodeValue:"BR"==i.nodeName?e=i.nextSibling?this.lineBreak:"":1==i.nodeType&&this.readRange(i.firstChild,null),null!=e&&(this.findPointIn(i,e.length),this.text+=e,ie.chrome&&13==this.view.inputState.lastKeyCode&&!i.nextSibling&&/\n\n$/.test(this.text)&&(this.text=this.text.slice(0,-1)))}}findPointBefore(t,e){for(var i of this.points)i.node==t&&t.childNodes[i.offset]==e&&(i.pos=this.text.length)}findPointIn(t,e){for(var i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,e))}}function Gn(t){return 1==t.nodeType&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(t.nodeName)}class Xn{constructor(t,e){this.node=t,this.offset=e,this.pos=-1}}function Yn(t,e,i){i={key:e,code:e,keyCode:i,which:i,cancelable:!0};let n=new KeyboardEvent("keydown",i);n.synthetic=!0,t.contentDOM.dispatchEvent(n);let s=new KeyboardEvent("keyup",i);return s.synthetic=!0,t.contentDOM.dispatchEvent(s),n.defaultPrevented||s.defaultPrevented}class Qn{constructor(t={}){this.plugins=[],this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.style.cssText="position: absolute; top: -10000px",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),this._dispatch=t.dispatch||(t=>this.update([t])),this.dispatch=this.dispatch.bind(this),this.root=t.root||document,this.viewState=new Tn(t.state||pt.create()),this.plugins=this.state.facet(ai).map(t=>new ci(t).update(this)),this.observer=new Fn(this,(t,e,i)=>{Un(this,t,e,i)},t=>{this.inputState.runScrollHandlers(this,t),this.measure()}),this.inputState=new Ki(this),this.docView=new vi(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,window.addEventListener("resize",()=>{-1==es&&(es=setTimeout(is,50))}),this.requestMeasure(),t.parent&&t.parent.appendChild(this.dom)}get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return 0t.scrollIntoView)?n.selection.main:null;this.viewState.update(i,r),this.bidiCache=ss.update(this.bidiCache,i.changes),i.empty||this.updatePlugins(i),e=this.docView.update(i),this.state.facet(pi)!=this.styleModules&&this.mountStyles(),this.updateAttrs(),this.showAnnouncements(t)}finally{this.updateState=0}if((e||scrollTo||this.viewState.mustEnforceCursorAssoc)&&this.requestMeasure(),!i.empty)for(var o of this.state.facet(ti))o(i)}setState(t){if(0!=this.updateState)throw new Error("Calls to EditorView.setState are not allowed while an update is in progress");this.updateState=2;try{for(var e of this.plugins)e.destroy(this);this.viewState=new Tn(t),this.plugins=t.facet(ai).map(t=>new ci(t).update(this)),this.docView=new vi(this),this.inputState.ensureHandlers(this),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}this.requestMeasure()}updatePlugins(i){let t=i.startState.facet(ai),n=i.state.facet(ai);if(t!=n){let e=[];for(var s of n){var r=t.indexOf(s);if(r<0)e.push(new ci(s));else{let t=this.plugins[r];t.mustUpdate=i,e.push(t)}}for(var o of this.plugins)o.mustUpdate!=i&&o.destroy(this);this.plugins=e,this.inputState.ensureHandlers(this)}else for(var e of this.plugins)e.mustUpdate=i;for(let t=0;t{try{return t.read(this)}catch(t){return ii(this.state,t),ns}});let t=new gi(this,this.state);t.flags|=s,n?n.flags|=s:n=t,this.updateState=2,t.empty||this.updatePlugins(t),this.updateAttrs(),s&&this.docView.update(t);for(let t=0;tthis.measure())),e){if(null!=e.key)for(let t=0;tfunction(t,e,i){let n=t.state.charCategorizer(e),s=n(i);return t=>{t=n(t);return s==ct.Space&&(s=t),s==t}}(this,e.head,t))}moveToLineBoundary(t,e,i=!0){return function(t,e,i,n){var s=t.state.doc.lineAt(e.head),r=n&&t.lineWrapping?t.coordsAtPos(e.assoc<0&&e.head>s.from?e.head-1:e.head):null;if(r){n=t.dom.getBoundingClientRect(),r=t.posAtCoords({x:i==(t.textDirection==Ai.LTR)?n.right-1:n.left+1,y:(r.top+r.bottom)/2});if(null!=r)return H.cursor(r,i?-1:1)}return e=qe.find(t.docView,e.head),s=e?i?e.posAtEnd:e.posAtStart:i?s.to:s.from,H.cursor(s,i?-1:1)}(this,t,e,i)}moveVertically(t,e,i){return Ui(this,t,e,i)}scrollPosIntoView(t){this.viewState.scrollTo=H.cursor(t),this.requestMeasure()}domAtPos(t){return this.docView.domAtPos(t)}posAtDOM(t,e=0){return this.docView.posFromDOM(t,e)}posAtCoords(t){return this.readMeasured(),Fi(this,t)}coordsAtPos(t,e=1){this.readMeasured();var i=this.docView.coordsAt(t,e);if(!i||i.left==i.right)return i;var n=this.state.doc.lineAt(t),s=this.bidiSpans(n);return ue(i,s[Ei.find(s,t-n.from,-1,e)].dir==Ai.LTR==0Zn)return Ni(t.length);var e,i=this.textDirection;for(e of this.bidiCache)if(e.from==t.from&&e.dir==i)return e.order;var n=Pi(t.text,this.textDirection);return this.bidiCache.push(new ss(t.from,t.to,i,n)),n}get hasFocus(){return document.hasFocus()&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{me(this.contentDOM),this.docView.updateSelection()})}destroy(){for(var t of this.plugins)t.destroy(this);this.inputState.destroy(),this.dom.remove(),this.observer.destroy(),-1({}),{eventHandlers:t})}static theme(t,e){var i=yt.newName();let n=[En.of(i),pi.of(In(`.${i}`,t))];return e&&e.dark&&n.push(zn.of(!0)),n}static baseTheme(t){return I.fallback(pi.of(In("."+Pn,t,Vn)))}}Qn.styleModule=pi,Qn.inputHandler=ei,Qn.exceptionSink=Ze,Qn.updateListener=ti,Qn.editable=ni,Qn.mouseSelectionStyle=Qe,Qn.dragMovesSelection=Ye,Qn.clickAddsSelectionRange=Xe,Qn.decorations=fi,Qn.contentAttributes=ui,Qn.editorAttributes=di,Qn.lineWrapping=Qn.contentAttributes.of({class:"cm-lineWrapping"}),Qn.announce=nt.define();const Zn=4096;function ts(t,e){return null==t?e.getBoundingClientRect().top:t}let es=-1;function is(){es=-1;var i=document.querySelectorAll(".cm-content");for(let e=0;e{if(t){for(var e of t.commands)if(e(i))return!0;t.preventDefault&&(a=!0)}return!1},h=t[n],c;if(h){if(l(h[o+os(s,e,!r)]))return!0;if(r&&(e.shiftKey||e.altKey||e.metaKey)&&(c=zt[e.keyCode])&&c!=s){if(l(h[o+os(c,e,!0)]))return!0}else if(r&&e.shiftKey&&l(h[o+os(s,e,!0)]))return!0}return a}(function(t){let e=t.facet(as),i=ls.get(e);i||ls.set(e,i=function(t,a=rs){let l=Object.create(null),n=Object.create(null),h=(t,e)=>{var i=n[t];if(null==i)n[t]=e;else if(i!=e)throw new Error("Key binding "+t+" is used both as a regular binding and as a multi-stroke prefix")},e=(n,t,e,i)=>{let s=l[n]||(l[n]=Object.create(null)),r=t.split(/ (?!$)/).map(t=>function(t,e){var i=t.split(/-(?!$)/);let n=i[i.length-1];"Space"==n&&(n=" ");let s,r,o,a;for(let t=0;t{let e=hs={view:t,prefix:i,scope:n};return setTimeout(()=>{hs==e&&(hs=null)},cs),!0}]})}t=r.join(" ");h(t,!1);let o=s[t]||(s[t]={preventDefault:!1,commands:[]});o.commands.push(e),i&&(o.preventDefault=!0)};for(var i of t){var s=i[a]||i.key;if(s)for(var r of i.scope?i.scope.split(" "):["editor"])e(r,s,i.run,i.preventDefault),i.shift&&e(r,"Shift-"+s,i.shift,i.preventDefault)}return l}(e.reduce((t,e)=>t.concat(e),[])));return i}(e.state),t,e,"editor")}})}),ls=new WeakMap;let hs=null;const cs=4e3;ie.ios;let ds=0;const us=new WeakMap;class fs{constructor({deserialize:t}={}){this.id=ds++,this.deserialize=t||(()=>{throw new Error("This node type doesn't define a deserialize function")})}static string(){return new fs({deserialize:t=>t})}static number(){return new fs({deserialize:Number})}static flag(){return new fs({deserialize:()=>!0})}set(t,e){return t[this.id]=e,t}add(e){return"function"!=typeof e&&(e=ms.match(e)),t=>{t=e(t);return void 0===t?null:[this,t]}}}fs.closedBy=new fs({deserialize:t=>t.split(" ")}),fs.openedBy=new fs({deserialize:t=>t.split(" ")}),fs.group=new fs({deserialize:t=>t.split(" ")});const ps=Object.create(null);class ms{constructor(t,e,i,n=0){this.name=t,this.props=e,this.id=i,this.flags=n}static define(t){var e=t.props&&t.props.length?Object.create(null):ps,i=(t.top?1:0)|(t.skipped?2:0)|(t.error?4:0)|(null==t.name?8:0),n=new ms(t.name||"",e,t.id,i);if(t.props)for(var s of t.props)Array.isArray(s)||(s=s(n)),s&&s[0].set(e,s[1]);return n}prop(t){return this.props[t.id]}get isTop(){return 0<(1&this.flags)}get isSkipped(){return 0<(2&this.flags)}get isError(){return 0<(4&this.flags)}get isAnonymous(){return 0<(8&this.flags)}is(e){if("string"!=typeof e)return this.id==e;{if(this.name==e)return!0;let t=this.prop(fs.group);return!!t&&-1{for(let t=i.prop(fs.group),e=-1;e<(t?t.length:0);e++){var n=s[e<0?i.name:t[e]];if(n)return n}}}}ms.none=new ms("",Object.create(null),0,8);class gs{constructor(t,e,i,n){this.type=t,this.children=e,this.positions=i,this.length=n}toString(){var t=this.children.map(t=>t.toString()).join();return this.type.name?(/\W/.test(this.type.name)&&!this.type.isError?JSON.stringify(this.type.name):this.type.name)+(t.length?"("+t+")":""):t}cursor(t,e=0){var i=null!=t&&us.get(this)||this.topNode;let n=new Ss(i);return null!=t&&(n.moveTo(t,e),us.set(this,n._tree)),n}fullCursor(){return new Ss(this.topNode,!0)}get topNode(){return new ys(this,0,0,null)}resolve(t,e=0){return this.cursor(t,e).node}iterate(t){let{enter:i,leave:n,from:s=0,to:r=this.length}=t;for(let e=this.cursor();;){let t=!1;if(e.from<=r&&e.to>=s&&(e.type.isAnonymous||!1!==i(e.type,e.from,e.to))){if(e.firstChild())continue;e.type.isAnonymous||(t=!0)}for(;t&&n&&n(e.type,e.from,e.to),t=e.type.isAnonymous,!e.nextSibling();){if(!e.parent())return;t=!0}}}balance(t=1024){return this.children.length<=Cs?this:Ts(this.type,ms.none,this.children,this.positions,0,this.children.length,0,t,this.length,0)}static build(t){let{buffer:e,nodeSet:g,topID:i=0,maxBufferLength:v=1024,reused:w=[],minRepeatType:y=g.types.length}=t,b=Array.isArray(e)?new Ms(e,e.length):e,x=g.types,k=0;function S(i,t,e,n,s){var{id:r,start:o,end:a,size:l}=b;let h=o-i;if(l<0)return-1==l?(e.push(w[r]),n.push(h)):k=r,void b.next();let c=x[r],d,u;if(a-o<=v&&(u=function(t,e){let i=b.fork(),n=0,s=0,r=0,o=i.end-v,a={size:0,start:0,skip:0};t:for(var l=i.pos-t;i.pos>l;)if(i.id!=e){var h=i.size,c=i.pos-h;if(h<0||c=y?4:0;var d=i.start;for(i.next();i.pos>c;){if(i.size<0)break t;i.id>=y&&(t+=4),i.next()}s=d,n+=h,r+=t}else a.size=n,a.start=s,a.skip=r,r+=4,n+=4,i.next();(e<0||n==t)&&(a.size=n,a.start=s,a.skip=r);return 4t;)e=function t(e,i,n,s){var{id:r,start:o,end:a,size:l}=b;b.next();if(r==s)return n;var h=n;if(4c;)n=t(e,i,n,s);r=y?r:-1;b.pos>p;)b.id==m?b.next():S(o,p,t,e,m);t.reverse(),e.reverse(),d=-1Cs?Ts(c,c,t,e,0,t.length,0,v,a-o,k):vs(new gs(c,t,e,a-o),k)}e.push(d),n.push(h)}let n=[],s=[];for(;0=t:this.from>t)||(-1=t:this.from>t)||(-1!t.type.isAnonymous||t instanceof ws||As(t))}class Ms{constructor(t,e){this.buffer=t,this.index=e}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new Ms(this.buffer,this.index)}}const Cs=8;function Ts(t,i,n,s,r,o,a,l,e,h){let c=[],d=[];if(e<=l)for(let t=r;tu<<1){for(let t=0;t=i)for(;r&&r.from=t.from||u<=t.to||l)&&(h=Math.max(t.from,a)-l,c=Math.min(t.to,u)-l,t=c<=h?null:new Ds(h,c,t.tree,t.offset+l,(0u)break;r=st.length&&n.push(s);return n}}const Ls=new fs;class Os{constructor(t,e,i,n=[]){this.data=t,this.topNode=i,pt.prototype.hasOwnProperty("tree")||Object.defineProperty(pt.prototype,"tree",{get(){return Bs(this)}}),this.parser=e,this.extension=[Vs.of(this),pt.languageData.of((t,e)=>t.facet(Hs(t,e)))].concat(n)}isActiveAt(t,e){return Hs(t,e)==this.data}findRegions(t){var e=t.facet(Vs);if((null==e?void 0:e.data)==this.data)return[{from:0,to:t.doc.length}];if(!e||!e.allowsNesting)return[];let n=[];return Bs(t).iterate({enter:(t,e,i)=>{if(t.isTop&&t.prop(Ls)==this.data)return n.push({from:e,to:i}),!1}}),n}get allowsNesting(){return!0}parseString(t){var e=u.of(t.split("\n"));let i=this.parser.startParse(new _s(e),0,new $s(this.parser,pt.create({doc:e}),[],gs.empty,{from:0,to:t.length},[],null)),n;for(;!(n=i.advance()););return n}}function Hs(t,e){var i=t.facet(Vs);if(!i)return null;if(!i.allowsNesting)return i.data;let n=Bs(t),s=n.resolve(e,-1);for(;s;){var r=s.type.prop(Ls);if(r)return r;s=s.parent}return i.data}function Bs(t){t=t.field(Os.state,!1);return t?t.tree:gs.empty}Os.setState=nt.define();class _s{constructor(t,e=t.length){this.doc=t,this.length=e,this.cursorPos=0,this.string="",this.prevString="",this.cursor=t.iter()}syncTo(t){return t=this.length)return-1;let e=this.cursorPos-this.string.length;if(t=this.cursorPos){if(t=e-this.prevString.length)return this.prevString.charCodeAt(t-(e-this.prevString.length));e=this.syncTo(t)}return this.string.charCodeAt(t-e)}lineAfter(t){if(t>=this.length||t<0)return"";let e=this.cursorPos-this.string.length;return(t=this.cursorPos)&&(e=this.syncTo(t)),this.cursor.lineBreak?"":this.string.slice(t-e,Math.min(this.length-e,this.string.length))}read(t,e){var i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,e):this.string.slice(t-i,e-i)}clip(t){return new _s(this.doc,t)}}class $s{constructor(t,e,i=[],n,s,r,o){this.parser=t,this.state=e,this.fragments=i,this.tree=n,this.viewport=s,this.skipped=r,this.scheduleOn=o,this.parse=null,this.tempSkipped=[]}work(t,e){if(this.tree!=gs.empty&&(null==e?this.tree.length==this.state.doc.length:this.tree.length>=e))return this.takeTree(),!0;this.parse||(this.parse=this.parser.startParse(new _s(this.state.doc),0,this));for(var i=Date.now()+t;;){var n=this.parse.advance();if(n)return this.fragments=this.withoutTempSkipped(Ds.addTree(n)),this.parse=null,this.tree=n,!0;if(null!=e&&this.parse.pos>=e)return this.takeTree(),!0;if(Date.now()>i)return!1}}takeTree(){this.parse&&this.parse.pos>this.tree.length&&(this.tree=this.parse.forceFinish(),this.fragments=this.withoutTempSkipped(Ds.addTree(this.tree,this.fragments,!0)))}withoutTempSkipped(t){for(var e;e=this.tempSkipped.pop();)t=Es(t,e.from,e.to);return t}changes(t,e){let{fragments:i,tree:n,viewport:r,skipped:o}=this;if(this.takeTree(),!t.empty){let s=[];if(t.iterChangedRanges((t,e,i,n)=>s.push({fromA:t,toA:e,fromB:i,toB:n})),i=Ds.applyChanges(i,s),n=gs.empty,r={from:t.mapPos(r.from,-1),to:t.mapPos(r.to,1)},this.skipped.length){o=[];for(var a of this.skipped){var l=t.mapPos(a.from,1),a=t.mapPos(a.to,-1);le.from&&(this.fragments=Es(this.fragments,i,n),this.skipped.splice(t--,1))}return this.skipped.length=t}}function Es(t,e,i){return Ds.applyChanges(t,[{fromA:e,toA:i,fromB:e,toB:i}])}$s.skippingParser=$s.getSkippingParser();class zs{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged)return this;let e=this.context.changes(t.changes,t.state);t=this.context.tree.length==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.tree.length),e.viewport.to);return e.work(25,t)||e.takeTree(),new zs(e)}static init(t){let e=new $s(t.facet(Vs).parser,t,[],gs.empty,{from:0,to:t.doc.length},[],null);return e.work(25)||e.takeTree(),new zs(e)}}Os.state=R.define({create:zs.init,update(t,e){for(var i of e.effects)if(i.is(Os.setState))return i.value;return e.startState.facet(Vs)!=e.state.facet(Vs)?zs.init(e.state):t.apply(e)}});let Ps="undefined"!=typeof window&&window.requestIdleCallback||((t,{timeout:e})=>setTimeout(t,e)),Ns="undefined"!=typeof window&&window.cancelIdleCallback||clearTimeout;var Rs=li.fromClass(class{constructor(t){this.view=t,this.working=-1,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let e=this.view.state.field(Os.state).context;t.viewportChanged&&(e.updateViewport(t.view.viewport)&&e.reset(),this.view.viewport.to>e.tree.length&&this.scheduleWork()),t.docChanged&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(e)}scheduleWork(i=!1){if(!(-1=t.doc.length||(this.working=Ps(this.work,{timeout:500}))}}work(n){this.working=-1;var s=Date.now();if(this.chunkEnd=e+1e6||(n=Math.min(this.chunkBudget,n?Math.max(25,n.timeRemaining()):100),n=i.context.work(n,e+1e6),this.chunkBudget-=Date.now()-s,(n||this.chunkBudget<=0||i.context.movedPast(e))&&(i.context.takeTree(),this.view.dispatch({effects:Os.setState.of(new zs(i.context))})),!n&&0this.scheduleWork(!0)),t.scheduleOn=null)}destroy(){0<=this.working&&Ns(this.working)}},{eventHandlers:{focus(){this.scheduleWork()}}});const Vs=E.define({combine(t){return t.length?t[0]:null},enables:[Os.state,Rs]}),Is=E.define(),js=E.define({combine:t=>{if(!t.length)return" ";if(!/^(?: +|\t+)$/.test(t[0]))throw new Error("Invalid indent unit: "+JSON.stringify(t[0]));return t[0]}});function Ws(t){let e=t.facet(js);return 9==e.charCodeAt(0)?t.tabSize*e.length:e.length}function qs(t,e){let i="",n=t.tabSize;if(9==t.facet(js).charCodeAt(0))for(;n<=e;)i+="\t",e-=n;for(let t=0;tfunction(t,e,i,n,s){let r=t.textAfter,o=r.match(/^\s*/)[0].length,a=n&&r.slice(o,o+n.length)==n||s==t.pos+o,l=e?function(t){let e=t.node,i=e.childAfter(e.from),n=e.lastChild;if(!i)return null;var s=null===(s=t.options)||void 0===s?void 0:s.simulateBreak,t=t.state.doc.lineAt(i.from),r=null==s||s<=t.from?t.to:Math.min(t.to,s);for(let t=i.to;;){var o=e.childAfter(t);if(!o||o==n)return null;if(!o.type.isSkipped)return o.fromQn.decorations.from(t)}),Qs];function rr(t,e,i){var n=t.prop(e<0?fs.openedBy:fs.closedBy);if(n)return n;if(1==t.name.length){t=i.indexOf(t.name);if(-1=e.to){if(0==o&&-1>1==l>>1};d--}}0"},lr=nt.define({map(t,e){t=e.mapPos(t,-1,b.TrackAfter);return null==t?void 0:t}}),hr=nt.define({map(t,e){return e.mapPos(t)}}),cr=new class extends kt{};cr.startSide=1,cr.endSide=-1;const dr=R.define({create(){return Ct.empty},update(t,i){var e,n;i.selection&&(e=i.state.doc.lineAt(i.selection.main.head).from,n=i.startState.doc.lineAt(i.startState.selection.main.head).from,e!=i.changes.mapPos(n,-1)&&(t=Ct.empty)),t=t.map(i.changes);for(let e of i.effects)e.is(lr)?t=t.update({add:[cr.range(e.value,e.value+1)]}):e.is(hr)&&(t=t.update({filter:t=>t!=e.value}));return t}});const ur="()[]{}<>";function fr(e){for(let t=0;t>10),56320+(1023&t)));var t}function pr(t,e){return t.languageDataAt("closeBrackets",e)[0]||ar}function mr(t,e,i,n){if(t.composing)return!1;var s=t.state.selection.main;if(2{if(!t.empty)return{changes:[{insert:r,from:t.from},{insert:r,from:t.to}],effects:lr.of(t.to+r.length),range:H.range(t.anchor+r.length,t.head+r.length)};var e=t.head,i=wr(s.doc,e);if(i==r){if(yr(s,e))return{changes:{insert:r+r,from:e},effects:lr.of(e+r.length),range:H.cursor(e+r.length)};if(vr(s,e)){var n=o&&s.sliceDoc(e,e+3*r.length)==r+r+r;return{range:H.cursor(e+r.length*(n?3:1)),effects:hr.of(e)}}}else{if(o&&s.sliceDoc(e-2*r.length,e)==r+r&&yr(s,e-2*r.length))return{changes:{insert:r+r+r+r,from:e},effects:lr.of(e+r.length),range:H.cursor(e+r.length)};if(s.charCategorizer(e)(i)!=ct.Word){i=s.sliceDoc(e-1,e);if(i!=r&&s.charCategorizer(e)(i)!=ct.Word)return{changes:{insert:r+r,from:e},effects:lr.of(e+r.length),range:H.cursor(e+r.length)}}}return{range:a=t}});return a?null:s.update(t,{scrollIntoView:!0,annotations:st.userEvent.of("input")})}(t,s,-1{if(!t.empty)return{changes:[{insert:n,from:t.from},{insert:s,from:t.to}],effects:lr.of(t.to+n.length),range:H.range(t.anchor+n.length,t.head+n.length)};var e=wr(i.doc,t.head);return!e||/\s/.test(e)||-1t.empty&&wr(e.doc,t.head)==i?H.cursor(t.head+i.length):n=t);return n?null:e.update({selection:H.create(t,e.selection.mainIndex),scrollIntoView:!0,effects:e.selection.ranges.map(({from:t})=>hr.of(t))})}(t,(s,r))}return null}(t.state,n);return!!n&&(t.dispatch(n),!0)}const gr=[{key:"Backspace",run:({state:n,dispatch:t})=>{let s=pr(n,n.selection.main.head).brackets||ar.brackets,r=null,e=n.changeByRange(t=>{if(t.empty){var e,i=function(t,e){let i=t.sliceString(e-2,e);return d(c(i,0))==i.length?i:i.slice(1)}(n.doc,t.head);for(e of s)if(e==i&&wr(n.doc,t.head)==fr(c(e,0)))return{changes:{from:t.head-e.length,to:t.head+e.length},range:H.cursor(t.head-e.length),annotations:st.userEvent.of("delete")}}return{range:r=t}});return r||t(n.update(e,{scrollIntoView:!0})),!r}}];function vr(t,e){let i=!1;return t.field(dr).between(0,t.doc.length,t=>{t==e&&(i=!0)}),i}function wr(t,e){let i=t.sliceString(e,e+2);return i.slice(0,d(c(i,0)))}function yr(t,e){t=Bs(t).resolve(e+1);return t.parent&&t.from==e}function br(t,e){return H.create(t.ranges.map(e),t.mainIndex)}function xr(t,e){return t.update({selection:e,scrollIntoView:!0,annotations:st.userEvent.of("keyboardselection")})}function kr({state:t,dispatch:e},i){let n=br(t.selection,i);return!n.eq(t.selection)&&(e(xr(t,n)),!0)}function Sr(t,e){return H.cursor(e?t.to:t.from)}function Ar(e,i){return kr(e,t=>t.empty?e.moveByChar(t,i):Sr(t,i))}var Mr=t=>Ar(t,t.textDirection!=Ai.LTR),Cr=t=>Ar(t,t.textDirection==Ai.LTR);function Tr(e,i){return kr(e,t=>t.empty?e.moveByGroup(t,i):Sr(t,i))}function Dr(e,i,n){let s=Bs(e).resolve(i.head);var r,o,a,l=n?fs.closedBy:fs.openedBy;for(let t=i.head;;){var h=n?s.childAfter(t):s.childBefore(t);if(!h)break;r=e,a=l,(o=h).type.prop(a)||((a=o.to-o.from)&&(2t.empty?e.moveVertically(t,i):Sr(t,i))}var Or=t=>Lr(t,!1),Hr=t=>Lr(t,!0);function Br(e,i){return kr(e,t=>t.empty?e.moveVertically(t,i,e.dom.clientHeight):Sr(t,i))}var _r=t=>Br(t,!1),$r=t=>Br(t,!0);function Er(t,e,i){let n=t.visualLineAt(e.head),s=t.moveToLineBoundary(e,i);return s.head==e.head&&s.head!=(i?n.to:n.from)&&(s=t.moveToLineBoundary(e,i,!1)),i||s.head!=n.from||!n.length||(t=/^\s*/.exec(t.state.sliceDoc(n.from,Math.min(n.from+100,n.to)))[0].length)&&e.head!=n.from+t&&(s=H.cursor(n.from+t)),s}var zr=e=>kr(e,t=>H.cursor(e.visualLineAt(t.head).from,1)),Pr=e=>kr(e,t=>H.cursor(e.visualLineAt(t.head).to,-1));function Nr(t,i){let e=br(t.state.selection,t=>{var e=i(t);return H.range(t.anchor,e.head,e.goalColumn)});return!e.eq(t.state.selection)&&(t.dispatch(xr(t.state,e)),!0)}function Rr(e,i){return Nr(e,t=>e.moveByChar(t,i))}var Vr=t=>Rr(t,t.textDirection!=Ai.LTR),Ir=t=>Rr(t,t.textDirection==Ai.LTR);function jr(e,i){return Nr(e,t=>e.moveByGroup(t,i))}function Wr(e,i){return Nr(e,t=>e.moveVertically(t,i))}var qr=t=>Wr(t,!1),Nt=t=>Wr(t,!0);function Fr(e,i){return Nr(e,t=>e.moveVertically(t,i,e.dom.clientHeight))}Vt=t=>Fr(t,!1),It=t=>Fr(t,!0),Yt=e=>Nr(e,t=>H.cursor(e.visualLineAt(t.head).from)),Gt=e=>Nr(e,t=>H.cursor(e.visualLineAt(t.head).to)),Xt=({state:t,dispatch:e})=>(e(xr(t,{anchor:0})),!0),Kt=({state:t,dispatch:e})=>(e(xr(t,{anchor:t.doc.length})),!0),Qt=({state:t,dispatch:e})=>(e(xr(t,{anchor:t.selection.main.anchor,head:0})),!0),Zt=({state:t,dispatch:e})=>(e(xr(t,{anchor:t.selection.main.anchor,head:t.doc.length})),!0);function Jr({state:t,dispatch:e},s){var i=t.changeByRange(t=>{let{from:e,to:i}=t;var n;return e==i&&(n=s(e),e=Math.min(e,n),i=Math.max(i,n)),e==i?{range:t}:{changes:{from:e,to:i},range:H.cursor(e)}});return!i.changes.empty&&(e(t.update(i,{scrollIntoView:!0,annotations:st.userEvent.of("delete")})),!0)}const Ur=(a,l,h)=>Jr(a,e=>{let{state:t}=a,i=t.doc.lineAt(e),n;if(!l&&e>i.from&&eUr(t,!1,!0),ee=t=>Ur(t,!0,!1);const Kr=(t,h)=>Jr(t,e=>{let i=e,{state:n}=t,s=n.doc.lineAt(i),r=n.charCategorizer(i);for(let t=null;;){if(i==(h?s.to:s.from)){i==e&&s.number!=(h?n.doc.lines:1)&&(i+=h?1:-1);break}var o=S(s.text,i-s.from,h)+s.from,a=s.text.slice(Math.min(i,o)-s.from,Math.max(i,o)-s.from),l=r(a);if(null!=t&&l!=t)break;" "==a&&i==e||(t=l),i=o}return i});te=t=>Kr(t,!1),Ut=t=>Kr(t,!0),Rs=i=>Jr(i,t=>{var e=i.visualLineAt(t).to;return t{var i=[];for(let t=e.from;t<=e.to;){var n=s.doc.lineAt(t);n.number>o&&(e.empty||e.to>n.from)&&(r(n,i,e),o=n.number),t=n.to+1}let t=s.changes(i);return{changes:i,range:H.range(t.mapPos(e.anchor,1),t.mapPos(e.head,1))}})}Qs=({state:o,dispatch:t})=>{let a=Object.create(null),l=new Js(o,{overrideIndentation:t=>{t=a[t];return null==t?-1:t}});var e=Qr(o,(t,e,i)=>{var n,s,r=Fs(l,t.from);null==r||((n=/^\s*/.exec(t.text)[0])!=(s=qs(o,r))||i.from(t(i.update(Qr(i,(t,e)=>{e.push({from:t.from,insert:i.facet(js)})}))),!0);const to=[{key:"Alt-ArrowLeft",mac:"Ctrl-ArrowLeft",run:e=>kr(e,t=>Dr(e.state,t,e.textDirection!=Ai.LTR)),shift:e=>Nr(e,t=>Dr(e.state,t,e.textDirection!=Ai.LTR))},{key:"Alt-ArrowRight",mac:"Ctrl-ArrowRight",run:e=>kr(e,t=>Dr(e.state,t,e.textDirection==Ai.LTR)),shift:e=>Nr(e,t=>Dr(e.state,t,e.textDirection==Ai.LTR))},{key:"Alt-ArrowUp",run:({state:t,dispatch:e})=>Xr(t,e,!1)},{key:"Shift-Alt-ArrowUp",run:({state:t,dispatch:e})=>Yr(t,e,!1)},{key:"Alt-ArrowDown",run:({state:t,dispatch:e})=>Xr(t,e,!0)},{key:"Shift-Alt-ArrowDown",run:({state:t,dispatch:e})=>Yr(t,e,!0)},{key:"Escape",run:({state:t,dispatch:e})=>{let i=t.selection,n=null;return 1{var e=Gr(i).map(({from:t,to:e})=>H.range(t,Math.min(e+1,i.doc.length)));return t(i.update({selection:H.create(e),annotations:st.userEvent.of("keyboardselection")})),!0}},{key:"Mod-i",run:({state:n,dispatch:t})=>{var e=br(n.selection,t=>{var e;let i=Bs(n).resolve(t.head,1);for(;!(i.from=t.to||i.to>t.to&&i.from<=t.from||null===(e=i.parent)||void 0===e)&&e.parent;)i=i.parent;return H.range(i.to,i.from)});return t(xr(n,e)),!0}},{key:"Mod-[",run:({state:o,dispatch:t})=>(t(o.update(Qr(o,(n,s)=>{let r=/^\s*/.exec(n.text)[0];if(r){let t=A(r,0,o.tabSize),e=0,i=qs(o,Math.max(0,t-Ws(o)));for(;e{let{state:i}=e,t=i.changes(Gr(i).map(({from:t,to:e})=>(0e.moveVertically(t,!0)).map(t);return e.dispatch({changes:t,selection:n,scrollIntoView:!0}),!0}},{key:"Shift-Mod-\\",run:({state:t,dispatch:e})=>function(i,t,n){let s=!1,e=br(i.selection,t=>{var e=or(i,t.head,-1)||or(i,t.head,1)||0Tr(t,t.textDirection!=Ai.LTR),shift:t=>jr(t,t.textDirection!=Ai.LTR)},{mac:"Cmd-ArrowLeft",run:zr,shift:Yt},{key:"ArrowRight",run:Cr,shift:Ir},{key:"Mod-ArrowRight",mac:"Alt-ArrowRight",run:t=>Tr(t,t.textDirection==Ai.LTR),shift:t=>jr(t,t.textDirection==Ai.LTR)},{mac:"Cmd-ArrowRight",run:Pr,shift:Gt},{key:"ArrowUp",run:Or,shift:qr},{mac:"Cmd-ArrowUp",run:Xt,shift:Qt},{mac:"Ctrl-ArrowUp",run:_r,shift:Vt},{key:"ArrowDown",run:Hr,shift:Nt},{mac:"Cmd-ArrowDown",run:Kt,shift:Zt},{mac:"Ctrl-ArrowDown",run:$r,shift:It},{key:"PageUp",run:_r,shift:Vt},{key:"PageDown",run:$r,shift:It},{key:"Home",run:e=>kr(e,t=>Er(e,t,!1)),shift:e=>Nr(e,t=>Er(e,t,!1))},{key:"Mod-Home",run:Xt,shift:Qt},{key:"End",run:e=>kr(e,t=>Er(e,t,!0)),shift:e=>Nr(e,t=>Er(e,t,!0))},{key:"Mod-End",run:Kt,shift:Zt},{key:"Enter",run:({state:a,dispatch:t})=>{var e=a.changeByRange(({from:t,to:e})=>{var i=t==e&&function(t,e){if(/\(\)|\[\]|\{\}/.test(t.sliceDoc(e-1,e+1)))return{from:e,to:e};let i=Bs(t).resolve(e),n=i.childBefore(e),s=i.childAfter(e),r;return n&&s&&n.to<=e&&s.from>=e&&(r=n.type.prop(fs.closedBy))&&-1r.from&&t(e(t.update({selection:{anchor:0,head:t.doc.length},annotations:st.userEvent.of("keyboardselection")})),!0)},{key:"Backspace",run:Jt,shift:Jt},{key:"Delete",run:ee,shift:ee},{key:"Mod-Backspace",mac:"Alt-Backspace",run:te},{key:"Mod-Delete",mac:"Alt-Delete",run:Ut},{mac:"Mod-Backspace",run:i=>Jr(i,t=>{var e=i.visualLineAt(t).from;return eUr(t,!1,!1)},{key:"Ctrl-k",run:Rs},{key:"Alt-d",run:Ut},{key:"Ctrl-Alt-h",run:te},{key:"Ctrl-o",run:({state:t,dispatch:e})=>{var i=t.changeByRange(t=>({changes:{from:t.from,to:t.to,insert:u.of(["",""])},range:H.cursor(t.from)}));return e(t.update(i,{scrollIntoView:!0,annotations:st.userEvent.of("input")})),!0}},{key:"Ctrl-t",run:({state:n,dispatch:t})=>{var e=n.changeByRange(t=>{if(!t.empty||0==t.from||t.from==n.doc.length)return{range:t};var e=t.from,i=n.doc.lineAt(e),t=e==i.from?e-1:S(i.text,e-i.from,!1)+i.from,i=e==i.to?e+1:S(i.text,e-i.from,!0)+i.from;return{changes:{from:t,to:i,insert:n.doc.slice(e,i).append(n.doc.slice(t,e))},range:H.cursor(i)}});return!e.changes.empty&&(t(n.update(e,{scrollIntoView:!0})),!0)}},{key:"Alt-f",run:t=>Tr(t,!0),shift:t=>jr(t,!0)},{key:"Alt-b",run:t=>Tr(t,!1),shift:t=>jr(t,!1)},{key:"Alt-<",run:Xt},{key:"Alt->",run:Kt},{key:"Ctrl-v",run:$r},{key:"Alt-v",run:_r}].map(t=>({mac:t.key,run:t.run,shift:t.shift})))),eo={key:"Tab",run:({state:t,dispatch:e})=>t.selection.ranges.some(t=>!t.empty)?Zr({state:t,dispatch:e}):(e(t.update(t.replaceSelection("\t"),{scrollIntoView:!0,annotations:st.userEvent.of("input")})),!0),shift:Qs},io=tt.define(),no=tt.define(),so=E.define(),ro=E.define({combine(t){return mt(t,{minDepth:100,newGroupDelay:500},{minDepth:Math.max,newGroupDelay:Math.min})}}),oo=R.define({create(){return wo.empty},update(e,i){var n=i.state.facet(ro),s=i.annotation(io);if(s){var r=co.fromTransaction(i),o=s.side;let t=0==o?e.undone:e.done;return t=r?uo(t,t.length,n.minDepth,r):go(t,i.startState.selection),new wo(0==o?s.rest:t,0==o?t:s.rest)}var t=i.annotation(no);if("full"!=t&&"before"!=t||(e=e.isolate()),!1===i.annotation(st.addToHistory))return i.changes.empty?e:e.addMapping(i.changes.desc);r=co.fromTransaction(i),o=i.annotation(st.time),s=i.annotation(st.userEvent);return r?e=e.addChanges(r,o,s,n.newGroupDelay,n.minDepth):i.selection&&(e=e.addSelection(i.startState.selection,o,s,n.newGroupDelay)),e="full"==t||"after"==t?e.isolate():e},toJSON(t){return{done:t.done.map(t=>t.toJSON()),undone:t.undone.map(t=>t.toJSON())}},fromJSON(t){return new wo(t.done.map(co.fromJSON),t.undone.map(co.fromJSON))}});function ao(n,s){return function({state:t,dispatch:e}){let i=t.field(oo,!1);if(!i)return!1;t=i.pop(n,t,s);return!!t&&(e(t),!0)}}const lo=ao(0,!1),ho=ao(1,!1);zr=ao(0,!0),Yt=ao(1,!0);class co{constructor(t,e,i,n,s){this.changes=t,this.effects=e,this.mapped=i,this.startSelection=n,this.selectionsAfter=s}setSelAfter(t){return new co(this.changes,this.effects,this.mapped,this.startSelection,t)}toJSON(){var t;return{changes:null===(t=this.changes)||void 0===t?void 0:t.toJSON(),mapped:null===(t=this.mapped)||void 0===t?void 0:t.toJSON(),startSelection:null===(t=this.startSelection)||void 0===t?void 0:t.toJSON(),selectionsAfter:this.selectionsAfter.map(t=>t.toJSON())}}static fromJSON(t){return new co(t.changes&&k.fromJSON(t.changes),[],t.mapped&&x.fromJSON(t.mapped),t.startSelection&&H.fromJSON(t.startSelection),t.selectionsAfter.map(H.fromJSON))}static fromTransaction(t){let e=po;for(var i of t.startState.facet(so)){i=i(t);i.length&&(e=e.concat(i))}return!e.length&&t.changes.empty?null:new co(t.changes.invert(t.startState.doc),e,void 0,t.startState.selection,po)}static selection(t){return new co(void 0,po,void 0,void 0,t)}}function uo(t,e,i,n){let s=t.slice(i+20t.map(e)):po,i);if(!t.changes)return co.selection(n);var s=t.changes.map(e),r=e.mapDesc(t.changes,!0),i=t.mapped?t.mapped.composeDesc(r):r;return new co(s,nt.mapEffects(t.effects,e),i,t.startSelection.map(r),n)}(e[i-1],t,n);if(s.changes&&!s.changes.empty||s.effects.length){let t=e.slice(0,i);return t[i-1]=s,t}t=s.mapped,i--,n=s.selectionsAfter}return n.length?[co.selection(n)]:po}class wo{constructor(t,e,i=0,n=void 0){this.done=t,this.undone=e,this.prevTime=i,this.prevUserEvent=n}isolate(){return this.prevTime?new wo(this.done,this.undone):this}addChanges(t,e,i,n,s){let r=this.done,o=r[r.length-1];return r=o&&o.changes&&e-this.prevTimeo.push(t,e)),e.iterChangedRanges((t,e,i,n)=>{for(let t=0;tt.empty!=s.ranges[e].empty).length)?this:new wo(go(this.done,t),this.undone,e,i)}addMapping(t){return new wo(vo(this.done,t),vo(this.undone,t),this.prevTime,this.prevUserEvent)}pop(e,i,t){let n=0==e?this.done:this.undone;if(0==n.length)return null;var s=n[n.length-1];if(t&&s.selectionsAfter.length)return i.update({selection:s.selectionsAfter[s.selectionsAfter.length-1],annotations:io.of({side:e,rest:function(t){let e=t[t.length-1],i=t.slice();return i[t.length-1]=e.setSelAfter(e.selectionsAfter.slice(0,e.selectionsAfter.length-1)),i}(n)})});if(s.changes){let t=1==n.length?po:n.slice(0,n.length-1);return s.mapped&&(t=vo(t,s.mapped)),i.update({changes:s.changes,selection:s.startSelection,effects:s.effects,annotations:io.of({side:e,rest:t}),filter:!1})}return null}}wo.empty=new wo(po,po);const yo=[{key:"Mod-z",run:lo,preventDefault:!0},{key:"Mod-y",mac:"Mod-Shift-z",run:ho,preventDefault:!0},{key:"Mod-u",run:zr,preventDefault:!0},{key:"Alt-u",mac:"Mod-Shift-u",run:Yt,preventDefault:!0}];let bo=0;class xo{constructor(t,e,i){this.set=t,this.base=e,this.modified=i,this.id=bo++}static define(t){if(null!=t&&t.base)throw new Error("Can not derive from a modified tag");let e=new xo([],null,[]);if(e.set.push(e),t)for(var i of t.set)e.set.push(i);return e}static defineModifier(){let e=new So;return t=>-1t.id-e.id))}}let ko=0;class So{constructor(){this.instances=[],this.id=ko++}static get(e,i){if(!i.length)return e;var t,n=i[0].instances.find(t=>t.base==e&&function(t,i){return t.length==i.length&&t.every((t,e)=>t==i[e])}(i,t.modified));if(n)return n;let s=[],r=new xo(s,e,i);for(t of i)t.instances.push(r);var o,a=function e(i){let n=[i];for(let t=0;tt.scope)?void 0:Object.create(null);return(t,e)=>{var i,n=a&&a[t.id];if(void 0!==n)return n;let s=null;for(i of o){var r=i.match(t,e);r&&(s=s?s+" "+r:r)}return a&&(a[t.id]=s),s}}static define(t,e){return new Lo(t,e||{})}static get(t,e,i){return Do(t)(e,i||ms.none)}}const Oo=I.fallback(li.fromClass(class{constructor(t){this.markCache=Object.create(null),this.tree=Bs(t.state),this.decorations=this.buildDeco(t,Do(t.state))}update(t){var e=Bs(t.state),i=Do(t.state),n=i!=t.startState.facet(Mo);e.lengths-1)){for(let t=s-1,e=i.length-1;0<=e;e--,t--){var r=i[e];if(r&&r!=n[t])return}return 1}}(e.context,Ho,r)){for(var h of e.tags)(h=u(h,o))&&(t&&(t+=" "),t+=h,1==e.mode?s+=(s?" ":"")+h:0==e.mode&&(i=!0));break}e=e.next}if(t!=m&&(l>p&&m&&f(p,g.from,m),p=l,m=t),!i&&g.firstChild()){do{var c=g.to;n(s,r+1,o),m!=t&&((c=Math.min(d,c))>p&&m&&f(p,c,m),p=c,m=t)}while(g.nextSibling());g.parent()}}}("",0,t.type)}(this.tree,i,s,e,(t,e,i)=>{n.add(t,e,this.markCache[i]||(this.markCache[i]=Ne.mark({class:i})))});return n.finish()}},{decorations:t=>t.decorations})),Ho=[""];const Bo=xo.define;Pr=Bo(),Gt=Bo(),ee=Bo(Gt),Rs=Bo(),Ut=Bo(Rs),te=Bo(Rs),Xt=Bo(),Kt=Bo(Xt),$r=Bo(),_r=Bo(),Qs=Bo(),zr=Bo(Qs),Yt=Bo();const _o={comment:Pr,lineComment:Bo(Pr),blockComment:Bo(Pr),docComment:Bo(Pr),name:Gt,variableName:Bo(Gt),typeName:ee,tagName:Bo(ee),propertyName:Bo(Gt),className:Bo(Gt),labelName:Bo(Gt),namespace:Bo(Gt),macroName:Bo(Gt),literal:Rs,string:Ut,docString:Bo(Ut),character:Bo(Ut),number:te,integer:Bo(te),float:Bo(te),bool:Bo(Rs),regexp:Bo(Rs),escape:Bo(Rs),color:Bo(Rs),url:Bo(Rs),keyword:$r,self:Bo($r),null:Bo($r),atom:Bo($r),unit:Bo($r),modifier:Bo($r),operatorKeyword:Bo($r),controlKeyword:Bo($r),definitionKeyword:Bo($r),operator:_r,derefOperator:Bo(_r),arithmeticOperator:Bo(_r),logicOperator:Bo(_r),bitwiseOperator:Bo(_r),compareOperator:Bo(_r),updateOperator:Bo(_r),definitionOperator:Bo(_r),typeOperator:Bo(_r),controlOperator:Bo(_r),punctuation:Qs,separator:Bo(Qs),bracket:zr,angleBracket:Bo(zr),squareBracket:Bo(zr),paren:Bo(zr),brace:Bo(zr),content:Xt,heading:Kt,heading1:Bo(Kt),heading2:Bo(Kt),heading3:Bo(Kt),heading4:Bo(Kt),heading5:Bo(Kt),heading6:Bo(Kt),contentSeparator:Bo(Xt),list:Bo(Xt),quote:Bo(Xt),emphasis:Bo(Xt),strong:Bo(Xt),link:Bo(Xt),monospace:Bo(Xt),inserted:Bo(),deleted:Bo(),changed:Bo(),invalid:Bo(),meta:Yt,documentMeta:Bo(Yt),annotation:Bo(Yt),processingInstruction:Bo(Yt),definition:xo.defineModifier(),constant:xo.defineModifier(),function:xo.defineModifier(),standard:xo.defineModifier(),local:xo.defineModifier(),special:xo.defineModifier()};Lo.define([{tag:_o.link,textDecoration:"underline"},{tag:_o.heading,textDecoration:"underline",fontWeight:"bold"},{tag:_o.emphasis,fontStyle:"italic"},{tag:_o.strong,fontWeight:"bold"},{tag:_o.keyword,color:"#708"},{tag:[_o.atom,_o.bool,_o.url,_o.contentSeparator,_o.labelName],color:"#219"},{tag:[_o.literal,_o.inserted],color:"#164"},{tag:[_o.string,_o.deleted],color:"#a11"},{tag:[_o.regexp,_o.escape,_o.special(_o.string)],color:"#e40"},{tag:_o.definition(_o.variableName),color:"#00f"},{tag:_o.local(_o.variableName),color:"#30a"},{tag:[_o.typeName,_o.namespace],color:"#085"},{tag:_o.className,color:"#167"},{tag:[_o.special(_o.variableName),_o.macroName],color:"#256"},{tag:_o.definition(_o.propertyName),color:"#00c"},{tag:_o.comment,color:"#940"},{tag:_o.meta,color:"#7a757a"},{tag:_o.invalid,color:"#f00"}]);const $o=Lo.define([{tag:_o.link,class:"cmt-link"},{tag:_o.heading,class:"cmt-heading"},{tag:_o.emphasis,class:"cmt-emphasis"},{tag:_o.strong,class:"cmt-strong"},{tag:_o.keyword,class:"cmt-keyword"},{tag:_o.atom,class:"cmt-atom"},{tag:_o.bool,class:"cmt-bool"},{tag:_o.url,class:"cmt-url"},{tag:_o.labelName,class:"cmt-labelName"},{tag:_o.inserted,class:"cmt-inserted"},{tag:_o.deleted,class:"cmt-deleted"},{tag:_o.literal,class:"cmt-literal"},{tag:_o.string,class:"cmt-string"},{tag:_o.number,class:"cmt-number"},{tag:[_o.regexp,_o.escape,_o.special(_o.string)],class:"cmt-string2"},{tag:_o.variableName,class:"cmt-variableName"},{tag:_o.local(_o.variableName),class:"cmt-variableName cmt-local"},{tag:_o.definition(_o.variableName),class:"cmt-variableName cmt-definition"},{tag:_o.special(_o.variableName),class:"cmt-variableName2"},{tag:_o.typeName,class:"cmt-typeName"},{tag:_o.namespace,class:"cmt-namespace"},{tag:_o.macroName,class:"cmt-macroName"},{tag:_o.propertyName,class:"cmt-propertyName"},{tag:_o.operator,class:"cmt-operator"},{tag:_o.comment,class:"cmt-comment"},{tag:_o.meta,class:"cmt-meta"},{tag:_o.invalid,class:"cmt-invalid"},{tag:_o.punctuation,class:"cmt-punctuation"}]);var Eo=[{type:"undo",title:"撤销",innerHTML:''},{type:"redo",title:"重做",innerHTML:''},{type:"bold",title:"加粗",innerHTML:''},{type:"italic",title:"倾斜",innerHTML:''},{type:"delete",title:"删除",innerHTML:''},{type:"code-inline",title:"行内代码",innerHTML:''},{type:"hr",title:"横线",innerHTML:''},{type:"quote",title:"引用",innerHTML:''},{type:"title",title:"标题",innerHTML:''},{type:"ordered-list",title:"有序列表",innerHTML:''},{type:"unordered-list",title:"无序列表",innerHTML:''},{type:"link",title:"超链接",innerHTML:''},{type:"image",title:"插入图片",innerHTML:''},{type:"table",title:"表格",innerHTML:''},{type:"code-block",title:"代码块",innerHTML:''},{type:"html",title:"原生HTML",innerHTML:''},{type:"time",title:"当前时间",innerHTML:''},{type:"indent",title:"缩进",innerHTML:''},{type:"character",title:"实体符号",innerHTML:''},{type:"emoji",title:"符号表情",innerHTML:''},{type:"expression",title:"图片表情",innerHTML:''},{type:"task-no",title:"任务 - 未完成",innerHTML:''},{type:"task-yes",title:"任务 - 已完成",innerHTML:''},{type:"mtitle",title:"居中标题",innerHTML:''},{type:"dplayer",title:"M3U8/MP4视频",innerHTML:''},{type:"bilibili",title:"哔哩哔哩视频",innerHTML:''},{type:"netease-list",title:"网易云列表",innerHTML:''},{type:"netease-single",title:"网易云单首",innerHTML:''},{type:"abtn",title:"多彩按钮",innerHTML:''},{type:"anote",title:"便条按钮",innerHTML:''},{type:"dotted",title:"彩色虚线",innerHTML:''},{type:"hide",title:"回复可见",innerHTML:''},{type:"card-default",title:"默认卡片",innerHTML:''},{type:"message",title:"消息提示",innerHTML:''},{type:"progress",title:"进度条",innerHTML:''},{type:"callout",title:"标注",innerHTML:''},{type:"mp3",title:"外部音乐",innerHTML:''},{type:"clean",title:"清屏",innerHTML:''},{type:"download",title:"下载",innerHTML:''},{type:"fullScreen",title:"全屏/取消全屏",innerHTML:''},{type:"draft",title:"保存草稿",innerHTML:''},{type:"publish",title:"发布文章",innerHTML:''},{type:"about",title:"关于",innerHTML:''}];const zo=new HyperDown,Po=window.JoeConfig.playerAPI;function No(t){t=t.replace(/ /g," "),t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=(t=zo.makeHtml(t)).replace(/{x}/g,'')).replace(/{ }/g,'')).replace(/\:\:\(\s*(呵呵|哈哈|吐舌|太开心|笑眼|花心|小乖|乖|捂嘴笑|滑稽|你懂的|不高兴|怒|汗|黑线|泪|真棒|喷|惊哭|阴险|鄙视|酷|啊|狂汗|what|疑问|酸爽|呀咩爹|委屈|惊讶|睡觉|笑尿|挖鼻|吐|犀利|小红脸|懒得理|勉强|爱心|心碎|玫瑰|礼物|彩虹|太阳|星星月亮|钱币|茶杯|蛋糕|大拇指|胜利|haha|OK|沙发|手纸|香蕉|便便|药丸|红领巾|蜡烛|音乐|灯泡|开心|钱|咦|呼|冷|生气|弱|吐血|狗头)\s*\)/g,function(t,e){return e=encodeURI(e).replace(/%/g,""),``})).replace(/\:\@\(\s*(高兴|小怒|脸红|内伤|装大款|赞一个|害羞|汗|吐血倒地|深思|不高兴|无语|亲亲|口水|尴尬|中指|想一想|哭泣|便便|献花|皱眉|傻笑|狂汗|吐|喷水|看不见|鼓掌|阴暗|长草|献黄瓜|邪恶|期待|得意|吐舌|喷血|无所谓|观察|暗地观察|肿包|中枪|大囧|呲牙|抠鼻|不说话|咽气|欢呼|锁眉|蜡烛|坐等|击掌|惊喜|喜极而泣|抽烟|不出所料|愤怒|无奈|黑线|投降|看热闹|扇耳光|小眼睛|中刀)\s*\)/g,function(t,e){return e=encodeURI(e).replace(/%/g,""),``})).replace(/{mtitle([^}]*)\/}/g,"")).replace(/{dplayer([^}]*)\/}/g,'')).replace(/{bilibili([^}]*)\/}/g,"")).replace(/{music-list([^}]*)\/}/g,"")).replace(/{music([^}]*)\/}/g,"")).replace(/{mp3([^}]*)\/}/g,"")).replace(/{abtn([^}]*)\/}/g,"")).replace(/{anote([^}]*)\/}/g,"")).replace(/{dotted([^}]*)\/}/g,"")).replace(/{message([^}]*)\/}/g,"")).replace(/{progress([^}]*)\/}/g,"")).replace(/{hide[^}]*}([\s\S]*?){\/hide}/g,"")).replace(/{card-default([^}]*)}([\s\S]*?){\/card-default}/g,'

')).replace(/{callout([^}]*)}([\s\S]*?){\/callout}/g,'
'),$(".cm-preview-content").html(t),$(".cm-preview-content p:empty").remove(),$(".cm-preview-content pre code").each((t,e)=>Prism.highlightElement(e))}document.createElement("div");class Ro extends class{constructor(){$("body").append(`
@@ -12,7 +12,7 @@
- `),$(".cm-modal__wrapper-footer--cancle, .cm-modal__wrapper-header--close").on("click",()=>$(".cm-modal").removeClass("active")),$(".cm-modal__wrapper-footer--confirm").on("click",()=>{this.options.confirm(),$(".cm-modal").removeClass("active")})}_openModal(t={}){this.options=Object.assign({title:"提示",innerHtml:"内容",hasFooter:!0,confirm:()=>{},handler:()=>{}},t),$(".cm-modal__wrapper-header--text").html(this.options.title),$(".cm-modal__wrapper-bodyer").html(this.options.innerHtml),this.options.hasFooter?$(".cm-modal__wrapper-footer").show():$(".cm-modal__wrapper-footer").hide(),$(".cm-modal").addClass("active"),this.options.handler()}_getLineCh(t){var e=t.state.selection.main.head;return e-t.state.doc.lineAt(e).from}_replaceSelection(t,e){t.dispatch(t.state.replaceSelection(e))}_setCursor(t,e){t.dispatch({selection:{anchor:e}})}_getSelection(t){return t.state.sliceDoc(t.state.selection.main.from,t.state.selection.main.to)}_insetAmboText(t,e){var i=t.state.selection.main.head,n=this._getSelection(t);this._replaceSelection(t,` ${e+n+e} `),""===n&&this._setCursor(t,i+e.length+1),t.focus()}_createTableLists(s,t,o="",a){$.ajax({url:t,dataType:"json",success:t=>{let e="",i="";for(var n in t){const r=t[n].split(" ");e+=`
${n}
`,i+=`
${r.map(t=>`
${t}
`).join(" ")}
`}this._openModal({title:a,hasFooter:!1,innerHtml:`
${e}
${i}`,handler:()=>{$(".cm-modal__wrapper-bodyer .tabbar-item").on("click",function(){const t=$(this);var e=t.attr("data-show");const i=$(".cm-modal__wrapper-bodyer .tabbar");t.addClass("active").siblings().removeClass("active"),i.stop().animate({scrollLeft:t[0].offsetLeft-i[0].offsetWidth/2+t[0].offsetWidth/2-15}),$(".cm-modal__wrapper-bodyer .lists").removeClass("active"),$(".cm-modal__wrapper-bodyer .lists[data-show='"+e+"']").addClass("active")});const e=this;$(".cm-modal__wrapper-bodyer .lists-item").on("click",function(){var t=$(this).attr("data-text");e._replaceSelection(s,` ${t} `),$(".cm-modal").removeClass("active"),s.focus()})}})}})}handleFullScreen(t){t.toggleClass("active"),$("body").toggleClass("fullscreen"),$(".cm-container").toggleClass("fullscreen"),$(".cm-preview").width(0)}handlePublish(){$("#btn-submit").click()}handleUndo(t){lo(t),t.focus()}handleRedo(t){ho(t),t.focus()}handleIndent(t){this._replaceSelection(t," "),t.focus()}handleTime(t){const e=new Date;var i=e.getFullYear(),n=String(e.getMonth()+1).padStart(2,0),r=String(e.getDate()).padStart(2,0),s=String(e.getHours()).padStart(2,0),o=String(e.getMinutes()).padStart(2,0),a=String(e.getSeconds()).padStart(2,0),l=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()],l=`${this._getLineCh(t)?"\n":""}${i}-${n}-${r} ${s}:${o}:${a} ${l}\n`;this._replaceSelection(t,l),t.focus()}handleHr(t){var e=`${this._getLineCh(t)?"\n":""}\n------------\n\n`;this._replaceSelection(t,e),t.focus()}handleClean(t){t.dispatch({changes:{from:0,to:t.state.doc.length,insert:""}}),t.focus()}handleOrdered(t){const e=this._getSelection(t);if(""===e){var i=(this._getLineCh(t)?"\n\n":"")+"1. ";this._replaceSelection(t,i)}else{const n=e.split("\n");for(let t=0,e=n.length;t `);else{const n=e.split("\n");for(let t=0,e=n.length;t "+n[t];var i=(this._getLineCh(t)?"\n":"")+n.join("\n");this._replaceSelection(t,i)}t.focus()}handleDownload(t){var e=$("#title").val()||"新文章";const i=document.createElement("a");t=new Blob([t.state.doc.toString()]);i.download=e+".md",i.href=URL.createObjectURL(t),i.click(),URL.revokeObjectURL(t)}handleTitle(e,t){const i=$(` + `),$(".cm-modal__wrapper-footer--cancle, .cm-modal__wrapper-header--close").on("click",()=>$(".cm-modal").removeClass("active")),$(".cm-modal__wrapper-footer--confirm").on("click",()=>{this.options.confirm(),$(".cm-modal").removeClass("active")})}_openModal(t={}){this.options=Object.assign({title:"提示",innerHtml:"内容",hasFooter:!0,confirm:()=>{},handler:()=>{}},t),$(".cm-modal__wrapper-header--text").html(this.options.title),$(".cm-modal__wrapper-bodyer").html(this.options.innerHtml),this.options.hasFooter?$(".cm-modal__wrapper-footer").show():$(".cm-modal__wrapper-footer").hide(),$(".cm-modal").addClass("active"),this.options.handler()}_getLineCh(t){var e=t.state.selection.main.head;return e-t.state.doc.lineAt(e).from}_replaceSelection(t,e){t.dispatch(t.state.replaceSelection(e))}_setCursor(t,e){t.dispatch({selection:{anchor:e}})}_getSelection(t){return t.state.sliceDoc(t.state.selection.main.from,t.state.selection.main.to)}_insetAmboText(t,e){var i=t.state.selection.main.head,n=this._getSelection(t);this._replaceSelection(t,` ${e+n+e} `),""===n&&this._setCursor(t,i+e.length+1),t.focus()}_createTableLists(r,t,o="",a){$.ajax({url:t,dataType:"json",success:t=>{let e="",i="";for(var n in t){const s=t[n].split(" ");e+=`
${n}
`,i+=`
${s.map(t=>`
${t}
`).join(" ")}
`}this._openModal({title:a,hasFooter:!1,innerHtml:`
${e}
${i}`,handler:()=>{$(".cm-modal__wrapper-bodyer .tabbar-item").on("click",function(){const t=$(this);var e=t.attr("data-show");const i=$(".cm-modal__wrapper-bodyer .tabbar");t.addClass("active").siblings().removeClass("active"),i.stop().animate({scrollLeft:t[0].offsetLeft-i[0].offsetWidth/2+t[0].offsetWidth/2-15}),$(".cm-modal__wrapper-bodyer .lists").removeClass("active"),$(".cm-modal__wrapper-bodyer .lists[data-show='"+e+"']").addClass("active")});const e=this;$(".cm-modal__wrapper-bodyer .lists-item").on("click",function(){var t=$(this).attr("data-text");e._replaceSelection(r,` ${t} `),$(".cm-modal").removeClass("active"),r.focus()})}})}})}handleFullScreen(t){t.toggleClass("active"),$("body").toggleClass("fullscreen"),$(".cm-container").toggleClass("fullscreen"),$(".cm-preview").width(0)}handlePublish(){$("#btn-submit").click()}handleUndo(t){lo(t),t.focus()}handleRedo(t){ho(t),t.focus()}handleIndent(t){this._replaceSelection(t," "),t.focus()}handleTime(t){const e=new Date;var i=e.getFullYear(),n=String(e.getMonth()+1).padStart(2,0),s=String(e.getDate()).padStart(2,0),r=String(e.getHours()).padStart(2,0),o=String(e.getMinutes()).padStart(2,0),a=String(e.getSeconds()).padStart(2,0),l=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()],l=`${this._getLineCh(t)?"\n":""}${i}-${n}-${s} ${r}:${o}:${a} ${l}\n`;this._replaceSelection(t,l),t.focus()}handleHr(t){var e=`${this._getLineCh(t)?"\n":""}\n------------\n\n`;this._replaceSelection(t,e),t.focus()}handleClean(t){t.dispatch({changes:{from:0,to:t.state.doc.length,insert:""}}),t.focus()}handleOrdered(t){const e=this._getSelection(t);if(""===e){var i=(this._getLineCh(t)?"\n\n":"")+"1. ";this._replaceSelection(t,i)}else{const n=e.split("\n");for(let t=0,e=n.length;t `);else{const n=e.split("\n");for(let t=0,e=n.length;t "+n[t];var i=(this._getLineCh(t)?"\n":"")+n.join("\n");this._replaceSelection(t,i)}t.focus()}handleDownload(t){var e=$("#title").val()||"新文章";const i=document.createElement("a");t=new Blob([t.state.doc.toString()]);i.download=e+".md",i.href=URL.createObjectURL(t),i.click(),URL.revokeObjectURL(t)}handleTitle(e,t){const i=$(`
${t.innerHTML}
@@ -49,7 +49,7 @@
- `,confirm:()=>{let e=$(".cm-modal input[name='row']").val(),i=$(".cm-modal input[name='column']").val();isNaN(e)&&(e=3),isNaN(i)&&(i=3);let n="",r="",s="";for(let t=0;tt.localeCompare(e)),e=sessionStorage.getItem("selectType")||"";let n="";t.forEach(t=>{n+=``}),this._openModal({title:"插入代码块",innerHtml:` + `,confirm:()=>{let e=$(".cm-modal input[name='row']").val(),i=$(".cm-modal input[name='column']").val();isNaN(e)&&(e=3),isNaN(i)&&(i=3);let n="",s="",r="";for(let t=0;tt.localeCompare(e)),e=sessionStorage.getItem("selectType")||"";let n="";t.forEach(t=>{n+=``}),this._openModal({title:"插入代码块",innerHtml:`
+ +
- - + +
@@ -79,7 +79,7 @@
- `,confirm:()=>{var t=$(".cm-modal input[name='id']").val(),e=$(".cm-modal input[name='width']").val()||"100%",i=$(".cm-modal select[name='autoplay']").val(),i=`\n{${r?"music-list":"music"} id="${t}" width="${e}" ${"1"===i?'autoplay="autoplay"':""}/}\n\n`;this._getLineCh(n)?this._replaceSelection(n,"\n"+i):this._replaceSelection(n,i),n.focus()}})}handleBilibili(e){this._openModal({title:"BiliBili视频",innerHtml:` + `,confirm:()=>{var t=$(".cm-modal input[name='id']").val(),e=$(".cm-modal input[name='color']").val(),i=$(".cm-modal select[name='autoplay']").val(),i=`\n{${s?"music-list":"music"} id="${t}" color="${e}" ${"1"===i?'autoplay="autoplay"':""}/}\n\n`;this._getLineCh(n)?this._replaceSelection(n,"\n"+i):this._replaceSelection(n,i),n.focus()}})}handleBilibili(e){this._openModal({title:"BiliBili视频",innerHtml:`
@@ -89,12 +89,12 @@
- `,confirm:()=>{var t=`\n{dplayer src="${$(".cm-modal input[name='src']").val()}"/}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}handleDraft(){$("#btn-save").click()}handleExpression(s){$.ajax({url:window.JoeConfig.expressionAPI,dataType:"json",success:t=>{let i="",n="";for(let e in t){const r=t[e];i+=`
${e}
`,n+=`
${r.map(t=>`
${"颜文字"===e?t.icon:``}
`).join(" ")}
`}this._openModal({title:"普通表情",hasFooter:!1,innerHtml:`
${i}
${n}`,handler:()=>{$(".cm-modal__wrapper-bodyer .tabbar-item").on("click",function(){var t=$(this).attr("data-show");$(this).addClass("active").siblings().removeClass("active"),$(".cm-modal__wrapper-bodyer .lists").removeClass("active"),$(".cm-modal__wrapper-bodyer .lists[data-show='"+t+"']").addClass("active")});const e=this;$(".cm-modal__wrapper-bodyer .lists-item").on("click",function(){var t=$(this).attr("data-text");e._replaceSelection(s,` ${t} `),$(".cm-modal").removeClass("active"),s.focus()})}})}})}handleMtitle(e){this._openModal({title:"居中标题",innerHtml:` + `,confirm:()=>{var t=`\n{dplayer src="${$(".cm-modal input[name='src']").val()}"/}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}handleDraft(){$("#btn-save").click()}handleExpression(r){$.ajax({url:window.JoeConfig.expressionAPI,dataType:"json",success:t=>{let i="",n="";for(let e in t){const s=t[e];i+=`
${e}
`,n+=`
${s.map(t=>`
${"颜文字"===e?t.icon:``}
`).join(" ")}
`}this._openModal({title:"普通表情",hasFooter:!1,innerHtml:`
${i}
${n}`,handler:()=>{$(".cm-modal__wrapper-bodyer .tabbar-item").on("click",function(){var t=$(this).attr("data-show");$(this).addClass("active").siblings().removeClass("active"),$(".cm-modal__wrapper-bodyer .lists").removeClass("active"),$(".cm-modal__wrapper-bodyer .lists[data-show='"+t+"']").addClass("active")});const e=this;$(".cm-modal__wrapper-bodyer .lists-item").on("click",function(){var t=$(this).attr("data-text");e._replaceSelection(r,` ${t} `),$(".cm-modal").removeClass("active"),r.focus()})}})}})}handleMtitle(e){this._openModal({title:"居中标题",innerHtml:`
- `,confirm:()=>{var t=`\n{mtitle title="${$(".cm-modal input[name='text']").val()}"/}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}handleHtml(t){var e=`${this._getLineCh(t)?"\n":""}!!!\n

居中

\n

居右

\n颜色大小\n!!!\n`;this._replaceSelection(t,e),t.focus()}handleHide(t){var e=`${this._getLineCh(t)?"\n\n":"\n"}{hide}\n需要隐藏的内容\n{/hide}\n\n`;this._replaceSelection(t,e),t.focus()}handleAbtn(s){this._openModal({title:"多彩按钮",innerHtml:` + `,confirm:()=>{var t=`\n{mtitle title="${$(".cm-modal input[name='text']").val()}"/}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}handleHtml(t){var e=`${this._getLineCh(t)?"\n":""}!!!\n

居中

\n

居右

\n颜色大小\n!!!\n`;this._replaceSelection(t,e),t.focus()}handleHide(t){var e=`${this._getLineCh(t)?"\n\n":"\n"}{hide}\n需要隐藏的内容\n{/hide}\n\n`;this._replaceSelection(t,e),t.focus()}handleAbtn(r){this._openModal({title:"多彩按钮",innerHtml:`
@@ -119,7 +119,7 @@
- `,confirm:()=>{var t=$(".cm-modal input[name='icon']").val(),e=$(".cm-modal input[name='color']").val(),i=$(".cm-modal input[name='href']").val(),n=$(".cm-modal input[name='radius']").val(),r=$(".cm-modal input[name='content']").val();this._replaceSelection(s,` {abtn icon="${t}" color="${e}" href="${i}" radius="${n}" content="${r}"/} `),s.focus()}})}handleAnote(r){this._openModal({title:"便条按钮",innerHtml:` + `,confirm:()=>{var t=$(".cm-modal input[name='icon']").val(),e=$(".cm-modal input[name='color']").val(),i=$(".cm-modal input[name='href']").val(),n=$(".cm-modal input[name='radius']").val(),s=$(".cm-modal input[name='content']").val();this._replaceSelection(r,` {abtn icon="${t}" color="${e}" href="${i}" radius="${n}" content="${s}"/} `),r.focus()}})}handleAnote(s){this._openModal({title:"便条按钮",innerHtml:`
@@ -146,7 +146,7 @@
- `,confirm:()=>{var t=$(".cm-modal input[name='icon']").val(),e=$(".cm-modal input[name='href']").val(),i=$(".cm-modal select[name='type']").val(),n=$(".cm-modal input[name='content']").val();this._replaceSelection(r,` {anote icon="${t}" href="${e}" type="${i}" content="${n}"/} `),r.focus()}})}handleDotted(e){this._openModal({title:"彩色虚线",innerHtml:` + `,confirm:()=>{var t=$(".cm-modal input[name='icon']").val(),e=$(".cm-modal input[name='href']").val(),i=$(".cm-modal select[name='type']").val(),n=$(".cm-modal input[name='content']").val();this._replaceSelection(s,` {anote icon="${t}" href="${e}" type="${i}" content="${n}"/} `),s.focus()}})}handleDotted(e){this._openModal({title:"彩色虚线",innerHtml:`
@@ -192,7 +192,31 @@
- `,confirm:()=>{var t=`\n{callout color="${$(".cm-modal input[name='color']").val()}"}\n标注内容\n{/callout}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}}{constructor(){var t;super(),this.plugins=[(t={},[oo,so.of(t),Qn.domEventHandlers({beforeinput(t,e){return"historyUndo"==t.inputType?lo(e):"historyRedo"==t.inputType&&ho(e)}})]),Eo,(t={},[es.of(t),rs]),[Qn.inputHandler.of(gs),ds]],this._isPasting=!1,this.init_ViewPort(),this.init_Editor(),this.init_Preview(),this.init_Tools(),this.init_Insert(),this.init_AutoSave()}init_ViewPort(){0<$('meta[name="viewport"]').length?$('meta[name="viewport"]').attr("content","width=device-width, user-scalable=no, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover"):$("head").append('')}init_Editor(){$("#text").before(` + `,confirm:()=>{var t=`\n{callout color="${$(".cm-modal input[name='color']").val()}"}\n标注内容\n{/callout}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}handleMp3(e){this._openModal({title:"插入音乐",innerHtml:` +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ `,confirm:()=>{var t=`\n{mp3 name="${$(".cm-modal input[name='name']").val()}" url="${$(".cm-modal input[name='url']").val()}" cover="${$(".cm-modal input[name='cover']").val()}" theme="${$(".cm-modal input[name='theme']").val()}" ${"1"===$(".cm-modal select[name='autoplay']").val()?'autoplay="autoplay"':""}/}\n\n`;this._getLineCh(e)?this._replaceSelection(e,"\n"+t):this._replaceSelection(e,t),e.focus()}})}}{constructor(){var t;super(),this.plugins=[(t={},[oo,ro.of(t),Qn.domEventHandlers({beforeinput(t,e){return"historyUndo"==t.inputType?lo(e):"historyRedo"==t.inputType&&ho(e)}})]),$o,(t={},[er.of(t),sr]),[Qn.inputHandler.of(mr),dr]],this._isPasting=!1,this.init_ViewPort(),this.init_Editor(),this.init_Preview(),this.init_Tools(),this.init_Insert(),this.init_AutoSave()}init_ViewPort(){0<$('meta[name="viewport"]').length?$('meta[name="viewport"]').attr("content","width=device-width, user-scalable=no, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover"):$("head").append('')}init_Editor(){$("#text").before(`
@@ -203,4 +227,4 @@
- `),No($("#text").val());const s=new Qn({state:pt.create({doc:$("#text").val(),extensions:[...this.plugins,ar.of([eo,...to,...yo,...ms]),Qn.updateListener.of(t=>{t.docChanged&&(window.requestAnimationFrame?window.requestAnimationFrame(()=>No(t.state.doc.toString())):No(t.state.doc.toString()))}),Qn.domEventHandlers({paste:e=>{var n=e.clipboardData;if(n&&n.items){const r=n.items;if(r.length){let i=null;for(let t=0;t{const t=$.ajaxSettings.xhr();if(t.upload)return t.upload.addEventListener("progress",t=>{t=t.loaded/t.total*100;$(".cm-progress-left").width(t/2+"%"),$(".cm-progress-right").width(t/2+"%")},!1),t},success:t=>{$(".cm-progress-left").width(0),$(".cm-progress-right").width(0),this._isPasting=!1;t=`${super._getLineCh(s)?"\n":""}![${t[1].title}](${t[0]})\n`;super._replaceSelection(s,t),s.focus()},error:()=>{$(".cm-progress-left").width(0),$(".cm-progress-right").width(0),this._isPasting=!1}})}}}}}}})],tabSize:4})});$(".cm-mainer").prepend(s.dom),$("#text")[0].form&&$("#text")[0].form.addEventListener("submit",()=>$("#text").val(s.state.doc.toString())),this.cm=s}init_Preview(){const n=(t,e,i)=>{let n=e+(t-i);n<=0&&(n=0),n>=$(".cm-mainer").outerWidth()-16&&(n=$(".cm-mainer").outerWidth()-16),$(".cm-preview").width(n)};$(".cm-resize").on({mousedown:t=>{t.preventDefault(),t.stopPropagation();const e=$(".cm-preview").outerWidth(),i=t.clientX;return $(".cm-preview").addClass("move"),document.onmousemove=t=>{window.requestAnimationFrame?requestAnimationFrame(()=>n(i,e,t.clientX)):n(i,e,t.clientX)},!(document.onmouseup=()=>{document.onmousemove=null,document.onmouseup=null,$(".cm-preview").removeClass("move")})},touchstart:t=>{t.preventDefault(),t.stopPropagation();const e=$(".cm-preview").outerWidth(),i=t.originalEvent.targetTouches[0].clientX;return $(".cm-preview").addClass("move"),document.ontouchmove=t=>{window.requestAnimationFrame?requestAnimationFrame(()=>n(i,e,t.targetTouches[0].clientX)):n(i,e,t.targetTouches[0].clientX)},!(document.ontouchend=()=>{document.ontouchmove=null,document.ontouchend=null,$(".cm-preview").removeClass("move")})}})}init_Tools(){$o.forEach(e=>{if("title"===e.type)super.handleTitle(this.cm,e);else{const i=$(`
${e.innerHTML}
`);i.on("click",t=>{switch(t.preventDefault(),e.type){case"fullScreen":super.handleFullScreen(i);break;case"publish":super.handlePublish();break;case"undo":super.handleUndo(this.cm);break;case"redo":super.handleRedo(this.cm);break;case"time":super.handleTime(this.cm);break;case"bold":super._insetAmboText(this.cm,"**");break;case"italic":super._insetAmboText(this.cm,"*");break;case"delete":super._insetAmboText(this.cm,"~~");break;case"code-inline":super._insetAmboText(this.cm,"`");break;case"indent":super.handleIndent(this.cm);break;case"hr":super.handleHr(this.cm);break;case"clean":super.handleClean(this.cm);break;case"ordered-list":super.handleOrdered(this.cm);break;case"unordered-list":super.handleUnordered(this.cm);break;case"quote":super.handleQuote(this.cm);break;case"download":super.handleDownload(this.cm);break;case"link":super.handleLink(this.cm);break;case"image":super.handleImage(this.cm);break;case"table":super.handleTable(this.cm);break;case"code-block":super.handleCodeBlock(this.cm);break;case"about":super.handleAbout();break;case"character":super._createTableLists(this.cm,JoeConfig.characterAPI,"星星符号","字符大全");break;case"emoji":super._createTableLists(this.cm,JoeConfig.emojiAPI,"表情","符号表情(需数据库支持)");break;case"task-no":super.handleTask(this.cm,!1);break;case"task-yes":super.handleTask(this.cm,!0);break;case"netease-list":super.handleNetease(this.cm,!0);break;case"netease-single":super.handleNetease(this.cm,!1);break;case"bilibili":super.handleBilibili(this.cm);break;case"dplayer":super.handleDplayer(this.cm);break;case"draft":super.handleDraft();break;case"expression":super.handleExpression(this.cm);break;case"mtitle":super.handleMtitle(this.cm);break;case"html":super.handleHtml(this.cm);break;case"abtn":super.handleAbtn(this.cm);break;case"anote":super.handleAnote(this.cm);break;case"dotted":super.handleDotted(this.cm);break;case"hide":super.handleHide(this.cm);break;case"card-default":super.handleCardDefault(this.cm);break;case"message":super.handleMessage(this.cm);break;case"progress":super.handleProgress(this.cm);break;case"callout":super.handleCallout(this.cm)}}),$(".cm-tools").append(i)}})}init_Insert(){Typecho.insertFileToEditor=(t,e,i)=>{e=`${super._getLineCh(this.cm)?"\n":""}${i?"!":""}[${t}](${e})\n`;super._replaceSelection(this.cm,e),this.cm.focus()}}init_AutoSave(){if(1===window.JoeConfig.autoSave){const t=$("#text")[0].form;let n=$('input[name="cid"]').val(),r=null;setInterval(()=>{$('input[name="cid"]').val(n),$("#text").val(this.cm.state.doc.toString());let i=$(t).serialize();i!==r&&($(".cm-autosave").addClass("active"),$.ajax({url:t.action,type:"POST",data:i+"&do=save",dataType:"json",success:t=>{n=t.cid,r=i;let e=setTimeout(()=>{$(".cm-autosave").removeClass("active"),clearTimeout(e)},1e3)}}))},5e3)}}}document.addEventListener("DOMContentLoaded",()=>new Ro)}(); + `),No($("#text").val());let e=null;const r=new Qn({state:pt.create({doc:$("#text").val(),extensions:[...this.plugins,as.of([eo,...to,...yo,...gr]),Qn.updateListener.of(t=>{t.docChanged&&e!==t.state.doc.toString()&&(e=t.state.doc.toString(),window.requestAnimationFrame?window.requestAnimationFrame(()=>No(t.state.doc.toString())):No(t.state.doc.toString()))}),Qn.domEventHandlers({paste:e=>{var n=e.clipboardData;if(n&&n.items){const s=n.items;if(s.length){let i=null;for(let t=0;t{const t=$.ajaxSettings.xhr();if(t.upload)return t.upload.addEventListener("progress",t=>{t=t.loaded/t.total*100;$(".cm-progress-left").width(t/2+"%"),$(".cm-progress-right").width(t/2+"%")},!1),t},success:t=>{$(".cm-progress-left").width(0),$(".cm-progress-right").width(0),this._isPasting=!1;t=`${super._getLineCh(r)?"\n":""}![${t[1].title}](${t[0]})\n`;super._replaceSelection(r,t),r.focus()},error:()=>{$(".cm-progress-left").width(0),$(".cm-progress-right").width(0),this._isPasting=!1}})}}}}}}})],tabSize:4})});$(".cm-mainer").prepend(r.dom),$("#text")[0].form&&$("#text")[0].form.addEventListener("submit",()=>$("#text").val(r.state.doc.toString())),this.cm=r}init_Preview(){const n=(t,e,i)=>{let n=e+(t-i);n<=0&&(n=0),n>=$(".cm-mainer").outerWidth()-16&&(n=$(".cm-mainer").outerWidth()-16),$(".cm-preview").width(n)};$(".cm-resize").on({mousedown:t=>{t.preventDefault(),t.stopPropagation();const e=$(".cm-preview").outerWidth(),i=t.clientX;return $(".cm-preview").addClass("move"),document.onmousemove=t=>{window.requestAnimationFrame?requestAnimationFrame(()=>n(i,e,t.clientX)):n(i,e,t.clientX)},!(document.onmouseup=()=>{document.onmousemove=null,document.onmouseup=null,$(".cm-preview").removeClass("move")})},touchstart:t=>{t.preventDefault(),t.stopPropagation();const e=$(".cm-preview").outerWidth(),i=t.originalEvent.targetTouches[0].clientX;return $(".cm-preview").addClass("move"),document.ontouchmove=t=>{window.requestAnimationFrame?requestAnimationFrame(()=>n(i,e,t.targetTouches[0].clientX)):n(i,e,t.targetTouches[0].clientX)},!(document.ontouchend=()=>{document.ontouchmove=null,document.ontouchend=null,$(".cm-preview").removeClass("move")})}})}init_Tools(){Eo.forEach(e=>{if("title"===e.type)super.handleTitle(this.cm,e);else{const i=$(`
${e.innerHTML}
`);i.on("click",t=>{switch(t.preventDefault(),e.type){case"fullScreen":super.handleFullScreen(i);break;case"publish":super.handlePublish();break;case"undo":super.handleUndo(this.cm);break;case"redo":super.handleRedo(this.cm);break;case"time":super.handleTime(this.cm);break;case"bold":super._insetAmboText(this.cm,"**");break;case"italic":super._insetAmboText(this.cm,"*");break;case"delete":super._insetAmboText(this.cm,"~~");break;case"code-inline":super._insetAmboText(this.cm,"`");break;case"indent":super.handleIndent(this.cm);break;case"hr":super.handleHr(this.cm);break;case"clean":super.handleClean(this.cm);break;case"ordered-list":super.handleOrdered(this.cm);break;case"unordered-list":super.handleUnordered(this.cm);break;case"quote":super.handleQuote(this.cm);break;case"download":super.handleDownload(this.cm);break;case"link":super.handleLink(this.cm);break;case"image":super.handleImage(this.cm);break;case"table":super.handleTable(this.cm);break;case"code-block":super.handleCodeBlock(this.cm);break;case"about":super.handleAbout();break;case"character":super._createTableLists(this.cm,JoeConfig.characterAPI,"星星符号","字符大全");break;case"emoji":super._createTableLists(this.cm,JoeConfig.emojiAPI,"表情","符号表情(需数据库支持)");break;case"task-no":super.handleTask(this.cm,!1);break;case"task-yes":super.handleTask(this.cm,!0);break;case"netease-list":super.handleNetease(this.cm,!0);break;case"netease-single":super.handleNetease(this.cm,!1);break;case"bilibili":super.handleBilibili(this.cm);break;case"dplayer":super.handleDplayer(this.cm);break;case"draft":super.handleDraft();break;case"expression":super.handleExpression(this.cm);break;case"mtitle":super.handleMtitle(this.cm);break;case"html":super.handleHtml(this.cm);break;case"abtn":super.handleAbtn(this.cm);break;case"anote":super.handleAnote(this.cm);break;case"dotted":super.handleDotted(this.cm);break;case"hide":super.handleHide(this.cm);break;case"card-default":super.handleCardDefault(this.cm);break;case"message":super.handleMessage(this.cm);break;case"progress":super.handleProgress(this.cm);break;case"callout":super.handleCallout(this.cm);break;case"mp3":super.handleMp3(this.cm)}}),$(".cm-tools").append(i)}})}init_Insert(){Typecho.insertFileToEditor=(t,e,i)=>{e=`${super._getLineCh(this.cm)?"\n":""}${i?"!":""}[${t}](${e})\n`;super._replaceSelection(this.cm,e),this.cm.focus()}}init_AutoSave(){if(1===window.JoeConfig.autoSave){const t=$("#text")[0].form;let n=$('input[name="cid"]').val(),s=null;setInterval(()=>{$('input[name="cid"]').val(n),$("#text").val(this.cm.state.doc.toString());let i=$(t).serialize();i!==s&&($(".cm-autosave").addClass("active"),$.ajax({url:t.action,type:"POST",data:i+"&do=save",dataType:"json",success:t=>{n=t.cid,s=i;let e=setTimeout(()=>{$(".cm-autosave").removeClass("active"),clearTimeout(e)},1e3)}}))},5e3)}}}document.addEventListener("DOMContentLoaded",()=>new Ro)}(); diff --git a/typecho/write/js/joe.write.js b/typecho/write/js/joe.write.js index c40e098..e8e19f8 100644 --- a/typecho/write/js/joe.write.js +++ b/typecho/write/js/joe.write.js @@ -10,27 +10,27 @@ import JoeAction from './_actions'; import createPreviewHtml from './_create'; class Joe extends JoeAction { - constructor() { - super(); - this.plugins = [history(), classHighlightStyle, bracketMatching(), closeBrackets()]; - this._isPasting = false; - this.init_ViewPort(); - this.init_Editor(); - this.init_Preview(); - this.init_Tools(); - this.init_Insert(); - this.init_AutoSave(); - } + constructor() { + super(); + this.plugins = [history(), classHighlightStyle, bracketMatching(), closeBrackets()]; + this._isPasting = false; + this.init_ViewPort(); + this.init_Editor(); + this.init_Preview(); + this.init_Tools(); + this.init_Insert(); + this.init_AutoSave(); + } - /* 已测 √ */ - init_ViewPort() { - if ($('meta[name="viewport"]').length > 0) $('meta[name="viewport"]').attr('content', 'width=device-width, user-scalable=no, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover'); - else $('head').append(''); - } + /* 已测 √ */ + init_ViewPort() { + if ($('meta[name="viewport"]').length > 0) $('meta[name="viewport"]').attr('content', 'width=device-width, user-scalable=no, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover'); + else $('head').append(''); + } - /* 已测 √ */ - init_Editor() { - $('#text').before(` + /* 已测 √ */ + init_Editor() { + $('#text').before(`
@@ -42,315 +42,322 @@ class Joe extends JoeAction {
`); - createPreviewHtml($('#text').val()); - const cm = new EditorView({ - state: EditorState.create({ - doc: $('#text').val(), - extensions: [ - ...this.plugins, - keymap.of([defaultTabBinding, ...defaultKeymap, ...historyKeymap, ...closeBracketsKeymap]), - EditorView.updateListener.of(update => { - if (!update.docChanged) return; - if (window.requestAnimationFrame) window.requestAnimationFrame(() => createPreviewHtml(update.state.doc.toString())); - else createPreviewHtml(update.state.doc.toString()); - }), - EditorView.domEventHandlers({ - paste: e => { - const clipboardData = e.clipboardData; - if (!clipboardData || !clipboardData.items) return; - const items = clipboardData.items; - if (!items.length) return; - let blob = null; - for (let i = 0; i < items.length; i++) { - if (items[i].type.indexOf('image') !== -1) { - e.preventDefault(); - blob = items[i].getAsFile(); - break; - } - } - if (!blob) return; - let api = window.JoeConfig.uploadAPI; - if (!api) return; - const cid = $('input[name="cid"]').val(); - cid && (api = api + '&cid=' + cid); - if (this._isPasting) return; - this._isPasting = true; - const fileName = Date.now().toString(36) + '.png'; - let formData = new FormData(); - formData.append('name', fileName); - formData.append('file', blob, fileName); - $.ajax({ - url: api, - method: 'post', - data: formData, - contentType: false, - processData: false, - dataType: 'json', - xhr: () => { - const xhr = $.ajaxSettings.xhr(); - if (!xhr.upload) return; - xhr.upload.addEventListener( - 'progress', - e => { - let percent = (e.loaded / e.total) * 100; - $('.cm-progress-left').width(percent / 2 + '%'); - $('.cm-progress-right').width(percent / 2 + '%'); - }, - false - ); - return xhr; - }, - success: res => { - $('.cm-progress-left').width(0); - $('.cm-progress-right').width(0); - this._isPasting = false; - const str = `${super._getLineCh(cm) ? '\n' : ''}![${res[1].title}](${res[0]})\n`; - super._replaceSelection(cm, str); - cm.focus(); - }, - error: () => { - $('.cm-progress-left').width(0); - $('.cm-progress-right').width(0); - this._isPasting = false; - } - }); - } - }) - ], - tabSize: 4 - }) - }); - $('.cm-mainer').prepend(cm.dom); - $('#text')[0].form && $('#text')[0].form.addEventListener('submit', () => $('#text').val(cm.state.doc.toString())); - this.cm = cm; - } + createPreviewHtml($('#text').val()); + let _temp = null; + const cm = new EditorView({ + state: EditorState.create({ + doc: $('#text').val(), + extensions: [ + ...this.plugins, + keymap.of([defaultTabBinding, ...defaultKeymap, ...historyKeymap, ...closeBracketsKeymap]), + EditorView.updateListener.of(update => { + if (!update.docChanged) return; + if (_temp !== update.state.doc.toString()) { + _temp = update.state.doc.toString(); + if (window.requestAnimationFrame) window.requestAnimationFrame(() => createPreviewHtml(update.state.doc.toString())); + else createPreviewHtml(update.state.doc.toString()); + } + }), + EditorView.domEventHandlers({ + paste: e => { + const clipboardData = e.clipboardData; + if (!clipboardData || !clipboardData.items) return; + const items = clipboardData.items; + if (!items.length) return; + let blob = null; + for (let i = 0; i < items.length; i++) { + if (items[i].type.indexOf('image') !== -1) { + e.preventDefault(); + blob = items[i].getAsFile(); + break; + } + } + if (!blob) return; + let api = window.JoeConfig.uploadAPI; + if (!api) return; + const cid = $('input[name="cid"]').val(); + cid && (api = api + '&cid=' + cid); + if (this._isPasting) return; + this._isPasting = true; + const fileName = Date.now().toString(36) + '.png'; + let formData = new FormData(); + formData.append('name', fileName); + formData.append('file', blob, fileName); + $.ajax({ + url: api, + method: 'post', + data: formData, + contentType: false, + processData: false, + dataType: 'json', + xhr: () => { + const xhr = $.ajaxSettings.xhr(); + if (!xhr.upload) return; + xhr.upload.addEventListener( + 'progress', + e => { + let percent = (e.loaded / e.total) * 100; + $('.cm-progress-left').width(percent / 2 + '%'); + $('.cm-progress-right').width(percent / 2 + '%'); + }, + false + ); + return xhr; + }, + success: res => { + $('.cm-progress-left').width(0); + $('.cm-progress-right').width(0); + this._isPasting = false; + const str = `${super._getLineCh(cm) ? '\n' : ''}![${res[1].title}](${res[0]})\n`; + super._replaceSelection(cm, str); + cm.focus(); + }, + error: () => { + $('.cm-progress-left').width(0); + $('.cm-progress-right').width(0); + this._isPasting = false; + } + }); + } + }) + ], + tabSize: 4 + }) + }); + $('.cm-mainer').prepend(cm.dom); + $('#text')[0].form && $('#text')[0].form.addEventListener('submit', () => $('#text').val(cm.state.doc.toString())); + this.cm = cm; + } - /* 已测 √ */ - init_Preview() { - const move = (nowClientX, nowWidth, clientX) => { - let moveX = nowClientX - clientX; - let moveWidth = nowWidth + moveX; - if (moveWidth <= 0) moveWidth = 0; - if (moveWidth >= $('.cm-mainer').outerWidth() - 16) moveWidth = $('.cm-mainer').outerWidth() - 16; - $('.cm-preview').width(moveWidth); - }; - $('.cm-resize').on({ - mousedown: e => { - e.preventDefault(); - e.stopPropagation(); - const nowWidth = $('.cm-preview').outerWidth(); - const nowClientX = e.clientX; - $('.cm-preview').addClass('move'); - document.onmousemove = _e => { - if (window.requestAnimationFrame) requestAnimationFrame(() => move(nowClientX, nowWidth, _e.clientX)); - else move(nowClientX, nowWidth, _e.clientX); - }; - document.onmouseup = () => { - document.onmousemove = null; - document.onmouseup = null; - $('.cm-preview').removeClass('move'); - }; - return false; - }, - touchstart: e => { - e.preventDefault(); - e.stopPropagation(); - const nowWidth = $('.cm-preview').outerWidth(); - const nowClientX = e.originalEvent.targetTouches[0].clientX; - $('.cm-preview').addClass('move'); - document.ontouchmove = _e => { - if (window.requestAnimationFrame) requestAnimationFrame(() => move(nowClientX, nowWidth, _e.targetTouches[0].clientX)); - else move(nowClientX, nowWidth, _e.targetTouches[0].clientX); - }; - document.ontouchend = () => { - document.ontouchmove = null; - document.ontouchend = null; - $('.cm-preview').removeClass('move'); - }; - return false; - } - }); - } + /* 已测 √ */ + init_Preview() { + const move = (nowClientX, nowWidth, clientX) => { + let moveX = nowClientX - clientX; + let moveWidth = nowWidth + moveX; + if (moveWidth <= 0) moveWidth = 0; + if (moveWidth >= $('.cm-mainer').outerWidth() - 16) moveWidth = $('.cm-mainer').outerWidth() - 16; + $('.cm-preview').width(moveWidth); + }; + $('.cm-resize').on({ + mousedown: e => { + e.preventDefault(); + e.stopPropagation(); + const nowWidth = $('.cm-preview').outerWidth(); + const nowClientX = e.clientX; + $('.cm-preview').addClass('move'); + document.onmousemove = _e => { + if (window.requestAnimationFrame) requestAnimationFrame(() => move(nowClientX, nowWidth, _e.clientX)); + else move(nowClientX, nowWidth, _e.clientX); + }; + document.onmouseup = () => { + document.onmousemove = null; + document.onmouseup = null; + $('.cm-preview').removeClass('move'); + }; + return false; + }, + touchstart: e => { + e.preventDefault(); + e.stopPropagation(); + const nowWidth = $('.cm-preview').outerWidth(); + const nowClientX = e.originalEvent.targetTouches[0].clientX; + $('.cm-preview').addClass('move'); + document.ontouchmove = _e => { + if (window.requestAnimationFrame) requestAnimationFrame(() => move(nowClientX, nowWidth, _e.targetTouches[0].clientX)); + else move(nowClientX, nowWidth, _e.targetTouches[0].clientX); + }; + document.ontouchend = () => { + document.ontouchmove = null; + document.ontouchend = null; + $('.cm-preview').removeClass('move'); + }; + return false; + } + }); + } - /* 已测 √ */ - init_Tools() { - tools.forEach(item => { - if (item.type === 'title') { - super.handleTitle(this.cm, item); - } else { - const el = $(`
${item.innerHTML}
`); - el.on('click', e => { - e.preventDefault(); - switch (item.type) { - case 'fullScreen': - super.handleFullScreen(el); - break; - case 'publish': - super.handlePublish(); - break; - case 'undo': - super.handleUndo(this.cm); - break; - case 'redo': - super.handleRedo(this.cm); - break; - case 'time': - super.handleTime(this.cm); - break; - case 'bold': - super._insetAmboText(this.cm, '**'); - break; - case 'italic': - super._insetAmboText(this.cm, '*'); - break; - case 'delete': - super._insetAmboText(this.cm, '~~'); - break; - case 'code-inline': - super._insetAmboText(this.cm, '`'); - break; - case 'indent': - super.handleIndent(this.cm); - break; - case 'hr': - super.handleHr(this.cm); - break; - case 'clean': - super.handleClean(this.cm); - break; - case 'ordered-list': - super.handleOrdered(this.cm); - break; - case 'unordered-list': - super.handleUnordered(this.cm); - break; - case 'quote': - super.handleQuote(this.cm); - break; - case 'download': - super.handleDownload(this.cm); - break; - case 'link': - super.handleLink(this.cm); - break; - case 'image': - super.handleImage(this.cm); - break; - case 'table': - super.handleTable(this.cm); - break; - case 'code-block': - super.handleCodeBlock(this.cm); - break; - case 'about': - super.handleAbout(); - break; - case 'character': - super._createTableLists(this.cm, JoeConfig.characterAPI, '星星符号', '字符大全'); - break; - case 'emoji': - super._createTableLists(this.cm, JoeConfig.emojiAPI, '表情', '符号表情(需数据库支持)'); - break; - case 'task-no': - super.handleTask(this.cm, false); - break; - case 'task-yes': - super.handleTask(this.cm, true); - break; - case 'netease-list': - super.handleNetease(this.cm, true); - break; - case 'netease-single': - super.handleNetease(this.cm, false); - break; - case 'bilibili': - super.handleBilibili(this.cm); - break; - case 'dplayer': - super.handleDplayer(this.cm); - break; - case 'draft': - super.handleDraft(); - break; - case 'expression': - super.handleExpression(this.cm); - break; - case 'mtitle': - super.handleMtitle(this.cm); - break; - case 'html': - super.handleHtml(this.cm); - break; - case 'abtn': - super.handleAbtn(this.cm); - break; - case 'anote': - super.handleAnote(this.cm); - break; - case 'dotted': - super.handleDotted(this.cm); - break; - case 'hide': - super.handleHide(this.cm); - break; - case 'card-default': - super.handleCardDefault(this.cm); - break; - case 'message': - super.handleMessage(this.cm); - break; - case 'progress': - super.handleProgress(this.cm); - break; - case 'callout': - super.handleCallout(this.cm); - break; - } - }); - $('.cm-tools').append(el); - } - }); - } + /* 已测 √ */ + init_Tools() { + tools.forEach(item => { + if (item.type === 'title') { + super.handleTitle(this.cm, item); + } else { + const el = $(`
${item.innerHTML}
`); + el.on('click', e => { + e.preventDefault(); + switch (item.type) { + case 'fullScreen': + super.handleFullScreen(el); + break; + case 'publish': + super.handlePublish(); + break; + case 'undo': + super.handleUndo(this.cm); + break; + case 'redo': + super.handleRedo(this.cm); + break; + case 'time': + super.handleTime(this.cm); + break; + case 'bold': + super._insetAmboText(this.cm, '**'); + break; + case 'italic': + super._insetAmboText(this.cm, '*'); + break; + case 'delete': + super._insetAmboText(this.cm, '~~'); + break; + case 'code-inline': + super._insetAmboText(this.cm, '`'); + break; + case 'indent': + super.handleIndent(this.cm); + break; + case 'hr': + super.handleHr(this.cm); + break; + case 'clean': + super.handleClean(this.cm); + break; + case 'ordered-list': + super.handleOrdered(this.cm); + break; + case 'unordered-list': + super.handleUnordered(this.cm); + break; + case 'quote': + super.handleQuote(this.cm); + break; + case 'download': + super.handleDownload(this.cm); + break; + case 'link': + super.handleLink(this.cm); + break; + case 'image': + super.handleImage(this.cm); + break; + case 'table': + super.handleTable(this.cm); + break; + case 'code-block': + super.handleCodeBlock(this.cm); + break; + case 'about': + super.handleAbout(); + break; + case 'character': + super._createTableLists(this.cm, JoeConfig.characterAPI, '星星符号', '字符大全'); + break; + case 'emoji': + super._createTableLists(this.cm, JoeConfig.emojiAPI, '表情', '符号表情(需数据库支持)'); + break; + case 'task-no': + super.handleTask(this.cm, false); + break; + case 'task-yes': + super.handleTask(this.cm, true); + break; + case 'netease-list': + super.handleNetease(this.cm, true); + break; + case 'netease-single': + super.handleNetease(this.cm, false); + break; + case 'bilibili': + super.handleBilibili(this.cm); + break; + case 'dplayer': + super.handleDplayer(this.cm); + break; + case 'draft': + super.handleDraft(); + break; + case 'expression': + super.handleExpression(this.cm); + break; + case 'mtitle': + super.handleMtitle(this.cm); + break; + case 'html': + super.handleHtml(this.cm); + break; + case 'abtn': + super.handleAbtn(this.cm); + break; + case 'anote': + super.handleAnote(this.cm); + break; + case 'dotted': + super.handleDotted(this.cm); + break; + case 'hide': + super.handleHide(this.cm); + break; + case 'card-default': + super.handleCardDefault(this.cm); + break; + case 'message': + super.handleMessage(this.cm); + break; + case 'progress': + super.handleProgress(this.cm); + break; + case 'callout': + super.handleCallout(this.cm); + break; + case 'mp3': + super.handleMp3(this.cm); + break; + } + }); + $('.cm-tools').append(el); + } + }); + } - /* 已测 √ */ - init_Insert() { - Typecho.insertFileToEditor = (file, url, isImage) => { - const str = `${super._getLineCh(this.cm) ? '\n' : ''}${isImage ? '!' : ''}[${file}](${url})\n`; - super._replaceSelection(this.cm, str); - this.cm.focus(); - }; - } + /* 已测 √ */ + init_Insert() { + Typecho.insertFileToEditor = (file, url, isImage) => { + const str = `${super._getLineCh(this.cm) ? '\n' : ''}${isImage ? '!' : ''}[${file}](${url})\n`; + super._replaceSelection(this.cm, str); + this.cm.focus(); + }; + } - /* 已测 √ */ - init_AutoSave() { - if (window.JoeConfig.autoSave !== 1) return; - const formEl = $('#text')[0].form; - let cid = $('input[name="cid"]').val(); - let temp = null; - const saveFn = () => { - $('input[name="cid"]').val(cid); - $('#text').val(this.cm.state.doc.toString()); - let data = $(formEl).serialize(); - if (data !== temp) { - $('.cm-autosave').addClass('active'); - $.ajax({ - url: formEl.action, - type: 'POST', - data: data + '&do=save', - dataType: 'json', - success: res => { - cid = res.cid; - temp = data; - let timer = setTimeout(() => { - $('.cm-autosave').removeClass('active'); - clearTimeout(timer); - }, 1000); - } - }); - } - }; - setInterval(saveFn, 5000); - } + /* 已测 √ */ + init_AutoSave() { + if (window.JoeConfig.autoSave !== 1) return; + const formEl = $('#text')[0].form; + let cid = $('input[name="cid"]').val(); + let temp = null; + const saveFn = () => { + $('input[name="cid"]').val(cid); + $('#text').val(this.cm.state.doc.toString()); + let data = $(formEl).serialize(); + if (data !== temp) { + $('.cm-autosave').addClass('active'); + $.ajax({ + url: formEl.action, + type: 'POST', + data: data + '&do=save', + dataType: 'json', + success: res => { + cid = res.cid; + temp = data; + let timer = setTimeout(() => { + $('.cm-autosave').removeClass('active'); + clearTimeout(timer); + }, 1000); + } + }); + } + }; + setInterval(saveFn, 5000); + } } document.addEventListener('DOMContentLoaded', () => new Joe()); diff --git a/typecho/write/package.json b/typecho/write/package.json index 09f60a0..41d8417 100644 --- a/typecho/write/package.json +++ b/typecho/write/package.json @@ -9,7 +9,7 @@ "@codemirror/history": "^0.18.1", "@codemirror/matchbrackets": "^0.18.0", "@codemirror/state": "^0.18.6", - "@codemirror/view": "^0.18.7", + "@codemirror/view": "^0.18.8", "@rollup/plugin-node-resolve": "^11.2.1", "rollup-plugin-uglify": "^6.0.4" } diff --git a/typecho/write/rollup.config.js b/typecho/write/rollup.config.js index f77b53f..7298032 100644 --- a/typecho/write/rollup.config.js +++ b/typecho/write/rollup.config.js @@ -1,10 +1,10 @@ import { nodeResolve } from '@rollup/plugin-node-resolve'; import { uglify } from 'rollup-plugin-uglify'; export default { - input: './js/joe.write.js', - output: { - file: './js/joe.write.chunk.js', - format: 'iife' - }, - plugins: [nodeResolve(), uglify()] + input: './js/joe.write.js', + output: { + file: './js/joe.write.chunk.js', + format: 'iife' + }, + plugins: [nodeResolve(), uglify()] };