An unfinished system to manage all your paper documentation in an easy way.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. /* AutoDoc Javascript */
  2. var conf = {
  3. default_hash: "home",
  4. openapi: "/v1",
  5. pageinit: {
  6. home: "page_load_home()",
  7. upload: "page_load_upload()"
  8. },
  9. home: {
  10. width: 4,
  11. curpage: 0,
  12. end: 0
  13. },
  14. run: {
  15. "upload_handler": 0,
  16. "upload_status": 0
  17. }
  18. };
  19. var temp = {
  20. upload: [],
  21. documentid: null
  22. };
  23. $(document).ready(function () {
  24. change_page();
  25. upload_zone_init();
  26. $(document).scroll(function () {
  27. page_home_scroll();
  28. });
  29. $('#autodoc_home_modal_left').mouseenter(function (e) {
  30. $(e.target).fadeTo("slow", 0.8);
  31. })
  32. .mouseleave(function (e) {
  33. $(e.target).fadeTo("slow", 0.15);
  34. })
  35. .click(function (e) {
  36. home_modal_page_prev();
  37. });
  38. $('#autodoc_home_modal_right').mouseenter(function (e) {
  39. $(e.target).fadeTo("slow", 0.8);
  40. })
  41. .mouseleave(function (e) {
  42. $(e.target).fadeTo("slow", 0.15);
  43. })
  44. .click(function (e) {
  45. home_modal_page_next();
  46. });
  47. $('.autodoc_home_modal_size').click(function(e) {
  48. $('.autodoc_home_modal_size').removeClass("active");
  49. $(e.target).addClass("active");
  50. home_modal_resize($(e.target).html());
  51. });
  52. $('span.autodoc_home_modal_name').click(function(e) {
  53. $(e.target).addClass('d-none');
  54. $('input.autodoc_home_modal_name').removeClass('d-none');
  55. });
  56. $('input.autodoc_home_modal_name').change(function(e) {
  57. var docid = $('#autodoc_home_modal').data('documentid');
  58. document_update_name(docid, $(e.target).val(), docid);
  59. });
  60. $('.autodoc_tag_color').click(function(e) {
  61. $(e.target).parent().children().children().html('');
  62. $(e.target).children().html(' X');
  63. console.log($(e.target).attr('class'));
  64. $('#autodoc_tag_result').attr('class', $(e.target).attr('class'));
  65. return false;
  66. })
  67. $('.autodoc_tag_text').keypress(function(e) {
  68. $('#autodoc_tag_result').html($(e.target).html());
  69. });
  70. });
  71. $(window).bind("hashchange", function () {
  72. change_page();
  73. });
  74. function change_page() {
  75. var hash = document.location.hash.substr(1) || conf.default_hash;
  76. if (!$("#autodoc_tab_" + hash).length) {
  77. hash = conf.default_hash;
  78. }
  79. /* change menu highlights and content visibility */
  80. $("#autodoc_navbar")
  81. .find("a")
  82. .each(function (id, obj) {
  83. var curhash = $(obj)
  84. .attr("href")
  85. .substr(1);
  86. if (curhash == hash) {
  87. $(obj)
  88. .parent()
  89. .addClass("active");
  90. $("#autodoc_tab_" + curhash).removeClass("d-none");
  91. } else {
  92. $(obj)
  93. .parent()
  94. .removeClass("active");
  95. $("#autodoc_tab_" + curhash).addClass("d-none");
  96. }
  97. });
  98. if (conf.pageinit[hash]) {
  99. eval(conf.pageinit[hash]);
  100. }
  101. }
  102. function isvisible(obj) {
  103. var top_of_fileent = $(obj).offset().top;
  104. var bottom_of_fileent = $(obj).offset().top + $(obj).outerHeight();
  105. var bottom_of_screen = $(window).scrollTop() + $(window).innerHeight();
  106. var top_of_screen = $(window).scrollTop();
  107. if (bottom_of_screen > top_of_fileent && top_of_screen < bottom_of_fileent) {
  108. return true;
  109. }
  110. return false;
  111. }
  112. function page_load_home() {
  113. document_load();
  114. }
  115. function page_load_upload() {
  116. upload_status();
  117. }
  118. function document_load() {
  119. if (conf.home.curpage == 0) {
  120. $("#autodoc_home_body").html("");
  121. }
  122. var tmpl = $("#autodoc_template_home");
  123. var row = $(tmpl)
  124. .find(".autodoc_template_home_row")
  125. .clone();
  126. $.getJSON(
  127. conf.openapi +
  128. "/documents?pageSize=" +
  129. conf.home.width +
  130. "&pageIndex=" +
  131. conf.home.curpage,
  132. null,
  133. function (data, textStatus, jqXHR) {
  134. // last document was loaded, stop scrolling
  135. if (data.length < conf.home.width) {
  136. conf.home.end = 1;
  137. }
  138. $.each(data, function (id, doc) {
  139. var col = $(tmpl)
  140. .find(".autodoc_template_home_col")
  141. .clone();
  142. $(col)
  143. .find(".autodoc_template_home_img")
  144. .attr(
  145. "src",
  146. conf.openapi +
  147. "/documents/" +
  148. doc.id +
  149. "/image?maxWidth=" +
  150. Math.floor(1000 / conf.home.width)
  151. );
  152. $(col).find(".autodoc_template_home_img").data("documentId", doc.id);
  153. $(col).find(".autodoc_template_home_img").on('click', function (e) {
  154. home_modal_open($(e.target).data("documentId"));
  155. });
  156. $(col)
  157. .find(".autodoc_template_home_owner")
  158. .html(doc.owner);
  159. $(col)
  160. .find(".autodoc_template_home_created")
  161. .html(doc.created);
  162. $(col)
  163. .find(".autodoc_template_home_name")
  164. .html(doc.name);
  165. $(col)
  166. .find(".autodoc_template_home_pages")
  167. .html(doc.pageId.length);
  168. $.each(doc.tags, function (id, tag) {
  169. $(col)
  170. .find(".autodoc_template_home_tag")
  171. .after(
  172. $(col)
  173. .find(".autodoc_template_home_tag")
  174. .clone()
  175. .html(tag)
  176. );
  177. });
  178. $(row).append(col);
  179. });
  180. $("#autodoc_home_body").append(row);
  181. // continue to load until out of browser.
  182. page_home_scroll();
  183. }
  184. );
  185. }
  186. function page_home_scroll() {
  187. // don't scroll if we've loaded the last document
  188. if (conf.home.end) {
  189. return;
  190. }
  191. if (isvisible($(".autodoc_template_home_col").last())) {
  192. console.log("scroll to page " + conf.home.curpage);
  193. conf.home.curpage++;
  194. document_load();
  195. }
  196. }
  197. function upload_zone_init() {
  198. $(window).on("dragover dragleave drop", function (e) { e.preventDefault() });
  199. $('.autodoc_upload_zone').on({
  200. dragenter: upload_zone_highlight,
  201. dragleave: upload_zone_normal,
  202. dragover: upload_zone_over,
  203. drop: upload_zone_drop
  204. });
  205. }
  206. function upload_zone_highlight(e) {
  207. $(e.target).addClass('autodoc_upload_zone_hover');
  208. }
  209. function upload_zone_over(e) {
  210. return true;
  211. }
  212. function upload_zone_normal(e) {
  213. $(e.target).removeClass('autodoc_upload_zone_hover');
  214. }
  215. function upload_zone_drop(e) {
  216. var ev = e.originalEvent;
  217. $.each(ev.dataTransfer.files, function (id, file) {
  218. console.log(file);
  219. var fileid = temp.upload.length;
  220. temp.upload.push({
  221. progress: 0,
  222. error: null,
  223. obj: file
  224. });
  225. upload_zone_normal(e);
  226. });
  227. if (conf.run.upload_handler == 0) {
  228. upload_handler();
  229. }
  230. if (conf.run.upload_status == 0) {
  231. upload_status();
  232. }
  233. }
  234. function upload_handler() {
  235. var stop = 1;
  236. conf.run.upload_handler = 1;
  237. console.log("upload_handler");
  238. if (temp.documentid == null) {
  239. console.log("creating documentId");
  240. $.post(conf.openapi + "/documents", {}, function (data) {
  241. temp.documentid = data.id;
  242. });
  243. stop = 0;
  244. }
  245. else {
  246. for (var id = 0; id < temp.upload.length; id++) {
  247. var file = temp.upload[id];
  248. if (file.progress != 100) {
  249. if (file.progress == 0) {
  250. if (file.obj.type != 'application/pdf' && file.obj.type != 'image/png' && file.obj.type != 'image/jpeg') {
  251. file['progress'] = 100;
  252. file['error'] = 'invalid file type';
  253. }
  254. else {
  255. var reader = new FileReader();
  256. file['progress'] = 1;
  257. $(reader).on('load', id, upload_read_event);
  258. $(reader).on('loadstart', id, upload_read_event);
  259. $(reader).on('loadend', id, upload_read_event);
  260. $(reader).on('progress', id, upload_read_event);
  261. $(reader).on('error', id, upload_read_event);
  262. $(reader).on('abort', id, upload_read_event);
  263. reader.readAsArrayBuffer(file.obj);
  264. }
  265. }
  266. stop = 0;
  267. break;
  268. }
  269. }
  270. }
  271. if (stop) {
  272. conf.run.upload_handler = 0;
  273. }
  274. else {
  275. setTimeout(function () { upload_handler(); }, 500);
  276. }
  277. }
  278. function upload_read_event(e) {
  279. if (e.type == 'progress') {
  280. if (e.lengthComputable) {
  281. var progress = Math.floor(e.originalEvent.loaded / e.originalEvent.total * 50);
  282. if (progress < 1) { progress = 1; }
  283. if (progress > 49) { progress = 49; }
  284. temp.upload[e.data]['progress'] = progress;
  285. }
  286. }
  287. else if (e.type == 'load') {
  288. temp.upload[e.data]['progress'] = 50;
  289. console.log(e.target.result);
  290. console.log("upload_id", e.data);
  291. $.ajax({
  292. type: 'POST',
  293. url: conf.openapi + "/documents/" + temp.documentid + "/data",
  294. data: e.target.result,
  295. contentType: temp.upload[e.data].obj.type,
  296. context: { id: e.data },
  297. processData: false,
  298. xhr: function () {
  299. var xhr = $.ajaxSettings.xhr();
  300. xhr.upload.addEventListener("progress", (function () {
  301. var id = e.data;
  302. return function (evt) {
  303. if (evt.lengthComputable) {
  304. var progress = Math.floor(evt.loaded / evt.total * 50);
  305. if (progress < 1) { progress = 1; }
  306. if (progress > 49) { progress = 49; }
  307. temp.upload[id].progress = 50 + progress;
  308. // console.log("upload_progress_event", evt);
  309. }
  310. }
  311. })(), false);
  312. return xhr;
  313. },
  314. success: function (data, status, xhr) {
  315. console.log("upload_success_this", this);
  316. temp.upload[this.id].progress = 100;
  317. }
  318. });
  319. }
  320. }
  321. function upload_status() {
  322. var stop = 1;
  323. conf.run.upload_status = 1;
  324. $.each(temp.upload, function (id, file) {
  325. if (!$('.autodoc_upload_status_' + id).length) {
  326. var obj = $(".autodoc_template_progress").children().clone();
  327. $(obj).addClass('autodoc_upload_status_' + id);
  328. $('.autodoc_upload_status').append(obj);
  329. stop = 0;
  330. }
  331. var obj = $('.autodoc_upload_status_' + id).children();
  332. if (file.error != null) {
  333. $(obj).html(file.obj.name + ': ' + file.error);
  334. $(obj).css('width', '100%');
  335. $(obj).addClass('bg-danger');
  336. $(obj).removeClass("progress-bar-animated");
  337. $(obj).removeClass("progress-bar-striped");
  338. }
  339. else if (file.progress == 100) {
  340. $(obj).html(file.obj.name);
  341. $(obj).css('width', '100%');
  342. $(obj).addClass('bg-success');
  343. $(obj).removeClass('progress-bar-animated');
  344. $(obj).removeClass("progress-bar-striped");
  345. }
  346. else if (file.progress < 50) {
  347. $(obj).html(file.obj.name + ': ' + 'reading file');
  348. $(obj).css('width', file.progress + '%');
  349. stop = 0;
  350. }
  351. else {
  352. $(obj).html(file.obj.name + ': ' + 'sending file');
  353. $(obj).css('width', file.progress + '%');
  354. stop = 0;
  355. }
  356. });
  357. if (stop) {
  358. conf.run.upload_status = 0;
  359. }
  360. else {
  361. setTimeout(function () { upload_status(); }, 100);
  362. }
  363. }
  364. function home_modal_page(pageNum) {
  365. var doc = $('#autodoc_home_modal').data('document');
  366. var pageTotal = doc.pageId.length;
  367. if ( pageNum < 0 ) {
  368. pageNum=pageTotal-1;
  369. }
  370. if ( pageNum > pageTotal - 1 ) {
  371. pageNum = 0;
  372. }
  373. $('.autodoc_home_modal_page').html(pageNum+1);
  374. $('#autodoc_home_modal').data('pageNum', pageNum);
  375. $('#autodoc_home_modal_img').attr('src',
  376. conf.openapi +
  377. "/pages/" +
  378. doc.pageId[pageNum] +
  379. "/image");
  380. }
  381. function home_modal_resize(size) {
  382. var newclass;
  383. $('#autodoc_home_modal').children().removeClass('modal-sm modal-lg modal-xl');
  384. switch(size) {
  385. case "S": newclass = "modal-sm"; break;
  386. case "M": break;
  387. case "L": newclass = "modal-lg"; break;
  388. case "XL": newclass = "modal-xl"; break;
  389. }
  390. if ( newclass ) {
  391. $('#autodoc_home_modal').children().addClass(newclass);
  392. }
  393. }
  394. function home_modal_page_prev() {
  395. home_modal_page(
  396. $('#autodoc_home_modal').data('pageNum') - 1);
  397. }
  398. function home_modal_page_next() {
  399. home_modal_page(
  400. $('#autodoc_home_modal').data('pageNum') + 1);
  401. }
  402. function home_modal_open(docid) {
  403. $.getJSON(conf.openapi + "/documents/" + docid, function (data) {
  404. $('#autodoc_home_modal').data('document', data);
  405. $('#autodoc_home_modal').data('documentid', docid);
  406. var pageNum;
  407. for (var i = 0; i < data.pageId.length; i++) {
  408. if (data.pageId[i] == data.primaryPage) {
  409. pageNum = i;
  410. break;
  411. }
  412. }
  413. $('span.autodoc_home_modal_name').html(data.name ? data.name : 'n/a');
  414. $('input.autodoc_home_modal_name').val(data.name ? data.name : '');
  415. $('.autodoc_home_modal_created').html(data.created);
  416. $('.autodoc_home_modal_languages').html(data.languages.join(' '));
  417. $('.autodoc_home_modal_pages').html(data.pageId.length);
  418. $('.autodoc_home_modal_owner').html(data.owner);
  419. home_modal_page(pageNum);
  420. $('#autodoc_home_modal').modal('show');
  421. });
  422. }
  423. function home_modal_close(docid) {
  424. $('#autodoc_home_modal').modal('hide');
  425. }
  426. function document_update_name(docid, name) {
  427. $.ajax({
  428. type: "PATCH",
  429. url: conf.openapi + "/documents/" + docid + "?name=" + encodeURIComponent(name),
  430. success: function(data) {
  431. $('span.autodoc_home_modal_name').removeClass('d-none');
  432. $('input.autodoc_home_modal_name').addClass('d-none');
  433. home_modal_open(docid);
  434. }
  435. });
  436. }