BookBrainz/bookbrainz-site

View on GitHub
src/client/components/pages/entities/author-table.js

Summary

Maintainability
D
2 days
Test Coverage
/*
 * Copyright (C) 2020 Prabal Singh
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

import * as bootstrap from 'react-bootstrap';
import * as entityHelper from '../../../helpers/entity';
import * as utilHelper from '../../../helpers/utils';
import PropTypes from 'prop-types';
import React from 'react';


const {Table} = bootstrap;
const {transformISODateForDisplay, extractAttribute, getEntityDisambiguation, getEntityLabel} = entityHelper;

function AuthorTableRow({author, showAddedAtColumn, showCheckboxes, selectedEntities, onToggleRow, genderOptions}) {
    const name = getEntityLabel(author);
    const disambiguation = getEntityDisambiguation(author);
    const number = author.number || '?';
    const authorType = author.authorType?.label || author.authorType || '?';
    const gender = author.gender?.name ?? genderOptions.find((option) => option.id === author.genderId)?.name ?? '?';
    const beginDate = transformISODateForDisplay(extractAttribute(author.beginDate));
    const endDate = transformISODateForDisplay(extractAttribute(author.endDate));
    const addedAt = showAddedAtColumn ? utilHelper.formatDate(new Date(author.addedAt), true) : null;
    /* eslint-disable react/jsx-no-bind */
    return (
        <tr>
            {author.displayNumber && <td>{number}</td>}
            <td>
                {
                    showCheckboxes ?
                        <input
                            checked={selectedEntities.find(bbid => bbid === author.bbid)}
                            className="checkboxes"
                            id={author.bbid}
                            type="checkbox"
                            onClick={() => onToggleRow(author.bbid)}
                        /> : null
                }
                <a href={`/author/${author.bbid}`}>{name}</a>
                {disambiguation}
            </td>
            <td>{gender}</td>
            <td>{authorType}</td>
            <td>{beginDate}</td>
            <td>{endDate}</td>
            {
                showAddedAtColumn ? <td>{addedAt}</td> : null
            }
        </tr>
    );
}
AuthorTableRow.displayName = 'AuthorTableRow';
AuthorTableRow.propTypes = {
    author: PropTypes.object.isRequired,
    genderOptions: PropTypes.array,
    onToggleRow: PropTypes.func,
    selectedEntities: PropTypes.array,
    showAddedAtColumn: PropTypes.bool.isRequired,
    showCheckboxes: PropTypes.bool
};
AuthorTableRow.defaultProps = {
    genderOptions: [],
    onToggleRow: null,
    selectedEntities: [],
    showCheckboxes: false
};

function AuthorTable({authors, showAddedAtColumn, showCheckboxes, selectedEntities, onToggleRow, genderOptions}) {
    let tableContent;
    if (authors.length) {
        tableContent = (
            <React.Fragment>
                <Table striped>
                    <thead>
                        <tr>
                            {authors[0].displayNumber && <th style={{width: '10%'}}>#</th>}
                            <th>Name</th>
                            <th>Gender</th>
                            <th>Type</th>
                            <th>Date of birth</th>
                            <th>Date of death</th>
                            {
                                showAddedAtColumn ? <th>Added at</th> : null
                            }
                        </tr>
                    </thead>
                    <tbody>
                        {
                            authors.map((author) => (
                                <AuthorTableRow
                                    author={author}
                                    genderOptions={genderOptions}
                                    key={author.bbid}
                                    selectedEntities={selectedEntities}
                                    showAddedAtColumn={showAddedAtColumn}
                                    showCheckboxes={showCheckboxes}
                                    onToggleRow={onToggleRow}
                                />
                            ))
                        }
                    </tbody>
                </Table>
            </React.Fragment>
        );
    }
    else {
        tableContent = <span>No Authors</span>;
    }
    return (
        <div>
            <h2>Authors</h2>
            {tableContent}
        </div>
    );
}
AuthorTable.displayName = 'AuthorTable';
AuthorTable.propTypes = {
    authors: PropTypes.array.isRequired,
    genderOptions: PropTypes.array,
    onToggleRow: PropTypes.func,
    selectedEntities: PropTypes.array,
    showAddedAtColumn: PropTypes.bool,
    showCheckboxes: PropTypes.bool
};
AuthorTable.defaultProps = {
    genderOptions: [],
    onToggleRow: null,
    selectedEntities: [],
    showAddedAtColumn: false,
    showCheckboxes: false
};

export default AuthorTable;