gpt4 book ai didi

javascript - JSS 中的 MUI 全局类名称有多可靠?

转载 作者:行者123 更新时间:2023-12-04 12:19:41 25 4
gpt4 key购买 nike

我有这样的代码:

const formControlStyles = {
root: {
'&:hover .MuiFormLabel-root': {

}
}
}

在主题覆盖中使用类名来访问其他组件是否安全?此外,是否有一种 JSS 方法可以从其他组件中嵌套样式?

最佳答案

v5 更新
该答案最初是针对 Material-UI v4 编写的。在 v5 中,Material-UI 不再使用全局类名来应用默认样式——用于默认样式的类具有由 Emotion 生成的类名。全局类名仍然适用,但它们不再受嵌套主题的影响,因此在 v5 中,利用全局类名进行覆盖是完全安全的,而无需使用 [class*=...我在下面的原始答案中提到的语法。

使用全局类名是相当安全的,但有一个警告(在 v4 中)。如果您利用嵌套主题,则在嵌套主题中应用的全局类名将具有不可预测的后缀(例如 MuiFormLabel-root-371 )。这个后缀是必要的,因为与嵌套主题关联的默认样式可能不同。
为了以完全安全的方式定位类名,您可以使用 *= attribute selector (例如 [class*="MuiFormLabel-root"] )检查元素是否具有 的类名包含 MuiFormLabel-root而不是需要完全匹配它。您可以在 Material-UI 本身中看到这种方法 here .
只要您不打算使用嵌套主题,使用精确匹配全局类名的更简单语法是安全的(并且更具可读性)。另一种方法是在嵌套组件上指定一个 JSS 类,并使用 referring to another rule in the same stylesheet 的 JSS 语法来引用该类。 (例如 $myFormLabel 在我的示例中),但这需要能够将该类(例如 classes.myFormLabel 在我的示例中)应用于嵌套组件。
下面是一个示例,它演示了使用嵌套主题时的问题(以及一些可能的解决方案)。

import React from "react";
import {
ThemeProvider,
createMuiTheme,
makeStyles
} from "@material-ui/core/styles";
import FormLabel from "@material-ui/core/FormLabel";

const theme1 = createMuiTheme();
const theme2 = createMuiTheme({
overrides: {
MuiFormLabel: {
root: {
color: "#00ff00"
}
}
}
});

const useStyles = makeStyles({
mostlySafe: {
"&:hover .MuiFormLabel-root": {
color: "red"
}
},
safeButTediousAndMoreErrorProneSyntax: {
'&:hover [class*="MuiFormLabel-root"]': {
color: "purple"
}
},
alternativeApproach: {
"&:hover $myFormLabel": {
color: "blue"
}
},
myFormLabel: {}
});
export default function App() {
const classes = useStyles();
return (
<ThemeProvider theme={theme1}>
<div>
<div className={classes.mostlySafe}>
<FormLabel>FormLabel within top-level theme</FormLabel>
</div>
<ThemeProvider theme={theme2}>
<div className={classes.mostlySafe}>
<FormLabel>
FormLabel within nested theme (hover styling doesn't work)
</FormLabel>
</div>
<div className={classes.safeButTediousAndMoreErrorProneSyntax}>
<FormLabel>
FormLabel within nested theme using safe approach
</FormLabel>
</div>
<div className={classes.alternativeApproach}>
<FormLabel className={classes.myFormLabel}>
FormLabel within nested theme without using global class names
</FormLabel>
</div>
</ThemeProvider>
</div>
</ThemeProvider>
);
}
Edit Global class names

关于javascript - JSS 中的 MUI 全局类名称有多可靠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60721323/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com