mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 16:08:19 +02:00
Use "getInlines()", not "_inlines", to access inlines on client Changeset objects
Summary: See PHI1898. An install is reporting an execution/initialization order issue where this code is reachable before `_inlines` is initialized. I can't immediately reproduce it, but using "getInlines()" is preferable anyway and seems likely to fix the problem. Test Plan: Viewed revisions with inlines, added/removed/edited/replied to inlines, didn't find anything broken. Differential Revision: https://secure.phabricator.com/D21475
This commit is contained in:
parent
a5f20f7106
commit
0f0e94ca71
2 changed files with 21 additions and 20 deletions
|
@ -13,7 +13,7 @@ return array(
|
||||||
'core.pkg.js' => 'adc34883',
|
'core.pkg.js' => 'adc34883',
|
||||||
'dark-console.pkg.js' => '187792c2',
|
'dark-console.pkg.js' => '187792c2',
|
||||||
'differential.pkg.css' => '5c459f92',
|
'differential.pkg.css' => '5c459f92',
|
||||||
'differential.pkg.js' => '218fda21',
|
'differential.pkg.js' => '5080baf4',
|
||||||
'diffusion.pkg.css' => '42c75c37',
|
'diffusion.pkg.css' => '42c75c37',
|
||||||
'diffusion.pkg.js' => '8ee48a4b',
|
'diffusion.pkg.js' => '8ee48a4b',
|
||||||
'maniphest.pkg.css' => '35995d6d',
|
'maniphest.pkg.css' => '35995d6d',
|
||||||
|
@ -383,7 +383,7 @@ return array(
|
||||||
'rsrc/js/application/dashboard/behavior-dashboard-move-panels.js' => 'a2ab19be',
|
'rsrc/js/application/dashboard/behavior-dashboard-move-panels.js' => 'a2ab19be',
|
||||||
'rsrc/js/application/dashboard/behavior-dashboard-query-panel-select.js' => '1e413dc9',
|
'rsrc/js/application/dashboard/behavior-dashboard-query-panel-select.js' => '1e413dc9',
|
||||||
'rsrc/js/application/dashboard/behavior-dashboard-tab-panel.js' => '0116d3e8',
|
'rsrc/js/application/dashboard/behavior-dashboard-tab-panel.js' => '0116d3e8',
|
||||||
'rsrc/js/application/diff/DiffChangeset.js' => '39dcf2c3',
|
'rsrc/js/application/diff/DiffChangeset.js' => '3b6e1fde',
|
||||||
'rsrc/js/application/diff/DiffChangesetList.js' => 'cc2c5de5',
|
'rsrc/js/application/diff/DiffChangesetList.js' => 'cc2c5de5',
|
||||||
'rsrc/js/application/diff/DiffInline.js' => '511a1315',
|
'rsrc/js/application/diff/DiffInline.js' => '511a1315',
|
||||||
'rsrc/js/application/diff/DiffPathView.js' => '8207abf9',
|
'rsrc/js/application/diff/DiffPathView.js' => '8207abf9',
|
||||||
|
@ -784,7 +784,7 @@ return array(
|
||||||
'phabricator-darklog' => '3b869402',
|
'phabricator-darklog' => '3b869402',
|
||||||
'phabricator-darkmessage' => '26cd4b73',
|
'phabricator-darkmessage' => '26cd4b73',
|
||||||
'phabricator-dashboard-css' => '5a205b9d',
|
'phabricator-dashboard-css' => '5a205b9d',
|
||||||
'phabricator-diff-changeset' => '39dcf2c3',
|
'phabricator-diff-changeset' => '3b6e1fde',
|
||||||
'phabricator-diff-changeset-list' => 'cc2c5de5',
|
'phabricator-diff-changeset-list' => 'cc2c5de5',
|
||||||
'phabricator-diff-inline' => '511a1315',
|
'phabricator-diff-inline' => '511a1315',
|
||||||
'phabricator-diff-path-view' => '8207abf9',
|
'phabricator-diff-path-view' => '8207abf9',
|
||||||
|
@ -1229,7 +1229,14 @@ return array(
|
||||||
'trigger-rule',
|
'trigger-rule',
|
||||||
'trigger-rule-type',
|
'trigger-rule-type',
|
||||||
),
|
),
|
||||||
'39dcf2c3' => array(
|
'3ae89b20' => array(
|
||||||
|
'phui-workcard-view-css',
|
||||||
|
),
|
||||||
|
'3b4899b0' => array(
|
||||||
|
'javelin-behavior',
|
||||||
|
'phabricator-prefab',
|
||||||
|
),
|
||||||
|
'3b6e1fde' => array(
|
||||||
'javelin-dom',
|
'javelin-dom',
|
||||||
'javelin-util',
|
'javelin-util',
|
||||||
'javelin-stratcom',
|
'javelin-stratcom',
|
||||||
|
@ -1243,13 +1250,6 @@ return array(
|
||||||
'phuix-button-view',
|
'phuix-button-view',
|
||||||
'javelin-external-editor-link-engine',
|
'javelin-external-editor-link-engine',
|
||||||
),
|
),
|
||||||
'3ae89b20' => array(
|
|
||||||
'phui-workcard-view-css',
|
|
||||||
),
|
|
||||||
'3b4899b0' => array(
|
|
||||||
'javelin-behavior',
|
|
||||||
'phabricator-prefab',
|
|
||||||
),
|
|
||||||
'3be6ef4f' => array(
|
'3be6ef4f' => array(
|
||||||
'javelin-behavior',
|
'javelin-behavior',
|
||||||
'javelin-dom',
|
'javelin-dom',
|
||||||
|
|
|
@ -723,16 +723,19 @@ JX.install('DiffChangeset', {
|
||||||
var data = JX.Stratcom.getData(node);
|
var data = JX.Stratcom.getData(node);
|
||||||
|
|
||||||
if (!data.inline) {
|
if (!data.inline) {
|
||||||
var inline = new JX.DiffInline()
|
var inline = this._newInlineForRow(node);
|
||||||
.setChangeset(this)
|
this.getInlines().push(inline);
|
||||||
.bindToRow(node);
|
|
||||||
|
|
||||||
this._inlines.push(inline);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return data.inline;
|
return data.inline;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_newInlineForRow: function(node) {
|
||||||
|
return new JX.DiffInline()
|
||||||
|
.setChangeset(this)
|
||||||
|
.bindToRow(node);
|
||||||
|
},
|
||||||
|
|
||||||
newInlineForRange: function(origin, target, options) {
|
newInlineForRange: function(origin, target, options) {
|
||||||
var list = this.getChangesetList();
|
var list = this.getChangesetList();
|
||||||
|
|
||||||
|
@ -770,7 +773,7 @@ JX.install('DiffChangeset', {
|
||||||
.setChangeset(this)
|
.setChangeset(this)
|
||||||
.bindToRange(data);
|
.bindToRange(data);
|
||||||
|
|
||||||
this._inlines.push(inline);
|
this.getInlines().push(inline);
|
||||||
|
|
||||||
inline.create();
|
inline.create();
|
||||||
|
|
||||||
|
@ -855,9 +858,7 @@ JX.install('DiffChangeset', {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// As a side effect, this builds any missing inline objects and adds
|
this._inlines.push(this._newInlineForRow(row));
|
||||||
// them to this Changeset's list of inlines.
|
|
||||||
this.getInlineForRow(row);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue