@@ -5,33 +5,40 @@ const ThemeContext = React.createContext();
5
5
6
6
export function withTheme ( Component ) {
7
7
return function ThemeComponent ( props ) {
8
+ /* eslint-disable react/jsx-props-no-spreading */
8
9
return (
10
+ // eslint-disable-next-line react/jsx-filename-extension
9
11
< ThemeContext . Consumer >
10
- { ( theme ) => < Component { ...props } theme = { theme } /> }
12
+ { theme => < Component { ...props } theme = { theme } /> }
11
13
</ ThemeContext . Consumer >
12
14
) ;
13
15
} ;
16
+ /* eslint-enable react/jsx-props-no-spreading */
14
17
}
15
18
16
19
// would be perfect to avoid a global value here
17
- let updateTheme = ( ) => { }
18
- const onAction = ( { module, action, args, id } ) => {
20
+ let updateTheme = ( ) => { } ;
21
+ const onAction = ( { module, action, args /* , id */ } ) => {
19
22
if ( module === 'BrowserCore' && action === 'changeTheme' ) {
20
23
updateTheme ( args [ 0 ] ) ;
21
24
return true ;
22
25
}
26
+ return false ;
23
27
} ;
24
28
25
- export const ThemeWrapperComponentProvider = ( bridgeManager ) => ( { initialProps } ) => ( props ) => {
29
+ export const ThemeWrapperComponentProvider = bridgeManager => ( {
30
+ initialProps,
31
+ } ) => props => {
26
32
if ( ! initialProps . theme ) {
27
33
return props . children ;
28
34
}
29
35
36
+ // eslint-disable-next-line react-hooks/rules-of-hooks
30
37
const [ theme , setData ] = useState ( initialProps . theme , [ initialProps . theme ] ) ;
31
38
updateTheme = setData ;
32
39
40
+ // eslint-disable-next-line react-hooks/rules-of-hooks
33
41
useEffect ( ( ) => {
34
-
35
42
bridgeManager . addActionListener ( onAction ) ;
36
43
return ( ) => {
37
44
// no need to unload - one listener per app is sufficient
@@ -43,12 +50,15 @@ export const ThemeWrapperComponentProvider = (bridgeManager) => ({ initialProps
43
50
{ props . children }
44
51
</ ThemeContext . Provider >
45
52
) ;
46
- }
53
+ } ;
47
54
48
- export const useStyles = ( getStyle ) => {
55
+ export const useStyles = getStyle => {
49
56
const theme = useContext ( ThemeContext ) ;
50
- const styles = useMemo ( ( ) => StyleSheet . create ( getStyle ( theme ) ) , [ theme . mode ] ) ;
57
+ const styles = useMemo ( ( ) => StyleSheet . create ( getStyle ( theme ) ) , [
58
+ getStyle ,
59
+ theme ,
60
+ ] ) ;
51
61
return styles ;
52
- }
62
+ } ;
53
63
54
- export default ThemeContext ;
64
+ export default ThemeContext ;
0 commit comments