colouring-montreal/app/src/frontend/building/data-containers/use.tsx

51 lines
1.9 KiB
TypeScript
Raw Normal View History

2019-08-14 17:23:12 -04:00
import React, { Fragment } from 'react';
import InfoBox from '../../components/info-box';
import { dataFields } from '../../data_fields';
import DataEntry from '../data-components/data-entry';
import MultiDataEntry from '../data-components/multi-data-entry/multi-data-entry';
import withCopyEdit from '../data-container';
2019-11-07 02:39:26 -05:00
import { CategoryViewProps } from './category-view-props';
/**
* Use view/edit section
*/
const UseView: React.FunctionComponent<CategoryViewProps> = (props) => (
2019-08-14 17:23:12 -04:00
<Fragment>
2020-06-18 09:58:16 -04:00
<InfoBox msg="93% of properties in UK are dwellings so we have set this as the default colour. Can you help us fix this by colouring in all non-residential and mixed use buildings?"></InfoBox>
<MultiDataEntry
title={dataFields.current_landuse_group.title}
slug="current_landuse_group"
value={props.building.current_landuse_group}
2020-01-06 14:48:47 -05:00
mode={props.mode}
copy={props.copy}
onChange={props.onChange}
2020-03-27 10:32:19 -04:00
confirmOnEnter={true}
tooltip={dataFields.current_landuse_group.tooltip}
placeholder="Type new land use group here"
2020-06-24 23:50:16 -04:00
copyable={true}
2020-03-19 14:17:56 -04:00
autofill={true}
showAllOptionsOnEmpty={true}
2020-03-27 10:32:19 -04:00
addOnAutofillSelect={true}
/>
2020-03-27 10:32:19 -04:00
{
props.mode != 'view' &&
2020-06-18 07:39:30 -04:00
<InfoBox msg="Land use order, shown below, is automatically derived from the land use groups"></InfoBox>
2020-03-27 10:32:19 -04:00
}
<DataEntry
title={dataFields.current_landuse_order.title}
2020-03-23 19:33:03 -04:00
tooltip={dataFields.current_landuse_order.tooltip}
slug="current_landuse_order"
value={props.building.current_landuse_order}
2020-01-06 14:48:47 -05:00
mode={props.mode}
disabled={true}
copy={props.copy}
onChange={props.onChange}
/>
2019-08-14 17:23:12 -04:00
</Fragment>
2019-11-07 03:13:30 -05:00
);
const UseContainer = withCopyEdit(UseView);
export default UseContainer;