A bit of refactoring

This commit is contained in:
jos 2017-01-08 20:51:08 +01:00
parent 6f1fbac9ac
commit ba1eb2a837
2 changed files with 17 additions and 17 deletions

View File

@ -30,10 +30,6 @@ export default class ModeMenu extends Component {
}
handleClick = () => {
// we trigger the onChangeMode on the next tick, after the click event
// has been finished. This is a workaround for preact not neatly replacing
// a rendered app whilst the event is still being handled.
setTimeout(() => {
try {
this.props.onRequestClose()
this.props.onChangeMode(mode)
@ -41,7 +37,6 @@ export default class ModeMenu extends Component {
catch (err) {
this.props.onError(err)
}
})
}
componentDidMount () {

View File

@ -179,6 +179,10 @@ function jsoneditor (container, options = {}) {
}
function handleChangeMode (mode) {
// we execute editor.setMode on the next tick, after the click event
// has been finished. This is a workaround for preact which does not
// neatly replace a rendered app whilst the event is still being handled.
setTimeout(() => {
const prevMode = editor._mode
editor.setMode(mode)
@ -186,6 +190,7 @@ function jsoneditor (container, options = {}) {
if (editor._options.onChangeMode) {
editor._options.onChangeMode(mode, prevMode)
}
})
}
function handleError (err) {