build.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. /**
  2. * @name Build Module
  3. * @description This module is used to generate HTML-Code.
  4. * @author Tobias Reich
  5. * @copyright 2014 by Tobias Reich
  6. */
  7. build = {
  8. divider: function(title) {
  9. return "<div class='divider fadeIn'><h1>" + title + "</h1></div>";
  10. },
  11. editIcon: function(id) {
  12. return "<div id='" + id + "' class='edit'><a class='icon-pencil'></a></div>";
  13. },
  14. multiselect: function(top, left) {
  15. return "<div id='multiselect' style='top: " + top + "px; left: " + left + "px;'></div>";
  16. },
  17. album: function(albumJSON) {
  18. if (!albumJSON) return "";
  19. var album = "",
  20. longTitle = "",
  21. title = albumJSON.title;
  22. if (title.length>18) {
  23. title = albumJSON.title.substr(0, 18) + "...";
  24. longTitle = albumJSON.title;
  25. }
  26. typeThumb0 = albumJSON.thumb0.split('.').pop();
  27. typeThumb1 = albumJSON.thumb1.split('.').pop();
  28. typeThumb2 = albumJSON.thumb2.split('.').pop();
  29. album += "<div class='album' data-id='" + albumJSON.id + "' data-password='" + albumJSON.password + "'>";
  30. album += "<img src='" + albumJSON.thumb2 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb2 + "'>";
  31. album += "<img src='" + albumJSON.thumb1 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb1 + "'>";
  32. album += "<img src='" + albumJSON.thumb0 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb0 + "'>";
  33. album += "<div class='overlay'>";
  34. if (albumJSON.password&&!lychee.publicMode) album += "<h1><span class='icon-lock'></span> " + title + "</h1>";
  35. else album += "<h1 title='" + longTitle + "'>" + title + "</h1>";
  36. album += "<a>" + albumJSON.sysdate + "</a>";
  37. album += "</div>";
  38. if (!lychee.publicMode) {
  39. if(albumJSON.star===1) album += "<a class='badge red icon-star'></a>";
  40. if(albumJSON.public===1) album += "<a class='badge red icon-share'></a>";
  41. if(albumJSON.unsorted===1) album += "<a class='badge red icon-reorder'></a>";
  42. if(albumJSON.recent===1) album += "<a class='badge red icon-time'></a>";
  43. }
  44. album += "</div>";
  45. return album;
  46. },
  47. photo: function(photoJSON) {
  48. if (!photoJSON) return "";
  49. var photo = "",
  50. longTitle = "",
  51. title = photoJSON.title;
  52. if (title.length>18) {
  53. title = photoJSON.title.substr(0, 18) + "...";
  54. longTitle = photoJSON.title;
  55. }
  56. photo += "<div class='photo' data-album-id='" + photoJSON.album + "' data-id='" + photoJSON.id + "'>";
  57. photo += "<img src='" + photoJSON.thumbUrl + "' width='200' height='200' alt='thumb'>";
  58. photo += "<div class='overlay'>";
  59. photo += "<h1 title='" + longTitle + "'>" + title + "</h1>";
  60. if (photoJSON.cameraDate==1) {
  61. photo += "<a><span class='icon-camera' title='Photo Date'></span>" + photoJSON.sysdate + "</a>";
  62. } else {
  63. photo += "<a>" + photoJSON.sysdate + "</a>";
  64. }
  65. photo += "</div>";
  66. if (photoJSON.star==1) photo += "<a class='badge red icon-star'></a>";
  67. if (!lychee.publicMode&&photoJSON.public==1&&album.json.public!=1) photo += "<a class='badge red icon-share'></a>";
  68. photo += "</div>";
  69. return photo;
  70. },
  71. imageview: function(photoJSON, isSmall, visibleControls) {
  72. if (!photoJSON) return "";
  73. var view = "";
  74. view += "<div class='arrow_wrapper previous'><a id='previous' class='icon-caret-left'></a></div>";
  75. view += "<div class='arrow_wrapper next'><a id='next' class='icon-caret-right'></a></div>";
  76. if (isSmall) {
  77. if (visibleControls)
  78. view += "<div id='image' class='small' style='background-image: url(" + photoJSON.url + "); width: " + photoJSON.width + "px; height: " + photoJSON.height + "px; margin-top: -" + parseInt(photoJSON.height/2-20) + "px; margin-left: -" + photoJSON.width/2 + "px;'></div>";
  79. else
  80. view += "<div id='image' class='small' style='background-image: url(" + photoJSON.url + "); width: " + photoJSON.width + "px; height: " + photoJSON.height + "px; margin-top: -" + parseInt(photoJSON.height/2) + "px; margin-left: -" + photoJSON.width/2 + "px;'></div>";
  81. } else {
  82. if (visibleControls)
  83. view += "<div id='image' style='background-image: url(" + photoJSON.url + ")'></div>";
  84. else
  85. view += "<div id='image' style='background-image: url(" + photoJSON.url + ");' class='full'></div>";
  86. }
  87. return view;
  88. },
  89. no_content: function(typ) {
  90. var no_content = "";
  91. no_content += "<div class='no_content fadeIn'>";
  92. no_content += "<a class='icon icon-" + typ + "'></a>";
  93. if (typ==="search") no_content += "<p>No results</p>";
  94. else if (typ==="picture") no_content += "<p>No public albums</p>";
  95. else if (typ==="cog") no_content += "<p>No Configuration!</p>";
  96. no_content += "</div>";
  97. return no_content;
  98. },
  99. modal: function(title, text, button, marginTop, closeButton) {
  100. var modal = "",
  101. custom_style = "";
  102. if (marginTop) custom_style = "style='margin-top: " + marginTop + "px;'";
  103. modal += "<div class='message_overlay fadeIn'>";
  104. modal += "<div class='message center'" + custom_style + ">";
  105. modal += "<h1>" + title + "</h1>";
  106. if (closeButton!==false) {
  107. modal += "<a class='close icon-remove-sign'></a>";
  108. }
  109. modal += "<p>" + text + "</p>";
  110. $.each(button, function(index) {
  111. if (this[0]!=="") {
  112. if (index===0) modal += "<a class='button active'>" + this[0] + "</a>";
  113. else modal += "<a class='button'>" + this[0] + "</a>";
  114. }
  115. });
  116. modal += "</div>";
  117. modal += "</div>";
  118. return modal;
  119. },
  120. signInModal: function() {
  121. var modal = "";
  122. modal += "<div class='message_overlay'>";
  123. modal += "<div class='message center'>";
  124. modal += "<h1><a class='icon-lock'></a> Sign In</h1>";
  125. modal += "<a class='close icon-remove-sign'></a>";
  126. modal += "<div class='sign_in'>";
  127. modal += "<input id='username' type='text' name='' value='' placeholder='username'>";
  128. modal += "<input id='password' type='password' name='' value='' placeholder='password'>";
  129. modal += "</div>";
  130. modal += "<div id='version'>Version " + lychee.version + "<span> &#8211; <a target='_blank' href='" + lychee.updateURL + "'>Update available!</a><span></div>";
  131. modal += "<a onclick='lychee.login()' class='button active'>Sign in</a>";
  132. modal += "</div>";
  133. modal += "</div>";
  134. return modal;
  135. },
  136. uploadModal: function(icon, text) {
  137. var modal = "";
  138. modal += "<div class='upload_overlay fadeIn'>";
  139. modal += "<div class='upload_message center'>";
  140. modal += "<a class='icon-" + icon + "'></a>";
  141. if (text!==undefined) modal += "<p>" + text + "</p>";
  142. else modal += "<div class='progressbar'><div></div></div>";
  143. modal += "</div>";
  144. modal += "</div>";
  145. return modal;
  146. },
  147. contextMenu: function(items) {
  148. var menu = "";
  149. menu += "<div class='contextmenu_bg'></div>";
  150. menu += "<div class='contextmenu'>";
  151. menu += "<table>";
  152. menu += "<tbody>";
  153. $.each(items, function(index) {
  154. if (items[index][0]==="separator"&&items[index][1]===-1) menu += "<tr class='separator'></tr>";
  155. else if (items[index][1]===-1) menu += "<tr class='no_hover'><td>" + items[index][0] + "</td></tr>";
  156. else if (items[index][2]!=undefined) menu += "<tr><td onclick='" + items[index][2] + "; window.contextMenu.close();'>" + items[index][0] + "</td></tr>";
  157. else menu += "<tr><td onclick='window.contextMenu.fns[" + items[index][1] + "](); window.contextMenu.close();'>" + items[index][0] + "</td></tr>";
  158. });
  159. menu += "</tbody>";
  160. menu += "</table>";
  161. menu += "</div>";
  162. return menu;
  163. },
  164. tags: function(tags, forView) {
  165. var html = "",
  166. editTagsHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_tags");
  167. if (tags!=="") {
  168. tags = tags.split(",");
  169. tags.forEach(function(tag, index, array) {
  170. html += "<a class='tag'>" + tag + "<span class='icon-remove' data-index='" + index + "'></span></a>";
  171. });
  172. html += editTagsHTML;
  173. } else {
  174. html = "<div class='empty'>No Tags" + editTagsHTML + "</div>";
  175. }
  176. return html;
  177. },
  178. infoboxPhoto: function(photoJSON, forView) {
  179. if (!photoJSON) return "";
  180. var infobox = "",
  181. public,
  182. editTitleHTML,
  183. editDescriptionHTML,
  184. infos;
  185. infobox += "<div class='header'><h1>About</h1><a class='icon-remove-sign'></a></div>";
  186. infobox += "<div class='wrapper'>";
  187. switch (photoJSON.public) {
  188. case "0":
  189. public = "Private";
  190. break;
  191. case "1":
  192. public = "Public";
  193. break;
  194. case "2":
  195. public = "Public (Album)";
  196. break;
  197. default:
  198. public = "-";
  199. break;
  200. }
  201. editTitleHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_title");
  202. editDescriptionHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_description");
  203. infos = [
  204. ["", "Basics"],
  205. ["Title", photoJSON.title + editTitleHTML],
  206. ["Uploaded", photoJSON.sysdate],
  207. ["Description", photoJSON.description + editDescriptionHTML],
  208. ["", "Image"],
  209. ["Size", photoJSON.size],
  210. ["Format", photoJSON.type],
  211. ["Resolution", photoJSON.width + " x " + photoJSON.height],
  212. ["Tags", build.tags(photoJSON.tags, forView)]
  213. ];
  214. if ((photoJSON.takestamp+photoJSON.make+photoJSON.model+photoJSON.shutter+photoJSON.aperture+photoJSON.focal+photoJSON.iso)!=="null") {
  215. infos = infos.concat([
  216. ["", "Camera"],
  217. ["Captured", photoJSON.takedate],
  218. ["Make", photoJSON.make],
  219. ["Type/Model", photoJSON.model],
  220. ["Shutter Speed", photoJSON.shutter],
  221. ["Aperture", photoJSON.aperture],
  222. ["Focal Length", photoJSON.focal],
  223. ["ISO", photoJSON.iso]
  224. ]);
  225. }
  226. infos = infos.concat([
  227. ["", "Share"],
  228. ["Visibility", public]
  229. ]);
  230. $.each(infos, function(index) {
  231. if (infos[index][1]===""||infos[index][1]===undefined||infos[index][1]===null) infos[index][1] = "-";
  232. switch (infos[index][0]) {
  233. case "": // Separator
  234. infobox += "</table>";
  235. infobox += "<div class='separator'><h1>" + infos[index][1] + "</h1></div>";
  236. infobox += "<table>";
  237. break;
  238. case "Tags": // Tags
  239. if (forView!==true&&!lychee.publicMode) {
  240. infobox += "</table>";
  241. infobox += "<div class='separator'><h1>" + infos[index][0] + "</h1></div>";
  242. infobox += "<div id='tags'>" + infos[index][1] + "</div>";
  243. }
  244. break;
  245. default: // Item
  246. infobox += "<tr>";
  247. infobox += "<td>" + infos[index][0] + "</td>";
  248. infobox += "<td class='attr_" + infos[index][0].toLowerCase() + "'>" + infos[index][1] + "</td>";
  249. infobox += "</tr>";
  250. break;
  251. }
  252. });
  253. infobox += "</table>";
  254. infobox += "<div class='bumper'></div>";
  255. infobox += "</div>";
  256. return infobox;
  257. },
  258. infoboxAlbum: function(albumJSON, forView) {
  259. if (!albumJSON) return "";
  260. var infobox = "",
  261. public,
  262. password,
  263. editTitleHTML,
  264. editDescriptionHTML,
  265. infos;
  266. infobox += "<div class='header'><h1>About</h1><a class='icon-remove-sign'></a></div>";
  267. infobox += "<div class='wrapper'>";
  268. switch (albumJSON.public) {
  269. case "0":
  270. public = "Private";
  271. break;
  272. case "1":
  273. public = "Public";
  274. break;
  275. default:
  276. public = "-";
  277. break;
  278. }
  279. switch (albumJSON.password) {
  280. case false:
  281. password = "No";
  282. break;
  283. case true:
  284. password = "Yes";
  285. break;
  286. default:
  287. password = "-";
  288. break;
  289. }
  290. editTitleHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_title_album");
  291. editDescriptionHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_description_album");
  292. infos = [
  293. ["", "Basics"],
  294. ["Title", albumJSON.title + editTitleHTML],
  295. ["Description", albumJSON.description + editDescriptionHTML],
  296. ["", "Album"],
  297. ["Created", albumJSON.sysdate],
  298. ["Images", albumJSON.num],
  299. ["", "Share"],
  300. ["Visibility", public],
  301. ["Password", password]
  302. ];
  303. $.each(infos, function(index) {
  304. if (infos[index][1]===""||infos[index][1]===undefined||infos[index][1]===null) infos[index][1] = "-";
  305. if (infos[index][0]==="") {
  306. infobox += "</table>";
  307. infobox += "<div class='separator'><h1>" + infos[index][1] + "</h1></div>";
  308. infobox += "<table id='infos'>";
  309. } else {
  310. infobox += "<tr>";
  311. infobox += "<td>" + infos[index][0] + "</td>";
  312. infobox += "<td class='attr_" + infos[index][0].toLowerCase() + "'>" + infos[index][1] + "</td>";
  313. infobox += "</tr>";
  314. }
  315. });
  316. infobox += "</table>";
  317. infobox += "<div class='bumper'></div>";
  318. infobox += "</div>";
  319. return infobox;
  320. }
  321. };