2019-08-14 17:12:24 -04:00
|
|
|
import React, { Fragment } from 'react';
|
2021-02-24 22:22:25 -05:00
|
|
|
import InfoBox from '../../components/info-box';
|
2022-06-01 05:35:35 -04:00
|
|
|
import { dataFields } from '../../config/data-fields-config';
|
2022-06-01 05:36:47 -04:00
|
|
|
import SelectDataEntry from '../data-components/select-data-entry';
|
2022-06-01 06:15:19 -04:00
|
|
|
import NumericDataEntry from '../data-components/numeric-data-entry';
|
2019-08-14 14:33:26 -04:00
|
|
|
|
2019-08-14 16:54:00 -04:00
|
|
|
import withCopyEdit from '../data-container';
|
2019-11-07 02:39:26 -05:00
|
|
|
|
2019-10-18 10:06:50 -04:00
|
|
|
import { CategoryViewProps } from './category-view-props';
|
2019-08-14 14:33:26 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Team view/edit section
|
|
|
|
*/
|
2022-06-01 06:12:49 -04:00
|
|
|
const TeamView: React.FunctionComponent<CategoryViewProps> = (props) => {
|
|
|
|
const building = props.building;
|
|
|
|
const currentBuildingConstructionYear = building.date_year || undefined;
|
|
|
|
return (
|
|
|
|
<Fragment>
|
|
|
|
<InfoBox msg="Can you help us capture information on who built the current building?"></InfoBox>
|
|
|
|
<SelectDataEntry
|
|
|
|
title={dataFields.is_extension.title}
|
|
|
|
slug="is_extension"
|
|
|
|
value={props.building.is_extension}
|
|
|
|
mode={props.mode}
|
|
|
|
copy={props.copy}
|
|
|
|
onChange={props.onChange}
|
|
|
|
tooltip={dataFields.is_extension.tooltip}
|
|
|
|
placeholder={dataFields.is_extension.example}
|
|
|
|
options={dataFields.is_extension.items}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<NumericDataEntry
|
|
|
|
slug='work_carried_out'
|
|
|
|
title={dataFields.work_carried_out.title}
|
|
|
|
value={currentBuildingConstructionYear}
|
2022-06-01 06:27:25 -04:00
|
|
|
mode={props.mode}
|
|
|
|
copy={props.copy}
|
|
|
|
onChange={props.onChange}
|
|
|
|
step={1}
|
|
|
|
min={1}
|
|
|
|
max={currentYear}
|
|
|
|
tooltip={dataFields.work_carried_out.tooltip}
|
2022-06-01 05:29:57 -04:00
|
|
|
/>
|
2022-06-01 06:12:49 -04:00
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
};
|
2019-08-14 14:33:26 -04:00
|
|
|
const TeamContainer = withCopyEdit(TeamView);
|
|
|
|
|
|
|
|
export default TeamContainer;
|