Make text editor's controller accessible

This commit is contained in:
Toby Zerner 2015-05-14 22:12:35 +09:30
parent 6e6f81b6ff
commit a8d762abff

View File

@ -11,6 +11,14 @@ export default class ComposerBody extends Component {
this.loading = m.prop(false);
this.disabled = m.prop(false);
this.content = m.prop(this.props.originalContent);
this.editor = new TextEditor({
submitLabel: this.props.submitLabel,
placeholder: this.props.placeholder,
disabled: this.loading(),
onchange: this.content,
onsubmit: this.onsubmit.bind(this),
value: this.content()
});
}
view() {
@ -18,14 +26,7 @@ export default class ComposerBody extends Component {
avatar(this.props.user, {className: 'composer-avatar'}),
m('div.composer-body', [
m('ul.composer-header', listItems(this.headerItems().toArray())),
m('div.composer-editor', TextEditor.component({
submitLabel: this.props.submitLabel,
placeholder: this.props.placeholder,
disabled: this.loading(),
onchange: this.content,
onsubmit: this.onsubmit.bind(this),
value: this.content()
}))
m('div.composer-editor', this.editor.view())
]),
LoadingIndicator.component({className: 'composer-loading'+(this.loading() ? ' active' : '')})
]);