|
@@ -3,28 +3,24 @@
|
|
* @copyright 2015 by Tobias Reich
|
|
* @copyright 2015 by Tobias Reich
|
|
*/
|
|
*/
|
|
|
|
|
|
-var header = $('header'),
|
|
|
|
- headerTitle = $('#title'),
|
|
|
|
- imageview = $('#imageview'),
|
|
|
|
- api_path = 'php/api.php',
|
|
|
|
- infobox = $('#infobox');
|
|
|
|
|
|
+var lychee = { content: $('#content') },
|
|
|
|
+ loadingBar = { show() {}, hide() {} }
|
|
|
|
+ imageview = $('#imageview');
|
|
|
|
|
|
-$(document).ready(function(){
|
|
|
|
|
|
+$(document).ready(function() {
|
|
|
|
|
|
/* Event Name */
|
|
/* Event Name */
|
|
if ('ontouchend' in document.documentElement) eventName = 'touchend';
|
|
if ('ontouchend' in document.documentElement) eventName = 'touchend';
|
|
else eventName = 'click';
|
|
else eventName = 'click';
|
|
|
|
|
|
- /* Window */
|
|
|
|
- $(window).keydown(key);
|
|
|
|
|
|
+ /* Set API error handler */
|
|
|
|
+ api.onError = error;
|
|
|
|
|
|
/* Infobox */
|
|
/* Infobox */
|
|
- infobox.find('.header .close').on(eventName, hideInfobox);
|
|
|
|
- $(document) .on(eventName, '#infobox_overlay', hideInfobox);
|
|
|
|
- $('#button_info') .on(eventName, showInfobox);
|
|
|
|
|
|
+ header.dom('#button_info').on(eventName, sidebar.toggle);
|
|
|
|
|
|
/* Direct Link */
|
|
/* Direct Link */
|
|
- $('#button_direct').on(eventName, function() {
|
|
|
|
|
|
+ header.dom('#button_direct').on(eventName, function() {
|
|
|
|
|
|
var link = $('#imageview #image').css('background-image').replace(/"/g,'').replace(/url\(|\)$/ig, '');
|
|
var link = $('#imageview #image').css('background-image').replace(/"/g,'').replace(/url\(|\)$/ig, '');
|
|
window.open(link, '_newtab');
|
|
window.open(link, '_newtab');
|
|
@@ -35,17 +31,6 @@ $(document).ready(function(){
|
|
|
|
|
|
});
|
|
});
|
|
|
|
|
|
-key = function(e) {
|
|
|
|
-
|
|
|
|
- var code = (e.keyCode ? e.keyCode : e.which);
|
|
|
|
-
|
|
|
|
- if (code===27) {
|
|
|
|
- hideInfobox();
|
|
|
|
- e.preventDefault();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
getPhotoSize = function(photo) {
|
|
getPhotoSize = function(photo) {
|
|
|
|
|
|
// Size can be 'big', 'medium' or 'small'
|
|
// Size can be 'big', 'medium' or 'small'
|
|
@@ -86,50 +71,42 @@ getPhotoSize = function(photo) {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-showInfobox = function() {
|
|
|
|
-
|
|
|
|
- $('body').append("<div id='infobox_overlay' class='fadeIn'></div>");
|
|
|
|
- infobox.addClass('active');
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
|
|
+loadPhotoInfo = function(photoID) {
|
|
|
|
|
|
-hideInfobox = function() {
|
|
|
|
|
|
+ var params = {
|
|
|
|
+ photoID,
|
|
|
|
+ albumID: 0,
|
|
|
|
+ password: ''
|
|
|
|
+ }
|
|
|
|
|
|
- $('#infobox_overlay').removeClass('fadeIn').addClass('fadeOut');
|
|
|
|
- setTimeout(function() { $('#infobox_overlay').remove() }, 300);
|
|
|
|
- infobox.removeClass('active');
|
|
|
|
|
|
+ api.post('Photo::get', params, function(data) {
|
|
|
|
|
|
-}
|
|
|
|
|
|
+ /* Set title */
|
|
|
|
|
|
-loadPhotoInfo = function(photoID) {
|
|
|
|
|
|
+ if (!data.title) data.title = 'Untitled';
|
|
|
|
+ document.title = 'Lychee - ' + data.title;
|
|
|
|
+ header.dom('#title').html(data.title);
|
|
|
|
|
|
- var params = 'function=getPhoto&photoID=' + photoID + '&albumID=0&password=""';
|
|
|
|
- $.ajax({type: 'POST', url: api_path, data: params, dataType: 'json', success: function(data) {
|
|
|
|
|
|
+ /* Render HTML */
|
|
|
|
|
|
var size = getPhotoSize(data);
|
|
var size = getPhotoSize(data);
|
|
|
|
|
|
- if (!data.title) data.title = 'Untitled';
|
|
|
|
- document.title = 'Lychee - ' + data.title;
|
|
|
|
- headerTitle.html(data.title);
|
|
|
|
-
|
|
|
|
- imageview.attr('data-id', photoID);
|
|
|
|
|
|
+ imageview.html(build.imageview(data, size, true));
|
|
|
|
+ imageview.addClass('fadeIn').show();
|
|
|
|
|
|
- if (size==='big') imageview.html("<div id='image' style='background-image: url(" + data.url + ");'></div>");
|
|
|
|
- else if (size==='medium') imageview.html("<div id='image' style='background-image: url(" + data.medium + ");'></div>");
|
|
|
|
- else imageview.html("<div id='image' class='small' style='background-image: url(" + data.url + "); width: " + data.width + "px; height: " + data.height + "px; margin-top: -" + parseInt((data.height/2)-20) + "px; margin-left: -" + data.width/2 + "px;'></div>");
|
|
|
|
|
|
+ /* Render Sidebar */
|
|
|
|
|
|
- imageview
|
|
|
|
- .removeClass('fadeOut')
|
|
|
|
- .addClass('fadeIn')
|
|
|
|
- .show();
|
|
|
|
|
|
+ var structure = sidebar.createStructure.photo(data),
|
|
|
|
+ html = sidebar.render(structure);
|
|
|
|
|
|
- infobox.find('.wrapper').html(build.infoboxPhoto(data, true));
|
|
|
|
|
|
+ sidebar.dom('.wrapper').html(html);
|
|
|
|
+ sidebar.bind();
|
|
|
|
|
|
- }, error: ajaxError });
|
|
|
|
|
|
+ });
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-ajaxError = function(errorThrown, params, data) {
|
|
|
|
|
|
+error = function(errorThrown, params, data) {
|
|
|
|
|
|
console.error({
|
|
console.error({
|
|
description: errorThrown,
|
|
description: errorThrown,
|
|
@@ -137,4 +114,6 @@ ajaxError = function(errorThrown, params, data) {
|
|
response: data
|
|
response: data
|
|
});
|
|
});
|
|
|
|
|
|
|
|
+ loadingBar.show('error', errorThrown);
|
|
|
|
+
|
|
}
|
|
}
|