mindoc/static/js/kancloud.js

231 lines
7.3 KiB
Go
Raw Normal View History

2017-05-26 14:19:27 +08:00
/***
*
* @param $url
* @param $id
* @param $callback
*/
function loadDocument($url, $id, $callback) {
2017-05-26 14:19:27 +08:00
$.ajax({
url : $url,
type : "GET",
beforeSend : function (xhr) {
2017-05-26 14:19:27 +08:00
var body = events.data('body_' + $id);
var title = events.data('title_' + $id);
var doc_title = events.data('doc_title_' + $id);
var doc_info = events.data('doc_info_' + $id);
2017-05-26 14:19:27 +08:00
if (body && title && doc_title) {
2017-05-26 14:19:27 +08:00
if (typeof $callback === "function") {
body = $callback(body);
}
2017-05-26 14:19:27 +08:00
$("#page-content").html(body);
$("title").text(title);
$("#article-title").text(doc_title);
$("#article-info").text(doc_info);
2017-05-26 14:19:27 +08:00
2018-02-06 11:27:34 +08:00
events.trigger('article.open', { $url : $url, $id : $id });
2017-05-26 14:19:27 +08:00
return false;
}
NProgress.start();
},
success : function (res) {
if (res.errcode === 0) {
2017-05-26 14:19:27 +08:00
var body = res.data.body;
var doc_title = res.data.doc_title;
var title = res.data.title;
var doc_info = res.data.doc_info;
2017-05-26 14:19:27 +08:00
$body = body;
if (typeof $callback === "function" ) {
2017-05-26 14:19:27 +08:00
$body = $callback(body);
}
2017-05-26 14:19:27 +08:00
$("#page-content").html($body);
$("title").text(title);
$("#article-title").text(doc_title);
$("#article-info").text(doc_info);
2017-05-26 14:19:27 +08:00
events.data('body_' + $id, body);
events.data('title_' + $id, title);
events.data('doc_title_' + $id, doc_title);
events.data('doc_info_' + $id, doc_info);
2017-05-26 14:19:27 +08:00
2018-02-06 11:27:34 +08:00
events.trigger('article.open', { $url : $url, $id : $id });
} else if (res.errcode === 6000) {
window.location.href = "/";
} else {
2017-05-26 14:19:27 +08:00
layer.msg("加载失败");
}
},
complete : function () {
NProgress.done();
}
});
}
2018-01-27 13:56:45 +08:00
/**
*
*/
2017-05-26 14:19:27 +08:00
function initHighlighting() {
2018-01-27 13:56:45 +08:00
$('pre code,pre.ql-syntax').each(function (i, block) {
2017-05-26 14:19:27 +08:00
hljs.highlightBlock(block);
});
hljs.initLineNumbersOnLoad();
}
var events = $("body");
$(function () {
$(".view-backtop").on("click", function () {
$('.manual-right').animate({ scrollTop: '0px' }, 200);
});
$(".manual-right").scroll(function () {
var top = $(".manual-right").scrollTop();
if (top > 100) {
2017-05-26 14:19:27 +08:00
$(".view-backtop").addClass("active");
} else {
2017-05-26 14:19:27 +08:00
$(".view-backtop").removeClass("active");
}
});
window.isFullScreen = false;
initHighlighting();
window.jsTree = $("#sidebar").jstree({
'plugins' : ["wholerow", "types"],
2017-05-26 14:19:27 +08:00
"types": {
"default" : {
"icon" : false // 删除默认图标
}
},
'core' : {
'check_callback' : true,
"multiple" : false,
2017-05-26 14:19:27 +08:00
'animation' : 0
}
}).on('select_node.jstree', function (node, selected, event) {
2017-05-26 14:19:27 +08:00
$(".m-manual").removeClass('manual-mobile-show-left');
var url = selected.node.a_attr.href;
if (url === window.location.href) {
2017-05-26 14:19:27 +08:00
return false;
}
loadDocument(url, selected.node.id);
2017-05-26 14:19:27 +08:00
});
$("#slidebar").on("click", function () {
2017-05-26 14:19:27 +08:00
$(".m-manual").addClass('manual-mobile-show-left');
});
$(".manual-mask").on("click", function () {
2017-05-26 14:19:27 +08:00
$(".m-manual").removeClass('manual-mobile-show-left');
});
/**
*
*/
$(".manual-fullscreen-switch").on("click", function () {
2017-05-26 14:19:27 +08:00
isFullScreen = !isFullScreen;
if (isFullScreen) {
$(".m-manual").addClass('manual-fullscreen-active');
} else {
$(".m-manual").removeClass('manual-fullscreen-active');
}
});
// 处理打开事件
2017-05-26 14:19:27 +08:00
events.on('article.open', function (event, $param) {
2018-02-06 11:27:34 +08:00
var prevState = window.history.state || {};
2017-05-26 14:19:27 +08:00
if ('pushState' in history) {
2018-02-06 11:27:34 +08:00
// if ($param.$init === false) {
// window.history.replaceState($param, $param.$id, $param.$url);
// } else {
// window.history.pushState($param, $param.$id, $param.$url);
// }
if ($param.$id) {
prevState.$id === $param.$id || window.history.pushState($param, $param.$id, $param.$url);
2017-05-26 14:19:27 +08:00
} else {
window.history.pushState($param, $param.$id, $param.$url);
2018-02-06 11:27:34 +08:00
window.history.replaceState($param, $param.$id, $param.$url);
2017-05-26 14:19:27 +08:00
}
} else {
window.location.hash = $param.$url;
}
2017-05-26 14:19:27 +08:00
initHighlighting();
$(".manual-right").scrollTop(0);
//使用layer相册功能查看图片
layer.photos({photos: "#page-content"});
2017-05-26 14:19:27 +08:00
});
$(".navg-item[data-mode]").on("click", function () {
2017-05-26 14:19:27 +08:00
var mode = $(this).data('mode');
$(this).siblings().removeClass('active').end().addClass('active');
$(".m-manual").removeClass("manual-mode-view manual-mode-collect manual-mode-search").addClass("manual-mode-" + mode);
});
/**
*
*/
$("#searchForm").ajaxForm({
beforeSubmit : function () {
var keyword = $.trim($("#searchForm").find("input[name='keyword']").val());
if (keyword === "") {
2017-05-26 14:19:27 +08:00
$(".search-empty").show();
$("#searchList").html("");
return false;
}
$("#btnSearch").attr("disabled", "disabled").find("i").removeClass("fa-search").addClass("loading");
2017-05-26 14:19:27 +08:00
window.keyword = keyword;
},
success : function (res) {
2017-05-26 14:19:27 +08:00
var html = "";
if (res.errcode === 0) {
for(var i in res.data) {
2017-05-26 14:19:27 +08:00
var item = res.data[i];
html += '<li><a href="javascript:;" title="' + item.doc_name + '" data-id="' + item.doc_id + '"> ' + item.doc_name + ' </a></li>';
2017-05-26 14:19:27 +08:00
}
}
if (html !== "") {
2017-05-26 14:19:27 +08:00
$(".search-empty").hide();
} else {
2017-05-26 14:19:27 +08:00
$(".search-empty").show();
}
$("#searchList").html(html);
},
complete : function () {
$("#btnSearch").removeAttr("disabled").find("i").removeClass("loading").addClass("fa-search");
}
});
window.onpopstate = function (e) {
var $param = e.state;
2018-02-06 11:27:34 +08:00
if (!$param) return;
2017-05-26 14:19:27 +08:00
if($param.hasOwnProperty("$url")) {
window.jsTree.jstree().deselect_all();
2018-02-06 11:27:34 +08:00
if ($param.$id) {
window.jsTree.jstree().select_node({ id : $param.$id });
}else{
window.location.assign($param.$url);
}
// events.trigger('article.open', $param);
} else {
2017-05-26 14:19:27 +08:00
console.log($param);
}
};
try {
var $node = window.jsTree.jstree().get_selected();
2018-02-06 11:27:34 +08:00
if ($node instanceof Array && $node.length) {
$node = window.jsTree.jstree().get_node({ id: $node[0] });
2018-02-06 11:27:34 +08:00
events.trigger('article.open', { $url: $node.a_attr.href, $id: $node.id });
}
} catch (e) {
console.log(e);
2017-05-26 15:51:45 +08:00
}
2017-05-26 14:19:27 +08:00
});