init.js 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /**
  2. * @name Init Module
  3. * @author Tobias Reich
  4. * @copyright 2014 by Tobias Reich
  5. */
  6. $(document).ready(function(){
  7. /* Event Name */
  8. var event_name = (mobileBrowser()) ? "touchend" : "click";
  9. /* Disable ContextMenu */
  10. $(document).bind("contextmenu", function(e) { e.preventDefault() });
  11. /* Tooltips */
  12. if (!mobileBrowser()) $(".tools").tipsy({gravity: 'n', fade: false, delayIn: 0, opacity: 1});
  13. /* Multiselect */
  14. $("#content").on("mousedown", multiselect.show);
  15. $(document).on("mouseup", multiselect.getSelection);
  16. /* Header */
  17. $("#hostedwith").on(event_name, function() { window.open(lychee.website,"_newtab") });
  18. $("#button_signin").on(event_name, lychee.loginDialog);
  19. $("#button_settings").on(event_name, contextMenu.settings);
  20. $("#button_share").on(event_name, function(e) {
  21. if (photo.json.public==1||photo.json.public==2) contextMenu.sharePhoto(photo.getID(), e);
  22. else photo.setPublic(photo.getID(), e);
  23. });
  24. $("#button_share_album").on(event_name, function(e) {
  25. if (album.json.public==1) contextMenu.shareAlbum(album.getID(), e);
  26. else modal.show("Share Album", "All photos inside this album will be public and visible for everyone. Existing public photos will have the same sharing permission as this album. Are your sure you want to share this album? <input class='text' type='password' placeholder='password (optional)' value=''>", [["Share Album", function() { album.setPublic(album.getID(), e) }], ["Cancel", function() {}]]);
  27. });
  28. $("#button_more").on(event_name, function(e) { contextMenu.photoMore(photo.getID(), e) });
  29. $("#button_trash_album").on(event_name, function() { album.delete([album.getID()]) });
  30. $("#button_move").on(event_name, function(e) { contextMenu.move([photo.getID()], e) });
  31. $("#button_trash").on(event_name, function() { photo.delete([photo.getID()]) });
  32. $("#button_info_album").on(event_name, function() { view.infobox.show() });
  33. $("#button_info").on(event_name, function() { view.infobox.show() });
  34. $("#button_archive").on(event_name, function() { album.getArchive(album.getID()) });
  35. $("#button_star").on(event_name, function() { photo.setStar([photo.getID()]) });
  36. /* Search */
  37. $("#search").on("keyup click", function() { search.find($(this).val()) });
  38. /* Clear Search */
  39. $("#clearSearch").on(event_name, function () {
  40. $("#search").focus();
  41. search.reset();
  42. });
  43. /* Back Buttons */
  44. $("#button_back_home").on(event_name, function() { lychee.goto("") });
  45. $("#button_back").on(event_name, function() { lychee.goto(album.getID()) });
  46. /* Image View */
  47. lychee.imageview
  48. .on(event_name, ".arrow_wrapper.previous", photo.previous)
  49. .on(event_name, ".arrow_wrapper.next", photo.next);
  50. /* Infobox */
  51. $("#infobox")
  52. .on(event_name, ".header a", function() { view.infobox.hide() })
  53. .on(event_name, "#edit_title_album", function() { album.setTitle([album.getID()]) })
  54. .on(event_name, "#edit_description_album", function() { album.setDescription(album.getID()) })
  55. .on(event_name, "#edit_title", function() { photo.setTitle([photo.getID()]) })
  56. .on(event_name, "#edit_description", function() { photo.setDescription(photo.getID()) })
  57. .on(event_name, "#edit_tags", function() { photo.editTags([photo.getID()]) })
  58. .on(event_name, "#tags .tag span", function() { photo.deleteTag(photo.getID(), $(this).data('index')) });
  59. /* Keyboard */
  60. Mousetrap
  61. .bind('u', function() { $("#upload_files").click() })
  62. .bind('s', function() { if (visible.photo()) $("#button_star").click() })
  63. .bind('left', function() { if (visible.photo()) $("#imageview a#previous").click() })
  64. .bind('right', function() { if (visible.photo()) $("#imageview a#next").click() })
  65. .bind('command+backspace', function() {
  66. if (visible.photo()&&!visible.message()) photo.delete([photo.getID()]);
  67. else if (visible.album()&&!visible.message()) album.delete([album.getID()]);
  68. })
  69. .bind('i', function() {
  70. if (visible.infobox()) view.infobox.hide();
  71. else if (!visible.albums()) view.infobox.show();
  72. });
  73. Mousetrap.bindGlobal('enter', function() {
  74. if ($(".message .button.active").length) $(".message .button.active").addClass("pressed").click()
  75. });
  76. Mousetrap.bindGlobal(['esc', 'command+up'], function(e) {
  77. e.preventDefault();
  78. if (visible.message()&&$(".message .close").length>0) modal.close();
  79. else if (visible.contextMenu()) contextMenu.close();
  80. else if (visible.infobox()) view.infobox.hide();
  81. else if (visible.photo()) lychee.goto(album.getID());
  82. else if (visible.album()) lychee.goto("");
  83. else if (visible.albums()&&$("#search").val().length!==0) search.reset();
  84. });
  85. /* Fullscreen on mobile */
  86. if (mobileBrowser()) {
  87. $(document).on("touchend", "#image", function(e) {
  88. if (swipe.obj===null||(swipe.offset>=-5&&swipe.offset<=5)) {
  89. if (visible.controls()) view.header.hide(e, 0);
  90. else view.header.show();
  91. }
  92. });
  93. }
  94. /* Swipe on mobile */
  95. if (mobileBrowser()) {
  96. $(document).swipe()
  97. .on("swipeStart", function(e) {
  98. swipe.start($("#image"));
  99. })
  100. .on('swipeMove', function(e) {
  101. swipe.move(e.swipe);
  102. })
  103. .on('swipeEnd', function(e) {
  104. swipe.stop(e.swipe, photo.previous, photo.next);
  105. });
  106. }
  107. /* Document */
  108. $(document)
  109. /* Login */
  110. .on("keyup", "#password", function() { if ($(this).val().length>0) $(this).removeClass("error") })
  111. /* Header */
  112. .on(event_name, "#title.editable", function() {
  113. if (visible.photo()) photo.setTitle([photo.getID()]);
  114. else album.setTitle([album.getID()]);
  115. })
  116. /* Navigation */
  117. .on("click", ".album", function() { lychee.goto($(this).attr("data-id")) })
  118. .on("click", ".photo", function() { lychee.goto(album.getID() + "/" + $(this).attr("data-id")) })
  119. /* Modal */
  120. .on(event_name, ".message .close", modal.close)
  121. .on(event_name, ".message .button:first", function() { if (modal.fns!==null) modal.fns[0](); if (!visible.signin()) modal.close() })
  122. .on(event_name, ".message .button:last", function() { if (modal.fns!==null) modal.fns[1](); if (!visible.signin()) modal.close() })
  123. /* Add Dialog */
  124. .on(event_name, ".button_add", function(e) { contextMenu.add(e) })
  125. /* Upload */
  126. .on("change", "#upload_files", function() { modal.close(); upload.start.local(this.files) })
  127. /* Context Menu */
  128. .on("contextmenu", ".photo", function(e) { contextMenu.photo(photo.getID(), e) })
  129. .on("contextmenu", ".album", function(e) { contextMenu.album(album.getID(), e) })
  130. .on(event_name, ".contextmenu_bg", contextMenu.close)
  131. .on("contextmenu", ".contextmenu_bg", contextMenu.close)
  132. /* Infobox */
  133. .on(event_name, "#infobox_overlay", view.infobox.hide)
  134. /* Upload */
  135. .on("dragover", function(e) { e.preventDefault(); }, false)
  136. .on("drop", function(e) {
  137. e.stopPropagation();
  138. e.preventDefault();
  139. if (e.originalEvent.dataTransfer.files.length>0) upload.start.local(e.originalEvent.dataTransfer.files);
  140. else if (e.originalEvent.dataTransfer.getData('Text').length>3) upload.start.url(e.originalEvent.dataTransfer.getData('Text'));
  141. return true;
  142. });
  143. /* Init */
  144. lychee.init();
  145. });