Markdown editor switching

This commit is contained in:
Cássio Zen
2016-08-11 18:21:32 -03:00
parent 994d969247
commit 474abd8f78
4 changed files with 81 additions and 7 deletions

14
src/reducers/editor.js Normal file
View File

@ -0,0 +1,14 @@
import { Map } from 'immutable';
import { SWITCH_VISUAL_MODE } from '../actions/editor';
const editor = (state = Map({ useVisualMode: true }), action) => {
switch (action.type) {
case SWITCH_VISUAL_MODE:
return Map({ useVisualMode: action.payload });
default:
return state;
}
};
export default editor;

View File

@ -1,5 +1,6 @@
import auth from './auth';
import config from './config';
import editor from './editor';
import entries, * as fromEntries from './entries';
import entryDraft from './entryDraft';
import collections from './collections';
@ -9,6 +10,7 @@ const reducers = {
auth,
config,
collections,
editor,
entries,
entryDraft,
medias