view.js 11 KB

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