简体   繁体   中英

Add column with a button which helps to route to a new page (when clicks) in material-table react

Currently, I'm working on a react based personal project using covid 19 API. There I'm using material-table to display countries as table records. I need to add a column with a button which helps to route to a new page when user clicks (Component which has relevant country details). Any help really appreciated.

componentDidMount() {
  axios
    .get('API URL')
    .then((res) => {
      this.setState({
        countries: res.data,
      });
    })
    .catch((err) => {
      console.log(err);
    });
}

render() {
  return (
    <div>
      <div className='c-overview-header' style={{ marginTop: 30 }}>

      <div className='country-tbl' style={{ marginTop: 20, height: 20 }}>
        <Container xs={12} md={8}>
          <Row>
            <Col>
              <MaterialTable
                columns={[
                  {
                    title: 'Flag',
                    field: 'flag',
                    filtering: false,
                    sorting: false,
                    render: (rowData) => (
                      <img
                        style={{ width: '50%', height: '50%' }}
                        src={rowData.countryInfo.flag}
                        alt={rowData.country}
                      />
                    ),
                  },

                  { title: 'Country Name', field: 'country' },
                  { title: 'Continent', field: 'continent' },
                  { title: 'Total Cases', field: 'cases', type: 'numeric' },
                  { title: 'Total Deaths', field: 'deaths', type: 'numeric' },
                ]}
                data={this.state.countries}
                options={{
                  filtering: true,
                  sorting: true,
                  actionsColumnIndex: -1,
                }}
                title=''
              />
            </Col>
          </Row>
        </Container>
      </div>
    </div>
  );
}

You can use action prop as follows

actions = {[
    {
      icon: 'info',
      tooltip : 'anything you want to display when hover over',
      onClick: (event) => window.location.href = '/path'
    }
 ]}

You can use the actions prop, like this:

<MaterialTable
  title="Simple Action Preview"
  columns={[
    { title: "Name", field: "name" },
    { title: "Infected", field: "infected" }
  ]}
  data={[
    {
      name: "country1",
      infected: 300
    },
    {
      name: "country2",
      infected: 100
    }
  ]}
  actions={[
    {
      icon: "info",
      tooltip: "More info",
      onClick: (event, rowData) => {
        history.push(`/details/${rowData.name}`);
      }
    }
  ]}
/>

https://codesandbox.io/s/material-table-react-router-1hhre?file=/src/Table.jsx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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