2019-11-07 02:39:26 -05:00
|
|
|
import { parse } from 'query-string';
|
2019-11-05 15:13:10 -05:00
|
|
|
import React from 'react';
|
|
|
|
import { Link, Redirect, RouteComponentProps } from 'react-router-dom';
|
2019-05-09 04:16:36 -04:00
|
|
|
|
2019-11-07 02:39:26 -05:00
|
|
|
import { BackIcon } from '../components/icons';
|
2019-08-14 04:21:42 -04:00
|
|
|
import InfoBox from '../components/info-box';
|
2019-10-25 13:07:24 -04:00
|
|
|
import { dataFields } from '../data_fields';
|
2019-11-05 15:13:10 -05:00
|
|
|
import { User } from '../models/user';
|
2019-05-09 04:16:36 -04:00
|
|
|
|
2019-11-07 02:39:26 -05:00
|
|
|
import DataEntry from './data-components/data-entry';
|
|
|
|
import Sidebar from './sidebar';
|
|
|
|
|
2019-11-05 15:13:10 -05:00
|
|
|
interface MultiEditRouteParams {
|
|
|
|
cat: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface MultiEditProps extends RouteComponentProps<MultiEditRouteParams> {
|
|
|
|
user?: User;
|
|
|
|
}
|
2019-08-23 09:18:08 -04:00
|
|
|
|
2019-11-05 15:13:10 -05:00
|
|
|
const MultiEdit: React.FC<MultiEditProps> = (props) => {
|
2019-05-09 04:16:36 -04:00
|
|
|
if (!props.user){
|
2019-11-07 03:13:30 -05:00
|
|
|
return <Redirect to="/sign-up.html" />;
|
2019-05-09 04:16:36 -04:00
|
|
|
}
|
2019-05-10 09:00:20 -04:00
|
|
|
const cat = props.match.params.cat;
|
2019-05-10 11:10:16 -04:00
|
|
|
if (cat === 'like') {
|
|
|
|
// special case for likes
|
|
|
|
return (
|
2019-08-14 14:27:28 -04:00
|
|
|
<Sidebar>
|
2019-05-27 15:13:43 -04:00
|
|
|
<section className='data-section'>
|
2019-10-02 17:33:42 -04:00
|
|
|
<header className={`section-header view ${cat} background-${cat}`}>
|
|
|
|
<h2 className="h2">Like me!</h2>
|
2019-05-27 16:28:47 -04:00
|
|
|
</header>
|
|
|
|
<form className='buttons-container'>
|
|
|
|
<InfoBox msg='Click all the buildings that you like and think contribute to the city!' />
|
2019-05-10 11:10:16 -04:00
|
|
|
|
2019-09-08 20:11:45 -04:00
|
|
|
<Link to='/view/like' className='btn btn-secondary'>Back to view</Link>
|
|
|
|
<Link to='/edit/like' className='btn btn-secondary'>Back to edit</Link>
|
2019-05-27 16:28:47 -04:00
|
|
|
</form>
|
2019-05-10 11:10:16 -04:00
|
|
|
</section>
|
|
|
|
</Sidebar>
|
|
|
|
);
|
|
|
|
}
|
2019-05-10 09:00:20 -04:00
|
|
|
|
2019-05-10 11:10:16 -04:00
|
|
|
const q = parse(props.location.search);
|
2019-10-02 17:13:34 -04:00
|
|
|
|
|
|
|
let data: object;
|
|
|
|
if (cat === 'like'){
|
2019-11-07 03:13:30 -05:00
|
|
|
data = { like: true };
|
2019-10-02 17:13:34 -04:00
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
// TODO: verify what happens if data is string[]
|
|
|
|
data = JSON.parse(q.data as string);
|
|
|
|
} catch (error) {
|
2019-11-07 03:13:30 -05:00
|
|
|
console.error(error, q);
|
|
|
|
data = {};
|
2019-10-02 17:13:34 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 04:16:36 -04:00
|
|
|
return (
|
2019-08-14 14:27:28 -04:00
|
|
|
<Sidebar>
|
2019-05-27 15:13:43 -04:00
|
|
|
<section className='data-section'>
|
2019-10-02 17:33:42 -04:00
|
|
|
<header className={`section-header view ${cat} background-${cat}`}>
|
|
|
|
<Link
|
|
|
|
className="icon-button back"
|
|
|
|
to={`/edit/${cat}`}>
|
|
|
|
<BackIcon />
|
|
|
|
</Link>
|
|
|
|
<h2 className="h2">Copy {cat} data</h2>
|
2019-05-27 16:28:47 -04:00
|
|
|
</header>
|
2019-10-02 17:33:42 -04:00
|
|
|
<form>
|
|
|
|
<InfoBox msg='Click buildings one at a time to colour using the data below' />
|
2019-08-01 05:29:32 -04:00
|
|
|
{
|
|
|
|
Object.keys(data).map((key => {
|
2019-10-25 13:07:24 -04:00
|
|
|
const info = dataFields[key] || {};
|
2019-10-02 17:33:42 -04:00
|
|
|
return (
|
|
|
|
<DataEntry
|
2019-10-25 13:07:24 -04:00
|
|
|
title={info.title || `Unknown field (${key})`}
|
2019-10-02 17:33:42 -04:00
|
|
|
slug={key}
|
|
|
|
disabled={true}
|
|
|
|
value={data[key]}
|
|
|
|
/>
|
2019-11-07 03:13:30 -05:00
|
|
|
);
|
2019-08-01 05:29:32 -04:00
|
|
|
}))
|
|
|
|
}
|
2019-10-02 17:33:42 -04:00
|
|
|
</form>
|
2019-05-27 16:28:47 -04:00
|
|
|
<form className='buttons-container'>
|
2019-09-08 20:11:45 -04:00
|
|
|
<Link to={`/view/${cat}`} className='btn btn-secondary'>Back to view</Link>
|
|
|
|
<Link to={`/edit/${cat}`} className='btn btn-secondary'>Back to edit</Link>
|
2019-05-27 16:28:47 -04:00
|
|
|
</form>
|
2019-05-09 04:16:36 -04:00
|
|
|
</section>
|
|
|
|
</Sidebar>
|
|
|
|
);
|
2019-11-07 03:13:30 -05:00
|
|
|
};
|
2019-05-09 04:16:36 -04:00
|
|
|
|
|
|
|
export default MultiEdit;
|