view.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. /**
  2. * @name UI View
  3. * @description Responsible to reflect data changes to the UI.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. view = {
  8. header: {
  9. show: function() {
  10. clearTimeout($(window).data("timeout"));
  11. if (visible.photo()) {
  12. lychee.imageview.removeClass("full");
  13. lychee.header.removeClass("hidden");
  14. lychee.loadingBar.css("opacity", 1);
  15. if ($("#imageview #image.small").length>0) {
  16. $("#imageview #image").css({
  17. marginTop: -1*($("#imageview #image").height()/2)+20
  18. });
  19. } else {
  20. $("#imageview #image").removeClass('full');
  21. }
  22. }
  23. },
  24. hide: function(e, delay) {
  25. if (delay===undefined) delay = 500;
  26. if (visible.photo()&&!visible.infobox()&&!visible.contextMenu()&&!visible.message()) {
  27. clearTimeout($(window).data("timeout"));
  28. $(window).data("timeout", setTimeout(function() {
  29. lychee.imageview.addClass("full");
  30. lychee.header.addClass("hidden");
  31. lychee.loadingBar.css("opacity", 0);
  32. if ($("#imageview #image.small").length>0) {
  33. $("#imageview #image").css({
  34. marginTop: -1*($("#imageview #image").height()/2)
  35. });
  36. } else {
  37. $("#imageview #image").addClass('full');
  38. }
  39. }, delay));
  40. }
  41. },
  42. mode: function(mode) {
  43. var albumID = album.getID();
  44. switch (mode) {
  45. case "albums":
  46. lychee.header.removeClass("view");
  47. $("#tools_album, #tools_photo").hide();
  48. $("#tools_albums").show();
  49. break;
  50. case "album":
  51. lychee.header.removeClass("view");
  52. $("#tools_albums, #tools_photo").hide();
  53. $("#tools_album").show();
  54. album.json.content === false ? $("#button_archive").hide() : $("#button_archive").show();
  55. if (albumID==="s"||albumID==="f") {
  56. $("#button_info_album, #button_trash_album, #button_share_album").hide();
  57. } else if (albumID==="0") {
  58. $("#button_info_album, #button_share_album").hide();
  59. $("#button_trash_album").show();
  60. } else {
  61. $("#button_info_album, #button_trash_album, #button_share_album").show();
  62. }
  63. break;
  64. case "photo":
  65. lychee.header.addClass("view");
  66. $("#tools_albums, #tools_album").hide();
  67. $("#tools_photo").show();
  68. break;
  69. }
  70. }
  71. },
  72. infobox: {
  73. show: function() {
  74. if (!visible.infobox()) $("body").append("<div id='infobox_overlay' class='fadeIn'></div>");
  75. lychee.infobox.addClass("active");
  76. },
  77. hide: function() {
  78. lychee.animate("#infobox_overlay", "fadeOut");
  79. setTimeout(function() { $("#infobox_overlay").remove() }, 300);
  80. lychee.infobox.removeClass("active");
  81. }
  82. },
  83. albums: {
  84. init: function() {
  85. view.albums.title();
  86. view.albums.content.init();
  87. },
  88. title: function() {
  89. lychee.setTitle("Albums", false);
  90. },
  91. content: {
  92. init: function() {
  93. var smartData = "",
  94. albumsData = "";
  95. /* Smart Albums */
  96. albums.parse(albums.json.unsortedAlbum);
  97. albums.parse(albums.json.publicAlbum);
  98. albums.parse(albums.json.starredAlbum);
  99. if (!lychee.publicMode) smartData = build.divider("Smart Albums") + build.album(albums.json.unsortedAlbum) + build.album(albums.json.starredAlbum) + build.album(albums.json.publicAlbum);
  100. /* Albums */
  101. if (albums.json.content) {
  102. if (!lychee.publicMode) albumsData = build.divider("Albums");
  103. $.each(albums.json.content, function() {
  104. albums.parse(this);
  105. albumsData += build.album(this);
  106. });
  107. }
  108. if (smartData===""&&albumsData==="") $("body").append(build.no_content("picture"));
  109. else lychee.content.html(smartData + albumsData);
  110. $("img[data-type!='svg']").retina();
  111. },
  112. title: function(albumID) {
  113. var prefix = "",
  114. longTitle = "",
  115. title = albums.json.content[albumID].title;
  116. if (albums.json.content[albumID].password) prefix = "<span class='icon-lock'></span> ";
  117. if (title.length>18) {
  118. longTitle = title;
  119. title = title.substr(0, 18) + "...";
  120. }
  121. $(".album[data-id='" + albumID + "'] .overlay h1")
  122. .html(prefix + title)
  123. .attr("title", longTitle);
  124. },
  125. delete: function(albumID) {
  126. $(".album[data-id='" + albumID + "']").css("opacity", 0).animate({
  127. width: 0,
  128. marginLeft: 0
  129. }, 300, function() {
  130. $(this).remove();
  131. if (albums.json.num<=0) lychee.animate(".divider:last-of-type", "fadeOut");
  132. });
  133. }
  134. }
  135. },
  136. album: {
  137. init: function() {
  138. album.parse();
  139. view.album.infobox();
  140. view.album.title();
  141. view.album.public();
  142. view.album.content.init();
  143. album.json.init = 1;
  144. },
  145. hide: function() {
  146. view.infobox.hide();
  147. },
  148. title: function() {
  149. if ((visible.album()||!album.json.init)&&!visible.photo()) {
  150. switch (album.getID()) {
  151. case "f":
  152. lychee.setTitle("Starred", false);
  153. break;
  154. case "s":
  155. lychee.setTitle("Public", false);
  156. break;
  157. case "0":
  158. lychee.setTitle("Unsorted", false);
  159. break;
  160. default:
  161. if (album.json.init) $("#infobox .attr_name").html(album.json.title + " " + build.editIcon("edit_title_album"));
  162. lychee.setTitle(album.json.title, true);
  163. break;
  164. }
  165. }
  166. },
  167. description: function() {
  168. $("#infobox .attr_description").html(album.json.description + " " + build.editIcon("edit_description_album"));
  169. },
  170. content: {
  171. init: function() {
  172. var photosData = "";
  173. $.each(album.json.content, function() {
  174. album.parse(this);
  175. photosData += build.photo(this);
  176. });
  177. lychee.content.html(photosData);
  178. $("img[data-type!='svg']").retina();
  179. },
  180. title: function(photoID) {
  181. var longTitle = "",
  182. title = album.json.content[photoID].title;
  183. if (title.length>18) {
  184. longTitle = title;
  185. title = title.substr(0, 18) + "...";
  186. }
  187. $(".photo[data-id='" + photoID + "'] .overlay h1")
  188. .html(title)
  189. .attr("title", longTitle);
  190. },
  191. star: function(photoID) {
  192. $(".photo[data-id='" + photoID + "'] .icon-star").remove();
  193. if (album.json.content[photoID].star==1) $(".photo[data-id='" + photoID + "']").append("<a class='badge red icon-star'></a>");
  194. },
  195. public: function(photoID) {
  196. $(".photo[data-id='" + photoID + "'] .icon-share").remove();
  197. if (album.json.content[photoID].public==1) $(".photo[data-id='" + photoID + "']").append("<a class='badge red icon-share'></a>");
  198. },
  199. delete: function(photoID) {
  200. $(".photo[data-id='" + photoID + "']").css("opacity", 0).animate({
  201. width: 0,
  202. marginLeft: 0
  203. }, 300, function() {
  204. $(this).remove();
  205. // Only when search is not active
  206. if (!visible.albums()) {
  207. album.json.num--;
  208. view.album.num();
  209. view.album.title();
  210. }
  211. });
  212. }
  213. },
  214. num: function() {
  215. $("#infobox .attr_images").html(album.json.num);
  216. },
  217. public: function() {
  218. if (album.json.public==1) {
  219. $("#button_share_album a").addClass("active");
  220. $("#button_share_album").attr("title", "Share Album");
  221. $(".photo .icon-share").remove();
  222. if (album.json.init) $("#infobox .attr_visibility").html("Public");
  223. } else {
  224. $("#button_share_album a").removeClass("active");
  225. $("#button_share_album").attr("title", "Make Public");
  226. if (album.json.init) $("#infobox .attr_visibility").html("Private");
  227. }
  228. },
  229. password: function() {
  230. if (album.json.password==1) $("#infobox .attr_password").html("Yes");
  231. else $("#infobox .attr_password").html("No");
  232. },
  233. infobox: function() {
  234. if ((visible.album()||!album.json.init)&&!visible.photo()) lychee.infobox.html(build.infoboxAlbum(album.json)).show();
  235. }
  236. },
  237. photo: {
  238. init: function() {
  239. photo.parse();
  240. view.photo.infobox();
  241. view.photo.title();
  242. view.photo.star();
  243. view.photo.public();
  244. view.photo.photo();
  245. photo.json.init = 1;
  246. },
  247. show: function() {
  248. // Change header
  249. lychee.content.addClass("view");
  250. view.header.mode("photo");
  251. // Make body not scrollable
  252. $("body").css("overflow", "hidden");
  253. // Fullscreen
  254. $(document)
  255. .bind("mouseenter", view.header.show)
  256. .bind("mouseleave", view.header.hide);
  257. lychee.animate(lychee.imageview, "fadeIn");
  258. },
  259. hide: function() {
  260. if (!visible.controls()) view.header.show();
  261. if (visible.infobox) view.infobox.hide();
  262. lychee.content.removeClass("view");
  263. view.header.mode("album");
  264. // Make body scrollable
  265. $("body").css("overflow", "auto");
  266. // Disable Fullscreen
  267. $(document)
  268. .unbind("mouseenter")
  269. .unbind("mouseleave");
  270. // Hide Photo
  271. lychee.animate(lychee.imageview, "fadeOut");
  272. setTimeout(function() {
  273. lychee.imageview.hide();
  274. view.album.infobox();
  275. }, 300);
  276. },
  277. title: function() {
  278. if (photo.json.init) $("#infobox .attr_name").html(photo.json.title + " " + build.editIcon("edit_title"));
  279. lychee.setTitle(photo.json.title, true);
  280. },
  281. description: function() {
  282. if (photo.json.init) $("#infobox .attr_description").html(photo.json.description + " " + build.editIcon("edit_description"));
  283. },
  284. star: function() {
  285. $("#button_star a").removeClass("icon-star-empty icon-star");
  286. if (photo.json.star==1) {
  287. // Starred
  288. $("#button_star a").addClass("icon-star");
  289. $("#button_star").attr("title", "Unstar Photo");
  290. } else {
  291. // Unstarred
  292. $("#button_star a").addClass("icon-star-empty");
  293. $("#button_star").attr("title", "Star Photo");
  294. }
  295. },
  296. public: function() {
  297. if (photo.json.public==1||photo.json.public==2) {
  298. // Photo public
  299. $("#button_share a").addClass("active");
  300. $("#button_share").attr("title", "Share Photo");
  301. if (photo.json.init) $("#infobox .attr_visibility").html("Public");
  302. } else {
  303. // Photo private
  304. $("#button_share a").removeClass("active");
  305. $("#button_share").attr("title", "Make Public");
  306. if (photo.json.init) $("#infobox .attr_visibility").html("Private");
  307. }
  308. },
  309. tags: function() {
  310. $("#infobox #tags").html(build.tags(photo.json.tags));
  311. },
  312. photo: function() {
  313. lychee.imageview.html(build.imageview(photo.json, photo.isSmall(), visible.controls()));
  314. if ((album.json&&album.json.content&&album.json.content[photo.getID()]&&album.json.content[photo.getID()].nextPhoto==="")||lychee.viewMode) $("a#next").hide();
  315. if ((album.json&&album.json.content&&album.json.content[photo.getID()]&&album.json.content[photo.getID()].previousPhoto==="")||lychee.viewMode) $("a#previous").hide();
  316. },
  317. infobox: function() {
  318. lychee.infobox.html(build.infoboxPhoto(photo.json)).show();
  319. }
  320. }
  321. };