简体   繁体   English

尝试使用 React + TypeScript 项目修复 tslint 错误

[英]Trying to fix tslint error with React + TypeScript project

I'm working on a React + TypeScript huge application.我正在开发一个 React + TypeScript 巨大的应用程序。 I'm building new component feature.我正在构建新的组件功能。 It's a button that opens a modal with some filter options.这是一个按钮,用于打开带有一些过滤器选项的模式。 I have included <i> tag for an SVG Icon from here .我从这里为 SVG 图标添加了<i>标签。

When I peek problem using my Visual Studio, I get this error message:当我使用 Visual Studio peek problem ,我收到以下错误消息:

Type '{ children: string; class: string; }' is not assignable to type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.
  Property 'class' does not exist on type 'DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>'.ts(2322)

How can I fix this?我怎样才能解决这个问题? I'm pretty new to React, TypeScript & the project itself.我对 React、TypeScript 和项目本身很陌生。 The <i> tags are in the toggleArrow() function <i>标签位于toggleArrow()函数中

FilterOptions Component:过滤器选项组件:

import './FilterOptions.scss';

import Button from '@material-ui/core/Button';
import Modal from '@material-ui/core/Modal';
import { withStyles } from '@material-ui/core/styles';
import Typography from '@material-ui/core/Typography';
import PropTypes, { any } from 'prop-types';
import * as React from 'react';
import FilterCheckboxes from '../FilterCheckboxes/FilterCheckboxes';
import FilterSliders from '../FilterSliders/FilterSliders';

const getModalStyle = (): any => {
  const top = 50;
  const left = 50;

  return {
    top: `${top}%`,
    left: `${left}%`,
    transform: `translate(-${top}%, -${left}%)`,
  };
};

const styles = (theme): any => ({
  paper: {
    position: 'absolute',
    width: theme.spacing.unit * 70,
    backgroundColor: theme.palette.background.paper,
    boxShadow: theme.shadows[5],
    padding: theme.spacing.unit * 4,
    outline: 'none',
    spacing: theme.spacing,
  },
  buttonMargin: {
    marginRight: '20px',
  },
});

class FilterOptions extends React.Component {
  public static propTypes: { classes: PropTypes.Validator<object>; };
  public state = {
    open: false,
  };

  public handleOpen = (): void => {
    this.setState({ open: true });
  };

  public handleClose = (): void => {
    this.setState({ open: false });
  };
  // function to toggle arrow
  public toggleArrow = (): any => {
    return this.state.open ? (
      <i class='material-icons'>keyboard_arrow_down</i>
    ) : (
      <i class='material-icons'>keyboard_arrow_right</i>
    );
  };
  public render() {
    const { classes }: any = this.props;

    return (
      <React.Fragment>
        <Button 
          className={`filters__button ${classes.buttonMargin}`}
          color='primary' 
          onClick={this.handleOpen}
        >   
        <i class='material-icons'>
          <span>filter_list</span>
        </i>
            <span className='filters__button-message'>Filters</span>
            {this.toggleArrow()}
        </Button>
        <Modal
          aria-labelledby='simple-modal-title'
          aria-describedby='simple-modal-description'
          open={this.state.open}
        >
          <div style={getModalStyle()} className={classes.paper}>
            <Typography variant='h6' id='modal-title'>
              Text in a modal
            </Typography>

            <Typography variant='subheading'>
              Status
            </Typography>

            <FilterCheckboxes />

            <Typography>Submitted</Typography>
            <FilterSliders />

            <Typography>Not Submitted</Typography>
            <FilterSliders />

            <Typography>MARQ</Typography>
            <FilterSliders />

            <Button onClick={this.handleClose}>Close</Button>
          </div>
        </Modal>
      </React.Fragment>
    );
  }
}

FilterOptions.propTypes = {
  classes: PropTypes.object.isRequired,
};

// We need an intermediary variable for handling the recursive nesting.
const SimpleModalWrapped = withStyles(styles)(FilterOptions);

export default SimpleModalWrapped;

You've typed it as an html element, which means you can only assign properties that are in that interface.您已将其键入为 html 元素,这意味着您只能分配该界面中的属性。 It should be className , not class它应该是className ,而不是class

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM