我创建了一个Avatar Component
,它是一个非常基本的组件,它显示一个图标和一些文本。这是组件的代码。
import React from "react";
import PropTypes from "prop-types";
import { withStyles, Avatar, Typography } from "@material-ui/core";
import avatar_placeholder from "../images/avatar_man.svg";
const styles = theme => ({
row: {
display: "flex",
flexDirection: "row",
alignItems: "center"
},
avatar: {
width: 50,
height: 50,
marginRight: "2%"
},
subtitle: {
opacity: 0.5
}
});
const customAvatar = props => {
const { classes, name, subtitle } = props;
return (
<div className={classes.row}>
<Avatar alt={name} src={avatar_placeholder} />
<div>
<Typography variant="title">{name}</Typography>
<Typography variant="body2" className={classes.subtitle}>
{subtitle}
</Typography>
</div>
</div>
);
};
customAvatar.propTypes = {
classes: PropTypes.object.isRequired,
name: PropTypes.string.isRequired,
image: PropTypes.string,
subtitle: PropTypes.string
};
customAvatar.defaultProps = {
name: "John Doe",
subtitle: ""
};
export default withStyles(styles)(customAvatar);
Avatar
组件是父组件的子组件,下面的代码是Avatar
组件在父组件中的使用方式。
import React from "react";
import PropTypes from "prop-types";
import {
withStyles,
Card,
CardContent
} from "@material-ui/core";
import AvatarProfile from "./AvatarProfile";
const styles = {
cardContent: {
},
AvatarDiv: {
backgroundColor: "red"
}
};
const ItemCardWithCheckbox = props => {
const { classes, name, subtitle } = props;
return (
<Card>
<CardContent className={classes.cardContent}>
<AvatarProfile
name={name}
subtitle={subtitle}
className={classes.AvatarDiv}
/>
</CardContent>
</Card>
);
};
ItemCardWithCheckbox.propTypes = {
classes: PropTypes.object.isRequired
};
export default withStyles(styles)(ItemCardWithCheckbox);
如您所见,我正在尝试为AvatarDiv
组件应用Avatar
样式,即,我希望backgroundColor
组件的Avatar
为红色,但那没有发生,我正在使用Material UI。我的猜测是样式道具未正确传递到Avatar
组件,或者我没有正确应用样式。
答案 0 :(得分:1)
您正在将AvatarDiv作为“ className”道具传递。您不会在此处应用该类,因为AvatarDiv是自定义组件。
<AvatarProfile
name={name}
subtitle={subtitle}
className={classes.AvatarDiv}
您必须将其作为道具传递,并使用该道具在子组件中应用样式。我在codesandbox中做了类似的操作,在其中我将按钮的颜色更改为橙色,并将其作为prop传递给子组件。请检查-https://codesandbox.io/s/lyxz92m7nl
答案 1 :(得分:1)
我使它更具可读性和智能性,并使用单个stlyles组件。 这是工作代码框:https://codesandbox.io/s/ll507vypy7