colouring-montreal/app/src/frontend/building-view.js

103 lines
3.8 KiB
JavaScript
Raw Normal View History

import React, { Fragment } from 'react';
import { Link, NavLink } from 'react-router-dom';
2018-10-04 17:50:33 -04:00
import queryString from 'query-string';
2018-09-11 15:59:59 -04:00
import Sidebar from './sidebar';
import Tooltip from './tooltip';
2018-09-13 15:41:42 -04:00
import InfoBox from './info-box';
2018-10-01 12:20:25 -04:00
import { HelpIcon, EditIcon } from './icons';
2018-09-11 15:59:59 -04:00
import CONFIG from './fields-config.json';
const BuildingView = (props) => {
if (!props.building_id){
return (
<Sidebar title="Building Not Found">
<InfoBox msg="We can't find that one anywhere - try the map again?" />
<div className="buttons-container with-space">
<Link to="/map/age.html" className="btn btn-secondary">Back to maps</Link>
</div>
</Sidebar>
);
}
2018-10-04 17:50:33 -04:00
const search = (props.location && props.location.search)? queryString.parse(props.location.search): {};
return (
2018-10-05 13:41:12 -04:00
<Sidebar title={`View Building`} back={search.cat? `/map/${search.cat}.html` : "/map/age.html"}>
{
CONFIG.map(section_props => (
<DataSection
2018-10-04 17:50:33 -04:00
key={section_props.slug} search={search}
building_id={props.building_id}
2018-10-04 17:50:33 -04:00
{...section_props}>
{
section_props.fields.map(field_props => (
<DataEntry
2018-10-04 17:50:33 -04:00
key={field_props.slug}
title={field_props.title}
value={props[field_props.slug]}
tooltip={field_props.tooltip} />
))
}
</DataSection>
))
}
</Sidebar>
);
}
const DataSection = (props) => {
2018-10-04 17:50:33 -04:00
const match = props.search.cat === props.slug;
return (
<section id={props.slug} className={(props.inactive)? "data-section inactive": "data-section"}>
2018-10-04 17:50:33 -04:00
<header className={(match? "active " : "") + "bullet-prefix section-header"}>
<NavLink
to={`/building/${props.building_id}.html` + ((match)? '': `?cat=${props.slug}`)}
title={(props.inactive)? 'Coming soon… Click the ? for more info.' :
(match)? 'Hide details' : 'Show details'}
2018-10-04 17:50:33 -04:00
isActive={() => match}>
2018-10-01 11:59:39 -04:00
<h3 className="h3">{props.title}</h3>
</NavLink>
2018-10-05 04:10:20 -04:00
<nav className="icon-buttons">
2018-10-01 11:59:39 -04:00
{
2018-10-04 17:50:33 -04:00
props.help?
<a className="icon-button help" title="Find out more" href={props.help} target="_blank" rel="noopener noreferrer">
2018-10-01 12:20:25 -04:00
<HelpIcon />
2018-10-01 11:59:39 -04:00
</a>
: null
}
{
!props.inactive?
2018-10-04 17:50:33 -04:00
<NavLink className="icon-button edit" title="Edit data"
to={`/building/${props.building_id}/edit.html?cat=${props.slug}`}>
2018-10-01 11:59:39 -04:00
<EditIcon />
</NavLink>
: null
}
2018-10-05 04:10:20 -04:00
</nav>
2018-10-01 11:59:39 -04:00
</header>
{ match? <dl className="data-list">{props.children}</dl> : null }
2018-10-01 11:59:39 -04:00
{
(match && !props.inactive)?
<div className="buttons-container with-space">
2018-10-05 13:41:12 -04:00
<Link to={`/building/${props.building_id}/edit.html?cat=${props.slug}`} className="btn btn-primary">Edit data</Link>
</div>
: null
2018-10-01 11:59:39 -04:00
}
</section>
);
}
const DataEntry = (props) => (
<Fragment>
<dt>
{ props.title }
{ props.tooltip? <Tooltip text={ props.tooltip } /> : null }
</dt>
<dd>{props.value ? props.value : '-'}</dd>
</Fragment>
);
export default BuildingView;