react.js 组件创建时如何设置样式?
下面是我的一些代码(部分继承自更强大的开发人员,然后为简洁起见进行了简化)。
我想重新使用我的 LogComponent 来打印几页日志。但是,在某些情况下,我想在返回的列表上强制一个特定的宽度,而不是让它在它认为合适的时候弯曲。
我宁愿不定义单独的 LogComponentFixed 或if (...) {return (...)} else {return(...)}
在我的 LogComponent 中有一个。
我想在 Log.js 中做一些事情,比如:
<LogComponent heading={"Page 1"}, lines={page_1}, style={styles.list_1} />
<LogComponent heading={"Page 1"}, lines={page_1}, style={styles.list_2} />
然后,在 LogComponent 中执行以下操作:
<List style={style}> ... </List>
我也尝试使用类似的东西
<List className={list_1}> ... </List>
但是我尝试过的所有方法都不起作用...
日志.js
import React from 'react'
import Typography from '@material-ui/core/Typography'
import { withStyles } from '@material-ui/core/styles'
import LogComponent from './LogComponent'
const styles = theme => ({
title: {
padding: theme.spacing.unit*1.5,
},
list_1: {
},
list_2: {
width: "300px"
},
listContainer: {
flexGrow: 1,
minHeight: 0,
overflow: 'auto'
},
})
const Log = ({classes, log}) => {
const page_1 = log[0];
const page_2 = log[1];
return (
<div>
<Typography className={classes.title} color="textSecondary" key={1}>
Example Log
</Typography>
<div className={classes.listContainer} key={2}>
<LogComponent heading={'Page 1'} lines={page_1} />
<LogComponent heading={'Page 2'} lines={page_2} />
</div>
</div>
export default withStyles(styles)(Log)
日志组件.js
import React from 'react'
import Typography from '@material-ui/core/Typography'
import { withStyles } from '@material-ui/core/styles'
import { List, ListItem, ListItemText } from '@material-ui/core';
const styles = theme => ({
title: {
padding: theme.spacing.unit*1.5,
},
}
const LogComponent = ({classes, list_class, heading, lines}) => {
return (
<div className={classes.root}>
<Typography className={classes.title} color="textSecondary" key={1}>
{heading}
</Typography>
<div>
<List dense>
{[...lines[0]].map(e =>
<ListItem><ListItemText primary={e} /></ListItem>
)}
</List>
</div>
</div>
)
}
export default withStyles(styles)(LogComponent)