我使用的示例中Material- UI
的一个AppBar
,我只是改变了它从一个函数的一类组件,在那之后我看着怎么用withStyles
,我做同样的事情,但无论我做什么的变化,以及什么样的我做没有应用样式。
"react": "^16.8.6",
"@material-ui/core": "^4.1.2",
"@material-ui/icons": "^4.2.1",
import React, {Component} from 'react';
import styleClasses from './SideDrawer.module.css';
import { withStyles } from '@material-ui/styles';
import PropTypes from 'prop-types';
// import UIManager from '../../UIManager/UIManager';
import Drawer from '@material-ui/core/Drawer';
import AppBar from '@material-ui/core/AppBar';
import Toolbar from '@material-ui/core/Toolbar';
import { fade, makeStyles } from '@material-ui/core/styles';
import IconButton from '@material-ui/core/IconButton';
import Typography from '@material-ui/core/Typography';
import InputBase from '@material-ui/core/InputBase';
import Badge from '@material-ui/core/Badge';
import MenuItem from '@material-ui/core/MenuItem';
import Menu from '@material-ui/core/Menu';
import MenuIcon from '@material-ui/icons/Menu';
import SearchIcon from '@material-ui/icons/Search';
import AccountCircle from '@material-ui/icons/AccountCircle';
import MailIcon from '@material-ui/icons/Mail';
import NotificationsIcon from '@material-ui/icons/Notifications';
import MoreIcon from '@material-ui/icons/MoreVert';
const useStyles = makeStyles(theme => ({
grow: {
flexGrow: 1,
zIndex: 1000,
},
menuButton: {
marginRight: theme.spacing(2),
},
title: {
display: 'none',
[theme.breakpoints.up('sm')]: {
display: 'block',
},
color: 'red'
},
search: {
position: 'relative',
borderRadius: theme.shape.borderRadius,
backgroundColor: fade(theme.palette.common.white, 0.15),
'&:hover': {
backgroundColor: fade(theme.palette.common.white, 0.25),
},
marginRight: theme.spacing(2),
marginLeft: 0,
width: '100%',
[theme.breakpoints.up('sm')]: {
marginLeft: theme.spacing(3),
width: 'auto',
},
},
searchIcon: {
width: theme.spacing(7),
height: '100%',
position: 'absolute',
pointerEvents: 'none',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
},
inputRoot: {
color: 'inherit',
},
inputInput: {
padding: theme.spacing(1, 1, 1, 7),
transition: theme.transitions.create('width'),
width: '100%',
[theme.breakpoints.up('md')]: {
width: 200,
},
}
}));
class SideDrawer extends Component {
render () {
const { classes } = this.props;
console.log('classes', classes)
return (
<div className={styleClasses.grow}>
<AppBar className={'SideDrawer-inputInput-14'}>
<Toolbar>
<IconButton
edge="start"
className={classes.menuButton}
color="inherit"
aria-label="Open drawer"
>
<MenuIcon />
</IconButton>
<Typography className={classes.title} variant="h6" noWrap>
Test
</Typography>
<div className={classes.search}>
<div className={classes.searchIcon}>
<SearchIcon />
</div>
<InputBase
placeholder="search..."
classes={{
root: classes.inputRoot,
input: classes.inputInput,
}}
inputProps={{ 'aria-label': 'Search' }}
/>
</div>
<div className={classes.grow} />
</Toolbar>
</AppBar>
</div>
)
}
}
SideDrawer.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(useStyles)(SideDrawer);
的console.log('classes', classes)
回报:
{grow: "SideDrawer-grow-8", menuButton: "SideDrawer-menuButton-9", title: "SideDrawer-title-10", search: "SideDrawer-search-11", searchIcon: "SideDrawer-searchIcon-12", …}
grow: "SideDrawer-grow-8"
inputInput: "SideDrawer-inputInput-14"
inputRoot: "SideDrawer-inputRoot-13"
menuButton: "SideDrawer-menuButton-9"
search: "SideDrawer-search-11"
searchIcon: "SideDrawer-searchIcon-12"
title: "SideDrawer-title-10"
但这些样式均不适用于实际商品或AppBar
。我究竟做错了什么?
您不应该尝试与makeStyles
一起使用withStyles
。makeStyles
返回一个自定义钩子,并且将此自定义钩子传递到该钩子withStyles
将无法正常工作。
而是,您需要以下内容:
const styles = theme => ({
grow: {
flexGrow: 1,
zIndex: 1000,
},
/* and all your other styles ... */
});
// other stuff (e.g. your SideDrawer component) ...
export default withStyles(styles)(SideDrawer);
问题内容: 我想在我的React应用程序中使用默认的Bootstrap组件,所以我正在使用React-bootstrap NPM- package。但是我一开始就坚持:尽管我只是从官方文档中复制非常简单的示例,但我不能使用任何默认组件。每次我使用Bootstrap样式的组件时,都会得到基本的组件样式。例如,下面的代码呈现一个没有样式的样式,而不是Bootstrap 样式。 为什么会有这样的问题?也
问题内容: 我是使用jsPDF的新手,但是为了我的生命,我无法获得任何CSS来应用此东西!我尝试了内联,内部和外部都无济于事!我在另一篇SO文章中读到,因为从技术上讲是将内容打印到文件中,所以我需要打印样式表,但这也不起作用。 我有一个非常基本的页面,我只想尝试使用任何CSS:JS: HTML: 最后是外部样式表: 我确定所有内容都正确包含在内,并且没有错误,已经检查了所有内容。是否需要调用一些其
问题内容: 我开始研究material-ui,并在SandBox中创建一个简单的应用程序:https ://codesandbox.io/s/eager-ride-cmkrc jss的样式对我来说并不常见,但是如果您通过这两个简单的练习帮助我,那么我将理解所有内容。 首先:我希望将和的通用属性合并到新类中并进行扩展:(https://github.com/cssinjs/jss- extend#u
问题内容: 我想更改SelectInput的样式。我正在使用基于类的组件。我是这样设置的: 然后在渲染中,我在“选择”部分中有此部分: 我正在使用仅带有下划线的基本Select组件。我想更改下划线的颜色和大小。我在源代码中看过这里: https://github.com/mui-org/material-ui/blob/master/packages/material- ui/src/Select
我尝试捆绑一个外部组件,并在运行时加载到我的应用程序。但在加载时,它抛出了“未定义的样式”。有人知道我的汇总中缺少了什么。conf.js? 这是我的rollup.conf.js 这是抛出“未定义样式”的组件 Stackoverflow说我应该写更多的文本,以防我的代码太长,他们认为它的信息太少。但希望现在这是足够的文本。
问题内容: 我想给我的新应用程序一致的外观和使用感觉。另外,我希望样式等易于维护。因此,默认主题似乎是一个不错的开始。该所提供的似乎要检查所有的盒子,所以我想试一试。令人惊讶的是,这没有用。CSS主题不是我真正的事情。我在这里被误导了吗?以下代码是我在App.js组件中实现的,没有运气(从此处获取)。我希望这只是一个实现细节。 编辑 :这是位于项目的根目录: 编辑: 我新的App.js 问题答案: