diff --git a/package.json b/package.json index cc08980b38..84b949fa0f 100644 --- a/package.json +++ b/package.json @@ -194,6 +194,7 @@ "qs": "^6.1.0", "react": "^16.3.2", "react-copy-to-clipboard": "^5.0.0", + "react-coroutine": "^2.0.2", "react-dom": "^16.0.0", "react-draggable": "^3.0.3", "react-ga": "^2.5.0", @@ -201,6 +202,7 @@ "react-onclickoutside": "^6.5.0", "react-prevent-clickthrough": "^0.0.3", "react-redux": "^5.0.3", + "react-simplemde-editor": "^3.6.14", "reduce-reducers": "^0.1.2", "redux": "^3.6.0", "redux-actions": "^2.2.1", diff --git a/src/actions/index.js b/src/actions/index.js index 3998f368b8..11f4e9dd1e 100644 --- a/src/actions/index.js +++ b/src/actions/index.js @@ -33,6 +33,7 @@ import { toggleTopBarMenu, closeTopBarMenu, startEditingInstructions, + continueEditingInstructions, cancelEditingInstructions, } from './ui'; @@ -97,6 +98,7 @@ export { toggleTopBarMenu, closeTopBarMenu, startEditingInstructions, + continueEditingInstructions, cancelEditingInstructions, logIn, logOut, diff --git a/src/actions/ui.js b/src/actions/ui.js index dda3bb7c9b..5b976f4c9a 100644 --- a/src/actions/ui.js +++ b/src/actions/ui.js @@ -65,6 +65,11 @@ export const startEditingInstructions = createAction( (_projectKey, timestamp = Date.now()) => ({timestamp}), ); +export const continueEditingInstructions = createAction( + 'CONTINUE_EDITING_INSTRUCTIONS', + (projectKey, content) => ({projectKey, content}), +); + export const cancelEditingInstructions = createAction( 'CANCEL_EDITING_INSTRUCTIONS', ); diff --git a/src/components/Instructions.jsx b/src/components/Instructions.jsx index 050416f68c..c634ebb66c 100644 --- a/src/components/Instructions.jsx +++ b/src/components/Instructions.jsx @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import {toReact as markdownToReact} from '../util/markdown'; -import InstructionsEditor from './InstructionsEditor'; +import InstructionsEditor from './InstructionsEditorAsync'; export default function Instructions({ instructions, @@ -9,6 +9,7 @@ export default function Instructions({ isOpen, projectKey, onCancelEditing, + onContinueEditing, onSaveChanges, }) { if (!isEditing && !instructions || !isOpen) { @@ -25,6 +26,7 @@ export default function Instructions({ instructions={instructions} projectKey={projectKey} onCancelEditing={onCancelEditing} + onContinueEditing={onContinueEditing} onSaveChanges={onSaveChanges} /> :
@@ -41,5 +43,6 @@ Instructions.propTypes = { isOpen: PropTypes.bool.isRequired, projectKey: PropTypes.string.isRequired, onCancelEditing: PropTypes.func.isRequired, + onContinueEditing: PropTypes.func.isRequired, onSaveChanges: PropTypes.func.isRequired, }; diff --git a/src/components/InstructionsEditor.jsx b/src/components/InstructionsEditor.jsx index fcb7125f98..e2dcaad1eb 100644 --- a/src/components/InstructionsEditor.jsx +++ b/src/components/InstructionsEditor.jsx @@ -3,16 +3,17 @@ import PropTypes from 'prop-types'; import {t} from 'i18next'; import bindAll from 'lodash/bindAll'; +import SimpleMDE from 'react-simplemde-editor'; + export default class InstructionsEditor extends React.Component { constructor() { super(); - bindAll(this, '_handleCancelEditing', '_handleSaveChanges', '_ref'); - } - - componentDidMount() { - if (!this.props.instructions) { - this._editor.focus(); - } + bindAll( + this, + '_handleCancelEditing', + '_handleContinueEditing', + '_handleSaveChanges', + ); } _handleCancelEditing() { @@ -20,12 +21,11 @@ export default class InstructionsEditor extends React.Component { } _handleSaveChanges() { - const newValue = this._editor.value.trim(); - this.props.onSaveChanges(this.props.projectKey, newValue); + this.props.onSaveChanges(this.props.projectKey, this.props.instructions); } - _ref(editorElement) { - this._editor = editorElement; + _handleContinueEditing(newValue) { + this.props.onContinueEditing(this.props.projectKey, newValue); } render() { @@ -46,11 +46,13 @@ export default class InstructionsEditor extends React.Component {
-