2021-08-22 21:26:58 -04:00
|
|
|
import React from 'react';
|
2019-08-14 14:33:26 -04:00
|
|
|
|
2019-08-14 16:54:00 -04:00
|
|
|
import withCopyEdit from '../data-container';
|
2020-02-03 16:49:45 -05:00
|
|
|
import LikeDataEntry from '../data-components/like-data-entry';
|
2019-11-07 02:39:26 -05:00
|
|
|
|
2019-10-18 10:06:50 -04:00
|
|
|
import { CategoryViewProps } from './category-view-props';
|
2021-08-22 21:26:58 -04:00
|
|
|
import InfoBox from '../../components/info-box';
|
|
|
|
import { LogicalDataEntry } from '../data-components/logical-data-entry/logical-data-entry';
|
|
|
|
import { dataFields } from '../../config/data-fields-config';
|
2019-08-14 14:33:26 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Community view/edit section
|
|
|
|
*/
|
2019-10-18 10:06:50 -04:00
|
|
|
const CommunityView: React.FunctionComponent<CategoryViewProps> = (props) => (
|
2021-08-22 21:26:58 -04:00
|
|
|
<>
|
|
|
|
<InfoBox>
|
|
|
|
Can you help add information on how well you think the building works, and on if it is in public ownership?
|
|
|
|
</InfoBox>
|
2020-02-03 16:49:45 -05:00
|
|
|
<LikeDataEntry
|
2021-08-22 21:26:58 -04:00
|
|
|
userValue={props.building.community_like}
|
|
|
|
aggregateValue={props.building.likes_total}
|
|
|
|
|
|
|
|
onChange={props.onSaveChange}
|
|
|
|
mode={props.mode}
|
|
|
|
copy={props.copy}
|
|
|
|
/>
|
|
|
|
{/*
|
|
|
|
<LogicalDataEntry
|
|
|
|
slug='community_publicly_owned'
|
|
|
|
title={dataFields.community_publicly_owned.title}
|
|
|
|
value={props.building.community_publicly_owned}
|
|
|
|
disallowFalse={props.building.community_public_ownership_form != null}
|
|
|
|
disallowNull={props.building.community_public_ownership_form != null}
|
|
|
|
|
|
|
|
onChange={props.onSaveChange}
|
2020-02-03 16:49:45 -05:00
|
|
|
mode={props.mode}
|
2021-08-22 21:26:58 -04:00
|
|
|
copy={props.copy}
|
|
|
|
/> */}
|
|
|
|
{/* <p className="data-intro">{props.intro}</p> */}
|
|
|
|
{/* <ul className="data-list">
|
2019-08-14 17:04:12 -04:00
|
|
|
<li>Is this a publicly owned building?</li>
|
|
|
|
{
|
|
|
|
// "slug": "community_publicly_owned",
|
|
|
|
// "type": "checkbox"
|
|
|
|
}
|
|
|
|
<li>Has this building ever been used for community or public services activities?</li>
|
|
|
|
{
|
|
|
|
// "slug": "community_past_public",
|
|
|
|
// "type": "checkbox"
|
|
|
|
}
|
|
|
|
<li>Would you describe this building as a community asset?</li>
|
|
|
|
{
|
|
|
|
// "slug": "community_asset",
|
|
|
|
// "type": "checkbox"
|
|
|
|
}
|
2021-08-22 21:26:58 -04:00
|
|
|
</ul> */}
|
|
|
|
</>
|
2019-11-07 03:13:30 -05:00
|
|
|
);
|
2019-08-14 14:33:26 -04:00
|
|
|
const CommunityContainer = withCopyEdit(CommunityView);
|
|
|
|
|
|
|
|
export default CommunityContainer;
|