about summary refs log tree commit diff
path: root/app/assets/javascripts/components/components/composer_drawer.jsx
blob: 7b742f64e763e33edf313e70ece2dcd8dfabbe30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import CharacterCounter from './character_counter';
import Button           from './button';
import { publish }      from '../actions/statuses';

const ComposerDrawer = React.createClass({

  propTypes: {
    onSubmit: React.PropTypes.func.isRequired
  },

  getInitialState() {
    return {
      text: ''
    };
  },

  handleChange (e) {
    this.setState({ text: e.target.value });
  },

  handleKeyUp (e) {
    if (e.keyCode === 13 && e.ctrlKey) {
      this.handleSubmit();
    }
  },

  handleSubmit () {
    this.props.onSubmit(this.state.text, null);
    this.setState({ text: '' });
  },

  render () {
    return (
      <div style={{ width: '230px', background: '#454b5e', margin: '10px 0', padding: '10px' }}>
        <textarea placeholder='What is on your mind?' value={this.state.text} onKeyUp={this.handleKeyUp} onChange={this.handleChange} style={{ display: 'block', boxSizing: 'border-box', width: '100%', height: '100px', background: '#fff', resize: 'none', border: 'none', color: '#282c37', padding: '10px', fontFamily: 'Roboto', fontSize: '14px' }} />

        <div style={{ marginTop: '10px', overflow: 'hidden' }}>
          <div style={{ float: 'right' }}><Button text='Publish' onClick={this.handleSubmit} /></div>
          <div style={{ float: 'right', marginRight: '16px', lineHeight: '36px' }}><CharacterCounter text={this.state.text} /></div>
        </div>
      </div>
    );
  }

});

export default ComposerDrawer;