Skip to content

Commit d3d01c2

Browse files
yogevbdguyca
authored andcommitted
Crawl layout only after dispatching events so it will contain passProps (#5126)
1 parent 99032e0 commit d3d01c2

File tree

1 file changed

+27
-18
lines changed

1 file changed

+27
-18
lines changed

lib/src/commands/Commands.ts

+27-18
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,27 @@ export class Commands {
2121
public setRoot(simpleApi: LayoutRoot) {
2222
const input = _.cloneDeep(simpleApi);
2323
const root = this.layoutTreeParser.parse(input.root);
24-
this.layoutTreeCrawler.crawl(root);
2524

2625
const modals = _.map(input.modals, (modal) => {
27-
const modalLayout = this.layoutTreeParser.parse(modal);
28-
this.layoutTreeCrawler.crawl(modalLayout);
29-
return modalLayout;
26+
return this.layoutTreeParser.parse(modal);
3027
});
3128

3229
const overlays = _.map(input.overlays, (overlay) => {
33-
const overlayLayout = this.layoutTreeParser.parse(overlay);
34-
this.layoutTreeCrawler.crawl(overlayLayout);
35-
return overlayLayout;
30+
return this.layoutTreeParser.parse(overlay);
3631
});
3732

3833
const commandId = this.uniqueIdProvider.generate('setRoot');
39-
const result = this.nativeCommandsSender.setRoot(commandId, { root, modals, overlays });
4034
this.commandsObserver.notify('setRoot', { commandId, layout: { root, modals, overlays } });
35+
36+
this.layoutTreeCrawler.crawl(root);
37+
modals.forEach(modalLayout => {
38+
this.layoutTreeCrawler.crawl(modalLayout);
39+
});
40+
overlays.forEach(overlayLayout => {
41+
this.layoutTreeCrawler.crawl(overlayLayout);
42+
})
43+
44+
const result = this.nativeCommandsSender.setRoot(commandId, { root, modals, overlays });
4145
return result;
4246
}
4347

@@ -60,11 +64,12 @@ export class Commands {
6064
public showModal(layout: Layout) {
6165
const layoutCloned = _.cloneDeep(layout);
6266
const layoutNode = this.layoutTreeParser.parse(layoutCloned);
67+
68+
const commandId = this.uniqueIdProvider.generate('showModal');
69+
this.commandsObserver.notify('showModal', { commandId, layout: layoutNode });
6370
this.layoutTreeCrawler.crawl(layoutNode);
6471

65-
const commandId = this.uniqueIdProvider.generate('showModal');
6672
const result = this.nativeCommandsSender.showModal(commandId, layoutNode);
67-
this.commandsObserver.notify('showModal', { commandId, layout: layoutNode });
6873
return result;
6974
}
7075

@@ -84,13 +89,13 @@ export class Commands {
8489

8590
public push(componentId: string, simpleApi: Layout) {
8691
const input = _.cloneDeep(simpleApi);
87-
8892
const layout = this.layoutTreeParser.parse(input);
89-
this.layoutTreeCrawler.crawl(layout);
9093

9194
const commandId = this.uniqueIdProvider.generate('push');
92-
const result = this.nativeCommandsSender.push(commandId, componentId, layout);
9395
this.commandsObserver.notify('push', { commandId, componentId, layout });
96+
this.layoutTreeCrawler.crawl(layout);
97+
98+
const result = this.nativeCommandsSender.push(commandId, componentId, layout);
9499
return result;
95100
}
96101

@@ -118,24 +123,28 @@ export class Commands {
118123
public setStackRoot(componentId: string, children: Layout[]) {
119124
const input = _.map(_.cloneDeep(children), (simpleApi) => {
120125
const layout = this.layoutTreeParser.parse(simpleApi);
121-
this.layoutTreeCrawler.crawl(layout);
122126
return layout;
123127
});
128+
124129
const commandId = this.uniqueIdProvider.generate('setStackRoot');
125-
const result = this.nativeCommandsSender.setStackRoot(commandId, componentId, input);
126130
this.commandsObserver.notify('setStackRoot', { commandId, componentId, layout: input });
131+
input.forEach(layoutNode => {
132+
this.layoutTreeCrawler.crawl(layoutNode);
133+
})
134+
135+
const result = this.nativeCommandsSender.setStackRoot(commandId, componentId, input);
127136
return result;
128137
}
129138

130139
public showOverlay(simpleApi: Layout) {
131140
const input = _.cloneDeep(simpleApi);
132-
133141
const layout = this.layoutTreeParser.parse(input);
142+
143+
const commandId = this.uniqueIdProvider.generate('showOverlay');
144+
this.commandsObserver.notify('showOverlay', { commandId, layout });
134145
this.layoutTreeCrawler.crawl(layout);
135146

136-
const commandId = this.uniqueIdProvider.generate('showOverlay');
137147
const result = this.nativeCommandsSender.showOverlay(commandId, layout);
138-
this.commandsObserver.notify('showOverlay', { commandId, layout });
139148
return result;
140149
}
141150

0 commit comments

Comments
 (0)