summaryrefslogtreecommitdiff
path: root/lib/gallery.panel.js
blob: 0683c5312a05a8bf150ac4fd89b973224bf6921f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(function($) {
   $.widget("ui.gallery_panel", {
     _init: function() {
       var self = this;
       this.element.click(function(event) {
         event.preventDefault();
         var element = event.currentTarget;
         var parent = $(element).parent().parent();
         var sHref = $(element).attr("href");
         var parentClass = $(parent).attr("class");
         var ePanel = "<tr id=\"g-panel\"><td colspan=\"6\"></td></tr>";

	 // We keep track of the open vs. closed state by looking to see if there'
	 // an orig_text attr.  If that attr is missing, then the panel is closed
	 // and we want to open it
	 var should_open = !$(element).attr("orig_text");

	 // Close any open panels and reset their button text
         if ($("#g-panel").length) {
           $("#g-panel").slideUp("slow").remove();
	   $.each($(".g-panel-link"),
		  function() {
		    if ($(this).attr("orig_text")) {
		      $(this).children(".g-button-text").text($(this).attr("orig_text"));
		      $(this).attr("orig_text", "");
		    }
		  }
	   );
         }

	 if (should_open) {
	   $(parent).after(ePanel);
	   $("#g-panel td").html(sHref);
	   $.ajax({
             url: sHref,
             type: "GET",
             beforeSend: function(xhr) {
               // Until we convert to jquery 1.4, we need to save the
               // XMLHttpRequest object
               this.xhrData = xhr;
             },
             success: function(data, textStatus, xhr) {
	       // Pre jquery 1.4, get the saved XMLHttpRequest object
               if (xhr == undefined) {
                 xhr = this.xhrData;
               }
               var mimeType = /^(\w+\/\w+)\;?/.exec(xhr.getResponseHeader("Content-Type"));
               var content = "";
               if (mimeType[1] == "application/json") {
                 data = JSON.parse(data);
                 content = data.html;
               } else {
                 content = data;
               }

	       $("#g-panel td").html(content);
	       self._ajaxify_panel();
	       if ($(element).attr("open_text")) {
	         $(element).attr("orig_text", $(element).children(".g-button-text").text());
	         $(element).children(".g-button-text").text($(element).attr("open_text"));
	       }
	       $("#g-panel").addClass(parentClass).show().slideDown("slow");
	     }
           });
	 }

         return false;
       });
     },

     _ajaxify_panel: function () {
       var self = this;
       $("#g-panel td form").ajaxForm({
         dataType: "json",
         beforeSubmit: function(formData, form, options) {
           form.find(":submit")
             .addClass("ui-state-disabled")
             .attr("disabled", "disabled");
           return true;
         },
         success: function(data) {
           if (data.html) {
             $("#g-panel td").html(data.html);
             self._ajaxify_panel();
           }
           if (data.result == "success") {
             self._trigger("success", null, {});
             if (data.location) {
               window.location = data.location;
             } else {
               window.location.reload();
             }
           }
         }
       });
     },

     success: function(event, ui) {}
   });
 })(jQuery);