|
|
@@ -25,13 +25,18 @@ var temp = { |
|
|
|
|
|
|
|
$(document).ready(function () { |
|
|
|
|
|
|
|
// load the current page based on anchor |
|
|
|
change_page(); |
|
|
|
|
|
|
|
// initialise drop zone |
|
|
|
upload_zone_init(); |
|
|
|
|
|
|
|
// main page scroll event |
|
|
|
$(document).scroll(function () { |
|
|
|
page_home_scroll(); |
|
|
|
}); |
|
|
|
|
|
|
|
// modal left paging |
|
|
|
$('#autodoc_home_modal_left').mouseenter(function (e) { |
|
|
|
$(e.target).fadeTo("slow", 0.8); |
|
|
|
}) |
|
|
@@ -42,9 +47,11 @@ $(document).ready(function () { |
|
|
|
home_modal_page_prev(); |
|
|
|
}); |
|
|
|
|
|
|
|
$('#autodoc_home_modal_right').mouseenter(function (e) { |
|
|
|
$(e.target).fadeTo("slow", 0.8); |
|
|
|
}) |
|
|
|
// modal right paging |
|
|
|
$('#autodoc_home_modal_right') |
|
|
|
.mouseenter(function (e) { |
|
|
|
$(e.target).fadeTo("slow", 0.8); |
|
|
|
}) |
|
|
|
.mouseleave(function (e) { |
|
|
|
$(e.target).fadeTo("slow", 0.15); |
|
|
|
}) |
|
|
@@ -52,26 +59,29 @@ $(document).ready(function () { |
|
|
|
home_modal_page_next(); |
|
|
|
}); |
|
|
|
|
|
|
|
$('.autodoc_home_modal_size').click(function(e) { |
|
|
|
// modal resize buttons events |
|
|
|
$('.autodoc_home_modal_size').click(function (e) { |
|
|
|
$('.autodoc_home_modal_size').removeClass("active"); |
|
|
|
$(e.target).addClass("active"); |
|
|
|
home_modal_resize($(e.target).html()); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
$('span.autodoc_home_modal_name').click(function(e) { |
|
|
|
// click to rename page in modal |
|
|
|
$('span.autodoc_home_modal_name').click(function (e) { |
|
|
|
$(e.target).addClass('d-none'); |
|
|
|
$('input.autodoc_home_modal_name').removeClass('d-none'); |
|
|
|
}); |
|
|
|
|
|
|
|
$('input.autodoc_home_modal_name').change(function(e) { |
|
|
|
// [enter] event of modal name edit |
|
|
|
$('input.autodoc_home_modal_name').change(function (e) { |
|
|
|
var docid = $('#autodoc_home_modal').data('documentid'); |
|
|
|
document_update_name(docid, $(e.target).val(), docid); |
|
|
|
}); |
|
|
|
|
|
|
|
$('.autodoc_tag_color').click(function(e) { |
|
|
|
// tag add color events |
|
|
|
$('.autodoc_tag_color').click(function (e) { |
|
|
|
var btn = e.target; |
|
|
|
while($(btn).prop("tagName") != "BUTTON") { |
|
|
|
console.log(btn); |
|
|
|
while ($(btn).prop("tagName") != "BUTTON") { |
|
|
|
btn = $(btn).parent(); |
|
|
|
} |
|
|
|
|
|
|
@@ -83,9 +93,9 @@ $(document).ready(function () { |
|
|
|
|
|
|
|
$(btn).children('.autodoc_tag_btn_on').removeClass('d-none'); |
|
|
|
$(btn).children('.autodoc_tag_btn_off').addClass('d-none'); |
|
|
|
|
|
|
|
|
|
|
|
$(btn).parent().children().each(function(id,x) { |
|
|
|
|
|
|
|
$(btn).parent().children().each(function (id, x) { |
|
|
|
var myclass = 'badge-' + $(x).attr('data').split('_').pop(); |
|
|
|
$('#autodoc_tag_result').removeClass(myclass); |
|
|
|
}); |
|
|
@@ -95,26 +105,14 @@ $(document).ready(function () { |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
$('.NOPE_autodoc_tag_color').click(function(e) { |
|
|
|
|
|
|
|
$(e.target).parent().children().html('0'); |
|
|
|
$(e.target).html('1'); |
|
|
|
|
|
|
|
$(e.target).parent().children().each(function(id, x) { |
|
|
|
console.log(x); |
|
|
|
console.log($(x).attr('data')); |
|
|
|
$("#autodoc_tag_result").removeClass("badge-" + $(x).attr('data')); |
|
|
|
}); |
|
|
|
|
|
|
|
$("#autodoc_tag_result").addClass("badge-" + $(e.target).attr('data')); |
|
|
|
return false; |
|
|
|
}) |
|
|
|
|
|
|
|
$('.autodoc_tag_text').keyup(function(e) { |
|
|
|
// tag add text events |
|
|
|
$('.autodoc_tag_text').keyup(function (e) { |
|
|
|
$('#autodoc_tag_result').html($(e.target).val()); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
// anchor change event |
|
|
|
$(window).bind("hashchange", function () { |
|
|
|
change_page(); |
|
|
|
}); |
|
|
@@ -223,7 +221,7 @@ function document_load() { |
|
|
|
$(col) |
|
|
|
.find(".autodoc_template_home_name") |
|
|
|
.html(doc.name); |
|
|
|
|
|
|
|
|
|
|
|
$(col) |
|
|
|
.find(".autodoc_template_home_pages") |
|
|
|
.html(doc.pageId.length); |
|
|
@@ -453,15 +451,15 @@ function home_modal_page(pageNum) { |
|
|
|
var doc = $('#autodoc_home_modal').data('document'); |
|
|
|
var pageTotal = doc.pageId.length; |
|
|
|
|
|
|
|
if ( pageNum < 0 ) { |
|
|
|
pageNum=pageTotal-1; |
|
|
|
if (pageNum < 0) { |
|
|
|
pageNum = pageTotal - 1; |
|
|
|
} |
|
|
|
|
|
|
|
if ( pageNum > pageTotal - 1 ) { |
|
|
|
if (pageNum > pageTotal - 1) { |
|
|
|
pageNum = 0; |
|
|
|
} |
|
|
|
|
|
|
|
$('.autodoc_home_modal_page').html(pageNum+1); |
|
|
|
$('.autodoc_home_modal_page').html(pageNum + 1); |
|
|
|
$('#autodoc_home_modal').data('pageNum', pageNum); |
|
|
|
|
|
|
|
$('#autodoc_home_modal_img').attr('src', |
|
|
@@ -473,17 +471,17 @@ function home_modal_page(pageNum) { |
|
|
|
|
|
|
|
function home_modal_resize(size) { |
|
|
|
var newclass; |
|
|
|
|
|
|
|
|
|
|
|
$('#autodoc_home_modal').children().removeClass('modal-sm modal-lg modal-xl'); |
|
|
|
|
|
|
|
switch(size) { |
|
|
|
|
|
|
|
switch (size) { |
|
|
|
case "S": newclass = "modal-sm"; break; |
|
|
|
case "M": break; |
|
|
|
case "L": newclass = "modal-lg"; break; |
|
|
|
case "XL": newclass = "modal-xl"; break; |
|
|
|
} |
|
|
|
|
|
|
|
if ( newclass ) { |
|
|
|
if (newclass) { |
|
|
|
$('#autodoc_home_modal').children().addClass(newclass); |
|
|
|
} |
|
|
|
} |
|
|
@@ -531,7 +529,7 @@ function document_update_name(docid, name) { |
|
|
|
$.ajax({ |
|
|
|
type: "PATCH", |
|
|
|
url: conf.openapi + "/documents/" + docid + "?name=" + encodeURIComponent(name), |
|
|
|
success: function(data) { |
|
|
|
success: function (data) { |
|
|
|
$('span.autodoc_home_modal_name').removeClass('d-none'); |
|
|
|
$('input.autodoc_home_modal_name').addClass('d-none'); |
|
|
|
home_modal_open(docid); |