Show More
@@ -1,121 +1,121 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2011 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // On document ready |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | // for the time beeing, we have to pass marked as a parameter here, |
|
13 | 13 | // as injecting require.js make marked not to put itself in the globals, |
|
14 | 14 | // which make both this file fail at setting marked configuration, and textcell.js |
|
15 | 15 | // which search marked into global. |
|
16 | 16 | require(['components/marked/lib/marked', |
|
17 |
' |
|
|
17 | 'widgets/js/init'], | |
|
18 | 18 | |
|
19 | 19 | function (marked) { |
|
20 | 20 | "use strict"; |
|
21 | 21 | |
|
22 | 22 | window.marked = marked; |
|
23 | 23 | |
|
24 | 24 | // monkey patch CM to be able to syntax highlight cell magics |
|
25 | 25 | // bug reported upstream, |
|
26 | 26 | // see https://github.com/marijnh/CodeMirror2/issues/670 |
|
27 | 27 | if(CodeMirror.getMode(1,'text/plain').indent === undefined ){ |
|
28 | 28 | console.log('patching CM for undefined indent'); |
|
29 | 29 | CodeMirror.modes.null = function() { |
|
30 | 30 | return {token: function(stream) {stream.skipToEnd();},indent : function(){return 0;}}; |
|
31 | 31 | }; |
|
32 | 32 | } |
|
33 | 33 | |
|
34 | 34 | CodeMirror.patchedGetMode = function(config, mode){ |
|
35 | 35 | var cmmode = CodeMirror.getMode(config, mode); |
|
36 | 36 | if(cmmode.indent === null) { |
|
37 | 37 | console.log('patch mode "' , mode, '" on the fly'); |
|
38 | 38 | cmmode.indent = function(){return 0;}; |
|
39 | 39 | } |
|
40 | 40 | return cmmode; |
|
41 | 41 | }; |
|
42 | 42 | // end monkey patching CodeMirror |
|
43 | 43 | |
|
44 | 44 | IPython.mathjaxutils.init(); |
|
45 | 45 | |
|
46 | 46 | $('#ipython-main-app').addClass('border-box-sizing'); |
|
47 | 47 | $('div#notebook_panel').addClass('border-box-sizing'); |
|
48 | 48 | |
|
49 | 49 | var opts = { |
|
50 | 50 | base_url : IPython.utils.get_body_data("baseUrl"), |
|
51 | 51 | notebook_path : IPython.utils.get_body_data("notebookPath"), |
|
52 | 52 | notebook_name : IPython.utils.get_body_data('notebookName') |
|
53 | 53 | }; |
|
54 | 54 | |
|
55 | 55 | IPython.page = new IPython.Page(); |
|
56 | 56 | IPython.layout_manager = new IPython.LayoutManager(); |
|
57 | 57 | IPython.pager = new IPython.Pager('div#pager', 'div#pager_splitter'); |
|
58 | 58 | IPython.quick_help = new IPython.QuickHelp(); |
|
59 | 59 | IPython.login_widget = new IPython.LoginWidget('span#login_widget', opts); |
|
60 | 60 | IPython.notebook = new IPython.Notebook('div#notebook', opts); |
|
61 | 61 | IPython.keyboard_manager = new IPython.KeyboardManager(); |
|
62 | 62 | IPython.save_widget = new IPython.SaveWidget('span#save_widget'); |
|
63 | 63 | IPython.menubar = new IPython.MenuBar('#menubar', opts); |
|
64 | 64 | IPython.toolbar = new IPython.MainToolBar('#maintoolbar-container'); |
|
65 | 65 | IPython.tooltip = new IPython.Tooltip(); |
|
66 | 66 | IPython.notification_area = new IPython.NotificationArea('#notification_area'); |
|
67 | 67 | IPython.notification_area.init_notification_widgets(); |
|
68 | 68 | |
|
69 | 69 | IPython.layout_manager.do_resize(); |
|
70 | 70 | |
|
71 | 71 | $('body').append('<div id="fonttest"><pre><span id="test1">x</span>'+ |
|
72 | 72 | '<span id="test2" style="font-weight: bold;">x</span>'+ |
|
73 | 73 | '<span id="test3" style="font-style: italic;">x</span></pre></div>'); |
|
74 | 74 | var nh = $('#test1').innerHeight(); |
|
75 | 75 | var bh = $('#test2').innerHeight(); |
|
76 | 76 | var ih = $('#test3').innerHeight(); |
|
77 | 77 | if(nh != bh || nh != ih) { |
|
78 | 78 | $('head').append('<style>.CodeMirror span { vertical-align: bottom; }</style>'); |
|
79 | 79 | } |
|
80 | 80 | $('#fonttest').remove(); |
|
81 | 81 | |
|
82 | 82 | IPython.page.show(); |
|
83 | 83 | |
|
84 | 84 | IPython.layout_manager.do_resize(); |
|
85 | 85 | var first_load = function () { |
|
86 | 86 | IPython.layout_manager.do_resize(); |
|
87 | 87 | var hash = document.location.hash; |
|
88 | 88 | if (hash) { |
|
89 | 89 | document.location.hash = ''; |
|
90 | 90 | document.location.hash = hash; |
|
91 | 91 | } |
|
92 | 92 | IPython.notebook.set_autosave_interval(IPython.notebook.minimum_autosave_interval); |
|
93 | 93 | // only do this once |
|
94 | 94 | $([IPython.events]).off('notebook_loaded.Notebook', first_load); |
|
95 | 95 | }; |
|
96 | 96 | |
|
97 | 97 | $([IPython.events]).on('notebook_loaded.Notebook', first_load); |
|
98 | 98 | $([IPython.events]).trigger('app_initialized.NotebookApp'); |
|
99 | 99 | IPython.notebook.load_notebook(opts.notebook_name, opts.notebook_path); |
|
100 | 100 | |
|
101 | 101 | if (marked) { |
|
102 | 102 | marked.setOptions({ |
|
103 | 103 | gfm : true, |
|
104 | 104 | tables: true, |
|
105 | 105 | langPrefix: "language-", |
|
106 | 106 | highlight: function(code, lang) { |
|
107 | 107 | if (!lang) { |
|
108 | 108 | // no language, no highlight |
|
109 | 109 | return code; |
|
110 | 110 | } |
|
111 | 111 | var highlighted; |
|
112 | 112 | try { |
|
113 | 113 | highlighted = hljs.highlight(lang, code, false); |
|
114 | 114 | } catch(err) { |
|
115 | 115 | highlighted = hljs.highlightAuto(code); |
|
116 | 116 | } |
|
117 | 117 | return highlighted.value; |
|
118 | 118 | } |
|
119 | 119 | }); |
|
120 | 120 | } |
|
121 | 121 | }); |
@@ -1,22 +1,22 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // Basic Widgets |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | define([ |
|
13 |
" |
|
|
14 |
" |
|
|
15 |
" |
|
|
16 |
" |
|
|
17 |
" |
|
|
18 |
" |
|
|
19 |
" |
|
|
20 |
" |
|
|
21 |
" |
|
|
13 | "widgets/js/widget_bool", | |
|
14 | "widgets/js/widget_button", | |
|
15 | "widgets/js/widget_container", | |
|
16 | "widgets/js/widget_float", | |
|
17 | "widgets/js/widget_image", | |
|
18 | "widgets/js/widget_int", | |
|
19 | "widgets/js/widget_selection", | |
|
20 | "widgets/js/widget_selectioncontainer", | |
|
21 | "widgets/js/widget_string", | |
|
22 | 22 | ], function(){ return true; }); |
@@ -1,450 +1,450 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // Base Widget Model and View classes |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/manager", | |
|
18 | 18 | "underscore", |
|
19 | 19 | "backbone"], |
|
20 | 20 | function(WidgetManager, _, Backbone){ |
|
21 | 21 | |
|
22 | 22 | var WidgetModel = Backbone.Model.extend({ |
|
23 | 23 | constructor: function (widget_manager, model_id, comm) { |
|
24 | 24 | // Constructor |
|
25 | 25 | // |
|
26 | 26 | // Creates a WidgetModel instance. |
|
27 | 27 | // |
|
28 | 28 | // Parameters |
|
29 | 29 | // ---------- |
|
30 | 30 | // widget_manager : WidgetManager instance |
|
31 | 31 | // model_id : string |
|
32 | 32 | // An ID unique to this model. |
|
33 | 33 | // comm : Comm instance (optional) |
|
34 | 34 | this.widget_manager = widget_manager; |
|
35 | 35 | this._buffered_state_diff = {}; |
|
36 | 36 | this.pending_msgs = 0; |
|
37 | 37 | this.msg_buffer = null; |
|
38 | 38 | this.key_value_lock = null; |
|
39 | 39 | this.id = model_id; |
|
40 | 40 | this.views = []; |
|
41 | 41 | |
|
42 | 42 | if (comm !== undefined) { |
|
43 | 43 | // Remember comm associated with the model. |
|
44 | 44 | this.comm = comm; |
|
45 | 45 | comm.model = this; |
|
46 | 46 | |
|
47 | 47 | // Hook comm messages up to model. |
|
48 | 48 | comm.on_close($.proxy(this._handle_comm_closed, this)); |
|
49 | 49 | comm.on_msg($.proxy(this._handle_comm_msg, this)); |
|
50 | 50 | } |
|
51 | 51 | return Backbone.Model.apply(this); |
|
52 | 52 | }, |
|
53 | 53 | |
|
54 | 54 | send: function (content, callbacks) { |
|
55 | 55 | // Send a custom msg over the comm. |
|
56 | 56 | if (this.comm !== undefined) { |
|
57 | 57 | var data = {method: 'custom', content: content}; |
|
58 | 58 | this.comm.send(data, callbacks); |
|
59 | 59 | this.pending_msgs++; |
|
60 | 60 | } |
|
61 | 61 | }, |
|
62 | 62 | |
|
63 | 63 | _handle_comm_closed: function (msg) { |
|
64 | 64 | // Handle when a widget is closed. |
|
65 | 65 | this.trigger('comm:close'); |
|
66 | 66 | delete this.comm.model; // Delete ref so GC will collect widget model. |
|
67 | 67 | delete this.comm; |
|
68 | 68 | delete this.model_id; // Delete id from model so widget manager cleans up. |
|
69 | 69 | _.each(this.views, function(view, i) { |
|
70 | 70 | view.remove(); |
|
71 | 71 | }); |
|
72 | 72 | }, |
|
73 | 73 | |
|
74 | 74 | _handle_comm_msg: function (msg) { |
|
75 | 75 | // Handle incoming comm msg. |
|
76 | 76 | var method = msg.content.data.method; |
|
77 | 77 | switch (method) { |
|
78 | 78 | case 'update': |
|
79 | 79 | this.apply_update(msg.content.data.state); |
|
80 | 80 | break; |
|
81 | 81 | case 'custom': |
|
82 | 82 | this.trigger('msg:custom', msg.content.data.content); |
|
83 | 83 | break; |
|
84 | 84 | case 'display': |
|
85 | 85 | this.widget_manager.display_view(msg, this); |
|
86 | 86 | break; |
|
87 | 87 | } |
|
88 | 88 | }, |
|
89 | 89 | |
|
90 | 90 | apply_update: function (state) { |
|
91 | 91 | // Handle when a widget is updated via the python side. |
|
92 | 92 | var that = this; |
|
93 | 93 | _.each(state, function(value, key) { |
|
94 | 94 | that.key_value_lock = [key, value]; |
|
95 | 95 | try { |
|
96 | 96 | WidgetModel.__super__.set.apply(that, [key, that._unpack_models(value)]); |
|
97 | 97 | } finally { |
|
98 | 98 | that.key_value_lock = null; |
|
99 | 99 | } |
|
100 | 100 | }); |
|
101 | 101 | }, |
|
102 | 102 | |
|
103 | 103 | _handle_status: function (msg, callbacks) { |
|
104 | 104 | // Handle status msgs. |
|
105 | 105 | |
|
106 | 106 | // execution_state : ('busy', 'idle', 'starting') |
|
107 | 107 | if (this.comm !== undefined) { |
|
108 | 108 | if (msg.content.execution_state ==='idle') { |
|
109 | 109 | // Send buffer if this message caused another message to be |
|
110 | 110 | // throttled. |
|
111 | 111 | if (this.msg_buffer !== null && |
|
112 | 112 | (this.get('msg_throttle') || 3) === this.pending_msgs) { |
|
113 | 113 | var data = {method: 'backbone', sync_method: 'update', sync_data: this.msg_buffer}; |
|
114 | 114 | this.comm.send(data, callbacks); |
|
115 | 115 | this.msg_buffer = null; |
|
116 | 116 | } else { |
|
117 | 117 | --this.pending_msgs; |
|
118 | 118 | } |
|
119 | 119 | } |
|
120 | 120 | } |
|
121 | 121 | }, |
|
122 | 122 | |
|
123 | 123 | callbacks: function(view) { |
|
124 | 124 | // Create msg callbacks for a comm msg. |
|
125 | 125 | var callbacks = this.widget_manager.callbacks(view); |
|
126 | 126 | |
|
127 | 127 | if (callbacks.iopub === undefined) { |
|
128 | 128 | callbacks.iopub = {}; |
|
129 | 129 | } |
|
130 | 130 | |
|
131 | 131 | var that = this; |
|
132 | 132 | callbacks.iopub.status = function (msg) { |
|
133 | 133 | that._handle_status(msg, callbacks); |
|
134 | 134 | }; |
|
135 | 135 | return callbacks; |
|
136 | 136 | }, |
|
137 | 137 | |
|
138 | 138 | set: function(key, val, options) { |
|
139 | 139 | // Set a value. |
|
140 | 140 | var return_value = WidgetModel.__super__.set.apply(this, arguments); |
|
141 | 141 | |
|
142 | 142 | // Backbone only remembers the diff of the most recent set() |
|
143 | 143 | // operation. Calling set multiple times in a row results in a |
|
144 | 144 | // loss of diff information. Here we keep our own running diff. |
|
145 | 145 | this._buffered_state_diff = $.extend(this._buffered_state_diff, this.changedAttributes() || {}); |
|
146 | 146 | return return_value; |
|
147 | 147 | }, |
|
148 | 148 | |
|
149 | 149 | sync: function (method, model, options) { |
|
150 | 150 | // Handle sync to the back-end. Called when a model.save() is called. |
|
151 | 151 | |
|
152 | 152 | // Make sure a comm exists. |
|
153 | 153 | var error = options.error || function() { |
|
154 | 154 | console.error('Backbone sync error:', arguments); |
|
155 | 155 | }; |
|
156 | 156 | if (this.comm === undefined) { |
|
157 | 157 | error(); |
|
158 | 158 | return false; |
|
159 | 159 | } |
|
160 | 160 | |
|
161 | 161 | // Delete any key value pairs that the back-end already knows about. |
|
162 | 162 | var attrs = (method === 'patch') ? options.attrs : model.toJSON(options); |
|
163 | 163 | if (this.key_value_lock !== null) { |
|
164 | 164 | var key = this.key_value_lock[0]; |
|
165 | 165 | var value = this.key_value_lock[1]; |
|
166 | 166 | if (attrs[key] === value) { |
|
167 | 167 | delete attrs[key]; |
|
168 | 168 | } |
|
169 | 169 | } |
|
170 | 170 | |
|
171 | 171 | // Only sync if there are attributes to send to the back-end. |
|
172 | 172 | attrs = this._pack_models(attrs); |
|
173 | 173 | if (_.size(attrs) > 0) { |
|
174 | 174 | |
|
175 | 175 | // If this message was sent via backbone itself, it will not |
|
176 | 176 | // have any callbacks. It's important that we create callbacks |
|
177 | 177 | // so we can listen for status messages, etc... |
|
178 | 178 | var callbacks = options.callbacks || this.callbacks(); |
|
179 | 179 | |
|
180 | 180 | // Check throttle. |
|
181 | 181 | if (this.pending_msgs >= (this.get('msg_throttle') || 3)) { |
|
182 | 182 | // The throttle has been exceeded, buffer the current msg so |
|
183 | 183 | // it can be sent once the kernel has finished processing |
|
184 | 184 | // some of the existing messages. |
|
185 | 185 | |
|
186 | 186 | // Combine updates if it is a 'patch' sync, otherwise replace updates |
|
187 | 187 | switch (method) { |
|
188 | 188 | case 'patch': |
|
189 | 189 | this.msg_buffer = $.extend(this.msg_buffer || {}, attrs); |
|
190 | 190 | break; |
|
191 | 191 | case 'update': |
|
192 | 192 | case 'create': |
|
193 | 193 | this.msg_buffer = attrs; |
|
194 | 194 | break; |
|
195 | 195 | default: |
|
196 | 196 | error(); |
|
197 | 197 | return false; |
|
198 | 198 | } |
|
199 | 199 | this.msg_buffer_callbacks = callbacks; |
|
200 | 200 | |
|
201 | 201 | } else { |
|
202 | 202 | // We haven't exceeded the throttle, send the message like |
|
203 | 203 | // normal. |
|
204 | 204 | var data = {method: 'backbone', sync_data: attrs}; |
|
205 | 205 | this.comm.send(data, callbacks); |
|
206 | 206 | this.pending_msgs++; |
|
207 | 207 | } |
|
208 | 208 | } |
|
209 | 209 | // Since the comm is a one-way communication, assume the message |
|
210 | 210 | // arrived. Don't call success since we don't have a model back from the server |
|
211 | 211 | // this means we miss out on the 'sync' event. |
|
212 | 212 | this._buffered_state_diff = {}; |
|
213 | 213 | }, |
|
214 | 214 | |
|
215 | 215 | save_changes: function(callbacks) { |
|
216 | 216 | // Push this model's state to the back-end |
|
217 | 217 | // |
|
218 | 218 | // This invokes a Backbone.Sync. |
|
219 | 219 | this.save(this._buffered_state_diff, {patch: true, callbacks: callbacks}); |
|
220 | 220 | }, |
|
221 | 221 | |
|
222 | 222 | _pack_models: function(value) { |
|
223 | 223 | // Replace models with model ids recursively. |
|
224 | 224 | if (value instanceof Backbone.Model) { |
|
225 | 225 | return value.id; |
|
226 | 226 | |
|
227 | 227 | } else if ($.isArray(value)) { |
|
228 | 228 | var packed = []; |
|
229 | 229 | var that = this; |
|
230 | 230 | _.each(value, function(sub_value, key) { |
|
231 | 231 | packed.push(that._pack_models(sub_value)); |
|
232 | 232 | }); |
|
233 | 233 | return packed; |
|
234 | 234 | |
|
235 | 235 | } else if (value instanceof Object) { |
|
236 | 236 | var packed = {}; |
|
237 | 237 | var that = this; |
|
238 | 238 | _.each(value, function(sub_value, key) { |
|
239 | 239 | packed[key] = that._pack_models(sub_value); |
|
240 | 240 | }); |
|
241 | 241 | return packed; |
|
242 | 242 | |
|
243 | 243 | } else { |
|
244 | 244 | return value; |
|
245 | 245 | } |
|
246 | 246 | }, |
|
247 | 247 | |
|
248 | 248 | _unpack_models: function(value) { |
|
249 | 249 | // Replace model ids with models recursively. |
|
250 | 250 | if ($.isArray(value)) { |
|
251 | 251 | var unpacked = []; |
|
252 | 252 | var that = this; |
|
253 | 253 | _.each(value, function(sub_value, key) { |
|
254 | 254 | unpacked.push(that._unpack_models(sub_value)); |
|
255 | 255 | }); |
|
256 | 256 | return unpacked; |
|
257 | 257 | |
|
258 | 258 | } else if (value instanceof Object) { |
|
259 | 259 | var unpacked = {}; |
|
260 | 260 | var that = this; |
|
261 | 261 | _.each(value, function(sub_value, key) { |
|
262 | 262 | unpacked[key] = that._unpack_models(sub_value); |
|
263 | 263 | }); |
|
264 | 264 | return unpacked; |
|
265 | 265 | |
|
266 | 266 | } else { |
|
267 | 267 | var model = this.widget_manager.get_model(value); |
|
268 | 268 | if (model) { |
|
269 | 269 | return model; |
|
270 | 270 | } else { |
|
271 | 271 | return value; |
|
272 | 272 | } |
|
273 | 273 | } |
|
274 | 274 | }, |
|
275 | 275 | |
|
276 | 276 | }); |
|
277 | 277 | WidgetManager.register_widget_model('WidgetModel', WidgetModel); |
|
278 | 278 | |
|
279 | 279 | |
|
280 | 280 | var WidgetView = Backbone.View.extend({ |
|
281 | 281 | initialize: function(parameters) { |
|
282 | 282 | // Public constructor. |
|
283 | 283 | this.model.on('change',this.update,this); |
|
284 | 284 | this.options = parameters.options; |
|
285 | 285 | this.child_views = []; |
|
286 | 286 | this.model.views.push(this); |
|
287 | 287 | }, |
|
288 | 288 | |
|
289 | 289 | update: function(){ |
|
290 | 290 | // Triggered on model change. |
|
291 | 291 | // |
|
292 | 292 | // Update view to be consistent with this.model |
|
293 | 293 | }, |
|
294 | 294 | |
|
295 | 295 | create_child_view: function(child_model, options) { |
|
296 | 296 | // Create and return a child view. |
|
297 | 297 | // |
|
298 | 298 | // -given a model and (optionally) a view name if the view name is |
|
299 | 299 | // not given, it defaults to the model's default view attribute. |
|
300 | 300 | |
|
301 | 301 | // TODO: this is hacky, and makes the view depend on this cell attribute and widget manager behavior |
|
302 | 302 | // it would be great to have the widget manager add the cell metadata |
|
303 | 303 | // to the subview without having to add it here. |
|
304 | 304 | var child_view = this.model.widget_manager.create_view(child_model, options || {}, this); |
|
305 | 305 | this.child_views[child_model.id] = child_view; |
|
306 | 306 | return child_view; |
|
307 | 307 | }, |
|
308 | 308 | |
|
309 | 309 | delete_child_view: function(child_model, options) { |
|
310 | 310 | // Delete a child view that was previously created using create_child_view. |
|
311 | 311 | var view = this.child_views[child_model.id]; |
|
312 | 312 | if (view !== undefined) { |
|
313 | 313 | delete this.child_views[child_model.id]; |
|
314 | 314 | view.remove(); |
|
315 | 315 | } |
|
316 | 316 | }, |
|
317 | 317 | |
|
318 | 318 | do_diff: function(old_list, new_list, removed_callback, added_callback) { |
|
319 | 319 | // Difference a changed list and call remove and add callbacks for |
|
320 | 320 | // each removed and added item in the new list. |
|
321 | 321 | // |
|
322 | 322 | // Parameters |
|
323 | 323 | // ---------- |
|
324 | 324 | // old_list : array |
|
325 | 325 | // new_list : array |
|
326 | 326 | // removed_callback : Callback(item) |
|
327 | 327 | // Callback that is called for each item removed. |
|
328 | 328 | // added_callback : Callback(item) |
|
329 | 329 | // Callback that is called for each item added. |
|
330 | 330 | |
|
331 | 331 | |
|
332 | 332 | // removed items |
|
333 | 333 | _.each(_.difference(old_list, new_list), function(item, index, list) { |
|
334 | 334 | removed_callback(item); |
|
335 | 335 | }, this); |
|
336 | 336 | |
|
337 | 337 | // added items |
|
338 | 338 | _.each(_.difference(new_list, old_list), function(item, index, list) { |
|
339 | 339 | added_callback(item); |
|
340 | 340 | }, this); |
|
341 | 341 | }, |
|
342 | 342 | |
|
343 | 343 | callbacks: function(){ |
|
344 | 344 | // Create msg callbacks for a comm msg. |
|
345 | 345 | return this.model.callbacks(this); |
|
346 | 346 | }, |
|
347 | 347 | |
|
348 | 348 | render: function(){ |
|
349 | 349 | // Render the view. |
|
350 | 350 | // |
|
351 | 351 | // By default, this is only called the first time the view is created |
|
352 | 352 | }, |
|
353 | 353 | |
|
354 | 354 | send: function (content) { |
|
355 | 355 | // Send a custom msg associated with this view. |
|
356 | 356 | this.model.send(content, this.callbacks()); |
|
357 | 357 | }, |
|
358 | 358 | |
|
359 | 359 | touch: function () { |
|
360 | 360 | this.model.save_changes(this.callbacks()); |
|
361 | 361 | }, |
|
362 | 362 | }); |
|
363 | 363 | |
|
364 | 364 | |
|
365 | 365 | var DOMWidgetView = WidgetView.extend({ |
|
366 | 366 | initialize: function (options) { |
|
367 | 367 | // Public constructor |
|
368 | 368 | |
|
369 | 369 | // In the future we may want to make changes more granular |
|
370 | 370 | // (e.g., trigger on visible:change). |
|
371 | 371 | this.model.on('change', this.update, this); |
|
372 | 372 | this.model.on('msg:custom', this.on_msg, this); |
|
373 | 373 | DOMWidgetView.__super__.initialize.apply(this, arguments); |
|
374 | 374 | }, |
|
375 | 375 | |
|
376 | 376 | on_msg: function(msg) { |
|
377 | 377 | // Handle DOM specific msgs. |
|
378 | 378 | switch(msg.msg_type) { |
|
379 | 379 | case 'add_class': |
|
380 | 380 | this.add_class(msg.selector, msg.class_list); |
|
381 | 381 | break; |
|
382 | 382 | case 'remove_class': |
|
383 | 383 | this.remove_class(msg.selector, msg.class_list); |
|
384 | 384 | break; |
|
385 | 385 | } |
|
386 | 386 | }, |
|
387 | 387 | |
|
388 | 388 | add_class: function (selector, class_list) { |
|
389 | 389 | // Add a DOM class to an element. |
|
390 | 390 | this._get_selector_element(selector).addClass(class_list); |
|
391 | 391 | }, |
|
392 | 392 | |
|
393 | 393 | remove_class: function (selector, class_list) { |
|
394 | 394 | // Remove a DOM class from an element. |
|
395 | 395 | this._get_selector_element(selector).removeClass(class_list); |
|
396 | 396 | }, |
|
397 | 397 | |
|
398 | 398 | update: function () { |
|
399 | 399 | // Update the contents of this view |
|
400 | 400 | // |
|
401 | 401 | // Called when the model is changed. The model may have been |
|
402 | 402 | // changed by another view or by a state update from the back-end. |
|
403 | 403 | // The very first update seems to happen before the element is |
|
404 | 404 | // finished rendering so we use setTimeout to give the element time |
|
405 | 405 | // to render |
|
406 | 406 | var e = this.$el; |
|
407 | 407 | var visible = this.model.get('visible'); |
|
408 | 408 | setTimeout(function() {e.toggle(visible);},0); |
|
409 | 409 | |
|
410 | 410 | var css = this.model.get('_css'); |
|
411 | 411 | if (css === undefined) {return;} |
|
412 | 412 | var that = this; |
|
413 | 413 | _.each(css, function(css_traits, selector){ |
|
414 | 414 | // Apply the css traits to all elements that match the selector. |
|
415 | 415 | var elements = that._get_selector_element(selector); |
|
416 | 416 | if (elements.length > 0) { |
|
417 | 417 | _.each(css_traits, function(css_value, css_key){ |
|
418 | 418 | elements.css(css_key, css_value); |
|
419 | 419 | }); |
|
420 | 420 | } |
|
421 | 421 | }); |
|
422 | 422 | }, |
|
423 | 423 | |
|
424 | 424 | _get_selector_element: function (selector) { |
|
425 | 425 | // Get the elements via the css selector. |
|
426 | 426 | |
|
427 | 427 | // If the selector is blank, apply the style to the $el_to_style |
|
428 | 428 | // element. If the $el_to_style element is not defined, use apply |
|
429 | 429 | // the style to the view's element. |
|
430 | 430 | var elements; |
|
431 | 431 | if (!selector) { |
|
432 | 432 | if (this.$el_to_style === undefined) { |
|
433 | 433 | elements = this.$el; |
|
434 | 434 | } else { |
|
435 | 435 | elements = this.$el_to_style; |
|
436 | 436 | } |
|
437 | 437 | } else { |
|
438 | 438 | elements = this.$el.find(selector); |
|
439 | 439 | } |
|
440 | 440 | return elements; |
|
441 | 441 | }, |
|
442 | 442 | }); |
|
443 | 443 | |
|
444 | 444 | IPython.WidgetModel = WidgetModel; |
|
445 | 445 | IPython.WidgetView = WidgetView; |
|
446 | 446 | IPython.DOMWidgetView = DOMWidgetView; |
|
447 | 447 | |
|
448 | 448 | // Pass through WidgetManager namespace. |
|
449 | 449 | return WidgetManager; |
|
450 | 450 | }); |
@@ -1,125 +1,125 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // BoolWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var CheckboxView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.$el |
|
23 | 23 | .addClass('widget-hbox-single'); |
|
24 | 24 | this.$label = $('<div />') |
|
25 | 25 | .addClass('widget-hlabel') |
|
26 | 26 | .appendTo(this.$el) |
|
27 | 27 | .hide(); |
|
28 | 28 | this.$checkbox = $('<input />') |
|
29 | 29 | .attr('type', 'checkbox') |
|
30 | 30 | .appendTo(this.$el) |
|
31 | 31 | .click($.proxy(this.handle_click, this)); |
|
32 | 32 | |
|
33 | 33 | this.$el_to_style = this.$checkbox; // Set default element to style |
|
34 | 34 | this.update(); // Set defaults. |
|
35 | 35 | }, |
|
36 | 36 | |
|
37 | 37 | handle_click: function() { |
|
38 | 38 | // Handles when the checkbox is clicked. |
|
39 | 39 | |
|
40 | 40 | // Calling model.set will trigger all of the other views of the |
|
41 | 41 | // model to update. |
|
42 | 42 | var value = this.model.get('value'); |
|
43 | 43 | this.model.set('value', ! value, {updated_view: this}); |
|
44 | 44 | this.touch(); |
|
45 | 45 | }, |
|
46 | 46 | |
|
47 | 47 | update : function(options){ |
|
48 | 48 | // Update the contents of this view |
|
49 | 49 | // |
|
50 | 50 | // Called when the model is changed. The model may have been |
|
51 | 51 | // changed by another view or by a state update from the back-end. |
|
52 | 52 | this.$checkbox.prop('checked', this.model.get('value')); |
|
53 | 53 | |
|
54 | 54 | if (options === undefined || options.updated_view != this) { |
|
55 | 55 | var disabled = this.model.get('disabled'); |
|
56 | 56 | this.$checkbox.prop('disabled', disabled); |
|
57 | 57 | |
|
58 | 58 | var description = this.model.get('description'); |
|
59 | 59 | if (description.trim().length === 0) { |
|
60 | 60 | this.$label.hide(); |
|
61 | 61 | } else { |
|
62 | 62 | this.$label.text(description); |
|
63 | 63 | this.$label.show(); |
|
64 | 64 | } |
|
65 | 65 | } |
|
66 | 66 | return CheckboxView.__super__.update.apply(this); |
|
67 | 67 | }, |
|
68 | 68 | |
|
69 | 69 | }); |
|
70 | 70 | WidgetManager.register_widget_view('CheckboxView', CheckboxView); |
|
71 | 71 | |
|
72 | 72 | |
|
73 | 73 | var ToggleButtonView = IPython.DOMWidgetView.extend({ |
|
74 | 74 | render : function() { |
|
75 | 75 | // Called when view is rendered. |
|
76 | 76 | var that = this; |
|
77 | 77 | this.setElement($('<button />') |
|
78 | 78 | .addClass('btn') |
|
79 | 79 | .attr('type', 'button') |
|
80 | 80 | .on('click', function (e) { |
|
81 | 81 | e.preventDefault(); |
|
82 | 82 | that.handle_click(); |
|
83 | 83 | })); |
|
84 | 84 | |
|
85 | 85 | this.update(); // Set defaults. |
|
86 | 86 | }, |
|
87 | 87 | |
|
88 | 88 | update : function(options){ |
|
89 | 89 | // Update the contents of this view |
|
90 | 90 | // |
|
91 | 91 | // Called when the model is changed. The model may have been |
|
92 | 92 | // changed by another view or by a state update from the back-end. |
|
93 | 93 | if (this.model.get('value')) { |
|
94 | 94 | this.$el.addClass('active'); |
|
95 | 95 | } else { |
|
96 | 96 | this.$el.removeClass('active'); |
|
97 | 97 | } |
|
98 | 98 | |
|
99 | 99 | if (options === undefined || options.updated_view != this) { |
|
100 | 100 | |
|
101 | 101 | var disabled = this.model.get('disabled'); |
|
102 | 102 | this.$el.prop('disabled', disabled); |
|
103 | 103 | |
|
104 | 104 | var description = this.model.get('description'); |
|
105 | 105 | if (description.trim().length === 0) { |
|
106 | 106 | this.$el.html(" "); // Preserve button height |
|
107 | 107 | } else { |
|
108 | 108 | this.$el.text(description); |
|
109 | 109 | } |
|
110 | 110 | } |
|
111 | 111 | return ToggleButtonView.__super__.update.apply(this); |
|
112 | 112 | }, |
|
113 | 113 | |
|
114 | 114 | handle_click: function(e) { |
|
115 | 115 | // Handles and validates user input. |
|
116 | 116 | |
|
117 | 117 | // Calling model.set will trigger all of the other views of the |
|
118 | 118 | // model to update. |
|
119 | 119 | var value = this.model.get('value'); |
|
120 | 120 | this.model.set('value', ! value, {updated_view: this}); |
|
121 | 121 | this.touch(); |
|
122 | 122 | }, |
|
123 | 123 | }); |
|
124 | 124 | WidgetManager.register_widget_view('ToggleButtonView', ToggleButtonView); |
|
125 | 125 | }); |
@@ -1,60 +1,60 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // ButtonWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var ButtonView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.setElement($("<button />") |
|
23 | 23 | .addClass('btn')); |
|
24 | 24 | |
|
25 | 25 | this.update(); // Set defaults. |
|
26 | 26 | }, |
|
27 | 27 | |
|
28 | 28 | update : function(){ |
|
29 | 29 | // Update the contents of this view |
|
30 | 30 | // |
|
31 | 31 | // Called when the model is changed. The model may have been |
|
32 | 32 | // changed by another view or by a state update from the back-end. |
|
33 | 33 | var description = this.model.get('description'); |
|
34 | 34 | if (description.length === 0) { |
|
35 | 35 | this.$el.html(" "); // Preserve button height |
|
36 | 36 | } else { |
|
37 | 37 | this.$el.text(description); |
|
38 | 38 | } |
|
39 | 39 | |
|
40 | 40 | if (this.model.get('disabled')) { |
|
41 | 41 | this.$el.attr('disabled','disabled'); |
|
42 | 42 | } else { |
|
43 | 43 | this.$el.removeAttr('disabled'); |
|
44 | 44 | } |
|
45 | 45 | |
|
46 | 46 | return ButtonView.__super__.update.apply(this); |
|
47 | 47 | }, |
|
48 | 48 | |
|
49 | 49 | events: { |
|
50 | 50 | // Dictionary of events and their handlers. |
|
51 | 51 | 'click': '_handle_click', |
|
52 | 52 | }, |
|
53 | 53 | |
|
54 | 54 | _handle_click: function(){ |
|
55 | 55 | // Handles when the button is clicked. |
|
56 | 56 | this.send({event: 'click'}); |
|
57 | 57 | }, |
|
58 | 58 | }); |
|
59 | 59 | WidgetManager.register_widget_view('ButtonView', ButtonView); |
|
60 | 60 | }); |
@@ -1,282 +1,282 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // ContainerWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager) { | |
|
18 | 18 | |
|
19 | 19 | var ContainerView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render: function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.$el.addClass('widget-container') |
|
23 | 23 | .addClass('vbox'); |
|
24 | 24 | this.children={}; |
|
25 | 25 | this.update_children([], this.model.get('_children')); |
|
26 | 26 | this.model.on('change:_children', function(model, value, options) { |
|
27 | 27 | this.update_children(model.previous('_children'), value); |
|
28 | 28 | }, this); |
|
29 | 29 | this.update(); |
|
30 | 30 | }, |
|
31 | 31 | |
|
32 | 32 | update_children: function(old_list, new_list) { |
|
33 | 33 | // Called when the children list changes. |
|
34 | 34 | this.do_diff(old_list, |
|
35 | 35 | new_list, |
|
36 | 36 | $.proxy(this.remove_child_model, this), |
|
37 | 37 | $.proxy(this.add_child_model, this)); |
|
38 | 38 | }, |
|
39 | 39 | |
|
40 | 40 | remove_child_model: function(model) { |
|
41 | 41 | // Called when a model is removed from the children list. |
|
42 | 42 | this.child_views[model.id].remove(); |
|
43 | 43 | this.delete_child_view(model); |
|
44 | 44 | }, |
|
45 | 45 | |
|
46 | 46 | add_child_model: function(model) { |
|
47 | 47 | // Called when a model is added to the children list. |
|
48 | 48 | var view = this.create_child_view(model); |
|
49 | 49 | this.$el.append(view.$el); |
|
50 | 50 | }, |
|
51 | 51 | |
|
52 | 52 | update: function(){ |
|
53 | 53 | // Update the contents of this view |
|
54 | 54 | // |
|
55 | 55 | // Called when the model is changed. The model may have been |
|
56 | 56 | // changed by another view or by a state update from the back-end. |
|
57 | 57 | return ContainerView.__super__.update.apply(this); |
|
58 | 58 | }, |
|
59 | 59 | }); |
|
60 | 60 | |
|
61 | 61 | WidgetManager.register_widget_view('ContainerView', ContainerView); |
|
62 | 62 | |
|
63 | 63 | var PopupView = IPython.DOMWidgetView.extend({ |
|
64 | 64 | render: function(){ |
|
65 | 65 | // Called when view is rendered. |
|
66 | 66 | var that = this; |
|
67 | 67 | this.children={}; |
|
68 | 68 | |
|
69 | 69 | this.$el.on("remove", function(){ |
|
70 | 70 | that.$window.remove(); |
|
71 | 71 | }); |
|
72 | 72 | this.$window = $('<div />') |
|
73 | 73 | .addClass('modal widget-modal') |
|
74 | 74 | .appendTo($('#notebook-container')) |
|
75 | 75 | .mousedown(function(){ |
|
76 | 76 | that.bring_to_front(); |
|
77 | 77 | }); |
|
78 | 78 | |
|
79 | 79 | // Set the elements array since the this.$window element is not child |
|
80 | 80 | // of this.$el and the parent widget manager or other widgets may |
|
81 | 81 | // need to know about all of the top-level widgets. The IPython |
|
82 | 82 | // widget manager uses this to register the elements with the |
|
83 | 83 | // keyboard manager. |
|
84 | 84 | this.additional_elements = [this.$window] |
|
85 | 85 | |
|
86 | 86 | this.$title_bar = $('<div />') |
|
87 | 87 | .addClass('popover-title') |
|
88 | 88 | .appendTo(this.$window) |
|
89 | 89 | .mousedown(function(){ |
|
90 | 90 | that.bring_to_front(); |
|
91 | 91 | }); |
|
92 | 92 | this.$close = $('<button />') |
|
93 | 93 | .addClass('close icon-remove') |
|
94 | 94 | .css('margin-left', '5px') |
|
95 | 95 | .appendTo(this.$title_bar) |
|
96 | 96 | .click(function(){ |
|
97 | 97 | that.hide(); |
|
98 | 98 | event.stopPropagation(); |
|
99 | 99 | }); |
|
100 | 100 | this.$minimize = $('<button />') |
|
101 | 101 | .addClass('close icon-arrow-down') |
|
102 | 102 | .appendTo(this.$title_bar) |
|
103 | 103 | .click(function(){ |
|
104 | 104 | that.popped_out = !that.popped_out; |
|
105 | 105 | if (!that.popped_out) { |
|
106 | 106 | that.$minimize |
|
107 | 107 | .removeClass('icon-arrow-down') |
|
108 | 108 | .addClass('icon-arrow-up'); |
|
109 | 109 | |
|
110 | 110 | that.$window |
|
111 | 111 | .draggable('destroy') |
|
112 | 112 | .resizable('destroy') |
|
113 | 113 | .removeClass('widget-modal modal') |
|
114 | 114 | .addClass('docked-widget-modal') |
|
115 | 115 | .detach() |
|
116 | 116 | .insertBefore(that.$show_button); |
|
117 | 117 | that.$show_button.hide(); |
|
118 | 118 | that.$close.hide(); |
|
119 | 119 | } else { |
|
120 | 120 | that.$minimize |
|
121 | 121 | .addClass('icon-arrow-down') |
|
122 | 122 | .removeClass('icon-arrow-up'); |
|
123 | 123 | |
|
124 | 124 | that.$window |
|
125 | 125 | .removeClass('docked-widget-modal') |
|
126 | 126 | .addClass('widget-modal modal') |
|
127 | 127 | .detach() |
|
128 | 128 | .appendTo($('#notebook-container')) |
|
129 | 129 | .draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'}) |
|
130 | 130 | .resizable() |
|
131 | 131 | .children('.ui-resizable-handle').show(); |
|
132 | 132 | that.show(); |
|
133 | 133 | that.$show_button.show(); |
|
134 | 134 | that.$close.show(); |
|
135 | 135 | } |
|
136 | 136 | event.stopPropagation(); |
|
137 | 137 | }); |
|
138 | 138 | this.$title = $('<div />') |
|
139 | 139 | .addClass('widget-modal-title') |
|
140 | 140 | .html(" ") |
|
141 | 141 | .appendTo(this.$title_bar); |
|
142 | 142 | this.$body = $('<div />') |
|
143 | 143 | .addClass('modal-body') |
|
144 | 144 | .addClass('widget-modal-body') |
|
145 | 145 | .addClass('widget-container') |
|
146 | 146 | .addClass('vbox') |
|
147 | 147 | .appendTo(this.$window); |
|
148 | 148 | |
|
149 | 149 | this.$show_button = $('<button />') |
|
150 | 150 | .html(" ") |
|
151 | 151 | .addClass('btn btn-info widget-modal-show') |
|
152 | 152 | .appendTo(this.$el) |
|
153 | 153 | .click(function(){ |
|
154 | 154 | that.show(); |
|
155 | 155 | }); |
|
156 | 156 | |
|
157 | 157 | this.$window.draggable({handle: '.popover-title', snap: '#notebook, .modal', snapMode: 'both'}); |
|
158 | 158 | this.$window.resizable(); |
|
159 | 159 | this.$window.on('resize', function(){ |
|
160 | 160 | that.$body.outerHeight(that.$window.innerHeight() - that.$title_bar.outerHeight()); |
|
161 | 161 | }); |
|
162 | 162 | |
|
163 | 163 | this.$el_to_style = this.$body; |
|
164 | 164 | this._shown_once = false; |
|
165 | 165 | this.popped_out = true; |
|
166 | 166 | |
|
167 | 167 | this.update_children([], this.model.get('_children')); |
|
168 | 168 | this.model.on('change:_children', function(model, value, options) { |
|
169 | 169 | this.update_children(model.previous('_children'), value); |
|
170 | 170 | }, this); |
|
171 | 171 | this.update(); |
|
172 | 172 | }, |
|
173 | 173 | |
|
174 | 174 | hide: function() { |
|
175 | 175 | // Called when the modal hide button is clicked. |
|
176 | 176 | this.$window.hide(); |
|
177 | 177 | this.$show_button.removeClass('btn-info'); |
|
178 | 178 | }, |
|
179 | 179 | |
|
180 | 180 | show: function() { |
|
181 | 181 | // Called when the modal show button is clicked. |
|
182 | 182 | this.$show_button.addClass('btn-info'); |
|
183 | 183 | this.$window.show(); |
|
184 | 184 | if (this.popped_out) { |
|
185 | 185 | this.$window.css("positon", "absolute"); |
|
186 | 186 | this.$window.css("top", "0px"); |
|
187 | 187 | this.$window.css("left", Math.max(0, (($('body').outerWidth() - this.$window.outerWidth()) / 2) + |
|
188 | 188 | $(window).scrollLeft()) + "px"); |
|
189 | 189 | this.bring_to_front(); |
|
190 | 190 | } |
|
191 | 191 | }, |
|
192 | 192 | |
|
193 | 193 | bring_to_front: function() { |
|
194 | 194 | // Make the modal top-most, z-ordered about the other modals. |
|
195 | 195 | var $widget_modals = $(".widget-modal"); |
|
196 | 196 | var max_zindex = 0; |
|
197 | 197 | $widget_modals.each(function (index, el){ |
|
198 | 198 | max_zindex = Math.max(max_zindex, parseInt($(el).css('z-index'))); |
|
199 | 199 | }); |
|
200 | 200 | |
|
201 | 201 | // Start z-index of widget modals at 2000 |
|
202 | 202 | max_zindex = Math.max(max_zindex, 2000); |
|
203 | 203 | |
|
204 | 204 | $widget_modals.each(function (index, el){ |
|
205 | 205 | $el = $(el); |
|
206 | 206 | if (max_zindex == parseInt($el.css('z-index'))) { |
|
207 | 207 | $el.css('z-index', max_zindex - 1); |
|
208 | 208 | } |
|
209 | 209 | }); |
|
210 | 210 | this.$window.css('z-index', max_zindex); |
|
211 | 211 | }, |
|
212 | 212 | |
|
213 | 213 | update_children: function(old_list, new_list) { |
|
214 | 214 | // Called when the children list is modified. |
|
215 | 215 | this.do_diff(old_list, |
|
216 | 216 | new_list, |
|
217 | 217 | $.proxy(this.remove_child_model, this), |
|
218 | 218 | $.proxy(this.add_child_model, this)); |
|
219 | 219 | }, |
|
220 | 220 | |
|
221 | 221 | remove_child_model: function(model) { |
|
222 | 222 | // Called when a child is removed from children list. |
|
223 | 223 | this.child_views[model.id].remove(); |
|
224 | 224 | this.delete_child_view(model); |
|
225 | 225 | }, |
|
226 | 226 | |
|
227 | 227 | add_child_model: function(model) { |
|
228 | 228 | // Called when a child is added to children list. |
|
229 | 229 | var view = this.create_child_view(model); |
|
230 | 230 | this.$body.append(view.$el); |
|
231 | 231 | }, |
|
232 | 232 | |
|
233 | 233 | update: function(){ |
|
234 | 234 | // Update the contents of this view |
|
235 | 235 | // |
|
236 | 236 | // Called when the model is changed. The model may have been |
|
237 | 237 | // changed by another view or by a state update from the back-end. |
|
238 | 238 | var description = this.model.get('description'); |
|
239 | 239 | if (description.trim().length === 0) { |
|
240 | 240 | this.$title.html(" "); // Preserve title height |
|
241 | 241 | } else { |
|
242 | 242 | this.$title.text(description); |
|
243 | 243 | } |
|
244 | 244 | |
|
245 | 245 | var button_text = this.model.get('button_text'); |
|
246 | 246 | if (button_text.trim().length === 0) { |
|
247 | 247 | this.$show_button.html(" "); // Preserve button height |
|
248 | 248 | } else { |
|
249 | 249 | this.$show_button.text(button_text); |
|
250 | 250 | } |
|
251 | 251 | |
|
252 | 252 | if (!this._shown_once) { |
|
253 | 253 | this._shown_once = true; |
|
254 | 254 | this.show(); |
|
255 | 255 | } |
|
256 | 256 | |
|
257 | 257 | return PopupView.__super__.update.apply(this); |
|
258 | 258 | }, |
|
259 | 259 | |
|
260 | 260 | _get_selector_element: function(selector) { |
|
261 | 261 | // Get an element view a 'special' jquery selector. (see widget.js) |
|
262 | 262 | // |
|
263 | 263 | // Since the modal actually isn't within the $el in the DOM, we need to extend |
|
264 | 264 | // the selector logic to allow the user to set css on the modal if need be. |
|
265 | 265 | // The convention used is: |
|
266 | 266 | // "modal" - select the modal div |
|
267 | 267 | // "modal [selector]" - select element(s) within the modal div. |
|
268 | 268 | // "[selector]" - select elements within $el |
|
269 | 269 | // "" - select the $el_to_style |
|
270 | 270 | if (selector.substring(0, 5) == 'modal') { |
|
271 | 271 | if (selector == 'modal') { |
|
272 | 272 | return this.$window; |
|
273 | 273 | } else { |
|
274 | 274 | return this.$window.find(selector.substring(6)); |
|
275 | 275 | } |
|
276 | 276 | } else { |
|
277 | 277 | return PopupView.__super__._get_selector_element.apply(this, [selector]); |
|
278 | 278 | } |
|
279 | 279 | }, |
|
280 | 280 | }); |
|
281 | 281 | WidgetManager.register_widget_view('PopupView', PopupView); |
|
282 | 282 | }); |
@@ -1,42 +1,42 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // FloatWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
18 |
" |
|
|
17 | define(["widgets/js/widget", | |
|
18 | "widgets/js/widget_int"], | |
|
19 | 19 | function(WidgetManager, int_widgets){ |
|
20 | 20 | |
|
21 | 21 | var IntSliderView = int_widgets[0]; |
|
22 | 22 | var IntTextView = int_widgets[1]; |
|
23 | 23 | |
|
24 | 24 | |
|
25 | 25 | var FloatSliderView = IntSliderView.extend({ |
|
26 | 26 | _validate_slide_value: function(x) { |
|
27 | 27 | // Validate the value of the slider before sending it to the back-end |
|
28 | 28 | // and applying it to the other views on the page. |
|
29 | 29 | return x; |
|
30 | 30 | }, |
|
31 | 31 | }); |
|
32 | 32 | WidgetManager.register_widget_view('FloatSliderView', FloatSliderView); |
|
33 | 33 | |
|
34 | 34 | |
|
35 | 35 | var FloatTextView = IntTextView.extend({ |
|
36 | 36 | _parse_value: function(value) { |
|
37 | 37 | // Parse the value stored in a string. |
|
38 | 38 | return parseFloat(value); |
|
39 | 39 | }, |
|
40 | 40 | }); |
|
41 | 41 | WidgetManager.register_widget_view('FloatTextView', FloatTextView); |
|
42 | 42 | }); |
@@ -1,51 +1,51 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // ImageWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var ImageView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.setElement($("<img />")); |
|
23 | 23 | this.update(); // Set defaults. |
|
24 | 24 | }, |
|
25 | 25 | |
|
26 | 26 | update : function(){ |
|
27 | 27 | // Update the contents of this view |
|
28 | 28 | // |
|
29 | 29 | // Called when the model is changed. The model may have been |
|
30 | 30 | // changed by another view or by a state update from the back-end. |
|
31 | 31 | var image_src = 'data:image/' + this.model.get('format') + ';base64,' + this.model.get('_b64value'); |
|
32 | 32 | this.$el.attr('src', image_src); |
|
33 | 33 | |
|
34 | 34 | var width = this.model.get('width'); |
|
35 | 35 | if (width !== undefined && width.length > 0) { |
|
36 | 36 | this.$el.attr('width', width); |
|
37 | 37 | } else { |
|
38 | 38 | this.$el.removeAttr('width'); |
|
39 | 39 | } |
|
40 | 40 | |
|
41 | 41 | var height = this.model.get('height'); |
|
42 | 42 | if (height !== undefined && height.length > 0) { |
|
43 | 43 | this.$el.attr('height', height); |
|
44 | 44 | } else { |
|
45 | 45 | this.$el.removeAttr('height'); |
|
46 | 46 | } |
|
47 | 47 | return ImageView.__super__.update.apply(this); |
|
48 | 48 | }, |
|
49 | 49 | }); |
|
50 | 50 | WidgetManager.register_widget_view('ImageView', ImageView); |
|
51 | 51 | }); |
@@ -1,305 +1,305 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // IntWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var IntSliderView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.$el |
|
23 | 23 | .addClass('widget-hbox-single'); |
|
24 | 24 | this.$label = $('<div />') |
|
25 | 25 | .appendTo(this.$el) |
|
26 | 26 | .addClass('widget-hlabel') |
|
27 | 27 | .hide(); |
|
28 | 28 | |
|
29 | 29 | this.$slider = $('<div />') |
|
30 | 30 | .slider({}) |
|
31 | 31 | .addClass('slider'); |
|
32 | 32 | // Put the slider in a container |
|
33 | 33 | this.$slider_container = $('<div />') |
|
34 | 34 | .addClass('widget-hslider') |
|
35 | 35 | .append(this.$slider) |
|
36 | 36 | this.$el_to_style = this.$slider_container; // Set default element to style |
|
37 | 37 | this.$el.append(this.$slider_container); |
|
38 | 38 | |
|
39 | 39 | this.$readout = $('<div/>') |
|
40 | 40 | .appendTo(this.$el) |
|
41 | 41 | .addClass('widget-hreadout') |
|
42 | 42 | .hide(); |
|
43 | 43 | |
|
44 | 44 | // Set defaults. |
|
45 | 45 | this.update(); |
|
46 | 46 | }, |
|
47 | 47 | |
|
48 | 48 | update : function(options){ |
|
49 | 49 | // Update the contents of this view |
|
50 | 50 | // |
|
51 | 51 | // Called when the model is changed. The model may have been |
|
52 | 52 | // changed by another view or by a state update from the back-end. |
|
53 | 53 | if (options === undefined || options.updated_view != this) { |
|
54 | 54 | // JQuery slider option keys. These keys happen to have a |
|
55 | 55 | // one-to-one mapping with the corrosponding keys of the model. |
|
56 | 56 | var jquery_slider_keys = ['step', 'max', 'min', 'disabled']; |
|
57 | 57 | var that = this; |
|
58 | 58 | _.each(jquery_slider_keys, function(key, i) { |
|
59 | 59 | var model_value = that.model.get(key); |
|
60 | 60 | if (model_value !== undefined) { |
|
61 | 61 | that.$slider.slider("option", key, model_value); |
|
62 | 62 | } |
|
63 | 63 | }); |
|
64 | 64 | |
|
65 | 65 | // WORKAROUND FOR JQUERY SLIDER BUG. |
|
66 | 66 | // The horizontal position of the slider handle |
|
67 | 67 | // depends on the value of the slider at the time |
|
68 | 68 | // of orientation change. Before applying the new |
|
69 | 69 | // workaround, we set the value to the minimum to |
|
70 | 70 | // make sure that the horizontal placement of the |
|
71 | 71 | // handle in the vertical slider is always |
|
72 | 72 | // consistent. |
|
73 | 73 | var orientation = this.model.get('orientation'); |
|
74 | 74 | var value = this.model.get('min'); |
|
75 | 75 | this.$slider.slider('option', 'value', value); |
|
76 | 76 | this.$slider.slider('option', 'orientation', orientation); |
|
77 | 77 | value = this.model.get('value'); |
|
78 | 78 | this.$slider.slider('option', 'value', value); |
|
79 | 79 | this.$readout.text(value); |
|
80 | 80 | |
|
81 | 81 | // Use the right CSS classes for vertical & horizontal sliders |
|
82 | 82 | if (orientation=='vertical') { |
|
83 | 83 | this.$slider_container |
|
84 | 84 | .removeClass('widget-hslider') |
|
85 | 85 | .addClass('widget-vslider'); |
|
86 | 86 | this.$el |
|
87 | 87 | .removeClass('widget-hbox-single') |
|
88 | 88 | .addClass('widget-vbox-single'); |
|
89 | 89 | this.$label |
|
90 | 90 | .removeClass('widget-hlabel') |
|
91 | 91 | .addClass('widget-vlabel'); |
|
92 | 92 | this.$readout |
|
93 | 93 | .removeClass('widget-hreadout') |
|
94 | 94 | .addClass('widget-vreadout'); |
|
95 | 95 | |
|
96 | 96 | } else { |
|
97 | 97 | this.$slider_container |
|
98 | 98 | .removeClass('widget-vslider') |
|
99 | 99 | .addClass('widget-hslider'); |
|
100 | 100 | this.$el |
|
101 | 101 | .removeClass('widget-vbox-single') |
|
102 | 102 | .addClass('widget-hbox-single'); |
|
103 | 103 | this.$label |
|
104 | 104 | .removeClass('widget-vlabel') |
|
105 | 105 | .addClass('widget-hlabel'); |
|
106 | 106 | this.$readout |
|
107 | 107 | .removeClass('widget-vreadout') |
|
108 | 108 | .addClass('widget-hreadout'); |
|
109 | 109 | } |
|
110 | 110 | |
|
111 | 111 | var description = this.model.get('description'); |
|
112 | 112 | if (description.length === 0) { |
|
113 | 113 | this.$label.hide(); |
|
114 | 114 | } else { |
|
115 | 115 | this.$label.text(description); |
|
116 | 116 | this.$label.show(); |
|
117 | 117 | } |
|
118 | 118 | |
|
119 | 119 | var readout = this.model.get('readout'); |
|
120 | 120 | if (readout) { |
|
121 | 121 | this.$readout.show(); |
|
122 | 122 | } else { |
|
123 | 123 | this.$readout.hide(); |
|
124 | 124 | } |
|
125 | 125 | } |
|
126 | 126 | return IntSliderView.__super__.update.apply(this); |
|
127 | 127 | }, |
|
128 | 128 | |
|
129 | 129 | events: { |
|
130 | 130 | // Dictionary of events and their handlers. |
|
131 | 131 | "slide" : "handleSliderChange" |
|
132 | 132 | }, |
|
133 | 133 | |
|
134 | 134 | handleSliderChange: function(e, ui) { |
|
135 | 135 | // Called when the slider value is changed. |
|
136 | 136 | |
|
137 | 137 | // Calling model.set will trigger all of the other views of the |
|
138 | 138 | // model to update. |
|
139 | 139 | var actual_value = this._validate_slide_value(ui.value); |
|
140 | 140 | this.model.set('value', actual_value, {updated_view: this}); |
|
141 | 141 | this.$readout.text(actual_value); |
|
142 | 142 | this.touch(); |
|
143 | 143 | }, |
|
144 | 144 | |
|
145 | 145 | _validate_slide_value: function(x) { |
|
146 | 146 | // Validate the value of the slider before sending it to the back-end |
|
147 | 147 | // and applying it to the other views on the page. |
|
148 | 148 | |
|
149 | 149 | // Double bit-wise not truncates the decimel (int cast). |
|
150 | 150 | return ~~x; |
|
151 | 151 | }, |
|
152 | 152 | }); |
|
153 | 153 | WidgetManager.register_widget_view('IntSliderView', IntSliderView); |
|
154 | 154 | |
|
155 | 155 | |
|
156 | 156 | var IntTextView = IPython.DOMWidgetView.extend({ |
|
157 | 157 | render : function(){ |
|
158 | 158 | // Called when view is rendered. |
|
159 | 159 | this.$el |
|
160 | 160 | .addClass('widget-hbox-single'); |
|
161 | 161 | this.$label = $('<div />') |
|
162 | 162 | .appendTo(this.$el) |
|
163 | 163 | .addClass('widget-hlabel') |
|
164 | 164 | .hide(); |
|
165 | 165 | this.$textbox = $('<input type="text" />') |
|
166 | 166 | .addClass('input') |
|
167 | 167 | .addClass('widget-numeric-text') |
|
168 | 168 | .appendTo(this.$el); |
|
169 | 169 | this.$el_to_style = this.$textbox; // Set default element to style |
|
170 | 170 | this.update(); // Set defaults. |
|
171 | 171 | }, |
|
172 | 172 | |
|
173 | 173 | update : function(options){ |
|
174 | 174 | // Update the contents of this view |
|
175 | 175 | // |
|
176 | 176 | // Called when the model is changed. The model may have been |
|
177 | 177 | // changed by another view or by a state update from the back-end. |
|
178 | 178 | if (options === undefined || options.updated_view != this) { |
|
179 | 179 | var value = this.model.get('value'); |
|
180 | 180 | if (this._parse_value(this.$textbox.val()) != value) { |
|
181 | 181 | this.$textbox.val(value); |
|
182 | 182 | } |
|
183 | 183 | |
|
184 | 184 | if (this.model.get('disabled')) { |
|
185 | 185 | this.$textbox.attr('disabled','disabled'); |
|
186 | 186 | } else { |
|
187 | 187 | this.$textbox.removeAttr('disabled'); |
|
188 | 188 | } |
|
189 | 189 | |
|
190 | 190 | var description = this.model.get('description'); |
|
191 | 191 | if (description.length === 0) { |
|
192 | 192 | this.$label.hide(); |
|
193 | 193 | } else { |
|
194 | 194 | this.$label.text(description); |
|
195 | 195 | this.$label.show(); |
|
196 | 196 | } |
|
197 | 197 | } |
|
198 | 198 | return IntTextView.__super__.update.apply(this); |
|
199 | 199 | }, |
|
200 | 200 | |
|
201 | 201 | events: { |
|
202 | 202 | // Dictionary of events and their handlers. |
|
203 | 203 | "keyup input" : "handleChanging", |
|
204 | 204 | "paste input" : "handleChanging", |
|
205 | 205 | "cut input" : "handleChanging", |
|
206 | 206 | |
|
207 | 207 | // Fires only when control is validated or looses focus. |
|
208 | 208 | "change input" : "handleChanged" |
|
209 | 209 | }, |
|
210 | 210 | |
|
211 | 211 | handleChanging: function(e) { |
|
212 | 212 | // Handles and validates user input. |
|
213 | 213 | |
|
214 | 214 | // Try to parse value as a int. |
|
215 | 215 | var numericalValue = 0; |
|
216 | 216 | if (e.target.value !== '') { |
|
217 | 217 | numericalValue = this._parse_value(e.target.value); |
|
218 | 218 | } |
|
219 | 219 | |
|
220 | 220 | // If parse failed, reset value to value stored in model. |
|
221 | 221 | if (isNaN(numericalValue)) { |
|
222 | 222 | e.target.value = this.model.get('value'); |
|
223 | 223 | } else if (!isNaN(numericalValue)) { |
|
224 | 224 | if (this.model.get('max') !== undefined) { |
|
225 | 225 | numericalValue = Math.min(this.model.get('max'), numericalValue); |
|
226 | 226 | } |
|
227 | 227 | if (this.model.get('min') !== undefined) { |
|
228 | 228 | numericalValue = Math.max(this.model.get('min'), numericalValue); |
|
229 | 229 | } |
|
230 | 230 | |
|
231 | 231 | // Apply the value if it has changed. |
|
232 | 232 | if (numericalValue != this.model.get('value')) { |
|
233 | 233 | |
|
234 | 234 | // Calling model.set will trigger all of the other views of the |
|
235 | 235 | // model to update. |
|
236 | 236 | this.model.set('value', numericalValue, {updated_view: this}); |
|
237 | 237 | this.touch(); |
|
238 | 238 | } |
|
239 | 239 | } |
|
240 | 240 | }, |
|
241 | 241 | |
|
242 | 242 | handleChanged: function(e) { |
|
243 | 243 | // Applies validated input. |
|
244 | 244 | if (this.model.get('value') != e.target.value) { |
|
245 | 245 | e.target.value = this.model.get('value'); |
|
246 | 246 | } |
|
247 | 247 | }, |
|
248 | 248 | |
|
249 | 249 | _parse_value: function(value) { |
|
250 | 250 | // Parse the value stored in a string. |
|
251 | 251 | return parseInt(value); |
|
252 | 252 | }, |
|
253 | 253 | }); |
|
254 | 254 | WidgetManager.register_widget_view('IntTextView', IntTextView); |
|
255 | 255 | |
|
256 | 256 | |
|
257 | 257 | var ProgressView = IPython.DOMWidgetView.extend({ |
|
258 | 258 | render : function(){ |
|
259 | 259 | // Called when view is rendered. |
|
260 | 260 | this.$el |
|
261 | 261 | .addClass('widget-hbox-single'); |
|
262 | 262 | this.$label = $('<div />') |
|
263 | 263 | .appendTo(this.$el) |
|
264 | 264 | .addClass('widget-hlabel') |
|
265 | 265 | .hide(); |
|
266 | 266 | this.$progress = $('<div />') |
|
267 | 267 | .addClass('progress') |
|
268 | 268 | .addClass('widget-progress') |
|
269 | 269 | .appendTo(this.$el); |
|
270 | 270 | this.$el_to_style = this.$progress; // Set default element to style |
|
271 | 271 | this.$bar = $('<div />') |
|
272 | 272 | .addClass('bar') |
|
273 | 273 | .css('width', '50%') |
|
274 | 274 | .appendTo(this.$progress); |
|
275 | 275 | this.update(); // Set defaults. |
|
276 | 276 | }, |
|
277 | 277 | |
|
278 | 278 | update : function(){ |
|
279 | 279 | // Update the contents of this view |
|
280 | 280 | // |
|
281 | 281 | // Called when the model is changed. The model may have been |
|
282 | 282 | // changed by another view or by a state update from the back-end. |
|
283 | 283 | var value = this.model.get('value'); |
|
284 | 284 | var max = this.model.get('max'); |
|
285 | 285 | var min = this.model.get('min'); |
|
286 | 286 | var percent = 100.0 * (value - min) / (max - min); |
|
287 | 287 | this.$bar.css('width', percent + '%'); |
|
288 | 288 | |
|
289 | 289 | var description = this.model.get('description'); |
|
290 | 290 | if (description.length === 0) { |
|
291 | 291 | this.$label.hide(); |
|
292 | 292 | } else { |
|
293 | 293 | this.$label.text(description); |
|
294 | 294 | this.$label.show(); |
|
295 | 295 | } |
|
296 | 296 | return ProgressView.__super__.update.apply(this); |
|
297 | 297 | }, |
|
298 | 298 | }); |
|
299 | 299 | WidgetManager.register_widget_view('ProgressView', ProgressView); |
|
300 | 300 | |
|
301 | 301 | |
|
302 | 302 | // Return the slider and text views so they can be inheritted to create the |
|
303 | 303 | // float versions. |
|
304 | 304 | return [IntSliderView, IntTextView]; |
|
305 | 305 | }); |
@@ -1,381 +1,381 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // SelectionWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var DropdownView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.$el |
|
23 | 23 | .addClass('widget-hbox-single'); |
|
24 | 24 | this.$label = $('<div />') |
|
25 | 25 | .appendTo(this.$el) |
|
26 | 26 | .addClass('widget-hlabel') |
|
27 | 27 | .hide(); |
|
28 | 28 | this.$buttongroup = $('<div />') |
|
29 | 29 | .addClass('widget_item') |
|
30 | 30 | .addClass('btn-group') |
|
31 | 31 | .appendTo(this.$el); |
|
32 | 32 | this.$el_to_style = this.$buttongroup; // Set default element to style |
|
33 | 33 | this.$droplabel = $('<button />') |
|
34 | 34 | .addClass('btn') |
|
35 | 35 | .addClass('widget-combo-btn') |
|
36 | 36 | .html(" ") |
|
37 | 37 | .appendTo(this.$buttongroup); |
|
38 | 38 | this.$dropbutton = $('<button />') |
|
39 | 39 | .addClass('btn') |
|
40 | 40 | .addClass('dropdown-toggle') |
|
41 | 41 | .addClass('widget-combo-carrot-btn') |
|
42 | 42 | .attr('data-toggle', 'dropdown') |
|
43 | 43 | .append($('<span />').addClass("caret")) |
|
44 | 44 | .appendTo(this.$buttongroup); |
|
45 | 45 | this.$droplist = $('<ul />') |
|
46 | 46 | .addClass('dropdown-menu') |
|
47 | 47 | .appendTo(this.$buttongroup); |
|
48 | 48 | |
|
49 | 49 | // Set defaults. |
|
50 | 50 | this.update(); |
|
51 | 51 | }, |
|
52 | 52 | |
|
53 | 53 | update : function(options){ |
|
54 | 54 | // Update the contents of this view |
|
55 | 55 | // |
|
56 | 56 | // Called when the model is changed. The model may have been |
|
57 | 57 | // changed by another view or by a state update from the back-end. |
|
58 | 58 | |
|
59 | 59 | if (options === undefined || options.updated_view != this) { |
|
60 | 60 | var selected_item_text = this.model.get('value_name'); |
|
61 | 61 | if (selected_item_text.trim().length === 0) { |
|
62 | 62 | this.$droplabel.html(" "); |
|
63 | 63 | } else { |
|
64 | 64 | this.$droplabel.text(selected_item_text); |
|
65 | 65 | } |
|
66 | 66 | |
|
67 | 67 | var items = this.model.get('value_names'); |
|
68 | 68 | var $replace_droplist = $('<ul />') |
|
69 | 69 | .addClass('dropdown-menu'); |
|
70 | 70 | var that = this; |
|
71 | 71 | _.each(items, function(item, i) { |
|
72 | 72 | var item_button = $('<a href="#"/>') |
|
73 | 73 | .text(item) |
|
74 | 74 | .on('click', $.proxy(that.handle_click, that)); |
|
75 | 75 | $replace_droplist.append($('<li />').append(item_button)); |
|
76 | 76 | }); |
|
77 | 77 | |
|
78 | 78 | this.$droplist.replaceWith($replace_droplist); |
|
79 | 79 | this.$droplist.remove(); |
|
80 | 80 | this.$droplist = $replace_droplist; |
|
81 | 81 | |
|
82 | 82 | if (this.model.get('disabled')) { |
|
83 | 83 | this.$buttongroup.attr('disabled','disabled'); |
|
84 | 84 | this.$droplabel.attr('disabled','disabled'); |
|
85 | 85 | this.$dropbutton.attr('disabled','disabled'); |
|
86 | 86 | this.$droplist.attr('disabled','disabled'); |
|
87 | 87 | } else { |
|
88 | 88 | this.$buttongroup.removeAttr('disabled'); |
|
89 | 89 | this.$droplabel.removeAttr('disabled'); |
|
90 | 90 | this.$dropbutton.removeAttr('disabled'); |
|
91 | 91 | this.$droplist.removeAttr('disabled'); |
|
92 | 92 | } |
|
93 | 93 | |
|
94 | 94 | var description = this.model.get('description'); |
|
95 | 95 | if (description.length === 0) { |
|
96 | 96 | this.$label.hide(); |
|
97 | 97 | } else { |
|
98 | 98 | this.$label.text(description); |
|
99 | 99 | this.$label.show(); |
|
100 | 100 | } |
|
101 | 101 | } |
|
102 | 102 | return DropdownView.__super__.update.apply(this); |
|
103 | 103 | }, |
|
104 | 104 | |
|
105 | 105 | handle_click: function (e) { |
|
106 | 106 | // Handle when a value is clicked. |
|
107 | 107 | |
|
108 | 108 | // Calling model.set will trigger all of the other views of the |
|
109 | 109 | // model to update. |
|
110 | 110 | this.model.set('value_name', $(e.target).text(), {updated_view: this}); |
|
111 | 111 | this.touch(); |
|
112 | 112 | }, |
|
113 | 113 | |
|
114 | 114 | }); |
|
115 | 115 | WidgetManager.register_widget_view('DropdownView', DropdownView); |
|
116 | 116 | |
|
117 | 117 | |
|
118 | 118 | var RadioButtonsView = IPython.DOMWidgetView.extend({ |
|
119 | 119 | render : function(){ |
|
120 | 120 | // Called when view is rendered. |
|
121 | 121 | this.$el |
|
122 | 122 | .addClass('widget-hbox'); |
|
123 | 123 | this.$label = $('<div />') |
|
124 | 124 | .appendTo(this.$el) |
|
125 | 125 | .addClass('widget-hlabel') |
|
126 | 126 | .hide(); |
|
127 | 127 | this.$container = $('<div />') |
|
128 | 128 | .appendTo(this.$el) |
|
129 | 129 | .addClass('widget-radio-box'); |
|
130 | 130 | this.$el_to_style = this.$container; // Set default element to style |
|
131 | 131 | this.update(); |
|
132 | 132 | }, |
|
133 | 133 | |
|
134 | 134 | update : function(options){ |
|
135 | 135 | // Update the contents of this view |
|
136 | 136 | // |
|
137 | 137 | // Called when the model is changed. The model may have been |
|
138 | 138 | // changed by another view or by a state update from the back-end. |
|
139 | 139 | if (options === undefined || options.updated_view != this) { |
|
140 | 140 | // Add missing items to the DOM. |
|
141 | 141 | var items = this.model.get('value_names'); |
|
142 | 142 | var disabled = this.model.get('disabled'); |
|
143 | 143 | var that = this; |
|
144 | 144 | _.each(items, function(item, index) { |
|
145 | 145 | var item_query = ' :input[value="' + item + '"]'; |
|
146 | 146 | if (that.$el.find(item_query).length === 0) { |
|
147 | 147 | var $label = $('<label />') |
|
148 | 148 | .addClass('radio') |
|
149 | 149 | .text(item) |
|
150 | 150 | .appendTo(that.$container); |
|
151 | 151 | |
|
152 | 152 | $('<input />') |
|
153 | 153 | .attr('type', 'radio') |
|
154 | 154 | .addClass(that.model) |
|
155 | 155 | .val(item) |
|
156 | 156 | .prependTo($label) |
|
157 | 157 | .on('click', $.proxy(that.handle_click, that)); |
|
158 | 158 | } |
|
159 | 159 | |
|
160 | 160 | var $item_element = that.$container.find(item_query); |
|
161 | 161 | if (that.model.get('value_name') == item) { |
|
162 | 162 | $item_element.prop('checked', true); |
|
163 | 163 | } else { |
|
164 | 164 | $item_element.prop('checked', false); |
|
165 | 165 | } |
|
166 | 166 | $item_element.prop('disabled', disabled); |
|
167 | 167 | }); |
|
168 | 168 | |
|
169 | 169 | // Remove items that no longer exist. |
|
170 | 170 | this.$container.find('input').each(function(i, obj) { |
|
171 | 171 | var value = $(obj).val(); |
|
172 | 172 | var found = false; |
|
173 | 173 | _.each(items, function(item, index) { |
|
174 | 174 | if (item == value) { |
|
175 | 175 | found = true; |
|
176 | 176 | return false; |
|
177 | 177 | } |
|
178 | 178 | }); |
|
179 | 179 | |
|
180 | 180 | if (!found) { |
|
181 | 181 | $(obj).parent().remove(); |
|
182 | 182 | } |
|
183 | 183 | }); |
|
184 | 184 | |
|
185 | 185 | var description = this.model.get('description'); |
|
186 | 186 | if (description.length === 0) { |
|
187 | 187 | this.$label.hide(); |
|
188 | 188 | } else { |
|
189 | 189 | this.$label.text(description); |
|
190 | 190 | this.$label.show(); |
|
191 | 191 | } |
|
192 | 192 | } |
|
193 | 193 | return RadioButtonsView.__super__.update.apply(this); |
|
194 | 194 | }, |
|
195 | 195 | |
|
196 | 196 | handle_click: function (e) { |
|
197 | 197 | // Handle when a value is clicked. |
|
198 | 198 | |
|
199 | 199 | // Calling model.set will trigger all of the other views of the |
|
200 | 200 | // model to update. |
|
201 | 201 | this.model.set('value_name', $(e.target).val(), {updated_view: this}); |
|
202 | 202 | this.touch(); |
|
203 | 203 | }, |
|
204 | 204 | }); |
|
205 | 205 | WidgetManager.register_widget_view('RadioButtonsView', RadioButtonsView); |
|
206 | 206 | |
|
207 | 207 | |
|
208 | 208 | var ToggleButtonsView = IPython.DOMWidgetView.extend({ |
|
209 | 209 | render : function(){ |
|
210 | 210 | // Called when view is rendered. |
|
211 | 211 | this.$el |
|
212 | 212 | .addClass('widget-hbox-single'); |
|
213 | 213 | this.$label = $('<div />') |
|
214 | 214 | .appendTo(this.$el) |
|
215 | 215 | .addClass('widget-hlabel') |
|
216 | 216 | .hide(); |
|
217 | 217 | this.$buttongroup = $('<div />') |
|
218 | 218 | .addClass('btn-group') |
|
219 | 219 | .attr('data-toggle', 'buttons-radio') |
|
220 | 220 | .appendTo(this.$el); |
|
221 | 221 | this.$el_to_style = this.$buttongroup; // Set default element to style |
|
222 | 222 | this.update(); |
|
223 | 223 | }, |
|
224 | 224 | |
|
225 | 225 | update : function(options){ |
|
226 | 226 | // Update the contents of this view |
|
227 | 227 | // |
|
228 | 228 | // Called when the model is changed. The model may have been |
|
229 | 229 | // changed by another view or by a state update from the back-end. |
|
230 | 230 | if (options === undefined || options.updated_view != this) { |
|
231 | 231 | // Add missing items to the DOM. |
|
232 | 232 | var items = this.model.get('value_names'); |
|
233 | 233 | var disabled = this.model.get('disabled'); |
|
234 | 234 | var that = this; |
|
235 | 235 | var item_html; |
|
236 | 236 | _.each(items, function(item, index) { |
|
237 | 237 | if (item.trim().length == 0) { |
|
238 | 238 | item_html = " "; |
|
239 | 239 | } else { |
|
240 | 240 | item_html = IPython.utils.escape_html(item); |
|
241 | 241 | } |
|
242 | 242 | var item_query = '[data-value="' + item + '"]'; |
|
243 | 243 | var $item_element = that.$buttongroup.find(item_query); |
|
244 | 244 | if (!$item_element.length) { |
|
245 | 245 | $item_element = $('<button/>') |
|
246 | 246 | .attr('type', 'button') |
|
247 | 247 | .addClass('btn') |
|
248 | 248 | .html(item_html) |
|
249 | 249 | .appendTo(that.$buttongroup) |
|
250 | 250 | .attr('data-value', item) |
|
251 | 251 | .on('click', $.proxy(that.handle_click, that)); |
|
252 | 252 | } |
|
253 | 253 | if (that.model.get('value_name') == item) { |
|
254 | 254 | $item_element.addClass('active'); |
|
255 | 255 | } else { |
|
256 | 256 | $item_element.removeClass('active'); |
|
257 | 257 | } |
|
258 | 258 | $item_element.prop('disabled', disabled); |
|
259 | 259 | }); |
|
260 | 260 | |
|
261 | 261 | // Remove items that no longer exist. |
|
262 | 262 | this.$buttongroup.find('button').each(function(i, obj) { |
|
263 | 263 | var value = $(obj).data('value'); |
|
264 | 264 | var found = false; |
|
265 | 265 | _.each(items, function(item, index) { |
|
266 | 266 | if (item == value) { |
|
267 | 267 | found = true; |
|
268 | 268 | return false; |
|
269 | 269 | } |
|
270 | 270 | }); |
|
271 | 271 | |
|
272 | 272 | if (!found) { |
|
273 | 273 | $(obj).remove(); |
|
274 | 274 | } |
|
275 | 275 | }); |
|
276 | 276 | |
|
277 | 277 | var description = this.model.get('description'); |
|
278 | 278 | if (description.length === 0) { |
|
279 | 279 | this.$label.hide(); |
|
280 | 280 | } else { |
|
281 | 281 | this.$label.text(description); |
|
282 | 282 | this.$label.show(); |
|
283 | 283 | } |
|
284 | 284 | } |
|
285 | 285 | return ToggleButtonsView.__super__.update.apply(this); |
|
286 | 286 | }, |
|
287 | 287 | |
|
288 | 288 | handle_click: function (e) { |
|
289 | 289 | // Handle when a value is clicked. |
|
290 | 290 | |
|
291 | 291 | // Calling model.set will trigger all of the other views of the |
|
292 | 292 | // model to update. |
|
293 | 293 | this.model.set('value_name', $(e.target).data('value'), {updated_view: this}); |
|
294 | 294 | this.touch(); |
|
295 | 295 | }, |
|
296 | 296 | }); |
|
297 | 297 | WidgetManager.register_widget_view('ToggleButtonsView', ToggleButtonsView); |
|
298 | 298 | |
|
299 | 299 | |
|
300 | 300 | var SelectView = IPython.DOMWidgetView.extend({ |
|
301 | 301 | render : function(){ |
|
302 | 302 | // Called when view is rendered. |
|
303 | 303 | this.$el |
|
304 | 304 | .addClass('widget-hbox'); |
|
305 | 305 | this.$label = $('<div />') |
|
306 | 306 | .appendTo(this.$el) |
|
307 | 307 | .addClass('widget-hlabel') |
|
308 | 308 | .hide(); |
|
309 | 309 | this.$listbox = $('<select />') |
|
310 | 310 | .addClass('widget-listbox') |
|
311 | 311 | .attr('size', 6) |
|
312 | 312 | .appendTo(this.$el); |
|
313 | 313 | this.$el_to_style = this.$listbox; // Set default element to style |
|
314 | 314 | this.update(); |
|
315 | 315 | }, |
|
316 | 316 | |
|
317 | 317 | update : function(options){ |
|
318 | 318 | // Update the contents of this view |
|
319 | 319 | // |
|
320 | 320 | // Called when the model is changed. The model may have been |
|
321 | 321 | // changed by another view or by a state update from the back-end. |
|
322 | 322 | if (options === undefined || options.updated_view != this) { |
|
323 | 323 | // Add missing items to the DOM. |
|
324 | 324 | var items = this.model.get('value_names'); |
|
325 | 325 | var that = this; |
|
326 | 326 | _.each(items, function(item, index) { |
|
327 | 327 | var item_query = ' :contains("' + item + '")'; |
|
328 | 328 | if (that.$listbox.find(item_query).length === 0) { |
|
329 | 329 | $('<option />') |
|
330 | 330 | .text(item) |
|
331 | 331 | .attr('value_name', item) |
|
332 | 332 | .appendTo(that.$listbox) |
|
333 | 333 | .on('click', $.proxy(that.handle_click, that)); |
|
334 | 334 | } |
|
335 | 335 | }); |
|
336 | 336 | |
|
337 | 337 | // Select the correct element |
|
338 | 338 | this.$listbox.val(this.model.get('value_name')); |
|
339 | 339 | |
|
340 | 340 | // Disable listbox if needed |
|
341 | 341 | var disabled = this.model.get('disabled'); |
|
342 | 342 | this.$listbox.prop('disabled', disabled); |
|
343 | 343 | |
|
344 | 344 | // Remove items that no longer exist. |
|
345 | 345 | this.$listbox.find('option').each(function(i, obj) { |
|
346 | 346 | var value = $(obj).text(); |
|
347 | 347 | var found = false; |
|
348 | 348 | _.each(items, function(item, index) { |
|
349 | 349 | if (item == value) { |
|
350 | 350 | found = true; |
|
351 | 351 | return false; |
|
352 | 352 | } |
|
353 | 353 | }); |
|
354 | 354 | |
|
355 | 355 | if (!found) { |
|
356 | 356 | $(obj).remove(); |
|
357 | 357 | } |
|
358 | 358 | }); |
|
359 | 359 | |
|
360 | 360 | var description = this.model.get('description'); |
|
361 | 361 | if (description.length === 0) { |
|
362 | 362 | this.$label.hide(); |
|
363 | 363 | } else { |
|
364 | 364 | this.$label.text(description); |
|
365 | 365 | this.$label.show(); |
|
366 | 366 | } |
|
367 | 367 | } |
|
368 | 368 | return SelectView.__super__.update.apply(this); |
|
369 | 369 | }, |
|
370 | 370 | |
|
371 | 371 | handle_click: function (e) { |
|
372 | 372 | // Handle when a value is clicked. |
|
373 | 373 | |
|
374 | 374 | // Calling model.set will trigger all of the other views of the |
|
375 | 375 | // model to update. |
|
376 | 376 | this.model.set('value_name', $(e.target).text(), {updated_view: this}); |
|
377 | 377 | this.touch(); |
|
378 | 378 | }, |
|
379 | 379 | }); |
|
380 | 380 | WidgetManager.register_widget_view('SelectView', SelectView); |
|
381 | 381 | }); |
@@ -1,244 +1,244 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // SelectionContainerWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var AccordionView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render: function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | var guid = 'accordion' + IPython.utils.uuid(); |
|
23 | 23 | this.$el |
|
24 | 24 | .attr('id', guid) |
|
25 | 25 | .addClass('accordion'); |
|
26 | 26 | this.containers = []; |
|
27 | 27 | this.model_containers = {}; |
|
28 | 28 | this.update_children([], this.model.get('_children')); |
|
29 | 29 | this.model.on('change:_children', function(model, value, options) { |
|
30 | 30 | this.update_children(model.previous('_children'), value); |
|
31 | 31 | }, this); |
|
32 | 32 | }, |
|
33 | 33 | |
|
34 | 34 | update: function(options) { |
|
35 | 35 | // Update the contents of this view |
|
36 | 36 | // |
|
37 | 37 | // Called when the model is changed. The model may have been |
|
38 | 38 | // changed by another view or by a state update from the back-end. |
|
39 | 39 | if (options === undefined || options.updated_view != this) { |
|
40 | 40 | // Set tab titles |
|
41 | 41 | var titles = this.model.get('_titles'); |
|
42 | 42 | var that = this; |
|
43 | 43 | _.each(titles, function(title, page_index) { |
|
44 | 44 | var accordian = that.containers[page_index]; |
|
45 | 45 | if (accordian !== undefined) { |
|
46 | 46 | accordian |
|
47 | 47 | .find('.accordion-heading') |
|
48 | 48 | .find('.accordion-toggle') |
|
49 | 49 | .text(title); |
|
50 | 50 | } |
|
51 | 51 | }); |
|
52 | 52 | |
|
53 | 53 | // Set selected page |
|
54 | 54 | var selected_index = this.model.get("selected_index"); |
|
55 | 55 | if (0 <= selected_index && selected_index < this.containers.length) { |
|
56 | 56 | _.each(this.containers, function(container, index) { |
|
57 | 57 | if (index==selected_index) { |
|
58 | 58 | container.find('.accordion-body').collapse('show'); |
|
59 | 59 | } else { |
|
60 | 60 | container.find('.accordion-body').collapse('hide'); |
|
61 | 61 | } |
|
62 | 62 | }); |
|
63 | 63 | } |
|
64 | 64 | } |
|
65 | 65 | return AccordionView.__super__.update.apply(this); |
|
66 | 66 | }, |
|
67 | 67 | |
|
68 | 68 | update_children: function(old_list, new_list) { |
|
69 | 69 | // Called when the children list is modified. |
|
70 | 70 | this.do_diff(old_list, |
|
71 | 71 | new_list, |
|
72 | 72 | $.proxy(this.remove_child_model, this), |
|
73 | 73 | $.proxy(this.add_child_model, this)); |
|
74 | 74 | }, |
|
75 | 75 | |
|
76 | 76 | remove_child_model: function(model) { |
|
77 | 77 | // Called when a child is removed from children list. |
|
78 | 78 | var accordion_group = this.model_containers[model.id]; |
|
79 | 79 | this.containers.splice(accordion_group.container_index, 1); |
|
80 | 80 | delete this.model_containers[model.id]; |
|
81 | 81 | accordion_group.remove(); |
|
82 | 82 | this.delete_child_view(model); |
|
83 | 83 | }, |
|
84 | 84 | |
|
85 | 85 | add_child_model: function(model) { |
|
86 | 86 | // Called when a child is added to children list. |
|
87 | 87 | var view = this.create_child_view(model); |
|
88 | 88 | var index = this.containers.length; |
|
89 | 89 | var uuid = IPython.utils.uuid(); |
|
90 | 90 | var accordion_group = $('<div />') |
|
91 | 91 | .addClass('accordion-group') |
|
92 | 92 | .appendTo(this.$el); |
|
93 | 93 | var accordion_heading = $('<div />') |
|
94 | 94 | .addClass('accordion-heading') |
|
95 | 95 | .appendTo(accordion_group); |
|
96 | 96 | var that = this; |
|
97 | 97 | var accordion_toggle = $('<a />') |
|
98 | 98 | .addClass('accordion-toggle') |
|
99 | 99 | .attr('data-toggle', 'collapse') |
|
100 | 100 | .attr('data-parent', '#' + this.$el.attr('id')) |
|
101 | 101 | .attr('href', '#' + uuid) |
|
102 | 102 | .click(function(evt){ |
|
103 | 103 | |
|
104 | 104 | // Calling model.set will trigger all of the other views of the |
|
105 | 105 | // model to update. |
|
106 | 106 | that.model.set("selected_index", index, {updated_view: this}); |
|
107 | 107 | that.touch(); |
|
108 | 108 | }) |
|
109 | 109 | .text('Page ' + index) |
|
110 | 110 | .appendTo(accordion_heading); |
|
111 | 111 | var accordion_body = $('<div />', {id: uuid}) |
|
112 | 112 | .addClass('accordion-body collapse') |
|
113 | 113 | .appendTo(accordion_group); |
|
114 | 114 | var accordion_inner = $('<div />') |
|
115 | 115 | .addClass('accordion-inner') |
|
116 | 116 | .appendTo(accordion_body); |
|
117 | 117 | var container_index = this.containers.push(accordion_group) - 1; |
|
118 | 118 | accordion_group.container_index = container_index; |
|
119 | 119 | this.model_containers[model.id] = accordion_group; |
|
120 | 120 | accordion_inner.append(view.$el); |
|
121 | 121 | |
|
122 | 122 | this.update(); |
|
123 | 123 | |
|
124 | 124 | // Stupid workaround to close the bootstrap accordion tabs which |
|
125 | 125 | // open by default even though they don't have the `in` class |
|
126 | 126 | // attached to them. For some reason a delay is required. |
|
127 | 127 | // TODO: Better fix. |
|
128 | 128 | setTimeout(function(){ that.update(); }, 500); |
|
129 | 129 | }, |
|
130 | 130 | }); |
|
131 | 131 | WidgetManager.register_widget_view('AccordionView', AccordionView); |
|
132 | 132 | |
|
133 | 133 | |
|
134 | 134 | var TabView = IPython.DOMWidgetView.extend({ |
|
135 | 135 | initialize: function() { |
|
136 | 136 | // Public constructor. |
|
137 | 137 | this.containers = []; |
|
138 | 138 | TabView.__super__.initialize.apply(this, arguments); |
|
139 | 139 | }, |
|
140 | 140 | |
|
141 | 141 | render: function(){ |
|
142 | 142 | // Called when view is rendered. |
|
143 | 143 | var uuid = 'tabs'+IPython.utils.uuid(); |
|
144 | 144 | var that = this; |
|
145 | 145 | this.$tabs = $('<div />', {id: uuid}) |
|
146 | 146 | .addClass('nav') |
|
147 | 147 | .addClass('nav-tabs') |
|
148 | 148 | .appendTo(this.$el); |
|
149 | 149 | this.$tab_contents = $('<div />', {id: uuid + 'Content'}) |
|
150 | 150 | .addClass('tab-content') |
|
151 | 151 | .appendTo(this.$el); |
|
152 | 152 | this.containers = []; |
|
153 | 153 | this.update_children([], this.model.get('_children')); |
|
154 | 154 | this.model.on('change:_children', function(model, value, options) { |
|
155 | 155 | this.update_children(model.previous('_children'), value); |
|
156 | 156 | }, this); |
|
157 | 157 | }, |
|
158 | 158 | |
|
159 | 159 | update_children: function(old_list, new_list) { |
|
160 | 160 | // Called when the children list is modified. |
|
161 | 161 | this.do_diff(old_list, |
|
162 | 162 | new_list, |
|
163 | 163 | $.proxy(this.remove_child_model, this), |
|
164 | 164 | $.proxy(this.add_child_model, this)); |
|
165 | 165 | }, |
|
166 | 166 | |
|
167 | 167 | remove_child_model: function(model) { |
|
168 | 168 | // Called when a child is removed from children list. |
|
169 | 169 | var view = this.child_views[model.id]; |
|
170 | 170 | this.containers.splice(view.parent_tab.tab_text_index, 1); |
|
171 | 171 | view.parent_tab.remove(); |
|
172 | 172 | view.parent_container.remove(); |
|
173 | 173 | view.remove(); |
|
174 | 174 | this.delete_child_view(model); |
|
175 | 175 | }, |
|
176 | 176 | |
|
177 | 177 | add_child_model: function(model) { |
|
178 | 178 | // Called when a child is added to children list. |
|
179 | 179 | var view = this.create_child_view(model); |
|
180 | 180 | var index = this.containers.length; |
|
181 | 181 | var uuid = IPython.utils.uuid(); |
|
182 | 182 | |
|
183 | 183 | var that = this; |
|
184 | 184 | var tab = $('<li />') |
|
185 | 185 | .css('list-style-type', 'none') |
|
186 | 186 | .appendTo(this.$tabs); |
|
187 | 187 | view.parent_tab = tab; |
|
188 | 188 | |
|
189 | 189 | var tab_text = $('<a />') |
|
190 | 190 | .attr('href', '#' + uuid) |
|
191 | 191 | .attr('data-toggle', 'tab') |
|
192 | 192 | .text('Page ' + index) |
|
193 | 193 | .appendTo(tab) |
|
194 | 194 | .click(function (e) { |
|
195 | 195 | |
|
196 | 196 | // Calling model.set will trigger all of the other views of the |
|
197 | 197 | // model to update. |
|
198 | 198 | that.model.set("selected_index", index, {updated_view: this}); |
|
199 | 199 | that.touch(); |
|
200 | 200 | that.select_page(index); |
|
201 | 201 | }); |
|
202 | 202 | tab.tab_text_index = this.containers.push(tab_text) - 1; |
|
203 | 203 | |
|
204 | 204 | var contents_div = $('<div />', {id: uuid}) |
|
205 | 205 | .addClass('tab-pane') |
|
206 | 206 | .addClass('fade') |
|
207 | 207 | .append(view.$el) |
|
208 | 208 | .appendTo(this.$tab_contents); |
|
209 | 209 | view.parent_container = contents_div; |
|
210 | 210 | }, |
|
211 | 211 | |
|
212 | 212 | update: function(options) { |
|
213 | 213 | // Update the contents of this view |
|
214 | 214 | // |
|
215 | 215 | // Called when the model is changed. The model may have been |
|
216 | 216 | // changed by another view or by a state update from the back-end. |
|
217 | 217 | if (options === undefined || options.updated_view != this) { |
|
218 | 218 | // Set tab titles |
|
219 | 219 | var titles = this.model.get('_titles'); |
|
220 | 220 | var that = this; |
|
221 | 221 | _.each(titles, function(title, page_index) { |
|
222 | 222 | var tab_text = that.containers[page_index]; |
|
223 | 223 | if (tab_text !== undefined) { |
|
224 | 224 | tab_text.text(title); |
|
225 | 225 | } |
|
226 | 226 | }); |
|
227 | 227 | |
|
228 | 228 | var selected_index = this.model.get('selected_index'); |
|
229 | 229 | if (0 <= selected_index && selected_index < this.containers.length) { |
|
230 | 230 | this.select_page(selected_index); |
|
231 | 231 | } |
|
232 | 232 | } |
|
233 | 233 | return TabView.__super__.update.apply(this); |
|
234 | 234 | }, |
|
235 | 235 | |
|
236 | 236 | select_page: function(index) { |
|
237 | 237 | // Select a page. |
|
238 | 238 | this.$tabs.find('li') |
|
239 | 239 | .removeClass('active'); |
|
240 | 240 | this.containers[index].tab('show'); |
|
241 | 241 | }, |
|
242 | 242 | }); |
|
243 | 243 | WidgetManager.register_widget_view('TabView', TabView); |
|
244 | 244 | }); |
@@ -1,222 +1,222 | |||
|
1 | 1 | //---------------------------------------------------------------------------- |
|
2 | 2 | // Copyright (C) 2013 The IPython Development Team |
|
3 | 3 | // |
|
4 | 4 | // Distributed under the terms of the BSD License. The full license is in |
|
5 | 5 | // the file COPYING, distributed as part of this software. |
|
6 | 6 | //---------------------------------------------------------------------------- |
|
7 | 7 | |
|
8 | 8 | //============================================================================ |
|
9 | 9 | // StringWidget |
|
10 | 10 | //============================================================================ |
|
11 | 11 | |
|
12 | 12 | /** |
|
13 | 13 | * @module IPython |
|
14 | 14 | * @namespace IPython |
|
15 | 15 | **/ |
|
16 | 16 | |
|
17 |
define([" |
|
|
17 | define(["widgets/js/widget"], function(WidgetManager){ | |
|
18 | 18 | |
|
19 | 19 | var HTMLView = IPython.DOMWidgetView.extend({ |
|
20 | 20 | render : function(){ |
|
21 | 21 | // Called when view is rendered. |
|
22 | 22 | this.update(); // Set defaults. |
|
23 | 23 | }, |
|
24 | 24 | |
|
25 | 25 | update : function(){ |
|
26 | 26 | // Update the contents of this view |
|
27 | 27 | // |
|
28 | 28 | // Called when the model is changed. The model may have been |
|
29 | 29 | // changed by another view or by a state update from the back-end. |
|
30 | 30 | this.$el.html(this.model.get('value')); // CAUTION! .html(...) CALL MANDITORY!!! |
|
31 | 31 | return HTMLView.__super__.update.apply(this); |
|
32 | 32 | }, |
|
33 | 33 | }); |
|
34 | 34 | WidgetManager.register_widget_view('HTMLView', HTMLView); |
|
35 | 35 | |
|
36 | 36 | |
|
37 | 37 | var LatexView = IPython.DOMWidgetView.extend({ |
|
38 | 38 | render : function(){ |
|
39 | 39 | // Called when view is rendered. |
|
40 | 40 | this.update(); // Set defaults. |
|
41 | 41 | }, |
|
42 | 42 | |
|
43 | 43 | update : function(){ |
|
44 | 44 | // Update the contents of this view |
|
45 | 45 | // |
|
46 | 46 | // Called when the model is changed. The model may have been |
|
47 | 47 | // changed by another view or by a state update from the back-end. |
|
48 | 48 | this.$el.text(this.model.get('value')); |
|
49 | 49 | MathJax.Hub.Queue(["Typeset",MathJax.Hub,this.$el.get(0)]); |
|
50 | 50 | |
|
51 | 51 | return LatexView.__super__.update.apply(this); |
|
52 | 52 | }, |
|
53 | 53 | }); |
|
54 | 54 | WidgetManager.register_widget_view('LatexView', LatexView); |
|
55 | 55 | |
|
56 | 56 | |
|
57 | 57 | var TextareaView = IPython.DOMWidgetView.extend({ |
|
58 | 58 | render: function(){ |
|
59 | 59 | // Called when view is rendered. |
|
60 | 60 | this.$el |
|
61 | 61 | .addClass('widget-hbox'); |
|
62 | 62 | this.$label = $('<div />') |
|
63 | 63 | .appendTo(this.$el) |
|
64 | 64 | .addClass('widget-hlabel') |
|
65 | 65 | .hide(); |
|
66 | 66 | this.$textbox = $('<textarea />') |
|
67 | 67 | .attr('rows', 5) |
|
68 | 68 | .addClass('widget-text') |
|
69 | 69 | .appendTo(this.$el); |
|
70 | 70 | this.$el_to_style = this.$textbox; // Set default element to style |
|
71 | 71 | this.update(); // Set defaults. |
|
72 | 72 | |
|
73 | 73 | this.model.on('msg:custom', $.proxy(this._handle_textarea_msg, this)); |
|
74 | 74 | }, |
|
75 | 75 | |
|
76 | 76 | _handle_textarea_msg: function (content){ |
|
77 | 77 | // Handle when a custom msg is recieved from the back-end. |
|
78 | 78 | if (content.method == "scroll_to_bottom") { |
|
79 | 79 | this.scroll_to_bottom(); |
|
80 | 80 | } |
|
81 | 81 | }, |
|
82 | 82 | |
|
83 | 83 | scroll_to_bottom: function (){ |
|
84 | 84 | // Scroll the text-area view to the bottom. |
|
85 | 85 | this.$textbox.scrollTop(this.$textbox[0].scrollHeight); |
|
86 | 86 | }, |
|
87 | 87 | |
|
88 | 88 | update: function(options){ |
|
89 | 89 | // Update the contents of this view |
|
90 | 90 | // |
|
91 | 91 | // Called when the model is changed. The model may have been |
|
92 | 92 | // changed by another view or by a state update from the back-end. |
|
93 | 93 | if (options === undefined || options.updated_view != this) { |
|
94 | 94 | this.$textbox.val(this.model.get('value')); |
|
95 | 95 | |
|
96 | 96 | var disabled = this.model.get('disabled'); |
|
97 | 97 | this.$textbox.prop('disabled', disabled); |
|
98 | 98 | |
|
99 | 99 | var description = this.model.get('description'); |
|
100 | 100 | if (description.length === 0) { |
|
101 | 101 | this.$label.hide(); |
|
102 | 102 | } else { |
|
103 | 103 | this.$label.text(description); |
|
104 | 104 | this.$label.show(); |
|
105 | 105 | } |
|
106 | 106 | } |
|
107 | 107 | return TextareaView.__super__.update.apply(this); |
|
108 | 108 | }, |
|
109 | 109 | |
|
110 | 110 | events: { |
|
111 | 111 | // Dictionary of events and their handlers. |
|
112 | 112 | "keyup textarea" : "handleChanging", |
|
113 | 113 | "paste textarea" : "handleChanging", |
|
114 | 114 | "cut textarea" : "handleChanging" |
|
115 | 115 | }, |
|
116 | 116 | |
|
117 | 117 | handleChanging: function(e) { |
|
118 | 118 | // Handles and validates user input. |
|
119 | 119 | |
|
120 | 120 | // Calling model.set will trigger all of the other views of the |
|
121 | 121 | // model to update. |
|
122 | 122 | this.model.set('value', e.target.value, {updated_view: this}); |
|
123 | 123 | this.touch(); |
|
124 | 124 | }, |
|
125 | 125 | }); |
|
126 | 126 | WidgetManager.register_widget_view('TextareaView', TextareaView); |
|
127 | 127 | |
|
128 | 128 | |
|
129 | 129 | var TextView = IPython.DOMWidgetView.extend({ |
|
130 | 130 | render: function(){ |
|
131 | 131 | // Called when view is rendered. |
|
132 | 132 | this.$el |
|
133 | 133 | .addClass('widget-hbox-single'); |
|
134 | 134 | this.$label = $('<div />') |
|
135 | 135 | .addClass('widget-hlabel') |
|
136 | 136 | .appendTo(this.$el) |
|
137 | 137 | .hide(); |
|
138 | 138 | this.$textbox = $('<input type="text" />') |
|
139 | 139 | .addClass('input') |
|
140 | 140 | .addClass('widget-text') |
|
141 | 141 | .appendTo(this.$el); |
|
142 | 142 | this.$el_to_style = this.$textbox; // Set default element to style |
|
143 | 143 | this.update(); // Set defaults. |
|
144 | 144 | }, |
|
145 | 145 | |
|
146 | 146 | update: function(options){ |
|
147 | 147 | // Update the contents of this view |
|
148 | 148 | // |
|
149 | 149 | // Called when the model is changed. The model may have been |
|
150 | 150 | // changed by another view or by a state update from the back-end. |
|
151 | 151 | if (options === undefined || options.updated_view != this) { |
|
152 | 152 | if (this.$textbox.val() != this.model.get('value')) { |
|
153 | 153 | this.$textbox.val(this.model.get('value')); |
|
154 | 154 | } |
|
155 | 155 | |
|
156 | 156 | var disabled = this.model.get('disabled'); |
|
157 | 157 | this.$textbox.prop('disabled', disabled); |
|
158 | 158 | |
|
159 | 159 | var description = this.model.get('description'); |
|
160 | 160 | if (description.length === 0) { |
|
161 | 161 | this.$label.hide(); |
|
162 | 162 | } else { |
|
163 | 163 | this.$label.text(description); |
|
164 | 164 | this.$label.show(); |
|
165 | 165 | } |
|
166 | 166 | } |
|
167 | 167 | return TextView.__super__.update.apply(this); |
|
168 | 168 | }, |
|
169 | 169 | |
|
170 | 170 | events: { |
|
171 | 171 | // Dictionary of events and their handlers. |
|
172 | 172 | "keyup input" : "handleChanging", |
|
173 | 173 | "paste input" : "handleChanging", |
|
174 | 174 | "cut input" : "handleChanging", |
|
175 | 175 | "keypress input" : "handleKeypress", |
|
176 | 176 | "blur input" : "handleBlur", |
|
177 | 177 | "focusout input" : "handleFocusOut" |
|
178 | 178 | }, |
|
179 | 179 | |
|
180 | 180 | handleChanging: function(e) { |
|
181 | 181 | // Handles user input. |
|
182 | 182 | |
|
183 | 183 | // Calling model.set will trigger all of the other views of the |
|
184 | 184 | // model to update. |
|
185 | 185 | this.model.set('value', e.target.value, {updated_view: this}); |
|
186 | 186 | this.touch(); |
|
187 | 187 | }, |
|
188 | 188 | |
|
189 | 189 | handleKeypress: function(e) { |
|
190 | 190 | // Handles text submition |
|
191 | 191 | if (e.keyCode == 13) { // Return key |
|
192 | 192 | this.send({event: 'submit'}); |
|
193 | 193 | event.stopPropagation(); |
|
194 | 194 | event.preventDefault(); |
|
195 | 195 | return false; |
|
196 | 196 | } |
|
197 | 197 | }, |
|
198 | 198 | |
|
199 | 199 | handleBlur: function(e) { |
|
200 | 200 | // Prevent a blur from firing if the blur was not user intended. |
|
201 | 201 | // This is a workaround for the return-key focus loss bug. |
|
202 | 202 | // TODO: Is the original bug actually a fault of the keyboard |
|
203 | 203 | // manager? |
|
204 | 204 | if (e.relatedTarget === null) { |
|
205 | 205 | event.stopPropagation(); |
|
206 | 206 | event.preventDefault(); |
|
207 | 207 | return false; |
|
208 | 208 | } |
|
209 | 209 | }, |
|
210 | 210 | |
|
211 | 211 | handleFocusOut: function(e) { |
|
212 | 212 | // Prevent a blur from firing if the blur was not user intended. |
|
213 | 213 | // This is a workaround for the return-key focus loss bug. |
|
214 | 214 | if (e.relatedTarget === null) { |
|
215 | 215 | event.stopPropagation(); |
|
216 | 216 | event.preventDefault(); |
|
217 | 217 | return false; |
|
218 | 218 | } |
|
219 | 219 | }, |
|
220 | 220 | }); |
|
221 | 221 | WidgetManager.register_widget_view('TextView', TextView); |
|
222 | 222 | }); |
General Comments 0
You need to be logged in to leave comments.
Login now