How to make the entries in one column clickable in React Table?
Better try to add NavLink to a cell. In documentation I can't find a solution. So I created a custom NavLink component.
function NavLinkButton({
row: data,
}: FilterProps<Application>) {
const application = data.original
return (
<NavLink to={{pathname:RouteNames.xxxx, state: { application: application }}}>View</NavLink >
)
}
export default NavLinkButton
And access that NavLinkButton using "Cell".
import NavLinkButton from '../common/NavLink';
const COLUMNS: Column<Application>[] = [
{
Header: 'Candidate Name',
accessor: (j) => j.name,
filter: 'fuzzyText',
},
{
Header: 'Action',
disableFilters: true,
Cell: NavLinkButton
}
];
From the docs; You can set custom components for cells.
Example:
<ReactTable
data={data}
columns={[{
Header: 'Name',
columns: [{
Header: 'First Name',
accessor: 'firstName'
}, {
Header: 'Last Name',
id: 'lastName',
accessor: d => d.lastName
}]
}, {
Header: 'Info',
columns: [{
Header: 'Profile Progress',
accessor: 'progress',
Cell: row => (
<div
style={{
width: '100%',
height: '100%',
backgroundColor: '#dadada',
borderRadius: '2px'
}}
>
<div
style={{
width: `${row.value}%`,
height: '100%',
backgroundColor: row.value > 66 ? '#85cc00'
: row.value > 33 ? '#ffbf00'
: '#ff2e00',
borderRadius: '2px',
transition: 'all .2s ease-out'
}}
/>
</div>
)
}, {
Header: 'Status',
accessor: 'status',
Cell: row => (
<span>
<span style={{
color: row.value === 'relationship' ? '#ff2e00'
: row.value === 'complicated' ? '#ffbf00'
: '#57d500',
transition: 'all .3s ease'
}}>
●
</span> {
row.value === 'relationship' ? 'In a relationship'
: row.value === 'complicated' ? `It's complicated`
: 'Single'
}
</span>
)
}]
}]}
defaultPageSize={10}
className="-striped -highlight"
/>
This is simple as the documentation shows. Change render by Cell. Like this:
Cell: e =><a href={e.value}> {e.value} </a>