Skip to content

Commit b0dec7e

Browse files
committed
Memoize props passed to useAppLogic
Fixes a strange bug where the enhet would reset if some combination of props was passed, due to how the props are passed into the decorator and the spreading mutating the object, the logic somehow causes part of the state to reset. Wrapping the props in useMemo seems to fix this.
1 parent 00a16af commit b0dec7e

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

packages/internarbeidsflate-decorator-v3/src/Decorator.tsx

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { PropsWithChildren } from 'react';
1+
import React, { PropsWithChildren, useMemo } from 'react';
22
import './index.css';
33
import useAppLogic from './hooks/useAppLogic';
44
import Banner from './components/Banner';
@@ -11,16 +11,20 @@ import { useAppState } from './states/AppState';
1111
import { DecoratorProps } from './types/AppProps';
1212

1313
const Decorator: React.FC<PropsWithChildren<DecoratorProps>> = (props) => {
14-
useAppLogic({
15-
...props,
16-
ignoreExternalFnr: props.fnrSyncMode === 'writeOnly',
17-
fetchActiveUserOnMount:
18-
props.fnrSyncMode !== 'writeOnly' && props.fetchActiveUserOnMount,
14+
const memoizedProps = useMemo(
15+
() => ({
16+
...props,
17+
ignoreExternalFnr: props.fnrSyncMode === 'writeOnly',
18+
fetchActiveUserOnMount:
19+
props.fnrSyncMode !== 'writeOnly' && props.fetchActiveUserOnMount,
1920

20-
ignoreExternalEnhet: props.enhetSyncMode === 'writeOnly',
21-
fetchActiveEnhetOnMount:
22-
props.enhetSyncMode !== 'writeOnly' && props.fetchActiveEnhetOnMount,
23-
});
21+
ignoreExternalEnhet: props.enhetSyncMode === 'writeOnly',
22+
fetchActiveEnhetOnMount:
23+
props.enhetSyncMode !== 'writeOnly' && props.fetchActiveEnhetOnMount,
24+
}),
25+
[props],
26+
);
27+
useAppLogic(memoizedProps);
2428

2529
const ref = useOnOutsideClick<HTMLElement>(() =>
2630
useAppState.setState({ open: false }),

0 commit comments

Comments
 (0)