mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 20:17:53 +08:00
修改了退出登录后在已经打开的页面上切换文档时呈现的一直处于加载中的假象。
This commit is contained in:
parent
9e2fbccc92
commit
15ad23a030
5
TODO
5
TODO
@ -1,6 +1,6 @@
|
|||||||
1、把 log 提取出 dbgout 之类的方法;
|
1、把 log 提取出 dbgout 之类的方法;已改作 beego.Info() 调用;
|
||||||
2、把源代码里的 TODO 完成;
|
2、把源代码里的 TODO 完成;
|
||||||
3、Export 的两个 URL 应该可以合并,用是否有 :id 来区分;这样 0 号文档输出整个 book 更顺;
|
3、Export 的两个 URL 应该可以合并,用是否有 :id 来区分;这样 0 号文档输出整个 book 更顺;已完成;
|
||||||
4、统一代码风格,空格、命名之类的;
|
4、统一代码风格,空格、命名之类的;
|
||||||
5、美化 PDF 的输出格式;
|
5、美化 PDF 的输出格式;
|
||||||
6、自动登录新开标签页而且并不能跳转至起始请求页的问题;
|
6、自动登录新开标签页而且并不能跳转至起始请求页的问题;
|
||||||
@ -8,4 +8,3 @@
|
|||||||
8、[自动]展示历史版本;增强历史版本对比显示的能力;
|
8、[自动]展示历史版本;增强历史版本对比显示的能力;
|
||||||
9、[自动]展示作者信息;也许可以和上一需求合并考虑;
|
9、[自动]展示作者信息;也许可以和上一需求合并考虑;
|
||||||
10、查看了解评论功能;
|
10、查看了解评论功能;
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -4,17 +4,17 @@
|
|||||||
* @param $id
|
* @param $id
|
||||||
* @param $callback
|
* @param $callback
|
||||||
*/
|
*/
|
||||||
function loadDocument($url,$id,$callback) {
|
function loadDocument($url, $id, $callback) {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url : $url,
|
url : $url,
|
||||||
type : "GET",
|
type : "GET",
|
||||||
beforeSend :function (xhr) {
|
beforeSend : function (xhr) {
|
||||||
var body = events.data('body_' + $id);
|
var body = events.data('body_' + $id);
|
||||||
var title = events.data('title_' + $id);
|
var title = events.data('title_' + $id);
|
||||||
var doc_title = events.data('doc_title_' + $id);
|
var doc_title = events.data('doc_title_' + $id);
|
||||||
var doc_info = events.data('doc_info_' + $id);
|
var doc_info = events.data('doc_info_' + $id);
|
||||||
|
|
||||||
if(body && title && doc_title) {
|
if (body && title && doc_title) {
|
||||||
if (typeof $callback === "function") {
|
if (typeof $callback === "function") {
|
||||||
body = $callback(body);
|
body = $callback(body);
|
||||||
}
|
}
|
||||||
@ -24,7 +24,7 @@ function loadDocument($url,$id,$callback) {
|
|||||||
$("#article-title").text(doc_title);
|
$("#article-title").text(doc_title);
|
||||||
$("#article-info").text(doc_info);
|
$("#article-info").text(doc_info);
|
||||||
|
|
||||||
events.trigger('article.open', { $url : $url, $init : false , $id : $id });
|
events.trigger('article.open', { $url : $url, $init : false, $id : $id });
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -53,7 +53,8 @@ function loadDocument($url,$id,$callback) {
|
|||||||
events.data('doc_info_' + $id, doc_info);
|
events.data('doc_info_' + $id, doc_info);
|
||||||
|
|
||||||
events.trigger('article.open', { $url : $url, $init : true, $id : $id });
|
events.trigger('article.open', { $url : $url, $init : true, $id : $id });
|
||||||
|
} else if (res.errcode === 6000) {
|
||||||
|
window.location.href = "/";
|
||||||
} else {
|
} else {
|
||||||
layer.msg("加载失败");
|
layer.msg("加载失败");
|
||||||
}
|
}
|
||||||
@ -91,7 +92,7 @@ $(function () {
|
|||||||
initHighlighting();
|
initHighlighting();
|
||||||
|
|
||||||
window.jsTree = $("#sidebar").jstree({
|
window.jsTree = $("#sidebar").jstree({
|
||||||
'plugins':["wholerow", "types"],
|
'plugins' : ["wholerow", "types"],
|
||||||
"types": {
|
"types": {
|
||||||
"default" : {
|
"default" : {
|
||||||
"icon" : false // 删除默认图标
|
"icon" : false // 删除默认图标
|
||||||
@ -102,7 +103,7 @@ $(function () {
|
|||||||
"multiple" : false,
|
"multiple" : false,
|
||||||
'animation' : 0
|
'animation' : 0
|
||||||
}
|
}
|
||||||
}).on('select_node.jstree',function (node,selected,event) {
|
}).on('select_node.jstree', function (node, selected, event) {
|
||||||
$(".m-manual").removeClass('manual-mobile-show-left');
|
$(".m-manual").removeClass('manual-mobile-show-left');
|
||||||
var url = selected.node.a_attr.href;
|
var url = selected.node.a_attr.href;
|
||||||
|
|
||||||
@ -123,7 +124,7 @@ $(function () {
|
|||||||
/**
|
/**
|
||||||
* 关闭侧边栏
|
* 关闭侧边栏
|
||||||
*/
|
*/
|
||||||
$(".manual-fullscreen-switch").on("click",function () {
|
$(".manual-fullscreen-switch").on("click", function () {
|
||||||
isFullScreen = !isFullScreen;
|
isFullScreen = !isFullScreen;
|
||||||
if (isFullScreen) {
|
if (isFullScreen) {
|
||||||
$(".m-manual").addClass('manual-fullscreen-active');
|
$(".m-manual").addClass('manual-fullscreen-active');
|
||||||
@ -148,7 +149,7 @@ $(function () {
|
|||||||
$(".manual-right").scrollTop(0);
|
$(".manual-right").scrollTop(0);
|
||||||
});
|
});
|
||||||
|
|
||||||
$(".navg-item[data-mode]").on("click",function () {
|
$(".navg-item[data-mode]").on("click", function () {
|
||||||
var mode = $(this).data('mode');
|
var mode = $(this).data('mode');
|
||||||
$(this).siblings().removeClass('active').end().addClass('active');
|
$(this).siblings().removeClass('active').end().addClass('active');
|
||||||
$(".m-manual").removeClass("manual-mode-view manual-mode-collect manual-mode-search").addClass("manual-mode-" + mode);
|
$(".m-manual").removeClass("manual-mode-view manual-mode-collect manual-mode-search").addClass("manual-mode-" + mode);
|
||||||
@ -160,23 +161,23 @@ $(function () {
|
|||||||
$("#searchForm").ajaxForm({
|
$("#searchForm").ajaxForm({
|
||||||
beforeSubmit : function () {
|
beforeSubmit : function () {
|
||||||
var keyword = $.trim($("#searchForm").find("input[name='keyword']").val());
|
var keyword = $.trim($("#searchForm").find("input[name='keyword']").val());
|
||||||
if(keyword === ""){
|
if (keyword === "") {
|
||||||
$(".search-empty").show();
|
$(".search-empty").show();
|
||||||
$("#searchList").html("");
|
$("#searchList").html("");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
$("#btnSearch").attr("disabled","disabled").find("i").removeClass("fa-search").addClass("loading");
|
$("#btnSearch").attr("disabled", "disabled").find("i").removeClass("fa-search").addClass("loading");
|
||||||
window.keyword = keyword;
|
window.keyword = keyword;
|
||||||
},
|
},
|
||||||
success : function (res) {
|
success : function (res) {
|
||||||
var html = "";
|
var html = "";
|
||||||
if(res.errcode === 0){
|
if (res.errcode === 0) {
|
||||||
for(var i in res.data){
|
for(var i in res.data) {
|
||||||
var item = res.data[i];
|
var item = res.data[i];
|
||||||
html += '<li><a href="javascript:;" title="' + item.doc_name + '" data-id="' + item.doc_id + '"> ' + item.doc_name + ' </a></li>';
|
html += '<li><a href="javascript:;" title="' + item.doc_name + '" data-id="' + item.doc_id + '"> ' + item.doc_name + ' </a></li>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(html !== "") {
|
if (html !== "") {
|
||||||
$(".search-empty").hide();
|
$(".search-empty").hide();
|
||||||
} else {
|
} else {
|
||||||
$(".search-empty").show();
|
$(".search-empty").show();
|
||||||
@ -204,8 +205,8 @@ $(function () {
|
|||||||
try {
|
try {
|
||||||
var $node = window.jsTree.jstree().get_selected();
|
var $node = window.jsTree.jstree().get_selected();
|
||||||
if (typeof $node === "object") {
|
if (typeof $node === "object") {
|
||||||
$node = window.jsTree.jstree().get_node({id: $node[0]});
|
$node = window.jsTree.jstree().get_node({ id: $node[0] });
|
||||||
events.trigger('article.open', {$url: $node.a_attr.href, $init: true, $id: $node.a_attr.id});
|
events.trigger('article.open', { $url: $node.a_attr.href, $init: true, $id: $node.a_attr.id });
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.log(e);
|
||||||
|
Loading…
Reference in New Issue
Block a user