如何在 Material Ui 中使用 useStyle 为类组件设置样式

IT技术 javascript reactjs material-ui react-hooks react-component
2021-04-16 16:46:54

我想使用 useStyle 来设置 Class Component 的样式。但这可以很容易地完成钩子。但我想改用组件。但我无法弄清楚如何做到这一点。

import React,{Component} from 'react';
import Avatar from '@material-ui/core/Avatar';
import { makeStyles } from '@material-ui/core/styles';
import LockOutlinedIcon from '@material-ui/icons/LockOutlined';


    const useStyles = makeStyles(theme => ({
      '@global': {
        body: {
          backgroundColor: theme.palette.common.white,
        },
      },
      paper: {
        marginTop: theme.spacing(8),
        display: 'flex',
        flexDirection: 'column',
        alignItems: 'center',
      },
      avatar: {
        margin: theme.spacing(1),
        backgroundColor: theme.palette.secondary.main,
      }
}));

class SignIn extends Component{
  const classes = useStyle(); // how to assign UseStyle
  render(){
     return(
    <div className={classes.paper}>
    <Avatar className={classes.avatar}>
      <LockOutlinedIcon />
    </Avatar>
    </div>
  }
}
export default SignIn;
6个回答

你可以这样做:

import { withStyles } from "@material-ui/core/styles";

const styles = theme => ({
  root: {
    backgroundColor: "red"
  }
});

class ClassComponent extends Component {
  state = {
    searchNodes: ""
  };

  render() {
    const { classes } = this.props;
    return (
      <div className={classes.root}>Hello!</div>
    );
  }
}

export default withStyles(styles, { withTheme: true })(ClassComponent);

withTheme: true如果您不使用主题,请忽略


要使其在 TypeScript 中工作,需要进行一些更改:

import { createStyles, withStyles, WithStyles } from "@material-ui/core/styles";

const styles = theme => createStyles({
  root: {
    backgroundColor: "red"
  }
});

interface Props extends WithStyles<typeof styles>{ }

class ClassComponent extends Component<Props> {

// the rest of the code stays the same
不幸的是,这似乎与 TypeScript 中的 refs 不兼容。以前我可以使用 对组件进行引用useRef<MyComponent>(null),但他不再起作用,因为MyComponent它不再是一种类型。更令人不安的是,TypeScript 报告从 返回的组件上“属性 'ref' 不存在” withStyles()(),但是一个丑陋的 hackany导致错误消失,代码似乎可以工作。
2021-06-01 16:46:54
使用高阶组件 API 的 Material UI 的官方示例:material-ui.com/styles/basics/#higher-order-component-api
2021-06-05 16:46:54
谢谢。正如我所尝试的,{ withTheme: true }即使我们有一个主题,我们也不需要
2021-06-17 16:46:54
我们需要但不配的英雄!我们已经摆脱了基于类的组件,与 React.FC 相比,它们是一团糟,但是为了使模态与 Material-UI 一起工作,我们必须使用基于类的组件。这与 Typescript 完美配合。
2021-06-18 16:46:54

对于类组件,您可以使用withStyles而不是makeStyles

import { withStyles } from '@material-ui/core/styles';

const useStyles = theme => ({
fab: {
  position: 'fixed',
  bottom: theme.spacing(2),
  right: theme.spacing(2),
},
  });

class ClassComponent extends Component {
   render() {
            const { classes } = this.props;

            {/** your UI components... */}
      }
} 


export default withStyles(useStyles)(ClassComponent)
我曾经遇到过同样的问题并遵循了您的建议,但是没有样式的道具就空了。有小费吗?谢谢你。
2021-05-22 16:46:54

嘿我有一个类似的问题。我通过替换makeStyles解决了它withStyles,然后在执行类似操作的地方const classes = useStyle();将其替换为const classes = useStyle;

您注意到useStyle不应是函数调用,而是变量赋值。

在您进行这些更改后,这应该可以正常工作。

useStyles是一个react-hooks。您只能在功能组件中使用它。

这一行创建了钩子:

const useStyles = makeStyles(theme => ({ /* ... */ });

您在函数组件中使用它来创建类对象:

const classes = useStyles();

然后在 jsx 中使用类:

<div className={classes.paper}>

推荐资源:https : //material-ui.com/styles/basics/ https://reactjs.org/docs/hooks-intro.html

在此答案中链接的文档中,它位于“高阶组件 API”标题下。
2021-06-08 16:46:54
对于类组件,您可以使用withStyles.
2021-06-12 16:46:54

像已经说过的其他答案一样,您应该使用withStyles来扩充组件并传递classes属性。我冒昧地将Material-UI 压力测试示例修改为使用类组件的变体。

请注意,withTheme: true当您只想使用样式时,通常不需要选项。在这个例子中需要它,因为在渲染中使用了主题的实际值。设置此选项theme可通过类属性使用。classesprops应始终提供,即使没有设置该选项。

const useStyles = MaterialUI.withStyles((theme) => ({
  root: (props) => ({
    backgroundColor: props.backgroundColor,
    color: theme.color,
  }),
}), {withTheme: true});

const Component = useStyles(class extends React.Component {
  rendered = 0;

  render() {
    const {classes, theme, backgroundColor} = this.props;
    return (
      <div className={classes.root}>
        rendered {++this.rendered} times
        <br />
        color: {theme.color}
        <br />
        backgroundColor: {backgroundColor}
      </div>
    );
  }
});

function StressTest() {
  const [color, setColor] = React.useState('#8824bb');
  const [backgroundColor, setBackgroundColor] = React.useState('#eae2ad');

  const theme = React.useMemo(() => ({ color }), [color]);
  const valueTo = setter => event => setter(event.target.value);

  return (
    <MaterialUI.ThemeProvider theme={theme}>
      <div>
        <fieldset>
          <div>
            <label htmlFor="color">theme color: </label>
            <input
              id="color"
              type="color"
              onChange={valueTo(setColor)}
              value={color}
            />
          </div>
          <div>
            <label htmlFor="background-color">background-color property: </label>
            <input
              id="background-color"
              type="color"
              onChange={valueTo(setBackgroundColor)}
              value={backgroundColor}
            />
          </div>
        </fieldset>
        <Component backgroundColor={backgroundColor} />
      </div>
    </MaterialUI.ThemeProvider>
  );
}

ReactDOM.render(<StressTest />, document.querySelector("#root"));
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<script src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/@material-ui/core@4/umd/material-ui.production.min.js"></script>
<div id="root"></div>