##// END OF EJS Templates
Simplify error handling for errors in sending sync messages from js
Jason Grout -
Show More
@@ -1,817 +1,816
1 1 // Copyright (c) IPython Development Team.
2 2 // Distributed under the terms of the Modified BSD License.
3 3
4 4 define(["widgets/js/manager",
5 5 "underscore",
6 6 "backbone",
7 7 "jquery",
8 8 "base/js/utils",
9 9 "base/js/namespace",
10 10 ], function(widgetmanager, _, Backbone, $, utils, IPython){
11 11 "use strict";
12 12
13 13 var WidgetModel = Backbone.Model.extend({
14 14 constructor: function (widget_manager, model_id, comm) {
15 15 /**
16 16 * Constructor
17 17 *
18 18 * Creates a WidgetModel instance.
19 19 *
20 20 * Parameters
21 21 * ----------
22 22 * widget_manager : WidgetManager instance
23 23 * model_id : string
24 24 * An ID unique to this model.
25 25 * comm : Comm instance (optional)
26 26 */
27 27 this.widget_manager = widget_manager;
28 28 this.state_change = Promise.resolve();
29 29 this._buffered_state_diff = {};
30 30 this.pending_msgs = 0;
31 31 this.msg_buffer = null;
32 32 this.state_lock = null;
33 33 this.id = model_id;
34 34 this.views = {};
35 35 this.serializers = {};
36 36 this._resolve_received_state = {};
37 37
38 38 if (comm !== undefined) {
39 39 // Remember comm associated with the model.
40 40 this.comm = comm;
41 41 comm.model = this;
42 42
43 43 // Hook comm messages up to model.
44 44 comm.on_close($.proxy(this._handle_comm_closed, this));
45 45 comm.on_msg($.proxy(this._handle_comm_msg, this));
46 46
47 47 // Assume the comm is alive.
48 48 this.set_comm_live(true);
49 49 } else {
50 50 this.set_comm_live(false);
51 51 }
52 52
53 53 // Listen for the events that lead to the websocket being terminated.
54 54 var that = this;
55 55 var died = function() {
56 56 that.set_comm_live(false);
57 57 };
58 58 widget_manager.notebook.events.on('kernel_disconnected.Kernel', died);
59 59 widget_manager.notebook.events.on('kernel_killed.Kernel', died);
60 60 widget_manager.notebook.events.on('kernel_restarting.Kernel', died);
61 61 widget_manager.notebook.events.on('kernel_dead.Kernel', died);
62 62
63 63 return Backbone.Model.apply(this);
64 64 },
65 65
66 66 send: function (content, callbacks, buffers) {
67 67 /**
68 68 * Send a custom msg over the comm.
69 69 */
70 70 if (this.comm !== undefined) {
71 71 var data = {method: 'custom', content: content};
72 72 this.comm.send(data, callbacks, {}, buffers);
73 73 this.pending_msgs++;
74 74 }
75 75 },
76 76
77 77 request_state: function(callbacks) {
78 78 /**
79 79 * Request a state push from the back-end.
80 80 */
81 81 if (!this.comm) {
82 82 console.error("Could not request_state because comm doesn't exist!");
83 83 return;
84 84 }
85 85
86 86 var msg_id = this.comm.send({method: 'request_state'}, callbacks || this.widget_manager.callbacks());
87 87
88 88 // Promise that is resolved when a state is received
89 89 // from the back-end.
90 90 var that = this;
91 91 var received_state = new Promise(function(resolve) {
92 92 that._resolve_received_state[msg_id] = resolve;
93 93 });
94 94 return received_state;
95 95 },
96 96
97 97 set_comm_live: function(live) {
98 98 /**
99 99 * Change the comm_live state of the model.
100 100 */
101 101 if (this.comm_live === undefined || this.comm_live != live) {
102 102 this.comm_live = live;
103 103 this.trigger(live ? 'comm:live' : 'comm:dead', {model: this});
104 104 }
105 105 },
106 106
107 107 close: function(comm_closed) {
108 108 /**
109 109 * Close model
110 110 */
111 111 if (this.comm && !comm_closed) {
112 112 this.comm.close();
113 113 }
114 114 this.stopListening();
115 115 this.trigger('destroy', this);
116 116 delete this.comm.model; // Delete ref so GC will collect widget model.
117 117 delete this.comm;
118 118 delete this.model_id; // Delete id from model so widget manager cleans up.
119 119 _.each(this.views, function(v, id, views) {
120 120 v.then(function(view) {
121 121 view.remove();
122 122 delete views[id];
123 123 });
124 124 });
125 125 },
126 126
127 127 _handle_comm_closed: function (msg) {
128 128 /**
129 129 * Handle when a widget is closed.
130 130 */
131 131 this.trigger('comm:close');
132 132 this.close(true);
133 133 },
134 134
135 135 _handle_comm_msg: function (msg) {
136 136 /**
137 137 * Handle incoming comm msg.
138 138 */
139 139 var method = msg.content.data.method;
140 140
141 141 var that = this;
142 142 switch (method) {
143 143 case 'update':
144 144 this.state_change = this.state_change
145 145 .then(function() {
146 146 var state = msg.content.data.state || {};
147 147 var buffer_keys = msg.content.data.buffers || [];
148 148 var buffers = msg.buffers || [];
149 149 var metadata = msg.content.data.metadata || {};
150 150 var i,k;
151 151 for (var i=0; i<buffer_keys.length; i++) {
152 152 k = buffer_keys[i];
153 153 state[k] = buffers[i];
154 154 }
155 155
156 156 // for any metadata specifying a deserializer, set the
157 157 // state to a promise that resolves to the deserialized version
158 158 // also, store the serialization function for the attribute
159 159 var keys = Object.keys(metadata);
160 160 for (var i=0; i<keys.length; i++) {
161 161 k = keys[i];
162 162 if (metadata[k] && metadata[k].serialization) {
163 163 that.serializers[k] = utils.load_class.apply(that,
164 164 metadata[k].serialization);
165 165 state[k] = that.deserialize(that.serializers[k], state[k]);
166 166 }
167 167 }
168 168 return utils.resolve_promises_dict(state);
169 169 }).then(function(state) {
170 170 return that.set_state(state);
171 171 }).catch(utils.reject("Couldn't process update msg for model id '" + String(that.id) + "'", true))
172 172 .then(function() {
173 173 var parent_id = msg.parent_header.msg_id;
174 174 if (that._resolve_received_state[parent_id] !== undefined) {
175 175 that._resolve_received_state[parent_id].call();
176 176 delete that._resolve_received_state[parent_id];
177 177 }
178 178 }).catch(utils.reject("Couldn't resolve state request promise", true));
179 179 break;
180 180 case 'custom':
181 181 this.trigger('msg:custom', msg.content.data.content, msg.buffers);
182 182 break;
183 183 case 'display':
184 184 this.state_change = this.state_change.then(function() {
185 185 that.widget_manager.display_view(msg, that);
186 186 }).catch(utils.reject('Could not process display view msg', true));
187 187 break;
188 188 }
189 189 },
190 190
191 191 deserialize: function(serializer, value) {
192 192 // given a serializer dict and a value,
193 193 // return a promise for the deserialized value
194 194 var that = this;
195 195 return serializer.then(function(s) {
196 196 if (s.deserialize) {
197 197 return s.deserialize(value, that);
198 198 } else {
199 199 return value;
200 200 }
201 201 });
202 202 },
203 203
204 204 set_state: function (state) {
205 205 var that = this;
206 206 // Handle when a widget is updated via the python side.
207 207 return new Promise(function(resolve, reject) {
208 208 that.state_lock = state;
209 209 try {
210 210 WidgetModel.__super__.set.call(that, state);
211 211 } finally {
212 212 that.state_lock = null;
213 213 }
214 214 resolve();
215 215 }).catch(utils.reject("Couldn't set model state", true));
216 216 },
217 217
218 218 get_state: function() {
219 219 // Get the serializable state of the model.
220 220 // Equivalent to Backbone.Model.toJSON()
221 221 return _.clone(this.attributes);
222 222 },
223 223
224 224 _handle_status: function (msg, callbacks) {
225 225 /**
226 226 * Handle status msgs.
227 227 *
228 228 * execution_state : ('busy', 'idle', 'starting')
229 229 */
230 230 if (this.comm !== undefined) {
231 231 if (msg.content.execution_state ==='idle') {
232 232 // Send buffer if this message caused another message to be
233 233 // throttled.
234 234 if (this.msg_buffer !== null &&
235 235 (this.get('msg_throttle') || 3) === this.pending_msgs) {
236 236 var data = {method: 'backbone', sync_method: 'update', sync_data: this.msg_buffer};
237 237 this.comm.send(data, callbacks);
238 238 this.msg_buffer = null;
239 239 } else {
240 240 --this.pending_msgs;
241 241 }
242 242 }
243 243 }
244 244 },
245 245
246 246 callbacks: function(view) {
247 247 /**
248 248 * Create msg callbacks for a comm msg.
249 249 */
250 250 var callbacks = this.widget_manager.callbacks(view);
251 251
252 252 if (callbacks.iopub === undefined) {
253 253 callbacks.iopub = {};
254 254 }
255 255
256 256 var that = this;
257 257 callbacks.iopub.status = function (msg) {
258 258 that._handle_status(msg, callbacks);
259 259 };
260 260 return callbacks;
261 261 },
262 262
263 263 set: function(key, val, options) {
264 264 /**
265 265 * Set a value.
266 266 */
267 267 var return_value = WidgetModel.__super__.set.apply(this, arguments);
268 268
269 269 // Backbone only remembers the diff of the most recent set()
270 270 // operation. Calling set multiple times in a row results in a
271 271 // loss of diff information. Here we keep our own running diff.
272 272 this._buffered_state_diff = $.extend(this._buffered_state_diff, this.changedAttributes() || {});
273 273 return return_value;
274 274 },
275 275
276 276 sync: function (method, model, options) {
277 277 /**
278 278 * Handle sync to the back-end. Called when a model.save() is called.
279 279 *
280 280 * Make sure a comm exists.
281 281
282 282 * Parameters
283 283 * ----------
284 284 * method : create, update, patch, delete, read
285 285 * create/update always send the full attribute set
286 286 * patch - only send attributes listed in options.attrs, and if we are queuing
287 287 * up messages, combine with previous messages that have not been sent yet
288 288 * model : the model we are syncing
289 289 * will normally be the same as `this`
290 290 * options : dict
291 291 * the `attrs` key, if it exists, gives an {attr: value} dict that should be synced,
292 292 * otherwise, sync all attributes
293 293 *
294 294 */
295 295 var error = options.error || function() {
296 296 console.error('Backbone sync error:', arguments);
297 297 };
298 298 if (this.comm === undefined) {
299 299 error();
300 300 return false;
301 301 }
302 302
303 303 var attrs = (method === 'patch') ? options.attrs : model.get_state(options);
304 304
305 305 // the state_lock lists attributes that are currently be changed right now from a kernel message
306 306 // we don't want to send these non-changes back to the kernel, so we delete them out of attrs
307 307 // (but we only delete them if the value hasn't changed from the value stored in the state_lock
308 308 if (this.state_lock !== null) {
309 309 var keys = Object.keys(this.state_lock);
310 310 for (var i=0; i<keys.length; i++) {
311 311 var key = keys[i];
312 312 if (attrs[key] === this.state_lock[key]) {
313 313 delete attrs[key];
314 314 }
315 315 }
316 316 }
317 317
318 318 if (_.size(attrs) > 0) {
319 319
320 320 // If this message was sent via backbone itself, it will not
321 321 // have any callbacks. It's important that we create callbacks
322 322 // so we can listen for status messages, etc...
323 323 var callbacks = options.callbacks || this.callbacks();
324 324
325 325 // Check throttle.
326 326 if (this.pending_msgs >= (this.get('msg_throttle') || 3)) {
327 327 // The throttle has been exceeded, buffer the current msg so
328 328 // it can be sent once the kernel has finished processing
329 329 // some of the existing messages.
330 330
331 331 // Combine updates if it is a 'patch' sync, otherwise replace updates
332 332 switch (method) {
333 333 case 'patch':
334 334 this.msg_buffer = $.extend(this.msg_buffer || {}, attrs);
335 335 break;
336 336 case 'update':
337 337 case 'create':
338 338 this.msg_buffer = attrs;
339 339 break;
340 340 default:
341 341 error();
342 342 return false;
343 343 }
344 344 this.msg_buffer_callbacks = callbacks;
345 345
346 346 } else {
347 347 // We haven't exceeded the throttle, send the message like
348 348 // normal.
349 349 this.send_sync_message(attrs, callbacks);
350 350 this.pending_msgs++;
351 351 }
352 352 }
353 353 // Since the comm is a one-way communication, assume the message
354 354 // arrived. Don't call success since we don't have a model back from the server
355 355 // this means we miss out on the 'sync' event.
356 356 this._buffered_state_diff = {};
357 357 },
358 358
359 359
360 360 send_sync_message: function(attrs, callbacks) {
361 361 // prepare and send a comm message syncing attrs
362 362 var that = this;
363 363 // first, build a state dictionary with key=the attribute and the value
364 364 // being the value or the promise of the serialized value
365 365 var state_promise_dict = {};
366 366 var keys = Object.keys(attrs);
367 367 for (var i=0; i<keys.length; i++) {
368 368 // bind k and v locally; needed since we have an inner async function using v
369 369 (function(k,v) {
370 370 if (that.serializers[k]) {
371 371 state_promise_dict[k] = that.serializers[k].then(function(f) {
372 372 if (f.serialize) {
373 373 return f.serialize(v, that);
374 374 } else {
375 375 return v;
376 376 }
377 377 })
378 378 } else {
379 379 state_promise_dict[k] = v;
380 380 }
381 381 })(keys[i], attrs[keys[i]])
382 382 }
383 383 utils.resolve_promises_dict(state_promise_dict).then(function(state) {
384 384 // get binary values, then send
385 385 var keys = Object.keys(state);
386 386 var buffers = [];
387 387 var buffer_keys = [];
388 388 for (var i=0; i<keys.length; i++) {
389 389 var key = keys[i];
390 390 var value = state[key];
391 391 if (value.buffer instanceof ArrayBuffer
392 392 || value instanceof ArrayBuffer) {
393 393 buffers.push(value);
394 394 buffer_keys.push(key);
395 395 delete state[key];
396 396 }
397 397 }
398 398 that.comm.send({method: 'backbone', sync_data: state, buffer_keys: buffer_keys}, callbacks, {}, buffers);
399 }).catch(utils.reject("Couldn't send widget sync message", true))
400 .catch(function(error) {
399 }).catch(function(error) {
401 400 that.pending_msgs--;
402 return error;
401 return (utils.reject("Couldn't send widget sync message", true))(error);
403 402 });
404 403 },
405 404
406 405 serialize: function(model, attrs) {
407 406 // Serialize the attributes into a sync message
408 407 var keys = Object.keys(attrs);
409 408 var key, value;
410 409 var buffers, metadata, buffer_keys, serialize;
411 410 for (var i=0; i<keys.length; i++) {
412 411 key = keys[i];
413 412 serialize = model.serializers[key];
414 413 if (serialize && serialize.serialize) {
415 414 attrs[key] = serialize.serialize(attrs[key]);
416 415 }
417 416 }
418 417 },
419 418
420 419 save_changes: function(callbacks) {
421 420 /**
422 421 * Push this model's state to the back-end
423 422 *
424 423 * This invokes a Backbone.Sync.
425 424 */
426 425 this.save(this._buffered_state_diff, {patch: true, callbacks: callbacks});
427 426 },
428 427
429 428 on_some_change: function(keys, callback, context) {
430 429 /**
431 430 * on_some_change(["key1", "key2"], foo, context) differs from
432 431 * on("change:key1 change:key2", foo, context).
433 432 * If the widget attributes key1 and key2 are both modified,
434 433 * the second form will result in foo being called twice
435 434 * while the first will call foo only once.
436 435 */
437 436 this.on('change', function() {
438 437 if (keys.some(this.hasChanged, this)) {
439 438 callback.apply(context);
440 439 }
441 440 }, this);
442 441
443 442 },
444 443 });
445 444 widgetmanager.WidgetManager.register_widget_model('WidgetModel', WidgetModel);
446 445
447 446
448 447 var WidgetView = Backbone.View.extend({
449 448 initialize: function(parameters) {
450 449 /**
451 450 * Public constructor.
452 451 */
453 452 this.model.on('change',this.update,this);
454 453
455 454 // Bubble the comm live events.
456 455 this.model.on('comm:live', function() {
457 456 this.trigger('comm:live', this);
458 457 }, this);
459 458 this.model.on('comm:dead', function() {
460 459 this.trigger('comm:dead', this);
461 460 }, this);
462 461
463 462 this.options = parameters.options;
464 463 this.on('displayed', function() {
465 464 this.is_displayed = true;
466 465 }, this);
467 466 },
468 467
469 468 update: function(){
470 469 /**
471 470 * Triggered on model change.
472 471 *
473 472 * Update view to be consistent with this.model
474 473 */
475 474 },
476 475
477 476 create_child_view: function(child_model, options) {
478 477 /**
479 478 * Create and promise that resolves to a child view of a given model
480 479 */
481 480 var that = this;
482 481 options = $.extend({ parent: this }, options || {});
483 482 return this.model.widget_manager.create_view(child_model, options).catch(utils.reject("Couldn't create child view", true));
484 483 },
485 484
486 485 callbacks: function(){
487 486 /**
488 487 * Create msg callbacks for a comm msg.
489 488 */
490 489 return this.model.callbacks(this);
491 490 },
492 491
493 492 render: function(){
494 493 /**
495 494 * Render the view.
496 495 *
497 496 * By default, this is only called the first time the view is created
498 497 */
499 498 },
500 499
501 500 send: function (content, buffers) {
502 501 /**
503 502 * Send a custom msg associated with this view.
504 503 */
505 504 this.model.send(content, this.callbacks(), buffers);
506 505 },
507 506
508 507 touch: function () {
509 508 this.model.save_changes(this.callbacks());
510 509 },
511 510
512 511 after_displayed: function (callback, context) {
513 512 /**
514 513 * Calls the callback right away is the view is already displayed
515 514 * otherwise, register the callback to the 'displayed' event.
516 515 */
517 516 if (this.is_displayed) {
518 517 callback.apply(context);
519 518 } else {
520 519 this.on('displayed', callback, context);
521 520 }
522 521 },
523 522
524 523 remove: function () {
525 524 // Raise a remove event when the view is removed.
526 525 WidgetView.__super__.remove.apply(this, arguments);
527 526 this.trigger('remove');
528 527 }
529 528 });
530 529
531 530
532 531 var DOMWidgetView = WidgetView.extend({
533 532 initialize: function (parameters) {
534 533 /**
535 534 * Public constructor
536 535 */
537 536 DOMWidgetView.__super__.initialize.apply(this, [parameters]);
538 537 this.model.on('change:visible', this.update_visible, this);
539 538 this.model.on('change:_css', this.update_css, this);
540 539
541 540 this.model.on('change:_dom_classes', function(model, new_classes) {
542 541 var old_classes = model.previous('_dom_classes');
543 542 this.update_classes(old_classes, new_classes);
544 543 }, this);
545 544
546 545 this.model.on('change:color', function (model, value) {
547 546 this.update_attr('color', value); }, this);
548 547
549 548 this.model.on('change:background_color', function (model, value) {
550 549 this.update_attr('background', value); }, this);
551 550
552 551 this.model.on('change:width', function (model, value) {
553 552 this.update_attr('width', value); }, this);
554 553
555 554 this.model.on('change:height', function (model, value) {
556 555 this.update_attr('height', value); }, this);
557 556
558 557 this.model.on('change:border_color', function (model, value) {
559 558 this.update_attr('border-color', value); }, this);
560 559
561 560 this.model.on('change:border_width', function (model, value) {
562 561 this.update_attr('border-width', value); }, this);
563 562
564 563 this.model.on('change:border_style', function (model, value) {
565 564 this.update_attr('border-style', value); }, this);
566 565
567 566 this.model.on('change:font_style', function (model, value) {
568 567 this.update_attr('font-style', value); }, this);
569 568
570 569 this.model.on('change:font_weight', function (model, value) {
571 570 this.update_attr('font-weight', value); }, this);
572 571
573 572 this.model.on('change:font_size', function (model, value) {
574 573 this.update_attr('font-size', this._default_px(value)); }, this);
575 574
576 575 this.model.on('change:font_family', function (model, value) {
577 576 this.update_attr('font-family', value); }, this);
578 577
579 578 this.model.on('change:padding', function (model, value) {
580 579 this.update_attr('padding', value); }, this);
581 580
582 581 this.model.on('change:margin', function (model, value) {
583 582 this.update_attr('margin', this._default_px(value)); }, this);
584 583
585 584 this.model.on('change:border_radius', function (model, value) {
586 585 this.update_attr('border-radius', this._default_px(value)); }, this);
587 586
588 587 this.after_displayed(function() {
589 588 this.update_visible(this.model, this.model.get("visible"));
590 589 this.update_classes([], this.model.get('_dom_classes'));
591 590
592 591 this.update_attr('color', this.model.get('color'));
593 592 this.update_attr('background', this.model.get('background_color'));
594 593 this.update_attr('width', this.model.get('width'));
595 594 this.update_attr('height', this.model.get('height'));
596 595 this.update_attr('border-color', this.model.get('border_color'));
597 596 this.update_attr('border-width', this.model.get('border_width'));
598 597 this.update_attr('border-style', this.model.get('border_style'));
599 598 this.update_attr('font-style', this.model.get('font_style'));
600 599 this.update_attr('font-weight', this.model.get('font_weight'));
601 600 this.update_attr('font-size', this._default_px(this.model.get('font_size')));
602 601 this.update_attr('font-family', this.model.get('font_family'));
603 602 this.update_attr('padding', this.model.get('padding'));
604 603 this.update_attr('margin', this._default_px(this.model.get('margin')));
605 604 this.update_attr('border-radius', this._default_px(this.model.get('border_radius')));
606 605
607 606 this.update_css(this.model, this.model.get("_css"));
608 607 }, this);
609 608 },
610 609
611 610 _default_px: function(value) {
612 611 /**
613 612 * Makes browser interpret a numerical string as a pixel value.
614 613 */
615 614 if (/^\d+\.?(\d+)?$/.test(value.trim())) {
616 615 return value.trim() + 'px';
617 616 }
618 617 return value;
619 618 },
620 619
621 620 update_attr: function(name, value) {
622 621 /**
623 622 * Set a css attr of the widget view.
624 623 */
625 624 this.$el.css(name, value);
626 625 },
627 626
628 627 update_visible: function(model, value) {
629 628 /**
630 629 * Update visibility
631 630 */
632 631 switch(value) {
633 632 case null: // python None
634 633 this.$el.show().css('visibility', 'hidden'); break;
635 634 case false:
636 635 this.$el.hide(); break;
637 636 case true:
638 637 this.$el.show().css('visibility', ''); break;
639 638 }
640 639 },
641 640
642 641 update_css: function (model, css) {
643 642 /**
644 643 * Update the css styling of this view.
645 644 */
646 645 if (css === undefined) {return;}
647 646 for (var i = 0; i < css.length; i++) {
648 647 // Apply the css traits to all elements that match the selector.
649 648 var selector = css[i][0];
650 649 var elements = this._get_selector_element(selector);
651 650 if (elements.length > 0) {
652 651 var trait_key = css[i][1];
653 652 var trait_value = css[i][2];
654 653 elements.css(trait_key ,trait_value);
655 654 }
656 655 }
657 656 },
658 657
659 658 update_classes: function (old_classes, new_classes, $el) {
660 659 /**
661 660 * Update the DOM classes applied to an element, default to this.$el.
662 661 */
663 662 if ($el===undefined) {
664 663 $el = this.$el;
665 664 }
666 665 _.difference(old_classes, new_classes).map(function(c) {$el.removeClass(c);})
667 666 _.difference(new_classes, old_classes).map(function(c) {$el.addClass(c);})
668 667 },
669 668
670 669 update_mapped_classes: function(class_map, trait_name, previous_trait_value, $el) {
671 670 /**
672 671 * Update the DOM classes applied to the widget based on a single
673 672 * trait's value.
674 673 *
675 674 * Given a trait value classes map, this function automatically
676 675 * handles applying the appropriate classes to the widget element
677 676 * and removing classes that are no longer valid.
678 677 *
679 678 * Parameters
680 679 * ----------
681 680 * class_map: dictionary
682 681 * Dictionary of trait values to class lists.
683 682 * Example:
684 683 * {
685 684 * success: ['alert', 'alert-success'],
686 685 * info: ['alert', 'alert-info'],
687 686 * warning: ['alert', 'alert-warning'],
688 687 * danger: ['alert', 'alert-danger']
689 688 * };
690 689 * trait_name: string
691 690 * Name of the trait to check the value of.
692 691 * previous_trait_value: optional string, default ''
693 692 * Last trait value
694 693 * $el: optional jQuery element handle, defaults to this.$el
695 694 * Element that the classes are applied to.
696 695 */
697 696 var key = previous_trait_value;
698 697 if (key === undefined) {
699 698 key = this.model.previous(trait_name);
700 699 }
701 700 var old_classes = class_map[key] ? class_map[key] : [];
702 701 key = this.model.get(trait_name);
703 702 var new_classes = class_map[key] ? class_map[key] : [];
704 703
705 704 this.update_classes(old_classes, new_classes, $el || this.$el);
706 705 },
707 706
708 707 _get_selector_element: function (selector) {
709 708 /**
710 709 * Get the elements via the css selector.
711 710 */
712 711 var elements;
713 712 if (!selector) {
714 713 elements = this.$el;
715 714 } else {
716 715 elements = this.$el.find(selector).addBack(selector);
717 716 }
718 717 return elements;
719 718 },
720 719
721 720 typeset: function(element, text){
722 721 utils.typeset.apply(null, arguments);
723 722 },
724 723 });
725 724
726 725
727 726 var ViewList = function(create_view, remove_view, context) {
728 727 /**
729 728 * - create_view and remove_view are default functions called when adding or removing views
730 729 * - create_view takes a model and returns a view or a promise for a view for that model
731 730 * - remove_view takes a view and destroys it (including calling `view.remove()`)
732 731 * - each time the update() function is called with a new list, the create and remove
733 732 * callbacks will be called in an order so that if you append the views created in the
734 733 * create callback and remove the views in the remove callback, you will duplicate
735 734 * the order of the list.
736 735 * - the remove callback defaults to just removing the view (e.g., pass in null for the second parameter)
737 736 * - the context defaults to the created ViewList. If you pass another context, the create and remove
738 737 * will be called in that context.
739 738 */
740 739
741 740 this.initialize.apply(this, arguments);
742 741 };
743 742
744 743 _.extend(ViewList.prototype, {
745 744 initialize: function(create_view, remove_view, context) {
746 745 this._handler_context = context || this;
747 746 this._models = [];
748 747 this.views = []; // list of promises for views
749 748 this._create_view = create_view;
750 749 this._remove_view = remove_view || function(view) {view.remove();};
751 750 },
752 751
753 752 update: function(new_models, create_view, remove_view, context) {
754 753 /**
755 754 * the create_view, remove_view, and context arguments override the defaults
756 755 * specified when the list is created.
757 756 * after this function, the .views attribute is a list of promises for views
758 757 * if you want to perform some action on the list of views, do something like
759 758 * `Promise.all(myviewlist.views).then(function(views) {...});`
760 759 */
761 760 var remove = remove_view || this._remove_view;
762 761 var create = create_view || this._create_view;
763 762 context = context || this._handler_context;
764 763 var i = 0;
765 764 // first, skip past the beginning of the lists if they are identical
766 765 for (; i < new_models.length; i++) {
767 766 if (i >= this._models.length || new_models[i] !== this._models[i]) {
768 767 break;
769 768 }
770 769 }
771 770
772 771 var first_removed = i;
773 772 // Remove the non-matching items from the old list.
774 773 var removed = this.views.splice(first_removed, this.views.length-first_removed);
775 774 for (var j = 0; j < removed.length; j++) {
776 775 removed[j].then(function(view) {
777 776 remove.call(context, view)
778 777 });
779 778 }
780 779
781 780 // Add the rest of the new list items.
782 781 for (; i < new_models.length; i++) {
783 782 this.views.push(Promise.resolve(create.call(context, new_models[i])));
784 783 }
785 784 // make a copy of the input array
786 785 this._models = new_models.slice();
787 786 },
788 787
789 788 remove: function() {
790 789 /**
791 790 * removes every view in the list; convenience function for `.update([])`
792 791 * that should be faster
793 792 * returns a promise that resolves after this removal is done
794 793 */
795 794 var that = this;
796 795 return Promise.all(this.views).then(function(views) {
797 796 for (var i = 0; i < that.views.length; i++) {
798 797 that._remove_view.call(that._handler_context, views[i]);
799 798 }
800 799 that.views = [];
801 800 that._models = [];
802 801 });
803 802 },
804 803 });
805 804
806 805 var widget = {
807 806 'WidgetModel': WidgetModel,
808 807 'WidgetView': WidgetView,
809 808 'DOMWidgetView': DOMWidgetView,
810 809 'ViewList': ViewList,
811 810 };
812 811
813 812 // For backwards compatability.
814 813 $.extend(IPython, widget);
815 814
816 815 return widget;
817 816 });
General Comments 0
You need to be logged in to leave comments. Login now