2496ec09a4
* Files based collections skeleton * listing file based cards * create new entry with collection * moved lookupEntry to main backend * Editing single page Collections file * List widget basic implementation * Adjustments for test-repo * check if value exists before trying to iterate over
70 lines
1.9 KiB
JavaScript
70 lines
1.9 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import { ScrollSync, ScrollSyncPane } from '../ScrollSync';
|
|
import ControlPane from '../ControlPanel/ControlPane';
|
|
import PreviewPane from '../PreviewPane/PreviewPane';
|
|
import Toolbar from './EntryEditorToolbar';
|
|
import styles from './EntryEditor.css';
|
|
|
|
export default function EntryEditor(
|
|
{
|
|
collection,
|
|
entry,
|
|
fields,
|
|
getMedia,
|
|
onChange,
|
|
onAddMedia,
|
|
onRemoveMedia,
|
|
onPersist,
|
|
onCancelEdit,
|
|
}) {
|
|
return (
|
|
<div className={styles.root}>
|
|
<ScrollSync>
|
|
<div className={styles.container}>
|
|
<ScrollSyncPane>
|
|
<div className={styles.controlPane}>
|
|
<ControlPane
|
|
collection={collection}
|
|
entry={entry}
|
|
fields={fields}
|
|
getMedia={getMedia}
|
|
onChange={onChange}
|
|
onAddMedia={onAddMedia}
|
|
onRemoveMedia={onRemoveMedia}
|
|
/>
|
|
</div>
|
|
</ScrollSyncPane>
|
|
<div className={styles.previewPane}>
|
|
<PreviewPane
|
|
collection={collection}
|
|
entry={entry}
|
|
fields={fields}
|
|
getMedia={getMedia}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</ScrollSync>
|
|
<div className={styles.footer}>
|
|
<Toolbar
|
|
isPersisting={entry.get('isPersisting')}
|
|
onPersist={onPersist}
|
|
onCancelEdit={onCancelEdit}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
EntryEditor.propTypes = {
|
|
collection: ImmutablePropTypes.map.isRequired,
|
|
entry: ImmutablePropTypes.map.isRequired,
|
|
fields: ImmutablePropTypes.list.isRequired,
|
|
getMedia: PropTypes.func.isRequired,
|
|
onAddMedia: PropTypes.func.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
onPersist: PropTypes.func.isRequired,
|
|
onRemoveMedia: PropTypes.func.isRequired,
|
|
onCancelEdit: PropTypes.func.isRequired,
|
|
};
|