Ticket 547, gallery sidebar title and styling
[redakcja.git] / redakcja / static / js / wiki / loader.js
1 if (!window.console) {
2     window.console = {
3         log: function(){
4         }
5     }
6 }
7
8 var DEFAULT_PERSPECTIVE = "#SummaryPerspective";
9
10 $(function()
11 {
12         var tabs = $('ol#tabs li');
13         var gallery = null;
14         CurrentDocument = new $.wikiapi.WikiDocument("document-meta");
15
16         $.blockUI.defaults.baseZ = 10000;
17
18     function initialize()
19         {
20                 $(document).keydown(function(event) {
21                         console.log("Received key:", event);
22                 });
23
24                 /* The save button */
25         $('#save-button').click(function(event){
26             event.preventDefault();
27                         $.wiki.showDialog('#save_dialog');
28         });
29
30                 $('.editor').hide();
31
32                 /*
33                  * TABS
34                  */
35         $('.tabs li').live('click', function(event, callback) {
36                         $.wiki.switchToTab(this);
37         });
38
39                 $('#tabs li > .tabclose').live('click', function(event, callback) {
40                         var $tab = $(this).parent();
41
42                         if($tab.is('.active'))
43                                 $.wiki.switchToTab(DEFAULT_PERSPECTIVE);
44
45                         var p = $.wiki.perspectiveForTab($tab);
46                         p.destroy();
47
48                         return false;
49         });
50
51
52         $(window).resize(function(){
53             $('iframe').height($(window).height() - $('#tabs').outerHeight() - $('#source-editor .toolbar').outerHeight());
54         });
55
56         $(window).resize();
57
58         $('.vsplitbar').toggle(
59                         function() {
60                                 $.wiki.state.perspectives.ScanGalleryPerspective.show = true;
61                                 $('#sidebar').show();
62                                 $(".vsplitbar-title").html("↓ GALLERY ↓");
63                                 $('.vsplitbar').css('right', 480).addClass('active');
64                                 $('#editor .editor').css('right', 510);
65                                 $(window).resize();
66                                 $.wiki.perspectiveForTab('#tabs-right .active').onEnter();
67                         },
68                         function() {
69                                 $.wiki.state.perspectives.ScanGalleryPerspective.show = false;
70                                 $('#sidebar').hide();
71                                 $('.vsplitbar').css('right', 0).removeClass('active');
72                                 if($(".vsplitbar-title").html() == "↓ SEARCH AND REPLACE ↓"){
73                                         $(".vsplitbar-title").html("↑ SEARCH AND REPLACE ↑");        
74                                 } else {
75                                     $(".vsplitbar-title").html("↑ GALLERY ↑");
76                                 }
77                                 $('#editor .editor').css('right', 30);
78                                 $(window).resize();
79                                 $.wiki.perspectiveForTab('#tabs-right .active').onExit();
80                         }
81                 );
82
83                 if($.wiki.state.perspectives.ScanGalleryPerspective.show){
84             $('.vsplitbar').trigger('click');
85             $(".vsplitbar-title").html("↓ GALLERY ↓");
86         } else {
87             $(".vsplitbar-title").html("↑ GALLERY ↑");
88         }
89         window.onbeforeunload = function(e) {
90             if($.wiki.isDirty()) {
91                                 e.returnValue = "Na stronie mogą być nie zapisane zmiany.";
92                                 return "Na stronie mogą być nie zapisane zmiany.";
93                         };
94         };
95
96                 console.log("Fetching document's text");
97
98                 $(document).bind('wlapi_document_changed', function(event, doc) {
99                         try {
100                                 $('#document-revision').text(doc.revision);
101                         } catch(e) {
102                                 console.log("Failed handler", e);
103                         }
104                 });
105
106                 CurrentDocument.fetch({
107                         success: function(){
108                                 console.log("Fetch success");
109                                 $('#loading-overlay').fadeOut();
110                                 var active_tab = document.location.hash || DEFAULT_PERSPECTIVE;
111
112                                 if(active_tab == "#ScanGalleryPerspective")
113                                         active_tab = DEFAULT_PERSPECTIVE;
114
115                                 console.log("Initial tab is:", active_tab)
116                                 $.wiki.switchToTab(active_tab);
117                         },
118                         failure: function() {
119                                 $('#loading-overlay').fadeOut();
120                                 alert("FAILURE");
121                         }
122                 });
123     }; /* end of initialize() */
124
125
126         /* Load configuration */
127         $.wiki.loadConfig();
128
129         var initAll = function(a, f) {
130                 if (a.length == 0) return f();
131
132                 $.wiki.initTab({
133                         tab: a.pop(),
134                         doc: CurrentDocument,
135                         callback: function(){
136                                 initAll(a, f);
137                         }
138                 });
139         };
140
141
142         /*
143          * Initialize all perspectives
144          */
145         initAll( $.makeArray($('.tabs li')), initialize);
146         console.log(location.hash);
147 });