Material-ui-next withStyles не работает корректно

Я переписываю свой маленький проект в material-ui и использую для этой библиотеки material-ui-next реагировать; Для одного компонента с Style Style Decorator работал просто отлично, для другого он не украшает компонент стилями и выдает эту ошибку:

Uncaught TypeError: Не удается прочитать свойство 'корень' неопределенных в Respondent.render (MuiRespondent.tsx:48)? В vendor.js v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:30228 в measureLifeCyclePerf (vendor.js v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:29508) в ReactCompositeComponentWrapper._renderValidatedComponentWithoutOwnerOrContext (?vendor.js V =OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:30227) при ReactCompositeComponentWrapper._renderValidatedComponent (vendor.js v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:30254) при ReactCompositeComponentWrapper.performInitialMount (vendor.js v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:29794) при ReactCompositeComponentWrapper.mountComponent (vendor.js v? =OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:29690) при Object.mountComponent (vendor.js v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:12868) при ReactCompositeComponentWrapper._updateRenderedComponent (vendor.js v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:30197) в ReactCompositeComponentWrapper._performComponentUpdate (vendor.js?v=OjVxDpV6p_Jfz2P38F_R2lc3pjVsUisUejeIABZq7AE:30156)

Компонент, который выдает ошибку:

import * as React from 'react';
import Button from 'material-ui/Button';
import Dialog, {
  DialogTitle,
  DialogContent,
  DialogContentText,
  DialogActions,
} from 'material-ui/Dialog';
import Typography from 'material-ui/Typography';
import withStyles, { WithStyles, StyleRulesCallback } from 'material-ui/styles/withStyles';
import { RouteComponentProps } from 'react-router';
import withRoot from '../../withRoot';

const styles: StyleRulesCallback<'root'> = theme => ({
  root: {
    textAlign: 'center',
    paddingTop: theme.spacing.unit * 20,
  },
});

type State = {
  open: boolean;
};

export class Respondent extends React.Component<WithStyles<'root'>, State> {
    constructor(props: any){
        super(props);

        this.state = {
            open: false,
          }
    };

  handleClose = () => {
    this.setState({
      open: false,
    });
  };

  handleClick = () => {
    this.setState({
      open: true,
    });
  };

  render() {
    return (
      <div className={this.props.classes.root}>
        <Dialog open={this.state.open} onClose={this.handleClose}>
          <DialogTitle>Super Secret Password</DialogTitle>
          <DialogContent>
            <DialogContentText>1-2-3-4-5</DialogContentText>
          </DialogContent>
          <DialogActions>
            <Button color="primary" onClick={this.handleClose}>
              OK
            </Button>
          </DialogActions>
        </Dialog>
        <Typography variant="display1" gutterBottom>
          Material-UI
        </Typography>
        <Typography variant="subheading" gutterBottom>
          example project
        </Typography>
        <Button variant="raised" color="secondary" onClick={this.handleClick}>
          Super Secret Password
        </Button>
      </div>
    );
  }
}

export default withRoot(withStyles(styles)<{}>(Respondent));

А вот и мой root-декоратор:

import * as React from 'react';
import { MuiThemeProvider, createMuiTheme } from 'material-ui/styles';
import * as colors from 'material-ui/colors';
import CssBaseline from 'material-ui/CssBaseline';

// A theme with custom primary and secondary color.
// It's optional.
const theme = createMuiTheme({
  palette: {
    primary: colors.lightBlue,
    secondary: colors.blueGrey,
  },
});

function withRoot(Component: React.ComponentType) {
  function WithRoot(props: object) {
    // MuiThemeProvider makes the theme available down the React tree
    // thanks to React context.
    return (
      <MuiThemeProvider theme={theme}>
        <div>
            {/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */}
            <CssBaseline />
            <Component {...props} />
        </div>
      </MuiThemeProvider>
    );
  }

  return WithRoot;
}

export default withRoot;

Другой компонент, для которого работает декоратор Style, выглядит практически идентично, я думаю, что я упускаю что-то очевидное, но не вижу, что

0 ответов

Другие вопросы по тегам