123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456 |
- /**
- * @name Build Module
- * @description This module is used to generate HTML-Code.
- * @author Tobias Reich
- * @copyright 2014 by Tobias Reich
- */
- build = {
- divider: function(title) {
- return "<div class='divider fadeIn'><h1>" + title + "</h1></div>";
- },
- editIcon: function(id) {
- return "<div id='" + id + "' class='edit'><a class='icon-pencil'></a></div>";
- },
- multiselect: function(top, left) {
- return "<div id='multiselect' style='top: " + top + "px; left: " + left + "px;'></div>";
- },
- album: function(albumJSON) {
- if (!albumJSON) return "";
- var album = "",
- longTitle = "",
- title = albumJSON.title;
- if (title.length>18) {
- title = albumJSON.title.substr(0, 18) + "...";
- longTitle = albumJSON.title;
- }
- typeThumb0 = albumJSON.thumb0.split('.').pop();
- typeThumb1 = albumJSON.thumb1.split('.').pop();
- typeThumb2 = albumJSON.thumb2.split('.').pop();
- album += "<div class='album' data-id='" + albumJSON.id + "' data-password='" + albumJSON.password + "'>";
- album += "<img src='" + albumJSON.thumb2 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb2 + "'>";
- album += "<img src='" + albumJSON.thumb1 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb1 + "'>";
- album += "<img src='" + albumJSON.thumb0 + "' width='200' height='200' alt='thumb' data-type='" + typeThumb0 + "'>";
- album += "<div class='overlay'>";
- if (albumJSON.password&&!lychee.publicMode) album += "<h1><span class='icon-lock'></span> " + title + "</h1>";
- else album += "<h1 title='" + longTitle + "'>" + title + "</h1>";
- album += "<a>" + albumJSON.sysdate + "</a>";
- album += "</div>";
- if(!lychee.publicMode&&albumJSON.star==1) album += "<a class='badge red icon-star'></a>";
- if(!lychee.publicMode&&albumJSON.public==1) album += "<a class='badge red icon-share'></a>";
- if(!lychee.publicMode&&albumJSON.unsorted==1) album += "<a class='badge red icon-reorder'></a>";
- album += "</div>";
- return album;
- },
- photo: function(photoJSON) {
- if (!photoJSON) return "";
- var photo = "",
- longTitle = "",
- title = photoJSON.title;
- if (title.length>18) {
- title = photoJSON.title.substr(0, 18) + "...";
- longTitle = photoJSON.title;
- }
- photo += "<div class='photo' data-album-id='" + photoJSON.album + "' data-id='" + photoJSON.id + "'>";
- photo += "<img src='" + photoJSON.thumbUrl + "' width='200' height='200' alt='thumb'>";
- photo += "<div class='overlay'>";
- photo += "<h1 title='" + longTitle + "'>" + title + "</h1>";
- photo += "<a>" + photoJSON.sysdate + "</a>";
- photo += "</div>";
- if (photoJSON.star==1) photo += "<a class='badge red icon-star'></a>";
- if (!lychee.publicMode&&photoJSON.public==1&&album.json.public!=1) photo += "<a class='badge red icon-share'></a>";
- photo += "</div>";
- return photo;
- },
- imageview: function(photoJSON, isSmall, visibleControls) {
- if (!photoJSON) return "";
- var view = "";
- view += "<div class='arrow_wrapper previous'><a id='previous' class='icon-caret-left'></a></div>";
- view += "<div class='arrow_wrapper next'><a id='next' class='icon-caret-right'></a></div>";
- if (isSmall) {
- if (visibleControls)
- 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>";
- else
- 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>";
- } else {
- if (visibleControls)
- view += "<div id='image' style='background-image: url(" + photoJSON.url + ")'></div>";
- else
- view += "<div id='image' style='background-image: url(" + photoJSON.url + ");' class='full'></div>";
- }
- return view;
- },
- no_content: function(typ) {
- var no_content = "";
- no_content += "<div class='no_content fadeIn'>";
- no_content += "<a class='icon icon-" + typ + "'></a>";
- if (typ==="search") no_content += "<p>No results</p>";
- else if (typ==="picture") no_content += "<p>No public albums</p>";
- else if (typ==="cog") no_content += "<p>No Configuration!</p>";
- no_content += "</div>";
- return no_content;
- },
- modal: function(title, text, button, marginTop, closeButton) {
- var modal = "",
- custom_style = "";
- if (marginTop) custom_style = "style='margin-top: " + marginTop + "px;'";
- modal += "<div class='message_overlay fadeIn'>";
- modal += "<div class='message center'" + custom_style + ">";
- modal += "<h1>" + title + "</h1>";
- if (closeButton!==false) {
- modal += "<a class='close icon-remove-sign'></a>";
- }
- modal += "<p>" + text + "</p>";
- $.each(button, function(index) {
- if (this[0]!=="") {
- if (index===0) modal += "<a class='button active'>" + this[0] + "</a>";
- else modal += "<a class='button'>" + this[0] + "</a>";
- }
- });
- modal += "</div>";
- modal += "</div>";
- return modal;
- },
- signInModal: function() {
- var modal = "";
- modal += "<div class='message_overlay'>";
- modal += "<div class='message center'>";
- modal += "<h1><a class='icon-lock'></a> Sign In</h1>";
- modal += "<a class='close icon-remove-sign'></a>";
- modal += "<div class='sign_in'>";
- modal += "<input id='username' type='text' name='' value='' placeholder='username'>";
- modal += "<input id='password' type='password' name='' value='' placeholder='password'>";
- modal += "</div>";
- modal += "<div id='version'>Version " + lychee.version + "<span> – <a target='_blank' href='" + lychee.updateURL + "'>Update available!</a><span></div>";
- modal += "<a onclick='lychee.login()' class='button active'>Sign in</a>";
- modal += "</div>";
- modal += "</div>";
- return modal;
- },
- uploadModal: function(icon, text) {
- var modal = "";
- modal += "<div class='upload_overlay fadeIn'>";
- modal += "<div class='upload_message center'>";
- modal += "<a class='icon-" + icon + "'></a>";
- if (text!==undefined) modal += "<p>" + text + "</p>";
- else modal += "<div class='progressbar'><div></div></div>";
- modal += "</div>";
- modal += "</div>";
- return modal;
- },
- contextMenu: function(items) {
- var menu = "";
- menu += "<div class='contextmenu_bg'></div>";
- menu += "<div class='contextmenu'>";
- menu += "<table>";
- menu += "<tbody>";
- $.each(items, function(index) {
- if (items[index][0]==="separator"&&items[index][1]===-1) menu += "<tr class='separator'></tr>";
- else if (items[index][1]===-1) menu += "<tr class='no_hover'><td>" + items[index][0] + "</td></tr>";
- else if (items[index][2]!=undefined) menu += "<tr><td onclick='" + items[index][2] + "; window.contextMenu.close();'>" + items[index][0] + "</td></tr>";
- else menu += "<tr><td onclick='window.contextMenu.fns[" + items[index][1] + "](); window.contextMenu.close();'>" + items[index][0] + "</td></tr>";
- });
- menu += "</tbody>";
- menu += "</table>";
- menu += "</div>";
- return menu;
- },
- tags: function(tags, forView) {
- var html = "",
- editTagsHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_tags");
- if (tags!=="") {
- tags = tags.split(",");
- tags.forEach(function(tag, index, array) {
- html += "<a class='tag'>" + tag + "<span class='icon-remove' data-index='" + index + "'></span></a>";
- });
- html += editTagsHTML;
- } else {
- html = "<div class='empty'>No Tags" + editTagsHTML + "</div>";
- }
- return html;
- },
- infoboxPhoto: function(photoJSON, forView) {
- if (!photoJSON) return "";
- var infobox = "",
- public,
- editTitleHTML,
- editDescriptionHTML,
- infos;
- infobox += "<div class='header'><h1>About</h1><a class='icon-remove-sign'></a></div>";
- infobox += "<div class='wrapper'>";
- switch (photoJSON.public) {
- case "0":
- public = "Private";
- break;
- case "1":
- public = "Public";
- break;
- case "2":
- public = "Public (Album)";
- break;
- default:
- public = "-";
- break;
- }
- editTitleHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_title");
- editDescriptionHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_description");
- infos = [
- ["", "Basics"],
- ["Title", photoJSON.title + editTitleHTML],
- ["Uploaded", photoJSON.sysdate],
- ["Description", photoJSON.description + editDescriptionHTML],
- ["", "Image"],
- ["Size", photoJSON.size],
- ["Format", photoJSON.type],
- ["Resolution", photoJSON.width + " x " + photoJSON.height],
- ["Tags", build.tags(photoJSON.tags, forView)]
- ];
- if ((photoJSON.takedate+photoJSON.make+photoJSON.model+photoJSON.shutter+photoJSON.aperture+photoJSON.focal+photoJSON.iso)!="") {
- infos = infos.concat([
- ["", "Camera"],
- ["Captured", photoJSON.takedate],
- ["Make", photoJSON.make],
- ["Type/Model", photoJSON.model],
- ["Shutter Speed", photoJSON.shutter],
- ["Aperture", photoJSON.aperture],
- ["Focal Length", photoJSON.focal],
- ["ISO", photoJSON.iso]
- ]);
- }
- infos = infos.concat([
- ["", "Share"],
- ["Visibility", public]
- ]);
- $.each(infos, function(index) {
- if (infos[index][1]===""||infos[index][1]===undefined||infos[index][1]===null) infos[index][1] = "-";
- switch (infos[index][0]) {
- case "": // Separator
- infobox += "</table>";
- infobox += "<div class='separator'><h1>" + infos[index][1] + "</h1></div>";
- infobox += "<table>";
- break;
- case "Tags": // Tags
- if (forView!==true&&!lychee.publicMode) {
- infobox += "</table>";
- infobox += "<div class='separator'><h1>" + infos[index][0] + "</h1></div>";
- infobox += "<div id='tags'>" + infos[index][1] + "</div>";
- }
- break;
- default: // Item
- infobox += "<tr>";
- infobox += "<td>" + infos[index][0] + "</td>";
- infobox += "<td class='attr_" + infos[index][0].toLowerCase() + "'>" + infos[index][1] + "</td>";
- infobox += "</tr>";
- break;
- }
- });
- infobox += "</table>";
- infobox += "<div class='bumper'></div>";
- infobox += "</div>";
- return infobox;
- },
- infoboxAlbum: function(albumJSON, forView) {
- if (!albumJSON) return "";
- var infobox = "",
- public,
- password,
- editTitleHTML,
- editDescriptionHTML,
- infos;
- infobox += "<div class='header'><h1>About</h1><a class='icon-remove-sign'></a></div>";
- infobox += "<div class='wrapper'>";
- switch (albumJSON.public) {
- case "0":
- public = "Private";
- break;
- case "1":
- public = "Public";
- break;
- default:
- public = "-";
- break;
- }
- switch (albumJSON.password) {
- case false:
- password = "No";
- break;
- case true:
- password = "Yes";
- break;
- default:
- password = "-";
- break;
- }
- editTitleHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_title_album");
- editDescriptionHTML = (forView===true||lychee.publicMode) ? "" : " " + build.editIcon("edit_description_album");
- infos = [
- ["", "Basics"],
- ["Title", albumJSON.title + editTitleHTML],
- ["Description", albumJSON.description + editDescriptionHTML],
- ["", "Album"],
- ["Created", albumJSON.sysdate],
- ["Images", albumJSON.num],
- ["", "Share"],
- ["Visibility", public],
- ["Password", password]
- ];
- $.each(infos, function(index) {
- if (infos[index][1]===""||infos[index][1]===undefined||infos[index][1]===null) infos[index][1] = "-";
- if (infos[index][0]==="") {
- infobox += "</table>";
- infobox += "<div class='separator'><h1>" + infos[index][1] + "</h1></div>";
- infobox += "<table id='infos'>";
- } else {
- infobox += "<tr>";
- infobox += "<td>" + infos[index][0] + "</td>";
- infobox += "<td class='attr_" + infos[index][0].toLowerCase() + "'>" + infos[index][1] + "</td>";
- infobox += "</tr>";
- }
- });
- infobox += "</table>";
- infobox += "<div class='bumper'></div>";
- infobox += "</div>";
- return infobox;
- }
- };
|