mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 11:48:43 +00:00
89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
/**
|
|
*
|
|
* TableRow
|
|
*
|
|
*/
|
|
|
|
import PropTypes from 'prop-types';
|
|
import { isEmpty } from 'lodash';
|
|
|
|
import styles from './styles.scss';
|
|
|
|
class TableRow extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.handleClick = this.handleClick.bind(this);
|
|
}
|
|
|
|
/**
|
|
* Return a formatted value according to the
|
|
* data type and value stored in database
|
|
*
|
|
* @param type {String} Data type
|
|
* @param value {*} Value stored in database
|
|
* @returns {*}
|
|
*/
|
|
getDisplayedValue(type, value) {
|
|
switch (type.toLowerCase()) {
|
|
case 'string':
|
|
return value && !isEmpty(value.toString()) ? value.toString() : '-';
|
|
case 'integer':
|
|
return value && !isEmpty(value.toString()) ? value.toString() : '-';
|
|
case 'boolean':
|
|
return value && !isEmpty(value.toString()) ? value.toString() : '-';
|
|
default:
|
|
return '-';
|
|
}
|
|
}
|
|
|
|
// Redirect to the edit page
|
|
handleClick() {
|
|
this.context.router.history.push(`${this.props.destination}${this.props.redirectUrl}`);
|
|
}
|
|
|
|
render() {
|
|
// Generate cells
|
|
const cells = this.props.headers.map((header, i) => (
|
|
<td key={i}>
|
|
{this.getDisplayedValue(
|
|
header.type,
|
|
this.props.record[header.name]
|
|
)}
|
|
</td>
|
|
));
|
|
|
|
// Add actions cell.
|
|
cells.push(
|
|
<td key='action' className={styles.actions}>
|
|
<i className="fa fa-pencil" aria-hidden="true"></i>
|
|
<i onClick={this.props.handleDelete} id={this.props.record.id} className="fa fa-trash" aria-hidden="true"></i>
|
|
</td>
|
|
);
|
|
|
|
return (
|
|
<tr className={styles.tableRow} onClick={() => this.handleClick(this.props.destination)}>
|
|
{cells}
|
|
</tr>
|
|
);
|
|
}
|
|
}
|
|
|
|
TableRow.contextTypes = {
|
|
router: PropTypes.object.isRequired,
|
|
};
|
|
|
|
TableRow.propTypes = {
|
|
destination: PropTypes.string.isRequired,
|
|
handleDelete: PropTypes.func,
|
|
headers: PropTypes.array.isRequired,
|
|
record: PropTypes.object.isRequired,
|
|
redirectUrl: PropTypes.string.isRequired,
|
|
};
|
|
|
|
TableRow.defaultProps = {
|
|
handleDelete: () => {},
|
|
};
|
|
|
|
export default TableRow;
|