mindoc/static/js/markdown.js

670 lines
24 KiB
Go
Raw Normal View History

2017-04-26 18:17:38 +08:00
$(function () {
window.isLoad = true;
editormd.katexURL = {
2018-03-25 16:59:48 +08:00
js : window.baseUrl + "/static/katex/katex",
css : window.baseUrl + "/static/katex/katex"
};
2017-04-28 18:08:01 +08:00
window.addDocumentModalFormHtml = $(this).find("form").html();
2017-04-26 18:17:38 +08:00
window.editor = editormd("docEditor", {
width: "100%",
height: "100%",
2018-03-25 16:59:48 +08:00
path: window.baseUrl + "/static/editor.md/lib/",
toolbar: true,
placeholder: "本编辑器支持 Markdown 编辑,左边编写,右边预览。",
imageUpload: true,
imageFormats: ["jpg", "jpeg", "gif", "png", "JPG", "JPEG", "GIF", "PNG"],
imageUploadURL: window.imageUploadURL,
toolbarModes: "full",
fileUpload: true,
fileUploadURL: window.fileUploadURL,
taskList: true,
flowChart: true,
htmlDecode: "style,script,iframe,title,onmouseover,onmouseout,style",
lineNumbers: false,
2018-01-27 11:27:11 +08:00
sequenceDiagram: true,
tocStartLevel: 1,
tocm: true,
tex:true,
saveHTMLToTextarea: true,
onload: function() {
2017-04-26 18:17:38 +08:00
this.hideToolbar();
var keyMap = {
"Ctrl-S": function(cm) {
saveDocument(false);
},
"Cmd-S": function(cm){
saveDocument(false);
},
"Ctrl-A": function(cm) {
cm.execCommand("selectAll");
}
};
this.addKeyMap(keyMap);
2017-04-28 18:08:01 +08:00
var $select_node_id = window.treeCatalog.get_selected();
if ($select_node_id) {
2017-04-28 18:08:01 +08:00
var $select_node = window.treeCatalog.get_node($select_node_id[0])
if ($select_node) {
$select_node.node = {
id: $select_node.id
};
loadDocument($select_node);
}
}
uploadImage("docEditor", function ($state, $res) {
if ($state === "before") {
2017-06-09 18:14:55 +08:00
return layer.load(1, {
shade: [0.1, '#fff'] // 0.1 透明度的白色背景
2017-06-09 18:14:55 +08:00
});
} else if ($state === "success") {
if ($res.errcode === 0) {
2017-06-09 18:14:55 +08:00
var value = '![](' + $res.url + ')';
window.editor.insertValue(value);
}
}
});
2017-04-28 18:08:01 +08:00
},
onchange: function () {
2017-04-28 18:08:01 +08:00
resetEditorChanged(true);
2017-04-26 18:17:38 +08:00
}
});
2017-04-28 18:08:01 +08:00
2017-04-27 18:19:37 +08:00
/**
* 实现标题栏操作
*/
$("#editormd-tools").on("click", "a[class!='disabled']", function () {
2018-04-09 16:56:29 +08:00
if($(this).hasClass('disabled')){
return false;
}
2017-04-26 18:17:38 +08:00
var name = $(this).find("i").attr("name");
if (name === "attachment") {
2017-05-13 12:12:37 +08:00
$("#uploadAttachModal").modal("show");
} else if (name === "history") {
2017-05-25 15:19:17 +08:00
window.documentHistory();
} else if (name === "save") {
2017-04-28 18:08:01 +08:00
saveDocument(false);
} else if (name === "template") {
2017-05-26 14:19:27 +08:00
$("#documentTemplateModal").modal("show");
2020-03-04 15:13:41 +08:00
} else if (name=="word2md"){
$("#word2mdform")[0].reset();
$("#output").html("");
$("#messages").html("");
$("#word2md").modal("show");
}else if (name=="Pasteoffice"){
$("#Pasteofficeform")[0].reset();
$("#Pastearea").innerText="";
$("#officeoutmd").val("");
$("#Pasteoffice").modal("show");
}else if (name === "sidebar") {
$("#manualCategory").toggle(0, "swing", function () {
2017-04-26 18:17:38 +08:00
var $then = $("#manualEditorContainer");
var left = parseInt($then.css("left"));
if (left > 0) {
2017-04-26 18:17:38 +08:00
window.editorContainerLeft = left;
$then.css("left", "0");
} else {
$then.css("left", window.editorContainerLeft + "px");
2017-04-26 18:17:38 +08:00
}
window.editor.resize();
});
} else if (name === "release") {
if (Object.prototype.toString.call(window.documentCategory) === '[object Array]' && window.documentCategory.length > 0) {
if ($("#markdown-save").hasClass('change')) {
var comfirm_result = confirm("编辑内容未保存,需要保存吗?")
if (comfirm_result) {
saveDocument(false, releaseBook);
return;
}
}
releaseBook();
} else {
layer.msg("没有需要发布的文档")
}
} else if (name === "tasks") {
// 插入 GFM 任务列表
2017-04-26 18:17:38 +08:00
var cm = window.editor.cm;
var selection = cm.getSelection();
if (selection === "") {
cm.replaceSelection("- [x] " + selection);
} else {
2017-04-26 18:17:38 +08:00
var selectionText = selection.split("\n");
for (var i = 0, len = selectionText.length; i < len; i++) {
selectionText[i] = (selectionText[i] === "") ? "" : "- [x] " + selectionText[i];
}
cm.replaceSelection(selectionText.join("\n"));
}
} else {
2017-04-26 18:17:38 +08:00
var action = window.editor.toolbarHandlers[name];
if (action !== "undefined") {
$.proxy(action, window.editor)();
window.editor.focus();
}
}
}) ;
2017-04-27 18:19:37 +08:00
2017-04-28 18:08:01 +08:00
/***
* 加载指定的文档到编辑器中
* @param $node
*/
2017-05-25 15:19:17 +08:00
window.loadDocument = function($node) {
2017-04-27 18:19:37 +08:00
var index = layer.load(1, {
shade: [0.1, '#fff'] // 0.1 透明度的白色背景
2017-04-27 18:19:37 +08:00
});
2017-04-28 18:08:01 +08:00
$.get(window.editURL + $node.node.id ).done(function (res) {
2017-04-27 18:19:37 +08:00
layer.close(index);
2017-04-28 18:08:01 +08:00
if (res.errcode === 0) {
2018-04-09 16:56:29 +08:00
var node = { "id": res.data.doc_id, 'parent': res.data.parent_id === 0 ? '#' : res.data.parent_id, "text": res.data.doc_name, "identify": res.data.identify, "version": res.data.version };
if(res.data.is_lock){
node.type = "lock";
node.text = node.text + "<span class='lock-text'> [锁定]</span>";
2018-04-10 16:43:22 +08:00
window.editor.config('readOnly',true);
2018-04-09 16:56:29 +08:00
}else{
node.type = "unlock";
window.editor.config('readOnly',false);
}
window.isLoad = true;
try {
window.editor.clear();
if(res.data.markdown !== ""){
window.editor.insertValue(res.data.markdown);
}else{
window.isLoad = true;
}
window.editor.setCursor({line: 0, ch: 0});
}catch(e){
console.log(e);
}
2018-04-09 16:56:29 +08:00
2017-04-28 18:08:01 +08:00
pushDocumentCategory(node);
2017-04-28 18:28:08 +08:00
window.selectNode = node;
2017-05-13 12:12:37 +08:00
pushVueLists(res.data.attach);
2018-04-09 16:56:29 +08:00
} else {
2017-04-27 18:19:37 +08:00
layer.msg("文档加载失败");
}
}).fail(function () {
layer.close(index);
layer.msg("文档加载失败");
});
2017-05-26 14:19:27 +08:00
};
2017-04-28 18:08:01 +08:00
/**
* 保存文档到服务器
* @param $is_cover 是否强制覆盖
2017-04-28 18:08:01 +08:00
*/
function saveDocument($is_cover, callback) {
2017-04-28 18:08:01 +08:00
var index = null;
2017-04-28 18:28:08 +08:00
var node = window.selectNode;
2017-04-28 18:08:01 +08:00
var content = window.editor.getMarkdown();
var html = window.editor.getPreviewedHTML();
var version = "";
if (!node) {
2017-04-28 18:08:01 +08:00
layer.msg("获取当前文档信息失败");
return;
}
2017-04-28 18:28:08 +08:00
var doc_id = parseInt(node.id);
2017-04-28 18:08:01 +08:00
for (var i in window.documentCategory) {
2017-04-28 18:08:01 +08:00
var item = window.documentCategory[i];
if (item.id === doc_id) {
2017-04-28 18:08:01 +08:00
version = item.version;
break;
}
}
$.ajax({
beforeSend: function () {
index = layer.load(1, { shade: [0.1, '#fff'] });
2017-04-28 18:08:01 +08:00
},
url: window.editURL,
data: { "identify": window.book.identify, "doc_id": doc_id, "markdown": content, "html": html, "cover": $is_cover ? "yes" : "no", "version": version },
type: "post",
timeout : 30000,
dataType: "json",
success: function (res) {
2017-04-28 18:08:01 +08:00
layer.close(index);
if (res.errcode === 0) {
2017-04-28 18:08:01 +08:00
resetEditorChanged(false);
for (var i in window.documentCategory) {
2017-04-28 18:08:01 +08:00
var item = window.documentCategory[i];
if (item.id === doc_id) {
2017-04-28 18:08:01 +08:00
window.documentCategory[i].version = res.data.version;
break;
}
}
if (typeof callback === "function") {
callback();
}
} else if(res.errcode === 6005) {
var confirmIndex = layer.confirm('文档已被其他人修改确定覆盖已存在的文档吗', {
btn: ['确定', '取消'] // 按钮
}, function() {
2017-04-28 18:08:01 +08:00
layer.close(confirmIndex);
saveDocument(true, callback);
2017-04-28 18:08:01 +08:00
});
} else {
2017-04-28 18:08:01 +08:00
layer.msg(res.message);
}
},
error : function (XMLHttpRequest, textStatus, errorThrown) {
layer.close(index);
layer.msg("服务器错误:" + errorThrown);
2017-04-28 18:08:01 +08:00
}
});
}
2017-04-28 18:08:01 +08:00
/**
* 设置编辑器变更状态
* @param $is_change
*/
2017-04-28 18:08:01 +08:00
function resetEditorChanged($is_change) {
// console.log($is_change);
// console.log(window.isLoad);
if ($is_change && !window.isLoad) {
2018-04-09 16:56:29 +08:00
var type = window.treeCatalog.get_type(window.selectNode);
if(type === "lock"){
return;
}
2017-04-28 18:08:01 +08:00
$("#markdown-save").removeClass('disabled').addClass('change');
} else {
2017-04-28 18:08:01 +08:00
$("#markdown-save").removeClass('change').addClass('disabled');
}
window.isLoad = false;
2017-04-28 18:08:01 +08:00
}
2017-04-28 18:08:01 +08:00
/**
* 添加顶级文档
2017-04-27 18:19:37 +08:00
*/
$("#addDocumentForm").ajaxForm({
beforeSubmit: function () {
2017-04-27 18:19:37 +08:00
var doc_name = $.trim($("#documentName").val());
if (doc_name === "") {
return showError("目录名称不能为空", "#add-error-message")
2017-04-27 18:19:37 +08:00
}
2017-05-02 18:09:46 +08:00
$("#btnSaveDocument").button("loading");
2017-04-27 18:19:37 +08:00
return true;
},
success: function (res) {
if (res.errcode === 0) {
2018-04-09 16:56:29 +08:00
var data = { "id": res.data.doc_id, 'parent': res.data.parent_id === 0 ? '#' : res.data.parent_id , "text": res.data.doc_name, "identify": res.data.identify, "version": res.data.version ,"type": res.data.is_lock ? "lock" : "unlock"};
2017-04-27 18:19:37 +08:00
2018-04-09 16:56:29 +08:00
if(res.data.is_lock){
data.text = data.text + "<span class='lock-text'> [锁定]</span>";
}
2017-04-27 18:19:37 +08:00
var node = window.treeCatalog.get_node(data.id);
if (node) {
window.treeCatalog.rename_node({ "id": data.id }, data.text);
} else {
2017-04-28 18:08:01 +08:00
window.treeCatalog.create_node(data.parent, data);
2017-04-27 18:19:37 +08:00
window.treeCatalog.deselect_all();
window.treeCatalog.select_node(data);
}
2017-04-28 18:08:01 +08:00
pushDocumentCategory(data);
2017-04-27 18:19:37 +08:00
$("#markdown-save").removeClass('change').addClass('disabled');
$("#addDocumentModal").modal('hide');
} else {
showError(res.message, "#add-error-message");
2017-04-27 18:19:37 +08:00
}
2017-05-02 18:09:46 +08:00
$("#btnSaveDocument").button("reset");
2017-04-27 18:19:37 +08:00
}
});
/**
* 文档目录树
*/
$("#sidebar").jstree({
'plugins': ["wholerow", "types", 'dnd', 'contextmenu'],
"types": {
"default": {
"icon": false // 删除默认图标
2018-04-09 16:56:29 +08:00
},
"lock" : {
"icon" : false
},
"unlock" : {
"icon" : false
2017-04-27 18:19:37 +08:00
}
},
'core': {
'check_callback': true,
"multiple": false,
'animation': 0,
"data": window.documentCategory
2017-04-27 18:19:37 +08:00
},
"contextmenu": {
show_at_node: false,
select_node: false,
2018-04-09 16:56:29 +08:00
'items' : function(node) {
var items = {
"添加文档": {
"separator_before": false,
"separator_after": true,
"_disabled": false,
"label": "添加文档",
"icon": "fa fa-plus",
"action": function (data) {
var inst = $.jstree.reference(data.reference),
node = inst.get_node(data.reference);
2017-04-27 18:19:37 +08:00
2018-04-09 16:56:29 +08:00
openCreateCatalogDialog(node);
}
},
"编辑": {
"separator_before": false,
"separator_after": true,
"_disabled": false,
"label": "编辑",
"icon": "fa fa-edit",
"action": function (data) {
var inst = $.jstree.reference(data.reference);
var node = inst.get_node(data.reference);
openEditCatalogDialog(node);
}
},
"删除": {
"separator_before": false,
"separator_after": true,
"_disabled": false,
"label": "删除",
"icon": "fa fa-trash-o",
"action": function (data) {
var inst = $.jstree.reference(data.reference);
var node = inst.get_node(data.reference);
openDeleteDocumentDialog(node);
}
},
"unlock" : {
"separator_before": false,
"separator_after": true,
"_disabled": false,
"label": "解锁",
"icon": "fa fa-unlock",
"action": function (data) {
var inst = $.jstree.reference(data.reference);
var node = inst.get_node(data.reference);
unLockDocumentAction(node);
}
},
"lock" : {
"separator_before": false,
"separator_after": true,
"_disabled": false,
"label": "锁定",
"icon": "fa fa-lock",
"action": function (data) {
var inst = $.jstree.reference(data.reference);
var node = inst.get_node(data.reference);
lockDocumentAction(node);
}
2017-04-27 18:19:37 +08:00
}
2018-04-09 16:56:29 +08:00
};
console.log(this.get_type(node));
if(this.get_type(node) === "lock") {
delete items.lock;
}else{
delete items.unlock;
2017-04-27 18:19:37 +08:00
}
2018-04-09 16:56:29 +08:00
return items;
},
2017-04-27 18:19:37 +08:00
}
}).on('loaded.jstree', function () {
window.treeCatalog = $(this).jstree();
2017-04-28 18:28:08 +08:00
}).on('select_node.jstree', function (node, selected, event) {
if ($("#markdown-save").hasClass('change')) {
if (confirm("编辑内容未保存,需要保存吗?")) {
saveDocument(false, function () {
loadDocument(selected);
});
return true;
2017-04-28 18:28:08 +08:00
}
}
loadDocument(selected);
}).on("move_node.jstree", jstree_save);
2020-03-04 15:13:41 +08:00
//对html进行预处理
function firstfilter(str) {
//处理一下html,忽略从WORD粘贴时特殊情况下尾部乱码
if (/(<html[\s\S]*<\/html>)/gi.test(str)) {
str = str.match(/(<html[\s\S]*<\/html>)/gi)[0];
}
2020-03-04 15:13:41 +08:00
//去掉头部描述
return str.replace(/<head>[\s\S]*<\/head>/gi, "")
//去掉注释
.replace(/<!--[\s\S]*?-->/ig, "")
//去掉隐藏元素
.replace(/<([a-z0-9]*)[^>]*\s*display:none[\s\S]*?><\/\1>/gi, '');
}
//去除冗余属性和标签
function filterPasteWord(str) {
return str.replace(/[\t\r\n]+/g, ' ').replace(/<!--[\s\S]*?-->/ig, "")
//转换图片
.replace(/<v:shape [^>]*>[\s\S]*?.<\/v:shape>/gi,
function (str) {
//opera能自己解析出image所这里直接返回空
if (!!window.opera && window.opera.version) {
return '';
}
try {
//有可能是bitmap占为图无用直接过滤掉主要体现在粘贴excel表格中
if (/Bitmap/i.test(str)) {
return '';
}
var src = str.match(/src=\s*"([^"]*)"/i)[1];
return '<img src="' + src + '" />';
} catch (e) {
return '';
}
})
//针对wps添加的多余标签处理
.replace(/<\/?div[^>]*>/g, '')
.replace(/<\/?span[^>]*>/g, '')
.replace(/<\/?font[^>]*>/g, '')
.replace(/<\/?col[^>]*>/g, '')
.replace(/<\/?(span|div|o:p|v:.*?|input|label)[\s\S]*?>/g, '')
//去掉所有属性,需要保留单元格合并
//.replace(/<([a-zA-Z]+)\s*[^><]*>/g, "<$1>")
//去掉多余的属性
.replace(/v:\w+=(["']?)[^'"]+\1/g, '')
.replace(/<(!|script[^>]*>.*?<\/script(?=[>\s])|\/?(\?xml(:\w+)?|xml|meta|link|style|\w+:\w+)(?=[\s\/>]))[^>]*>/gi, "").replace(/<p [^>]*class="?MsoHeading"?[^>]*>(.*?)<\/p>/gi, "<p><strong>$1</strong></p>")
//去掉多余的属性
.replace(/\s+(class|lang|align)\s*=\s*(['"]?)([\w-]+)\2/gi, '')
//清除多余的font/span不能匹配&nbsp;有可能是空格
.replace(/<(font|span)[^>]*>(\s*)<\/\1>/gi,
function (a, b, c) {
return c.replace(/[\t\r\n ]+/g, " ");
})
//去掉style属性
.replace(/(<[a-z][^>]*)\sstyle=(["'])([^\2]*?)\2/gi, "$1")
// 去除不带引号的属性
.replace(/(class|border|cellspacing|MsoNormalTable|valign|width|center|&nbsp;|x:str|height|x:num|cellpadding)(=[^ \f\n\r\t\v>]*)?/g, "")
// 去除多余空格
.replace(/(\S+)(\s+)/g, function (match, p1, p2) {
return p1 + ' ';
})
.replace(/(\s)(>|<)/g, function (match, p1, p2) {
return p2;
})
//处理表格中的p标签
.replace(/(<table[^>]*[\s\S]*?><\/table>)/gi, function (a) {
//嵌套表格不处理
if (a.match(/(<table>)/gi).length > 1) {
return a
}
if (!/<thead>/i.test(a) && !/(rowspan|colspan)/i.test(a)) {
//没有表头,将第一行作为表头
//修复,当表格只有一行时,正则错误
const firstrow = "<table><thead>" + a.match(/<tr>[\s\S]*?(<\/tr>)/i)[0] + "</thead>";
a = a.replace(/<tr>[\s\S]*?(<\/tr>)/i, "")
2020-03-04 15:13:41 +08:00
.replace(/<table>/, firstrow);
} else if (/<thead>/i.test(a) && /(rowspan|colspan)/i.test(a)) {
a=a.replace(/<thead>/, "");
}
return a.replace(/<\/p><p>/ig, "<br/>")
.replace(/<\/?p[^>]*>/ig, '')
//.replace(/<td><\/td>/ig,"<td>&nbsp;</td>")
.replace(/<td>&nbsp;<\/td>/g, "<td></td>")
});
}
//判断粘贴的内容是否来自office
function isWordDocument(str) {
return /(class="?Mso|style="[^"]*\bmso\-|w:WordDocument|<(v|o):|lang=)/ig.test(str) || /\"urn:schemas-microsoft-com:office:office/ig.test(str);
}
//excel表格处理
function pasteClipboardHtml(html) {
const startFramgmentStr = '<!--StartFragment-->';
const endFragmentStr = '<!--EndFragment-->';
const startFragmentIndex = html.indexOf(startFramgmentStr);
const endFragmentIndex = html.lastIndexOf(endFragmentStr);
if (startFragmentIndex > -1 && endFragmentIndex > -1) {
html = html.slice(startFragmentIndex + startFramgmentStr.length, endFragmentIndex);
}
// Wrap with <tr> if html contains dangling <td> tags
// Dangling <td> tag is that tag does not have <tr> as parent node.
if (/<\/td>((?!<\/tr>)[\s\S])*$/i.test(html)) {
html = '<tr>' + html + '</tr>';
}
// Wrap with <table> if html contains dangling <tr> tags
// Dangling <tr> tag is that tag does not have <table> as parent node.
if (/<\/tr>((?!<\/table>)[\s\S])*$/i.test(html)) {
html = '<table>' + html + '</table>';
}
return html;
}
//将html转换为markdown
function html2md(str) {
var gfm = turndownPluginGfm.gfm;
var turndownService = new TurndownService({
headingStyle: 'atx',
hr: '- - -',
bulletListMarker: '-',
codeBlockStyle: 'indented',
fence: '```',
emDelimiter: '_',
strongDelimiter: '**'
});
turndownService.use(gfm);
turndownService.keep(['sub', 'sup']);//保留标签
str=firstfilter(str);
//str=pasteClipboardHtml(str);
str=filterPasteWord(str);
return turndownService.turndown(str);
}
//将word转换的html转换为markdown并插入编辑器
$("#btnhtml2md").click(function (e) {
e.preventDefault();
if ($(this).hasClass("disabled"))
return false;
var str = $("#output").html();
var cm = window.editor.cm;
var cursor = cm.getCursor();
var selection = cm.getSelection();
cm.replaceSelection(html2md(str)+"\n\n");
$("#btnhtml2md").removeClass("disabled");
$("#word2md").modal('hide');
cm.focus();
});
//粘贴Pastearea自动获得焦点
$('#Pasteoffice').on('shown.bs.modal', function (event) {
var modal = $(this);
var form=modal.find("#Pasteofficeform");
var renameInput =form.find("#Pastearea");
//获得焦点时文本全选
renameInput.focus(function () {
this.select();
});
renameInput.focus();
});
//粘贴解析
$("#Pastearea")[0].addEventListener('paste', function (e) {
var clipboard = e.clipboardData;
if (!(clipboard && clipboard.items)) {
return;
}
for (var i = 0, len = clipboard.items.length; i < len; i++) {
var item = clipboard.items[i];
if (item.kind === "string" && item.type === "text/html") {
item.getAsString(function (str) {
if (/<img [^>]*src=['"]([^'"]+)[^>]*>/gi.test(str)) {
layer.msg("粘贴的内容中包含有图片建议使用word转markdown模块处理");
}
var markdown = html2md(str);
$("#officeoutmd").val(markdown);
});
}
}
});
//解析html源码为markdown
$("#HtmlToMarkdown").click(function (e) {
e.preventDefault();
var str = $("#Pastearea").val();
var markdown = html2md(str);
$("#officeoutmd").val(markdown);
});
//将html转换为markdown并插入编辑器
$("#office2md").click(function (e) {
e.preventDefault();
if ($(this).hasClass("disabled"))
return false;
var str = $("#officeoutmd").val();
var cm = window.editor.cm;
var cursor = cm.getCursor();
var selection = cm.getSelection();
cm.replaceSelection(str+"\n\n");
$("#office2md").removeClass("disabled");
$("#Pasteoffice").modal('hide');
cm.focus();
});
/**
* 打开文档模板
*/
$("#documentTemplateModal").on("click", ".section>a[data-type]", function () {
2017-05-26 14:19:27 +08:00
var $this = $(this).attr("data-type");
var body = $("#template-" + $this).html();
if (body) {
window.isLoad = true;
window.editor.clear();
window.editor.insertValue(body);
window.editor.setCursor({ line: 0, ch: 0 });
2017-05-26 14:19:27 +08:00
resetEditorChanged(true);
}
$("#documentTemplateModal").modal('hide');
});
2020-03-04 15:13:41 +08:00
});