15

How to add link per TableRow in .map?

*my error is validateDOMNesting(...): cannot appear as a child of "< a >" im using react router react-router-dom

how to add link in every loop of .map in Table TableRow?

   import React, { Fragment } from 'react'
import { Paper } from 'material-ui'
import Table from 'material-ui/Table';
import TableBody from 'material-ui/Table/TableBody';
import TableCell from 'material-ui/Table/TableCell';
import TableHead from 'material-ui/Table/TableHead';
import TableRow from 'material-ui/Table/TableRow';
import { connect } from 'react-redux'
// import { Edit, Delete } from '@material-ui/icons'
import { withStyles } from 'material-ui/styles'
import { BrowserRouter as Router, Route, Link } from "react-router-dom";
const drawerWidth = 100;
class Listofbond extends React.Component {
    render() {
        console.log(this.props);
        const { MainProps, classes } = this.props;
        return (
            <Router>
                <Paper>
                    <Table >
                        <TableHead>
                            <TableRow>
                                <TableCell>Bondame</TableCell>
                            </TableRow>
                        </TableHead>
                        <TableBody>
                            {[1, 2, 3].map(n => {
                                return (
                                    <Link to={`/bond/${n}/`} key={n}>
                                        <TableRow>
                                            <TableCell component="th" scope="row">
                                                {n}
                                            </TableCell>
                                        </TableRow>
                                    </Link>
                                );
                            })}
                        </TableBody>
                    </Table>
                </Paper>
            </Router>
        )
    }

}

export default Listofbond;

3 Answers3

12

The correct way to do this is to use the component prop of the TableRow component:

<TableRow component={Link} to={`/bond/${n}/`} key={n}>
...
</TableRow>

CYMA
  • 487
  • 5
  • 15
0

Link is applied to the component for which onClick is defined, so wrap your TableRow into a div like this:

<Link to={`/bond/${n}/`} key={n}>
   <div>
     <TableRow>
       <TableCell component="th" scope="row">
         {n}
       </TableCell>
      </TableRow>
   </div>
</Link>
Jyoti Arora
  • 131
  • 8
0

There are many workarounds to this because the solution above gives an error validateDOMNesting(...) on the console.

  1. add Link tag around the text itself ( the column value ) inside the <ColumnCell> , although it changes the text into more like <a> tag .. but you could handle this. by doing this style={{ textDecoration: 'none', color: 'black' }}

                 <TableCell key={column.id} align={column.align}>
                      <Link
                        to={`/elsewhere/${row.id}`}
                        style={{ textDecoration: 'none', color: 'black' }}
                      >
                        {value}
                      </Link>
                 </TableCell>
    
  2. create a button with each table row.

Hos Mercury
  • 1,256
  • 2
  • 14
  • 22