Show More
@@ -1,347 +1,328 | |||
|
1 | 1 | // Copyright (c) IPython Development Team. |
|
2 | 2 | // Distributed under the terms of the Modified BSD License. |
|
3 | 3 | |
|
4 | 4 | define([ |
|
5 | 5 | "widgets/js/widget", |
|
6 | 6 | "jqueryui", |
|
7 | 7 | "bootstrap", |
|
8 | 8 | ], function(widget, $){ |
|
9 | 9 | |
|
10 | 10 | var ContainerView = widget.DOMWidgetView.extend({ |
|
11 | 11 | initialize: function(){ |
|
12 | 12 | // Public constructor |
|
13 | 13 | ContainerView.__super__.initialize.apply(this, arguments); |
|
14 | 14 | this.update_children([], this.model.get('children')); |
|
15 | 15 | this.model.on('change:children', function(model, value) { |
|
16 | 16 | this.update_children(model.previous('children'), value); |
|
17 | 17 | }, this); |
|
18 | 18 | }, |
|
19 | 19 | |
|
20 | 20 | render: function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.$el.addClass('widget-container'); |
|
23 | 23 | }, |
|
24 | 24 | |
|
25 | 25 | update_children: function(old_list, new_list) { |
|
26 | 26 | // Called when the children list changes. |
|
27 | 27 | this.do_diff(old_list, new_list, |
|
28 | 28 | $.proxy(this.remove_child_model, this), |
|
29 | 29 | $.proxy(this.add_child_model, this)); |
|
30 | 30 | }, |
|
31 | 31 | |
|
32 | 32 | remove_child_model: function(model) { |
|
33 | 33 | // Called when a model is removed from the children list. |
|
34 | 34 | this.pop_child_view(model).remove(); |
|
35 | 35 | }, |
|
36 | 36 | |
|
37 | 37 | add_child_model: function(model) { |
|
38 | 38 | // Called when a model is added to the children list. |
|
39 | 39 | var view = this.create_child_view(model); |
|
40 | 40 | this.$el.append(view.$el); |
|
41 | 41 | |
|
42 | 42 | // Trigger the displayed event of the child view. |
|
43 | 43 | this.after_displayed(function() { |
|
44 | 44 | view.trigger('displayed'); |
|
45 | 45 | }); |
|
46 | 46 | }, |
|
47 | 47 | }); |
|
48 | 48 | |
|
49 | 49 | |
|
50 | 50 | var FlexContainerView = ContainerView.extend({ |
|
51 | 51 | render: function(){ |
|
52 | 52 | FlexContainerView.__super__.render.apply(this); |
|
53 | 53 | this.model.on('change:orientation', this.update_orientation, this); |
|
54 | 54 | this.model.on('change:flex', this._flex_changed, this); |
|
55 | 55 | this.model.on('change:pack', this._pack_changed, this); |
|
56 | 56 | this.model.on('change:align', this._align_changed, this); |
|
57 | 57 | this._flex_changed(); |
|
58 | 58 | this._pack_changed(); |
|
59 | 59 | this._align_changed(); |
|
60 | 60 | that.update_orientation(); |
|
61 | 61 | }, |
|
62 | 62 | |
|
63 | 63 | update_orientation: function(){ |
|
64 | 64 | var orientation = this.model.get("orientation"); |
|
65 | 65 | if (orientation == "vertical") { |
|
66 | 66 | this.$el.removeClass("hbox").addClass("vbox"); |
|
67 | 67 | } else { |
|
68 | 68 | this.$el.removeClass("vbox").addClass("hbox"); |
|
69 | 69 | } |
|
70 | 70 | }, |
|
71 | 71 | |
|
72 | 72 | _flex_changed: function(){ |
|
73 | 73 | if (this.model.previous('flex')) { |
|
74 | 74 | this.$el.removeClass('box-flex' + this.model.previous('flex')); |
|
75 | 75 | } |
|
76 | 76 | this.$el.addClass('box-flex' + this.model.get('flex')); |
|
77 | 77 | }, |
|
78 | 78 | |
|
79 | 79 | _pack_changed: function(){ |
|
80 | 80 | if (this.model.previous('pack')) { |
|
81 | 81 | this.$el.removeClass(this.model.previous('pack')); |
|
82 | 82 | } |
|
83 | 83 | this.$el.addClass(this.model.get('pack')); |
|
84 | 84 | }, |
|
85 | 85 | |
|
86 | 86 | _align_changed: function(){ |
|
87 | 87 | if (this.model.previous('align')) { |
|
88 | 88 | this.$el.removeClass('align-' + this.model.previous('align')); |
|
89 | 89 | } |
|
90 | 90 | this.$el.addClass('align-' + this.model.get('align')); |
|
91 | 91 | }, |
|
92 | 92 | }); |
|
93 | 93 | |
|
94 | ||
|
95 | var VBoxContainerView = FlexContainerView.extend({ | |
|
96 | render: function(){ | |
|
97 | this.$el.addClass('vbox'); | |
|
98 | FlexContainerView.__super__.render.apply(this); | |
|
99 | }, | |
|
100 | }); | |
|
101 | ||
|
102 | ||
|
103 | var HBoxContainerView = FlexContainerView.extend({ | |
|
104 | render: function(){ | |
|
105 | this.$el.addClass('hbox'); | |
|
106 | FlexContainerView.__super__.render.apply(this); | |
|
107 | }, | |
|
108 | }); | |
|
109 | ||
|
110 | ||
|
111 | 94 | var PopupView = widget.DOMWidgetView.extend({ |
|
112 | 95 | render: function(){ |
|
113 | 96 | // Called when view is rendered. |
|
114 | 97 | var that = this; |
|
115 | 98 | |
|
116 | 99 | this.$el.on("remove", function(){ |
|
117 | 100 | that.$backdrop.remove(); |
|
118 | 101 | }); |
|
119 | 102 | this.$backdrop = $('<div />') |
|
120 | 103 | .appendTo($('#notebook-container')) |
|
121 | 104 | .addClass('modal-dialog') |
|
122 | 105 | .css('position', 'absolute') |
|
123 | 106 | .css('left', '0px') |
|
124 | 107 | .css('top', '0px'); |
|
125 | 108 | this.$window = $('<div />') |
|
126 | 109 | .appendTo(this.$backdrop) |
|
127 | 110 | .addClass('modal-content widget-modal') |
|
128 | 111 | .mousedown(function(){ |
|
129 | 112 | that.bring_to_front(); |
|
130 | 113 | }); |
|
131 | 114 | |
|
132 | 115 | // Set the elements array since the this.$window element is not child |
|
133 | 116 | // of this.$el and the parent widget manager or other widgets may |
|
134 | 117 | // need to know about all of the top-level widgets. The IPython |
|
135 | 118 | // widget manager uses this to register the elements with the |
|
136 | 119 | // keyboard manager. |
|
137 | 120 | this.additional_elements = [this.$window]; |
|
138 | 121 | |
|
139 | 122 | this.$title_bar = $('<div />') |
|
140 | 123 | .addClass('popover-title') |
|
141 | 124 | .appendTo(this.$window) |
|
142 | 125 | .mousedown(function(){ |
|
143 | 126 | that.bring_to_front(); |
|
144 | 127 | }); |
|
145 | 128 | this.$close = $('<button />') |
|
146 | 129 | .addClass('close fa fa-remove') |
|
147 | 130 | .css('margin-left', '5px') |
|
148 | 131 | .appendTo(this.$title_bar) |
|
149 | 132 | .click(function(){ |
|
150 | 133 | that.hide(); |
|
151 | 134 | event.stopPropagation(); |
|
152 | 135 | }); |
|
153 | 136 | this.$minimize = $('<button />') |
|
154 | 137 | .addClass('close fa fa-arrow-down') |
|
155 | 138 | .appendTo(this.$title_bar) |
|
156 | 139 | .click(function(){ |
|
157 | 140 | that.popped_out = !that.popped_out; |
|
158 | 141 | if (!that.popped_out) { |
|
159 | 142 | that.$minimize |
|
160 | 143 | .removeClass('fa fa-arrow-down') |
|
161 | 144 | .addClass('fa fa-arrow-up'); |
|
162 | 145 | |
|
163 | 146 | that.$window |
|
164 | 147 | .draggable('destroy') |
|
165 | 148 | .resizable('destroy') |
|
166 | 149 | .removeClass('widget-modal modal-content') |
|
167 | 150 | .addClass('docked-widget-modal') |
|
168 | 151 | .detach() |
|
169 | 152 | .insertBefore(that.$show_button); |
|
170 | 153 | that.$show_button.hide(); |
|
171 | 154 | that.$close.hide(); |
|
172 | 155 | } else { |
|
173 | 156 | that.$minimize |
|
174 | 157 | .addClass('fa fa-arrow-down') |
|
175 | 158 | .removeClass('fa fa-arrow-up'); |
|
176 | 159 | |
|
177 | 160 | that.$window |
|
178 | 161 | .removeClass('docked-widget-modal') |
|
179 | 162 | .addClass('widget-modal modal-content') |
|
180 | 163 | .detach() |
|
181 | 164 | .appendTo(that.$backdrop) |
|
182 | 165 | .draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'}) |
|
183 | 166 | .resizable() |
|
184 | 167 | .children('.ui-resizable-handle').show(); |
|
185 | 168 | that.show(); |
|
186 | 169 | that.$show_button.show(); |
|
187 | 170 | that.$close.show(); |
|
188 | 171 | } |
|
189 | 172 | event.stopPropagation(); |
|
190 | 173 | }); |
|
191 | 174 | this.$title = $('<div />') |
|
192 | 175 | .addClass('widget-modal-title') |
|
193 | 176 | .html(" ") |
|
194 | 177 | .appendTo(this.$title_bar); |
|
195 | 178 | this.$body = $('<div />') |
|
196 | 179 | .addClass('modal-body') |
|
197 | 180 | .addClass('widget-modal-body') |
|
198 | 181 | .addClass('widget-container') |
|
199 | 182 | .addClass('vbox') |
|
200 | 183 | .appendTo(this.$window); |
|
201 | 184 | |
|
202 | 185 | this.$show_button = $('<button />') |
|
203 | 186 | .html(" ") |
|
204 | 187 | .addClass('btn btn-info widget-modal-show') |
|
205 | 188 | .appendTo(this.$el) |
|
206 | 189 | .click(function(){ |
|
207 | 190 | that.show(); |
|
208 | 191 | }); |
|
209 | 192 | |
|
210 | 193 | this.$window.draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'}); |
|
211 | 194 | this.$window.resizable(); |
|
212 | 195 | this.$window.on('resize', function(){ |
|
213 | 196 | that.$body.outerHeight(that.$window.innerHeight() - that.$title_bar.outerHeight()); |
|
214 | 197 | }); |
|
215 | 198 | |
|
216 | 199 | this._shown_once = false; |
|
217 | 200 | this.popped_out = true; |
|
218 | 201 | |
|
219 | 202 | this.update_children([], this.model.get('children')); |
|
220 | 203 | this.model.on('change:children', function(model, value) { |
|
221 | 204 | this.update_children(model.previous('children'), value); |
|
222 | 205 | }, this); |
|
223 | 206 | }, |
|
224 | 207 | |
|
225 | 208 | hide: function() { |
|
226 | 209 | // Called when the modal hide button is clicked. |
|
227 | 210 | this.$window.hide(); |
|
228 | 211 | this.$show_button.removeClass('btn-info'); |
|
229 | 212 | }, |
|
230 | 213 | |
|
231 | 214 | show: function() { |
|
232 | 215 | // Called when the modal show button is clicked. |
|
233 | 216 | this.$show_button.addClass('btn-info'); |
|
234 | 217 | this.$window.show(); |
|
235 | 218 | if (this.popped_out) { |
|
236 | 219 | this.$window.css("positon", "absolute"); |
|
237 | 220 | this.$window.css("top", "0px"); |
|
238 | 221 | this.$window.css("left", Math.max(0, (($('body').outerWidth() - this.$window.outerWidth()) / 2) + |
|
239 | 222 | $(window).scrollLeft()) + "px"); |
|
240 | 223 | this.bring_to_front(); |
|
241 | 224 | } |
|
242 | 225 | }, |
|
243 | 226 | |
|
244 | 227 | bring_to_front: function() { |
|
245 | 228 | // Make the modal top-most, z-ordered about the other modals. |
|
246 | 229 | var $widget_modals = $(".widget-modal"); |
|
247 | 230 | var max_zindex = 0; |
|
248 | 231 | $widget_modals.each(function (index, el){ |
|
249 | 232 | var zindex = parseInt($(el).css('z-index')); |
|
250 | 233 | if (!isNaN(zindex)) { |
|
251 | 234 | max_zindex = Math.max(max_zindex, zindex); |
|
252 | 235 | } |
|
253 | 236 | }); |
|
254 | 237 | |
|
255 | 238 | // Start z-index of widget modals at 2000 |
|
256 | 239 | max_zindex = Math.max(max_zindex, 2000); |
|
257 | 240 | |
|
258 | 241 | $widget_modals.each(function (index, el){ |
|
259 | 242 | $el = $(el); |
|
260 | 243 | if (max_zindex == parseInt($el.css('z-index'))) { |
|
261 | 244 | $el.css('z-index', max_zindex - 1); |
|
262 | 245 | } |
|
263 | 246 | }); |
|
264 | 247 | this.$window.css('z-index', max_zindex); |
|
265 | 248 | }, |
|
266 | 249 | |
|
267 | 250 | update_children: function(old_list, new_list) { |
|
268 | 251 | // Called when the children list is modified. |
|
269 | 252 | this.do_diff(old_list, new_list, |
|
270 | 253 | $.proxy(this.remove_child_model, this), |
|
271 | 254 | $.proxy(this.add_child_model, this)); |
|
272 | 255 | }, |
|
273 | 256 | |
|
274 | 257 | remove_child_model: function(model) { |
|
275 | 258 | // Called when a child is removed from children list. |
|
276 | 259 | this.pop_child_view(model).remove(); |
|
277 | 260 | }, |
|
278 | 261 | |
|
279 | 262 | add_child_model: function(model) { |
|
280 | 263 | // Called when a child is added to children list. |
|
281 | 264 | var view = this.create_child_view(model); |
|
282 | 265 | this.$body.append(view.$el); |
|
283 | 266 | |
|
284 | 267 | // Trigger the displayed event of the child view. |
|
285 | 268 | this.after_displayed(function() { |
|
286 | 269 | view.trigger('displayed'); |
|
287 | 270 | }); |
|
288 | 271 | }, |
|
289 | 272 | |
|
290 | 273 | update: function(){ |
|
291 | 274 | // Update the contents of this view |
|
292 | 275 | // |
|
293 | 276 | // Called when the model is changed. The model may have been |
|
294 | 277 | // changed by another view or by a state update from the back-end. |
|
295 | 278 | var description = this.model.get('description'); |
|
296 | 279 | if (description.trim().length === 0) { |
|
297 | 280 | this.$title.html(" "); // Preserve title height |
|
298 | 281 | } else { |
|
299 | 282 | this.$title.text(description); |
|
300 | 283 | MathJax.Hub.Queue(["Typeset",MathJax.Hub,this.$title.get(0)]); |
|
301 | 284 | } |
|
302 | 285 | |
|
303 | 286 | var button_text = this.model.get('button_text'); |
|
304 | 287 | if (button_text.trim().length === 0) { |
|
305 | 288 | this.$show_button.html(" "); // Preserve button height |
|
306 | 289 | } else { |
|
307 | 290 | this.$show_button.text(button_text); |
|
308 | 291 | } |
|
309 | 292 | |
|
310 | 293 | if (!this._shown_once) { |
|
311 | 294 | this._shown_once = true; |
|
312 | 295 | this.show(); |
|
313 | 296 | } |
|
314 | 297 | |
|
315 | 298 | return PopupView.__super__.update.apply(this); |
|
316 | 299 | }, |
|
317 | 300 | |
|
318 | 301 | _get_selector_element: function(selector) { |
|
319 | 302 | // Get an element view a 'special' jquery selector. (see widget.js) |
|
320 | 303 | // |
|
321 | 304 | // Since the modal actually isn't within the $el in the DOM, we need to extend |
|
322 | 305 | // the selector logic to allow the user to set css on the modal if need be. |
|
323 | 306 | // The convention used is: |
|
324 | 307 | // "modal" - select the modal div |
|
325 | 308 | // "modal [selector]" - select element(s) within the modal div. |
|
326 | 309 | // "[selector]" - select elements within $el |
|
327 | 310 | // "" - select the $el |
|
328 | 311 | if (selector.substring(0, 5) == 'modal') { |
|
329 | 312 | if (selector == 'modal') { |
|
330 | 313 | return this.$window; |
|
331 | 314 | } else { |
|
332 | 315 | return this.$window.find(selector.substring(6)); |
|
333 | 316 | } |
|
334 | 317 | } else { |
|
335 | 318 | return PopupView.__super__._get_selector_element.apply(this, [selector]); |
|
336 | 319 | } |
|
337 | 320 | }, |
|
338 | 321 | }); |
|
339 | 322 | |
|
340 | 323 | return { |
|
341 | 324 | 'ContainerView': ContainerView, |
|
342 | 325 | 'PopupView': PopupView, |
|
343 | 326 | 'FlexContainerView': FlexContainerView, |
|
344 | 'VBoxContainerView': VBoxContainerView, | |
|
345 | 'HBoxContainerView': HBoxContainerView, | |
|
346 | 327 | }; |
|
347 | 328 | }); |
General Comments 0
You need to be logged in to leave comments.
Login now