jiti-meet/react/features/base/ui/components/JitsiThemeProvider.web.tsx

51 lines
1.2 KiB
TypeScript
Raw Normal View History

import { StyledEngineProvider, ThemeProvider } from '@mui/material/styles';
import * as React from 'react';
2022-08-01 07:04:23 +00:00
import { connect } from 'react-redux';
import { IReduxState } from '../../../app/types';
2022-08-01 07:04:23 +00:00
import BaseTheme from './BaseTheme.web';
interface IProps {
/**
* The default theme or theme set through advanced branding.
*/
_theme: Object;
2022-08-01 07:04:23 +00:00
/**
* The children of the component.
*/
children: React.ReactNode;
}
/**
* The theme provider for the web app.
*
* @param {Object} props - The props of the component.
* @returns {React.ReactNode}
*/
function JitsiThemeProvider(props: IProps) {
2022-09-13 07:36:00 +00:00
return (
<StyledEngineProvider injectFirst = { true }>
<ThemeProvider theme = { props._theme }>{ props.children }</ThemeProvider>
</StyledEngineProvider>
);
}
/**
* Maps part of the Redux state to the props of this component.
*
* @param {Object} state - The Redux state.
* @returns {IProps}
*/
function _mapStateToProps(state: IReduxState) {
const { muiBrandedTheme } = state['features/dynamic-branding'];
return {
_theme: muiBrandedTheme || BaseTheme
};
}
export default connect(_mapStateToProps)(JitsiThemeProvider);