import React, { PropTypes } from 'react' import ReactDOM from 'react-dom' import MarkdownPreview from 'browser/components/MarkdownPreview' import CodeEditor from 'browser/components/CodeEditor' import activityRecord from 'browser/lib/activityRecord' export const PREVIEW_MODE = 'PREVIEW_MODE' export const EDIT_MODE = 'EDIT_MODE' export default class ArticleEditor extends React.Component { constructor (props) { super(props) this.isMouseDown = false this.state = { status: PREVIEW_MODE, cursorPosition: null, firstVisibleRow: null } } componentWillReceiveProps (nextProps) { if (nextProps.article.key !== this.props.article.key) { this.setState({ content: this.props.article.content }) } } resetCursorPosition () { this.setState({ cursorPosition: null, firstVisibleRow: null }, function () { let previewEl = ReactDOM.findDOMNode(this.refs.preview) if (previewEl) previewEl.scrollTop = 0 }) } switchPreviewMode () { let cursorPosition = this.refs.editor.getCursorPosition() let firstVisibleRow = this.refs.editor.getFirstVisibleRow() this.setState({ status: PREVIEW_MODE, cursorPosition, firstVisibleRow }, function () { let previewEl = ReactDOM.findDOMNode(this.refs.preview) let anchors = previewEl.querySelectorAll('.lineAnchor') for (let i = 0; i < anchors.length; i++) { if (parseInt(anchors[i].dataset.key, 10) > cursorPosition.row || i === anchors.length - 1) { var targetAnchor = anchors[i > 0 ? i - 1 : 0] previewEl.scrollTop = targetAnchor.offsetTop - 100 break } } }) } switchEditMode () { this.setState({ status: EDIT_MODE }, function () { if (this.state.cursorPosition != null) { this.refs.editor.moveCursorTo(this.state.cursorPosition.row, this.state.cursorPosition.column) this.refs.editor.scrollToLine(this.state.firstVisibleRow) } this.refs.editor.editor.focus() activityRecord.emit('ARTICLE_UPDATE', this.props.article) }) } handlePreviewMouseDown (e) { if (e.button === 2) return true this.isDrag = false this.isMouseDown = true this.moveCount = 0 } handlePreviewMouseMove () { if (this.isMouseDown) { this.moveCount++ if (this.moveCount > 5) { this.isDrag = true } } } handlePreviewMouseUp () { this.isMouseDown = false this.moveCount = 0 if (!this.isDrag) { this.switchEditMode() } } handleBlurCodeEditor (e) { let isWindowBlurred = e.relatedTarget === null let isFocusingToThis = e.relatedTarget === ReactDOM.findDOMNode(this) let isFocusingToSearch = e.relatedTarget.className === 'ace_search_field' if (isWindowBlurred || isFocusingToThis) { e.preventDefault() return } if (isFocusingToSearch) { e.preventDefault() return } let { article } = this.props if (article.mode === 'markdown') { this.switchPreviewMode() } } handleCodeEditorChange (value) { this.props.onChange(value) } render () { let { article } = this.props let showPreview = article.mode === 'markdown' && this.state.status === PREVIEW_MODE if (showPreview) { return (