fix: replaced edit buttons of the BooleanPropertiesTable component and Contact Info and Terms & Conditions pages
113 lines
4 KiB
JavaScript
113 lines
4 KiB
JavaScript
import { makeStyles } from '@material-ui/core/styles'
|
|
import classnames from 'classnames'
|
|
import { useFormikContext, Form, Formik, Field as FormikField } from 'formik'
|
|
import _ from 'lodash'
|
|
import React, { useState, memo } from 'react'
|
|
import * as Yup from 'yup'
|
|
|
|
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
|
import { Link, IconButton } from 'src/components/buttons'
|
|
import { RadioGroup } from 'src/components/inputs/formik'
|
|
import { Table, TableBody, TableRow, TableCell } from 'src/components/table'
|
|
import { H4 } from 'src/components/typography'
|
|
import { ReactComponent as EditIconDisabled } from 'src/styling/icons/action/edit/disabled.svg'
|
|
import { ReactComponent as EditIcon } from 'src/styling/icons/action/edit/enabled.svg'
|
|
import { ReactComponent as FalseIcon } from 'src/styling/icons/table/false.svg'
|
|
import { ReactComponent as TrueIcon } from 'src/styling/icons/table/true.svg'
|
|
|
|
import { booleanPropertiesTableStyles } from './BooleanPropertiesTable.styles'
|
|
|
|
const useStyles = makeStyles(booleanPropertiesTableStyles)
|
|
|
|
const BooleanCell = ({ name }) => {
|
|
const { values } = useFormikContext()
|
|
return values[name] === 'true' ? <TrueIcon /> : <FalseIcon />
|
|
}
|
|
|
|
const BooleanPropertiesTable = memo(
|
|
({ title, disabled, data, elements, save, forcedEditing = false }) => {
|
|
const initialValues = _.fromPairs(elements.map(it => [it.name, '']))
|
|
const schemaValidation = _.fromPairs(
|
|
elements.map(it => [it.name, Yup.boolean().required()])
|
|
)
|
|
|
|
const [editing, setEditing] = useState(forcedEditing)
|
|
|
|
const classes = useStyles()
|
|
|
|
const innerSave = async value => {
|
|
save(value)
|
|
setEditing(false)
|
|
}
|
|
|
|
const innerCancel = () => setEditing(false)
|
|
|
|
const radioButtonOptions = [
|
|
{ display: 'Yes', code: 'true' },
|
|
{ display: 'No', code: 'false' }
|
|
]
|
|
|
|
return (
|
|
<div className={classes.booleanPropertiesTableWrapper}>
|
|
<Formik
|
|
enableReinitialize
|
|
onSubmit={innerSave}
|
|
initialValues={data || initialValues}
|
|
schemaValidation={schemaValidation}>
|
|
<Form>
|
|
<div className={classes.rowWrapper}>
|
|
<H4>{title}</H4>
|
|
{editing ? (
|
|
<div className={classes.rightAligned}>
|
|
<Link type="submit" color="primary">
|
|
Save
|
|
</Link>
|
|
<Link
|
|
className={classes.rightLink}
|
|
onClick={innerCancel}
|
|
color="secondary">
|
|
Cancel
|
|
</Link>
|
|
</div>
|
|
) : (
|
|
<IconButton
|
|
className={classes.transparentButton}
|
|
onClick={() => setEditing(true)}>
|
|
{disabled ? <EditIconDisabled /> : <EditIcon />}
|
|
</IconButton>
|
|
)}
|
|
</div>
|
|
<PromptWhenDirty />
|
|
<Table className={classes.fillColumn}>
|
|
<TableBody className={classes.fillColumn}>
|
|
{elements.map((it, idx) => (
|
|
<TableRow key={idx} size="sm" className={classes.tableRow}>
|
|
<TableCell className={classes.leftTableCell}>
|
|
{it.display}
|
|
</TableCell>
|
|
<TableCell className={classes.rightTableCell}>
|
|
{editing && (
|
|
<FormikField
|
|
component={RadioGroup}
|
|
name={it.name}
|
|
options={radioButtonOptions}
|
|
className={classnames(
|
|
classes.radioButtons,
|
|
classes.rightTableCell
|
|
)}
|
|
/>
|
|
)}
|
|
{!editing && <BooleanCell name={it.name} />}
|
|
</TableCell>
|
|
</TableRow>
|
|
))}
|
|
</TableBody>
|
|
</Table>
|
|
</Form>
|
|
</Formik>
|
|
</div>
|
|
)
|
|
}
|
|
)
|
|
|
|
export default BooleanPropertiesTable
|