import React, { Fragment } from 'react'; import { Link, Redirect } from 'react-router-dom'; import { parse } from 'query-string'; import PropTypes from 'prop-types'; import Sidebar from './sidebar'; import CONFIG from './fields-config.json'; import InfoBox from './components/info-box'; import { sanitiseURL } from './helpers'; const MultiEdit = (props) => { if (!props.user){ return } const cat = props.match.params.cat; if (cat === 'like') { // special case for likes return (

Like me!

Back to view Back to edit
); } const q = parse(props.location.search); const data = JSON.parse(q.data as string) // TODO: verify what happens when data is string[] const title = sectionTitleFromCat(cat); return (

{title}

{ Object.keys(data).map((key => { const label = fieldTitleFromSlug(key); return })) }
Back to view Back to edit
); } MultiEdit.propTypes = { user: PropTypes.object, match: PropTypes.object, location: PropTypes.object } const DataEntry = (props) => { let content; if (props.value != null && props.value !== '') { if (typeof(props.value) === 'boolean') { content = (props.value)? 'Yes' : 'No' } else if (Array.isArray(props.value)) { if (props.value.length) { content = } else { content = '\u00A0' } } else { content = props.value } } else { content = '\u00A0' } return (
{props.label}
{content}
) } function sectionTitleFromCat(cat) { for (let index = 0; index < CONFIG.length; index++) { const section = CONFIG[index]; if (section.slug === cat) { return section.title } } return undefined } function fieldTitleFromSlug(slug) { const fields = CONFIG.reduce( (prev, section) => { const el = prev.concat( section.fields.filter( (field: any) => field.slug === slug // TODO: remove any ) ) return el }, [] ) if (fields.length === 1 && fields[0].title) { return fields[0].title } else { console.error('Expected single match, got', fields) } } export default MultiEdit;