如何在没有 ThemeProvider 的情况下使用 MUI v5 makeStyles?
How to use MUI v5 makeStyles without ThemeProvider?
我有一个 styles.tsx
文件,因为我不想将样式放在我的组件中:
//styles.tsx
import {grey, purple} from '@mui/material/colors';
import {styled, Theme} from '@mui/material/styles';
import {createStyles, makeStyles} from '@mui/styles';
export const drawerStyles = makeStyles((theme: Theme) =>
createStyles({
logo: {
'fontSize': '2em',
'fontFamily': 'Oleo Script Swash Caps',
'background': 'transparent',
'border': 'none',
'marginLeft': theme.spacing(1),
'width': '41px',
'overflow': 'hidden',
'transition': 'all 0.1s ease-out',
'cursor': 'pointer',
'&:hover': {
color: purple[700],
},
},
slide: {
paddingLeft: '8px',
width: '100%',
},
}),
);
在另一个组件中,我导入了 drawerStyles
:
// drawerContainer.tsx
import {drawerStyles} from 'Src/styles';
export const DrawerContainer = () => {
const classes = drawerStyles();
return (
<Box className={`${classes.logo}>
<p>some text</p>
</Box>
)
代码可以编译,但浏览器返回错误:
MUI: The styles
argument provided is invalid. You are providing a function without a theme in the context. One of the parent elements needs to use a ThemeProvider.
在我的 index.tsx
上,我使用 ThemeProvider
:
// index.tsx
import {ThemeProvider, StyledEngineProvider} from '@mui/material/styles';
import {theme} from 'Src/theme';
const Root = () => {
return (
<ApolloProvider client={client}>
<StyledEngineProvider injectFirst>
<ThemeProvider theme={theme}>
<CssBaseline>
<App />
</CssBaseline>
</ThemeProvider>
</StyledEngineProvider>
</ApolloProvider>
);
};
render(<Root />, document.getElementById('root'));
我认为问题是因为 styles.tsx
不在 index.tsx
范围内。所以当浏览器加载文件时它没有 themeprovider 上下文。
我应该只移动组件中的所有样式吗?或者有别的办法吗?
// 编辑 //
使用样式 api 创建样式:
// styles.tsx
export const Logo = styled(Box)(({theme}) => ({
'fontSize': '2em',
'fontFamily': 'Oleo Script Swash Caps',
'background': 'transparent',
'border': 'none',
'marginLeft': theme.spacing(1),
'width': '41px',
'overflow': 'hidden',
'transition': 'all 0.1s ease-out',
'cursor': 'pointer',
'&:hover': {
color: purple[700],
},
}));
// DrawerContainer.tsx
<Link data-cy='btn_home' to='/'>
<Logo component='button'>Movieseat</Logo>
</Link>
我有点不喜欢这种语法,不清楚Logo
是什么类型的对象。
有关详细信息,请参阅 答案。简而言之,makesStyles
/withStyles
不再是 MUI v5 中的第一个 class API,并且计划在 v6 中删除。如果你使用旧的API,你必须自己添加一个主题。
在 v4 中,您可以 from @material-ui/core/styles
without having to supply a custom theme. You can do the same in v5 but only 所有 MUI 组件在内部使用它。
我有一个 styles.tsx
文件,因为我不想将样式放在我的组件中:
//styles.tsx
import {grey, purple} from '@mui/material/colors';
import {styled, Theme} from '@mui/material/styles';
import {createStyles, makeStyles} from '@mui/styles';
export const drawerStyles = makeStyles((theme: Theme) =>
createStyles({
logo: {
'fontSize': '2em',
'fontFamily': 'Oleo Script Swash Caps',
'background': 'transparent',
'border': 'none',
'marginLeft': theme.spacing(1),
'width': '41px',
'overflow': 'hidden',
'transition': 'all 0.1s ease-out',
'cursor': 'pointer',
'&:hover': {
color: purple[700],
},
},
slide: {
paddingLeft: '8px',
width: '100%',
},
}),
);
在另一个组件中,我导入了 drawerStyles
:
// drawerContainer.tsx
import {drawerStyles} from 'Src/styles';
export const DrawerContainer = () => {
const classes = drawerStyles();
return (
<Box className={`${classes.logo}>
<p>some text</p>
</Box>
)
代码可以编译,但浏览器返回错误:
MUI: The
styles
argument provided is invalid. You are providing a function without a theme in the context. One of the parent elements needs to use a ThemeProvider.
在我的 index.tsx
上,我使用 ThemeProvider
:
// index.tsx
import {ThemeProvider, StyledEngineProvider} from '@mui/material/styles';
import {theme} from 'Src/theme';
const Root = () => {
return (
<ApolloProvider client={client}>
<StyledEngineProvider injectFirst>
<ThemeProvider theme={theme}>
<CssBaseline>
<App />
</CssBaseline>
</ThemeProvider>
</StyledEngineProvider>
</ApolloProvider>
);
};
render(<Root />, document.getElementById('root'));
我认为问题是因为 styles.tsx
不在 index.tsx
范围内。所以当浏览器加载文件时它没有 themeprovider 上下文。
我应该只移动组件中的所有样式吗?或者有别的办法吗?
// 编辑 //
使用样式 api 创建样式:
// styles.tsx
export const Logo = styled(Box)(({theme}) => ({
'fontSize': '2em',
'fontFamily': 'Oleo Script Swash Caps',
'background': 'transparent',
'border': 'none',
'marginLeft': theme.spacing(1),
'width': '41px',
'overflow': 'hidden',
'transition': 'all 0.1s ease-out',
'cursor': 'pointer',
'&:hover': {
color: purple[700],
},
}));
// DrawerContainer.tsx
<Link data-cy='btn_home' to='/'>
<Logo component='button'>Movieseat</Logo>
</Link>
我有点不喜欢这种语法,不清楚Logo
是什么类型的对象。
有关详细信息,请参阅 makesStyles
/withStyles
不再是 MUI v5 中的第一个 class API,并且计划在 v6 中删除。如果你使用旧的API,你必须自己添加一个主题。
在 v4 中,您可以 @material-ui/core/styles
without having to supply a custom theme. You can do the same in v5 but only