Skip to content

Commit 12a615b

Browse files
Recreate wrapped component on re-register component (#6498)
Currently when re-registering a component (calling `Navigation.registerComponent` with the same `componentName` more than once), the actual registered component does not get used if the component before that was already used. This is because on creation of the wrapped component it is cached. Therefor, we have to clear the wrapped component from the cache when registering a new component under the same name. This also keeps the intended fix of #6239 (not calling the generator more than once), but restores the capability to replace a component.
1 parent 8a7d34b commit 12a615b

File tree

2 files changed

+26
-8
lines changed

2 files changed

+26
-8
lines changed

lib/src/components/ComponentRegistry.test.tsx

+25-8
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ import { ComponentWrapper } from './ComponentWrapper';
55
import { ComponentEventsObserver } from '../events/ComponentEventsObserver';
66
import { AppRegistryService } from '../adapters/AppRegistryService';
77
import { ComponentProvider } from 'react-native';
8-
import * as React from 'react';
98

109
const DummyComponent = () => null;
1110

12-
class MyComponent extends React.Component<any, any> {}
13-
1411
describe('ComponentRegistry', () => {
1512
let mockedStore: Store;
1613
let mockedComponentEventsObserver: ComponentEventsObserver;
@@ -57,15 +54,35 @@ describe('ComponentRegistry', () => {
5754
});
5855

5956
it('should wrap component only once', () => {
57+
uut = new ComponentRegistry(
58+
new Store(),
59+
instance(mockedComponentEventsObserver),
60+
componentWrapper,
61+
instance(mockedAppRegistryService)
62+
);
63+
6064
componentWrapper.wrap = jest.fn();
61-
let wrappedComponent: React.ComponentClass<any>;
62-
store.hasRegisteredWrappedComponent = jest.fn(() => wrappedComponent !== undefined);
63-
store.setWrappedComponent = jest.fn(() => wrappedComponent = MyComponent);
6465

6566
const generator: ComponentProvider = jest.fn(() => DummyComponent);
66-
uut.registerComponent('example.MyComponent.name', generator)();
67-
uut.registerComponent('example.MyComponent.name', generator)();
67+
const componentProvider = uut.registerComponent('example.MyComponent.name', generator);
68+
componentProvider();
69+
componentProvider();
6870

6971
expect(componentWrapper.wrap).toHaveBeenCalledTimes(1);
7072
});
73+
74+
it('should recreate wrapped component on re-register component', () => {
75+
uut = new ComponentRegistry(
76+
new Store(),
77+
instance(mockedComponentEventsObserver),
78+
new ComponentWrapper(),
79+
instance(mockedAppRegistryService)
80+
);
81+
82+
const generator: ComponentProvider = () => DummyComponent;
83+
const w1 = uut.registerComponent('example.MyComponent.name', generator)();
84+
const w2 = uut.registerComponent('example.MyComponent.name', generator)();
85+
86+
expect(w1).not.toBe(w2);
87+
});
7188
});

lib/src/components/Store.ts

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export class Store {
2727
}
2828

2929
setComponentClassForName(componentName: string | number, ComponentClass: ComponentProvider) {
30+
delete this.wrappedComponents[componentName];
3031
this.componentsByName[componentName.toString()] = ComponentClass;
3132
}
3233

0 commit comments

Comments
 (0)