joyce/src/containers/editorPageContainer.js

89 lines
2.8 KiB
JavaScript

import React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
import { EditorState } from 'draft-js'
import actions from '../actions'
import Content from '../components/content'
import { EditorWelcome } from '../components/welcome'
import LoadingSpinner from '../components/loadingSpinner'
import EditorSidebarContainer from './editorSidebarContainer'
import EditorContentContainer from './editorContentContainer'
import DeleteConfirmModal from '../components/deleteConfirmModal'
import AnnotationModal from '../components/annotationModal'
import ChooseAnnotationModal from '../components/chooseAnnotationModal'
const EditorPage = ({
notes,
currentDocument,
annotationNote,
editorState,
docType,
loadingToggle,
onDeleteConfirm,
onSubmitAnnotationClick,
selectAnnotationNote,
selectionState,
}) =>
<div id='joyce_reader' className='container-fluid'>
<div className="row">
<EditorSidebarContainer />
<Content>
{loadingToggle === true &&
<LoadingSpinner size={4} />
}
{(Object.keys(currentDocument).length > 0 && loadingToggle === false) &&
<EditorContentContainer />
}
{(Object.keys(currentDocument).length === 0 && loadingToggle === false) &&
<EditorWelcome />
}
</Content>
</div>
<DeleteConfirmModal onDeleteConfirm={()=>onDeleteConfirm(currentDocument.id, docType)}/>
<AnnotationModal annotationNote={annotationNote} />
<ChooseAnnotationModal notes={notes} annotationNote={annotationNote} onSubmitClick={()=>onSubmitAnnotationClick(annotationNote, selectionState, editorState)} selectAnnotationNote={selectAnnotationNote} />
</div>
const mapStateToProps = state => {
return {
notes: state.notes,
currentDocument: state.currentDocument,
annotationNote: state.annotationNote,
editorState: state.editorState,
selectionState: state.selectionState,
docType: state.docType,
loadingToggle: state.loadingToggle,
}
}
const mapDispatchToProps = dispatch => {
return {
onDeleteConfirm: (id, docType) => {
dispatch(actions.deleteCurrentDocument(id, docType))
},
selectAnnotationNote: id => {
dispatch(actions.selectAnnotationNote(id))
},
onSubmitAnnotationClick: (annotationNote, selectionState, editorState) => {
dispatch(actions.submitAnnotation(annotationNote, selectionState, editorState))
}
}
}
EditorPage.propTypes = {
notes: PropTypes.arrayOf(PropTypes.object),
currentDocument: PropTypes.object,
annotationNote: PropTypes.object,
editorState: PropTypes.object,
selectionState: PropTypes.object,
docType: PropTypes.string,
loadingToggle: PropTypes.bool,
onDeleteConfirm: PropTypes.func,
onSubmitAnnotationClick: PropTypes.func,
selectAnnotationNote: PropTypes.func,
}
const EditorPageContainer = connect(mapStateToProps, mapDispatchToProps)(EditorPage)
export default EditorPageContainer