build.js 12 KB

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