add search option
[redakcja.git] / src / 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     var tabs = $('ol#tabs li');
12     var gallery = null;
13     var MIN_SIDEBAR_WIDTH = 50,
14         DEFAULT_SIDEBAR_WIDTH = 480;
15
16     CurrentDocument = new $.wikiapi.WikiDocument("document-meta");
17
18     $.blockUI.defaults.baseZ = 10000;
19
20     function initialize() {
21         var splitter = $('#splitter'),
22             vsplitbar = $('#vsplitbar'),
23             sidebar = $('#sidebar'),
24             dragLayer = $('#drag-layer'),
25             vsplitbarWidth = vsplitbar.outerWidth(),
26             isHolding = false;
27
28         function setSidebarWidth(x) {
29             if (x < MIN_SIDEBAR_WIDTH) {
30                 x = 0;
31                 vsplitbar.removeClass('active');
32             } else {
33                 vsplitbar.addClass('active');
34             }
35             $.wiki.state.perspectives.ScanGalleryPerspective.width = x;
36             sidebar[0].style.width = x + 'px';
37         };
38
39         /* The save button */
40         $('#save-button').click(function(event){
41             event.preventDefault();
42             $.wiki.showDialog('#save_dialog');
43         });
44
45         $('.editor').hide();
46
47         /*
48          * TABS
49          */
50         $(document).on('click', '.tabs li', function(event, callback) {
51             event.preventDefault();
52             $.wiki.switchToTab(this);
53         });
54
55         $(document).on('click', '#tabs li .tabclose', function(event, callback) {
56             var $tab = $(this).parent().parent();
57
58             if($('a', $tab).is('.active'))
59                 $.wiki.switchToTab(DEFAULT_PERSPECTIVE);
60
61             var p = $.wiki.perspectiveForTab($tab);
62             p.destroy();
63
64             return false;
65         });
66
67         $(window).resize(function(){
68             splitterWidth = splitter.width();
69         });
70
71         $(window).resize();
72         $.wiki.perspectiveForTab($('#tabs-right .active').parent()).onEnter();
73
74         vsplitbar.on('click', function() {
75             var $this = $(this);
76             if ($this.hasClass('active')) {
77                 $.wiki.state.perspectives.ScanGalleryPerspective.lastWidth = sidebar.width();
78                 setSidebarWidth(0);
79             } else {
80                 setSidebarWidth($.wiki.state.perspectives.ScanGalleryPerspective.lastWidth);
81             }
82         });
83
84         /* Splitbar dragging support */
85         vsplitbar
86             .mousedown(function(e) {
87                 e.preventDefault();
88                 isHolding = true;
89                 if (sidebar.width() > MIN_SIDEBAR_WIDTH) {
90                     $.wiki.state.perspectives.ScanGalleryPerspective.lastWidth = sidebar.width();
91                 }
92             })
93             .mousemove(function(e) {
94                 if(isHolding) {
95                     dragLayer.show(); // We don't show it up until now so that we don't lose single click events on vsplitbar
96                 }
97             });
98         dragLayer.mousemove(function(e) {
99             setSidebarWidth(splitterWidth - e.clientX - vsplitbarWidth / 2);
100         });
101         $('body').mouseup(function(e) {
102             dragLayer.hide();
103             isHolding = false;
104         });
105
106         setSidebarWidth($.wiki.state.perspectives.ScanGalleryPerspective.width);
107
108         window.onbeforeunload = function(e) {
109             if($.wiki.isDirty()) {
110                 e.returnValue = "Na stronie mogą być nie zapisane zmiany.";
111                 return "Na stronie mogą być nie zapisane zmiany.";
112             };
113         };
114
115         $('body').mousemove(function(e) {
116             CurrentDocument.active = new Date();
117         });
118         $('body').keydown(function(e) {
119             CurrentDocument.active = new Date();
120         });
121
122         $(window).keydown(function(e) {
123             if (e.ctrlKey || e.metaKey) {
124                 switch (e.key) {
125                 case 's':
126                     e.preventDefault();
127                     $("#save-button").click();
128                     break;
129                 }
130             }
131         });
132
133         console.log("Fetching document's text");
134
135         $(document).bind('wlapi_document_changed', function(event, doc) {
136             try {
137                 $('#document-revision').text(doc.revision);
138             } catch(e) {
139                 console.log("Failed handler", e);
140             }
141         });
142
143         CurrentDocument.fetch({
144             success: function(){
145                 console.log("Fetch success");
146                 $('#loading-overlay').fadeOut();
147                 var active_tab = document.location.hash || DEFAULT_PERSPECTIVE;
148
149                 if(active_tab == "#ScanGalleryPerspective")
150                     active_tab = DEFAULT_PERSPECTIVE;
151
152                 console.log("Initial tab is:", active_tab)
153                 $.wiki.switchToTab(active_tab);
154
155                 /* check for a newer version */
156                 CurrentDocument.checkRevision({outdated: function(){
157                     $('#header').addClass('out-of-date');
158                 }});
159                 var revTimer = setInterval(function() {
160                     CurrentDocument.checkRevision({outdated: function(){
161                         $('#header').addClass('out-of-date');
162                     }});
163                 }, 5 * 1000);
164             },
165             failure: function() {
166                 $('#loading-overlay').fadeOut();
167                 alert("FAILURE");
168             }
169         });
170     }; /* end of initialize() */
171
172
173     /* Load configuration */
174     $.wiki.loadConfig();
175
176     /*
177      * Initialize all perspectives
178      */
179     $('.tabs li').each((i, e) => {
180         $.wiki.initTab({tab: e, doc: CurrentDocument});
181     });
182     initialize();
183 });