Skip to content
Snippets Groups Projects
Commit 1440c8be authored by Géry Debongnie's avatar Géry Debongnie
Browse files

[FIX] web: prevent destroyed widget from calling start

Whenever a widget is destroyed, it should be as inactive as possible.
Before this commit, it could happen that a widget was destroyed after
the willstart method, but before the start method. In that case, bad
things could happen.

For example, the discuss client action tries to look up some information
into the session, with the getSession method. This causes a crash
whenever the widget is destroyed.
parent 5dbb2fc8
No related branches found
No related tags found
No related merge requests found
......@@ -391,6 +391,9 @@ var Widget = core.Class.extend(mixins.PropertiesMixin, ServicesMixin, {
_widgetRenderAndInsert: function (insertion, target) {
var self = this;
return this.willStart().then(function () {
if (self.__parentedDestroyed) {
return;
}
self.renderElement();
insertion(target);
return self.start();
......
......@@ -388,6 +388,26 @@ QUnit.module('core', {}, function () {
assert.ok(true,
"there should be no crash when calling _rpc on a destroyed widget");
});
QUnit.test('start is not called when widget is destroyed', function (assert) {
assert.expect(0);
var slowWillStartDef = $.Deferred();
var $fix = $( "#qunit-fixture");
var widget = new (Widget.extend({
willStart: function () {
return slowWillStartDef;
},
start: function () {
throw new Error('Should not call start method');
},
}))();
widget.appendTo($fix);
widget.destroy();
slowWillStartDef.resolve();
});
});
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment