|
@@ -5,7 +5,12 @@
|
|
|
|
|
|
sidebar = {
|
|
|
|
|
|
- _dom: $('#sidebar')
|
|
|
+ _dom: $('#sidebar'),
|
|
|
+ types: {
|
|
|
+ DEFAULT: 0,
|
|
|
+ TAGS: 1
|
|
|
+ },
|
|
|
+ createStructure: {}
|
|
|
|
|
|
}
|
|
|
|
|
@@ -19,23 +24,42 @@ sidebar.dom = function(selector) {
|
|
|
sidebar.bind = function() {
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
var eventName = ('ontouchend' in document.documentElement) ? 'touchend' : 'click';
|
|
|
|
|
|
- sidebar.dom('#edit_title').on(eventName, function() {
|
|
|
- if (visible.photo()) photo.setTitle([photo.getID()]);
|
|
|
- else if (visible.album()) album.setTitle([album.getID()]);
|
|
|
- });
|
|
|
-
|
|
|
- sidebar.dom('#edit_description').on(eventName, function() {
|
|
|
- if (visible.photo()) photo.setDescription(photo.getID());
|
|
|
- else if (visible.album()) album.setDescription(album.getID());
|
|
|
- });
|
|
|
-
|
|
|
- sidebar.dom('#edit_tags') .on(eventName, function() { photo.editTags([photo.getID()]) });
|
|
|
- sidebar.dom('#tags .tag span') .on(eventName, function() { photo.deleteTag(photo.getID(), $(this).data('index')) });
|
|
|
+ sidebar
|
|
|
+ .dom('#edit_title')
|
|
|
+ .off(eventName)
|
|
|
+ .on(eventName, function() {
|
|
|
+ if (visible.photo()) photo.setTitle([photo.getID()]);
|
|
|
+ else if (visible.album()) album.setTitle([album.getID()]);
|
|
|
+ });
|
|
|
+
|
|
|
+ sidebar
|
|
|
+ .dom('#edit_description')
|
|
|
+ .off(eventName)
|
|
|
+ .on(eventName, function() {
|
|
|
+ if (visible.photo()) photo.setDescription(photo.getID());
|
|
|
+ else if (visible.album()) album.setDescription(album.getID());
|
|
|
+ });
|
|
|
+
|
|
|
+ sidebar
|
|
|
+ .dom('#edit_tags')
|
|
|
+ .off(eventName)
|
|
|
+ .on(eventName, function() {
|
|
|
+ photo.editTags([photo.getID()])
|
|
|
+ });
|
|
|
+
|
|
|
+ sidebar
|
|
|
+ .dom('#tags .tag span')
|
|
|
+ .off(eventName)
|
|
|
+ .on(eventName, function() {
|
|
|
+ photo.deleteTag(photo.getID(), $(this).data('index'))
|
|
|
+ });
|
|
|
|
|
|
return true;
|
|
|
|
|
@@ -69,20 +93,202 @@ sidebar.setSelectable = function(selectable = true) {
|
|
|
|
|
|
}
|
|
|
|
|
|
-sidebar.changeAttr = function(attr, value, editable = false) {
|
|
|
+sidebar.changeAttr = function(attr, value = '-') {
|
|
|
|
|
|
if (attr===undefined||attr===null||attr==='') return false;
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- if (editable===true) value = value + ' ' + build.editIcon('edit_' + attr);
|
|
|
+
|
|
|
+ if (value===''||value===null) value = '-';
|
|
|
|
|
|
sidebar.dom('.attr_' + attr).html(value);
|
|
|
|
|
|
-
|
|
|
-
|
|
|
- if (editable===true) sidebar.bind();
|
|
|
-
|
|
|
return true;
|
|
|
|
|
|
+}
|
|
|
+
|
|
|
+sidebar.createStructure.photo = function(data) {
|
|
|
+
|
|
|
+ if (data===undefined||data===null||data==='') return false;
|
|
|
+
|
|
|
+ var editable = false,
|
|
|
+ exifHash = data.takestamp + data.make + data.model + data.shutter + data.aperture + data.focal + data.iso,
|
|
|
+ structure = {},
|
|
|
+ visible = '';
|
|
|
+
|
|
|
+
|
|
|
+ if (lychee.publicMode===false) editable = true;
|
|
|
+
|
|
|
+
|
|
|
+ switch (data.public) {
|
|
|
+
|
|
|
+ case '0': visible = 'No';
|
|
|
+ break;
|
|
|
+ case '1': visible = 'Yes';
|
|
|
+ break;
|
|
|
+ case '2': visible = 'Yes (Album)';
|
|
|
+ break;
|
|
|
+ default: visible = '-';
|
|
|
+ break;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ structure.basics = {
|
|
|
+ title: 'Basics',
|
|
|
+ type: sidebar.types.DEFAULT,
|
|
|
+ rows: [
|
|
|
+ { title: 'Title', value: data.title, editable },
|
|
|
+ { title: 'Uploaded', value: data.sysdate },
|
|
|
+ { title: 'Description', value: data.description, editable },
|
|
|
+ ]
|
|
|
+ }
|
|
|
+
|
|
|
+ structure.image = {
|
|
|
+ title: 'Image',
|
|
|
+ type: sidebar.types.DEFAULT,
|
|
|
+ rows: [
|
|
|
+ { title: 'Size', value: data.size },
|
|
|
+ { title: 'Format', value: data.type },
|
|
|
+ { title: 'Resolution', value: data.width + ' x ' + data.height }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (lychee.publicMode===false) {
|
|
|
+
|
|
|
+ structure.tags = {
|
|
|
+ title: 'Tags',
|
|
|
+ type: sidebar.types.TAGS,
|
|
|
+ value: build.tags(data.tags),
|
|
|
+ editable
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ structure.tags = {}
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (exifHash!=='0') {
|
|
|
+
|
|
|
+ structure.exif = {
|
|
|
+ title: 'Camera',
|
|
|
+ type: sidebar.types.DEFAULT,
|
|
|
+ rows: [
|
|
|
+ { title: 'Captured', value: data.takedate },
|
|
|
+ { title: 'Make', value: data.make },
|
|
|
+ { title: 'Type/Model', value: data.model },
|
|
|
+ { title: 'Shutter Speed', value: data.shutter },
|
|
|
+ { title: 'Aperture', value: data.aperture },
|
|
|
+ { title: 'Focal Length', value: data.focal },
|
|
|
+ { title: 'ISO', value: data.iso }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ structure.exif = {}
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ structure.sharing = {
|
|
|
+ title: 'Sharing',
|
|
|
+ type: sidebar.types.DEFAULT,
|
|
|
+ rows: [
|
|
|
+ { title: 'Public', value: visible },
|
|
|
+ ]
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ structure = [
|
|
|
+ structure.basics,
|
|
|
+ structure.image,
|
|
|
+ structure.tags,
|
|
|
+ structure.exif,
|
|
|
+ structure.sharing
|
|
|
+ ]
|
|
|
+
|
|
|
+ return structure;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+sidebar.render = function(structure) {
|
|
|
+
|
|
|
+ if (structure===undefined||structure===null||structure==='') return false;
|
|
|
+
|
|
|
+ var html = '';
|
|
|
+
|
|
|
+ var renderDefault = function(section) {
|
|
|
+
|
|
|
+ let _html = '';
|
|
|
+
|
|
|
+ _html += `
|
|
|
+ <div class='divider'>
|
|
|
+ <h1>${ section.title }</h1>
|
|
|
+ </div>
|
|
|
+ <table>
|
|
|
+ `
|
|
|
+
|
|
|
+ section.rows.forEach(function(row) {
|
|
|
+
|
|
|
+ let value = row.value;
|
|
|
+
|
|
|
+
|
|
|
+ if (value===''||value===null||value===undefined) value = '-';
|
|
|
+
|
|
|
+
|
|
|
+ value = `<span class='attr_${ row.title.toLowerCase() }'>${ value }</span>`;
|
|
|
+
|
|
|
+
|
|
|
+ if (row.editable===true) value += ' ' + build.editIcon('edit_' + row.title.toLowerCase());
|
|
|
+
|
|
|
+ _html += `
|
|
|
+ <tr>
|
|
|
+ <td>${ row.title }</td>
|
|
|
+ <td>${ value }</td>
|
|
|
+ </tr>
|
|
|
+ `
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+ _html += `
|
|
|
+ </table>
|
|
|
+ `
|
|
|
+
|
|
|
+ return _html;
|
|
|
+
|
|
|
+ };
|
|
|
+
|
|
|
+ var renderTags = function(section) {
|
|
|
+
|
|
|
+ let _html = '';
|
|
|
+
|
|
|
+ _html += `
|
|
|
+ <div class='divider'>
|
|
|
+ <h1>${ section.title }</h1>
|
|
|
+ </div>
|
|
|
+ <div id='tags'>
|
|
|
+ <div class='attr_${ section.title.toLowerCase() }'>${ section.value }</div>
|
|
|
+ `
|
|
|
+
|
|
|
+
|
|
|
+ if (section.editable===true) _html += build.editIcon('edit_tags');
|
|
|
+
|
|
|
+ _html += `
|
|
|
+ </div>
|
|
|
+ `
|
|
|
+
|
|
|
+ return _html;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ structure.forEach(function(section) {
|
|
|
+
|
|
|
+ if (section.type===sidebar.types.DEFAULT) html += renderDefault(section);
|
|
|
+ else if (section.type===sidebar.types.TAGS) html += renderTags(section);
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
+ return html;
|
|
|
+
|
|
|
}
|