作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用样式组件,我想知道是否有必要使用 ThemeProvider。
这是文档中的示例。
// Define our button, but with the use of props.theme this time
const Button = styled.button`
font-size: 1em;
margin: 1em;
padding: 0.25em 1em;
border-radius: 3px;
/* Color the border and text with theme.main */
color: ${props => props.theme.main};
border: 2px solid ${props => props.theme.main};
`;
// We are passing a default theme for Buttons that arent wrapped in the ThemeProvider
Button.defaultProps = {
theme: {
main: "palevioletred"
}
}
// Define what props.theme will look like
const theme = {
main: "mediumseagreen"
};
render(
<div>
<Button>Normal</Button>
<ThemeProvider theme={theme}>
<Button>Themed</Button>
</ThemeProvider>
</div>
);
但我想知道我是否可以这样做:
// theme.js
const theme = {
main: "mediumseagreen"
};
export default theme;
// main.js
import theme from 'theme';
const Button = styled.button`
font-size: 1em;
margin: 1em;
padding: 0.25em 1em;
border-radius: 3px;
/* Color the border and text with theme.main */
color: ${theme.main};
border: 2px solid ${theme.main};
`;
render(
<div>
<Button>Themed</Button>
</div>
);
如果我不需要Normal Button
(所有按钮都会有主题),并且我不需要动态主题(例如更改为深色模式),我可以使用第二个吗方法?有没有我没有想到的缺点?
最佳答案
是的,这是有效代码。
但是它也有一些缺点。 ThemeProvider
使用 React Context API 提供主题.通过上下文 API,信息向下传递到组件树中,以便每个 child 都可以访问上下文并可以访问包含的信息(在本例中为主题)。按照您建议的方式进行操作,您会受到一些限制:
ThemeProvider
就没有必要;关于reactjs - ThemeProvider 对于样式化组件的主题化是必要的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64269019/
我正在使用 this solution在二进制矩阵中找到与图像边界对齐的矩形。假设现在我想找到一个不与图像边框对齐的矩形,并且我不知道它的方向;找到它的最快方法是什么? 为了示例,让我们寻找一个仅包含
else: 行在这个 Python 程序中是否正确/必要? from random import randrange for n in range(10): r = randrange(0,1
在 TDPL 7.1.5.1 中讨论了将 Widget w2 分配给 w1 并且作者指出“将 w2 逐个字段分配给 w1 会将 w2.array 分配给 w1.array——一个简单的数组边界分配,而
我是一名优秀的程序员,十分优秀!