mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 17:56:25 +00:00
177 lines
4.8 KiB
JavaScript
177 lines
4.8 KiB
JavaScript
import React, { PropTypes } from 'react'
|
|
import CSSModules from 'browser/lib/CSSModules'
|
|
import styles from './MarkdownEditor.styl'
|
|
import CodeEditor from 'browser/components/CodeEditor'
|
|
import MarkdownPreview from 'browser/components/MarkdownPreview'
|
|
|
|
class MarkdownEditor extends React.Component {
|
|
constructor (props) {
|
|
super(props)
|
|
|
|
this.state = {
|
|
status: 'PREVIEW'
|
|
}
|
|
}
|
|
|
|
componentDidMount () {
|
|
this.value = this.refs.code.value
|
|
}
|
|
|
|
componentDidUpdate () {
|
|
this.value = this.refs.code.value
|
|
}
|
|
|
|
handleChange (e) {
|
|
this.value = this.refs.code.value
|
|
this.props.onChange(e)
|
|
}
|
|
|
|
handleContextMenu (e) {
|
|
let { config } = this.props
|
|
if (config.editor.switchPreview === 'RIGHTCLICK') {
|
|
let newStatus = this.state.status === 'PREVIEW'
|
|
? 'CODE'
|
|
: 'PREVIEW'
|
|
this.setState({
|
|
status: newStatus
|
|
}, () => {
|
|
if (newStatus === 'CODE') {
|
|
this.refs.code.focus()
|
|
} else {
|
|
this.refs.code.blur()
|
|
this.refs.preview.focus()
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
handleBlur (e) {
|
|
let { config } = this.props
|
|
if (config.editor.switchPreview === 'BLUR') {
|
|
let cursorPosition = this.refs.code.editor.getCursor()
|
|
this.setState({
|
|
status: 'PREVIEW'
|
|
}, () => {
|
|
this.refs.preview.focus()
|
|
this.refs.preview.scrollTo(cursorPosition.line)
|
|
})
|
|
}
|
|
}
|
|
|
|
handlePreviewMouseDown (e) {
|
|
this.previewMouseDownedAt = new Date()
|
|
}
|
|
|
|
handlePreviewMouseUp (e) {
|
|
let { config } = this.props
|
|
if (config.editor.switchPreview === 'BLUR' && new Date() - this.previewMouseDownedAt < 200) {
|
|
this.setState({
|
|
status: 'CODE'
|
|
}, () => {
|
|
this.refs.code.focus()
|
|
})
|
|
}
|
|
}
|
|
|
|
handleCheckboxClick (e) {
|
|
e.preventDefault()
|
|
e.stopPropagation()
|
|
let idMatch = /checkbox-([0-9]+)/
|
|
let checkedMatch = /\[x\]/i
|
|
let uncheckedMatch = /\[ \]/
|
|
if (idMatch.test(e.target.getAttribute('id'))) {
|
|
let lineIndex = parseInt(e.target.getAttribute('id').match(idMatch)[1], 10) - 1
|
|
let lines = this.refs.code.value
|
|
.split('\n')
|
|
|
|
let targetLine = lines[lineIndex]
|
|
|
|
if (targetLine.match(checkedMatch)) {
|
|
lines[lineIndex] = targetLine.replace(checkedMatch, '[ ]')
|
|
}
|
|
if (targetLine.match(uncheckedMatch)) {
|
|
lines[lineIndex] = targetLine.replace(uncheckedMatch, '[x]')
|
|
}
|
|
this.refs.code.setValue(lines.join('\n'))
|
|
}
|
|
}
|
|
|
|
focus () {
|
|
if (this.state.status === 'PREVIEW') {
|
|
this.setState({
|
|
status: 'CODE'
|
|
}, () => {
|
|
this.refs.code.focus()
|
|
})
|
|
} else {
|
|
this.refs.code.focus()
|
|
}
|
|
}
|
|
|
|
reload () {
|
|
this.refs.code.reload()
|
|
}
|
|
|
|
render () {
|
|
let { className, value, config } = this.props
|
|
let editorFontSize = parseInt(config.editor.fontSize, 10)
|
|
if (!(editorFontSize > 0 && editorFontSize < 101)) editorFontSize = 14
|
|
let editorIndentSize = parseInt(config.editor.indentSize, 10)
|
|
if (!(editorFontSize > 0 && editorFontSize < 132)) editorIndentSize = 4
|
|
|
|
let previewStyle = {}
|
|
if (this.props.ignorePreviewPointerEvents) previewStyle.pointerEvents = 'none'
|
|
|
|
return (
|
|
<div className={className == null
|
|
? 'MarkdownEditor'
|
|
: `MarkdownEditor ${className}`
|
|
}
|
|
onContextMenu={(e) => this.handleContextMenu(e)}
|
|
tabIndex='-1'
|
|
>
|
|
<CodeEditor styleName='codeEditor'
|
|
ref='code'
|
|
mode='markdown'
|
|
value={value}
|
|
theme={config.editor.theme}
|
|
fontFamily={config.editor.fontFamily}
|
|
fontSize={editorFontSize}
|
|
indentType={config.editor.indentType}
|
|
indentSize={editorIndentSize}
|
|
onChange={(e) => this.handleChange(e)}
|
|
onBlur={(e) => this.handleBlur(e)}
|
|
/>
|
|
<MarkdownPreview styleName={this.state.status === 'PREVIEW'
|
|
? 'preview'
|
|
: 'preview--hide'
|
|
}
|
|
style={previewStyle}
|
|
theme={config.ui.theme}
|
|
fontSize={config.preview.fontSize}
|
|
fontFamily={config.preview.fontFamily}
|
|
codeBlockTheme={config.preview.codeBlockTheme}
|
|
codeBlockFontFamily={config.editor.fontFamily}
|
|
lineNumber={config.preview.lineNumber}
|
|
ref='preview'
|
|
onContextMenu={(e) => this.handleContextMenu(e)}
|
|
tabIndex='0'
|
|
value={value}
|
|
onMouseUp={(e) => this.handlePreviewMouseUp(e)}
|
|
onMouseDown={(e) => this.handlePreviewMouseDown(e)}
|
|
onCheckboxClick={(e) => this.handleCheckboxClick(e)}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
MarkdownEditor.propTypes = {
|
|
className: PropTypes.string,
|
|
value: PropTypes.string,
|
|
onChange: PropTypes.func,
|
|
ignorePreviewPointerEvents: PropTypes.bool
|
|
}
|
|
|
|
export default CSSModules(MarkdownEditor, styles)
|