view.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * @name view.js
  3. * @author Philipp Maurer
  4. * @author Tobias Reich
  5. * @copyright 2012 by Philipp Maurer, Tobias Reich
  6. */
  7. var header = $("header"),
  8. headerTitle = $("#title"),
  9. image_view = $("#image_view"),
  10. api_path = "php/api.php",
  11. infobox = $("#infobox");
  12. $(document).ready(function(){
  13. /* Infobox */
  14. $("#infobox_overlay, #infobox .header a").live("click", function() { hideInfobox() });
  15. $("#button_info").live("click", function() { showInfobox() });
  16. /* Download */
  17. $("#button_download").live("click", function() {
  18. link = $("#image_view #image").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
  19. window.open(link,"_newtab");
  20. });
  21. loadPhotoInfo(gup("p"));
  22. });
  23. function showInfobox() {
  24. $("body").append("<div id='infobox_overlay'></div>");
  25. infobox.css("right", "0px");
  26. }
  27. function hideInfobox() {
  28. $("#infobox_overlay").remove();
  29. infobox.css("right", "-320px");
  30. }
  31. function loadPhotoInfo(photoID) {
  32. params = "function=getPhotoInfo&photoID=" + photoID;
  33. $.ajax({type: "POST", url: api_path, data: params, dataType: "json", success: function(data) {
  34. if (!data.title) data.title = "Untitled";
  35. document.title = "Lychee - " + data.title;
  36. headerTitle.html(data.title);
  37. image_view.attr("data-id", photoID);
  38. image_view.html("").append("<div id='image' style='background-image: url(" + data.url + ")'></div>");
  39. image_view.removeClass("fadeOut").addClass("fadeIn").show();
  40. infobox.html(buildInfobox(data)).show();
  41. }, error: ajaxError });
  42. }
  43. function ajaxError(jqXHR, textStatus, errorThrown) {
  44. console.log(jqXHR);
  45. console.log(textStatus);
  46. console.log(errorThrown);
  47. }