mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
fix: update copy function
更新复制方法,支持 margin 设置
This commit is contained in:
parent
cbbedeec90
commit
b9f90433f2
@ -158,8 +158,8 @@ let app = new Vue({
|
||||
this.refresh();
|
||||
},
|
||||
cssChanged() {
|
||||
let json = css2json(this.cssEditor.getValue(0))
|
||||
let theme = customCssWithTemplate(json, this.currentColor)
|
||||
let json = css2json(this.cssEditor.getValue(0));
|
||||
let theme = customCssWithTemplate(json, this.currentColor);
|
||||
this.wxRenderer.setOptions({
|
||||
theme: theme
|
||||
});
|
||||
@ -247,19 +247,33 @@ let app = new Vue({
|
||||
},
|
||||
// 复制渲染后的内容到剪贴板
|
||||
copy() {
|
||||
let clipboardDiv = document.getElementById('output');
|
||||
clipboardDiv.focus();
|
||||
window.getSelection().removeAllRanges();
|
||||
let range = document.createRange();
|
||||
range.setStartBefore(clipboardDiv.firstChild);
|
||||
range.setEndAfter(clipboardDiv.lastChild);
|
||||
window.getSelection().addRange(range);
|
||||
this.refresh()
|
||||
try {
|
||||
const text = document.getElementById('output').innerHTML
|
||||
let input = document.getElementById('copy-input');
|
||||
if (!input) {
|
||||
input = document.createElement('input');
|
||||
input.id = 'copy-input';
|
||||
input.style.position = 'absolute';
|
||||
input.style.left = '-1000px';
|
||||
input.style.zIndex = -1000;
|
||||
document.body.appendChild(input);
|
||||
}
|
||||
input.value = 'doocs/md';
|
||||
input.setSelectionRange(0, input.value.length);
|
||||
input.focus();
|
||||
|
||||
// 复制触发
|
||||
document.addEventListener('copy', function copyCall(e) {
|
||||
e.preventDefault();
|
||||
e.clipboardData.setData('text/html', text);
|
||||
e.clipboardData.setData('text/plain', text);
|
||||
console.log(e.clipboardData)
|
||||
document.removeEventListener('copy', copyCall);
|
||||
});
|
||||
|
||||
if (document.execCommand('copy')) {
|
||||
this.$notify({
|
||||
showClose: true,
|
||||
message: '已复制文章到剪贴板,可直接到公众号后台粘贴',
|
||||
message: '已复制渲染后的文章到剪贴板,可直接到公众号后台粘贴',
|
||||
offset: 80,
|
||||
duration: 1600,
|
||||
type: 'success'
|
||||
@ -273,15 +287,6 @@ let app = new Vue({
|
||||
type: 'warning'
|
||||
});
|
||||
}
|
||||
} catch (err) {
|
||||
this.$notify({
|
||||
showClose: true,
|
||||
message: '未能复制文章到剪贴板,请全选后右键复制',
|
||||
offset: 80,
|
||||
duration: 1600,
|
||||
type: 'warning'
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
updated() {
|
||||
|
@ -108,8 +108,8 @@
|
||||
<el-col :span="12" class="preview-wrapper" id="preview">
|
||||
<section>
|
||||
<div class="preview" contenteditable="true">
|
||||
<div id="output" v-html="output">
|
||||
</div>
|
||||
<section id="output" v-html="output">
|
||||
</section>
|
||||
</div>
|
||||
</section>
|
||||
</el-col>
|
||||
|
Loading…
Reference in New Issue
Block a user