build.js 12 KB

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