view.js 11 KB

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