Files
mattermost-mobile/app/context/theme/index.tsx
Elias Nahum b530dbeb09 [Gekidou] upgrade to RN 68 (old arch) (#6138)
* upgrade to RN 68 (old arch)

* remove test setup unused & commented mock

* Android target set to 30

* Fix theme when opening app from push notification

* upgrade common mark
2022-04-08 12:40:44 -04:00

92 lines
2.8 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import withObservables from '@nozbe/with-observables';
import React, {ComponentType, createContext, useEffect} from 'react';
import {Appearance, EventSubscription} from 'react-native';
import {Preferences} from '@constants';
import {queryPreferencesByCategoryAndName} from '@queries/servers/preference';
import {observeCurrentTeamId} from '@queries/servers/system';
import {setThemeDefaults, updateThemeIfNeeded} from '@utils/theme';
import type {PreferenceModel} from '@database/models/server';
import type Database from '@nozbe/watermelondb/Database';
type Props = {
currentTeamId?: string;
children: React.ReactNode;
themes: PreferenceModel[];
}
type WithThemeProps = {
theme: Theme;
}
export function getDefaultThemeByAppearance(): Theme {
if (Appearance.getColorScheme() === 'dark') {
return Preferences.THEMES.onyx;
}
return Preferences.THEMES.denim;
}
export const ThemeContext = createContext(getDefaultThemeByAppearance());
const {Consumer, Provider} = ThemeContext;
const ThemeProvider = ({currentTeamId, children, themes}: Props) => {
const getTheme = (): Theme => {
if (currentTeamId) {
const teamTheme = themes.find((t) => t.name === currentTeamId) || themes[0];
if (teamTheme?.value) {
try {
const theme = setThemeDefaults(JSON.parse(teamTheme.value) as Theme);
updateThemeIfNeeded(theme);
return theme;
} catch {
// no theme change
}
}
}
const defaultTheme = getDefaultThemeByAppearance();
updateThemeIfNeeded(defaultTheme);
return defaultTheme;
};
useEffect(() => {
const listener = Appearance.addChangeListener(getTheme) as EventSubscription;
return () => listener.remove();
}, []);
return (<Provider value={getTheme()}>{children}</Provider>);
};
export function withTheme<T extends WithThemeProps>(Component: ComponentType<T>): ComponentType<T> {
return function ThemeComponent(props) {
return (
<Consumer>
{(theme: Theme) => (
<Component
{...props}
theme={theme}
/>
)}
</Consumer>
);
};
}
export function useTheme(): Theme {
return React.useContext(ThemeContext);
}
const enhancedThemeProvider = withObservables([], ({database}: {database: Database}) => ({
currentTeamId: observeCurrentTeamId(database),
themes: queryPreferencesByCategoryAndName(database, Preferences.CATEGORY_THEME).observeWithColumns(['value']),
}));
export default enhancedThemeProvider(ThemeProvider);