import React, { Component, Fragment } from 'react'; import PropTypes from 'prop-types'; import { Trans, withNamespaces } from 'react-i18next'; import ReactTable from 'react-table'; import { MODAL_TYPE, CLIENT_ID } from '../../../helpers/constants'; import Card from '../../ui/Card'; import Modal from './Modal'; import WrapCell from './WrapCell'; import whoisCell from './whoisCell'; class ClientsTable extends Component { handleFormAdd = (values) => { this.props.addClient(values); }; handleFormUpdate = (values, name) => { this.props.updateClient(values, name); }; handleSubmit = (values) => { let config = values; if (values && values.blocked_services) { const blocked_services = Object .keys(values.blocked_services) .filter(service => values.blocked_services[service]); config = { ...values, blocked_services }; } if (this.props.modalType === MODAL_TYPE.EDIT) { this.handleFormUpdate(config, this.props.modalClientName); } else { this.handleFormAdd(config); } }; getClient = (name, clients) => { const client = clients.find(item => name === item.name); if (client) { const identifier = client.mac ? CLIENT_ID.MAC : CLIENT_ID.IP; return { identifier, use_global_settings: true, use_global_blocked_services: true, ...client, }; } return { identifier: CLIENT_ID.IP, use_global_settings: true, use_global_blocked_services: true, }; }; getStats = (ip, stats) => { if (stats) { const statsForCurrentIP = stats.find(item => item.name === ip); return statsForCurrentIP && statsForCurrentIP.count; } return ''; }; handleDelete = (data) => { // eslint-disable-next-line no-alert if (window.confirm(this.props.t('client_confirm_delete', { key: data.name }))) { this.props.deleteClient(data); } }; columns = [ { Header: this.props.t('table_client'), accessor: 'ip', minWidth: 150, Cell: (row) => { if (row.original && row.original.mac) { return (
{row.original.mac} (MAC)
); } else if (row.value) { return (
{row.value} (IP)
); } return ''; }, }, { Header: this.props.t('table_name'), accessor: 'name', minWidth: 120, Cell: WrapCell, }, { Header: this.props.t('settings'), accessor: 'use_global_settings', minWidth: 120, Cell: ({ value }) => { const title = value ? ( settings_global ) : ( settings_custom ); return (
{title}
); }, }, { Header: this.props.t('blocked_services'), accessor: 'blocked_services', minWidth: 180, Cell: (row) => { const { value, original } = row; if (original.use_global_blocked_services) { return settings_global; } return (
{value && value.length > 0 ? value.map(service => ( )) : '–'}
); }, }, { Header: this.props.t('whois'), accessor: 'whois_info', minWidth: 200, Cell: whoisCell(this.props.t), }, { Header: this.props.t('requests_count'), accessor: 'statistics', minWidth: 120, Cell: (row) => { const clientIP = row.original.ip; const clientStats = clientIP && this.getStats(clientIP, this.props.topClients); if (clientStats) { return (
{clientStats}
); } return '–'; }, }, { Header: this.props.t('actions_table_header'), accessor: 'actions', maxWidth: 100, Cell: (row) => { const clientName = row.original.name; const { toggleClientModal, processingDeleting, processingUpdating, t, } = this.props; return (
); }, }, ]; render() { const { t, clients, isModalOpen, modalType, modalClientName, toggleClientModal, processingAdding, processingUpdating, } = this.props; const currentClientData = this.getClient(modalClientName, clients); return ( ); } } ClientsTable.propTypes = { t: PropTypes.func.isRequired, clients: PropTypes.array.isRequired, topClients: PropTypes.array.isRequired, toggleClientModal: PropTypes.func.isRequired, deleteClient: PropTypes.func.isRequired, addClient: PropTypes.func.isRequired, updateClient: PropTypes.func.isRequired, isModalOpen: PropTypes.bool.isRequired, modalType: PropTypes.string.isRequired, modalClientName: PropTypes.string.isRequired, processingAdding: PropTypes.bool.isRequired, processingDeleting: PropTypes.bool.isRequired, processingUpdating: PropTypes.bool.isRequired, }; export default withNamespaces()(ClientsTable);