visual perspective as default
[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 = "#VisualPerspective";
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').css('right', 480).addClass('active');
63                                 $('#editor .editor').css('right', 510);
64                                 $(window).resize();
65                                 $.wiki.perspectiveForTab('#tabs-right .active').onEnter();
66                         },
67                         function() {
68                             var active_right = $.wiki.perspectiveForTab('#tabs-right .active');
69                                 $.wiki.state.perspectives.ScanGalleryPerspective.show = false;
70                                 $('#sidebar').hide();
71                                 $('.vsplitbar').css('right', 0).removeClass('active');
72                                 $(".vsplitbar-title").html("↑ " + active_right.vsplitbar + " ↑");
73                                 $('#editor .editor').css('right', 30);
74                                 $(window).resize();
75                                 active_right.onExit();
76                         }
77                 );
78
79                 if($.wiki.state.perspectives.ScanGalleryPerspective.show){
80             $('.vsplitbar').trigger('click');
81             $(".vsplitbar-title").html("↓ GALERIA ↓");
82         } else {
83             $(".vsplitbar-title").html("↑ GALERIA ↑");
84         }
85         window.onbeforeunload = function(e) {
86             if($.wiki.isDirty()) {
87                                 e.returnValue = "Na stronie mogą być nie zapisane zmiany.";
88                                 return "Na stronie mogą być nie zapisane zmiany.";
89                         };
90         };
91
92                 console.log("Fetching document's text");
93
94                 $(document).bind('wlapi_document_changed', function(event, doc) {
95                         try {
96                                 $('#document-revision').text(doc.revision);
97                         } catch(e) {
98                                 console.log("Failed handler", e);
99                         }
100                 });
101
102                 CurrentDocument.fetch({
103                         success: function(){
104                                 console.log("Fetch success");
105                                 $('#loading-overlay').fadeOut();
106                                 var active_tab = document.location.hash || DEFAULT_PERSPECTIVE;
107
108                                 if(active_tab == "#ScanGalleryPerspective")
109                                         active_tab = DEFAULT_PERSPECTIVE;
110
111                                 console.log("Initial tab is:", active_tab)
112                                 $.wiki.switchToTab(active_tab);
113
114                 /* every 5 minutes check for a newer version */
115                 var revTimer = setInterval(function() {
116                         CurrentDocument.checkRevision({error: function(){
117                             $('#header').addClass('out-of-date');
118                             clearInterval(revTimer);
119                         }});
120                     }, 300000);
121                         },
122                         failure: function() {
123                                 $('#loading-overlay').fadeOut();
124                                 alert("FAILURE");
125                         }
126                 });
127     }; /* end of initialize() */
128
129
130         /* Load configuration */
131         $.wiki.loadConfig();
132
133         var initAll = function(a, f) {
134                 if (a.length == 0) return f();
135
136                 $.wiki.initTab({
137                         tab: a.pop(),
138                         doc: CurrentDocument,
139                         callback: function(){
140                                 initAll(a, f);
141                         }
142                 });
143         };
144
145
146         /*
147          * Initialize all perspectives
148          */
149         initAll( $.makeArray($('.tabs li')), initialize);
150         console.log(location.hash);
151 });