import React, { Component, Fragment } from 'react'; import PropTypes from 'prop-types'; import ReactTable from 'react-table'; import { Trans, withTranslation } from 'react-i18next'; import { LEASES_TABLE_DEFAULT_PAGE_SIZE } from '../../../../helpers/constants'; import Modal from './Modal'; class StaticLeases extends Component { cellWrap = ({ value }) => (
{value}
); handleSubmit = (data) => { this.props.addStaticLease(data); }; handleDelete = (ip, mac, hostname = '') => { const name = hostname || ip; // eslint-disable-next-line no-alert if (window.confirm(this.props.t('delete_confirm', { key: name }))) { this.props.removeStaticLease({ ip, mac, hostname }); } }; render() { const { isModalOpen, toggleLeaseModal, processingAdding, processingDeleting, staticLeases, t, } = this.props; return ( dhcp_table_hostname, accessor: 'hostname', Cell: this.cellWrap, }, { Header: actions_table_header, accessor: 'actions', maxWidth: 150, Cell: (row) => { const { ip, mac, hostname } = row.original; return (
); }, }, ]} pageSize={LEASES_TABLE_DEFAULT_PAGE_SIZE} showPageSizeOptions={false} showPagination={staticLeases.length > LEASES_TABLE_DEFAULT_PAGE_SIZE} noDataText={t('dhcp_static_leases_not_found')} className="-striped -highlight card-table-overflow" minRows={6} />
); } } StaticLeases.propTypes = { staticLeases: PropTypes.array.isRequired, isModalOpen: PropTypes.bool.isRequired, toggleLeaseModal: PropTypes.func.isRequired, removeStaticLease: PropTypes.func.isRequired, addStaticLease: PropTypes.func.isRequired, processingAdding: PropTypes.bool.isRequired, processingDeleting: PropTypes.bool.isRequired, t: PropTypes.func.isRequired, }; export default withTranslation()(StaticLeases);