about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/compose/components/upload_button.js
blob: 06b2904677f37bad2d82fb7d498a32bc9f354b5c (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import React from 'react';
import IconButton from '../../../components/icon_button';
import PropTypes from 'prop-types';
import { defineMessages, injectIntl } from 'react-intl';
import { connect } from 'react-redux';

const messages = defineMessages({
  upload: { id: 'upload_button.label', defaultMessage: 'Add media' }
});

const makeMapStateToProps = () => {
  const mapStateToProps = (state, props) => ({
    acceptContentTypes: state.getIn(['media_attachments', 'accept_content_types']).toArray(),
  });

  return mapStateToProps;
}

const iconStyle = {
  height: null,
  lineHeight: '27px'
}

class UploadButton extends React.PureComponent {

  constructor (props, context) {
    super(props, context);
    this.handleChange = this.handleChange.bind(this);
    this.handleClick = this.handleClick.bind(this);
    this.setRef = this.setRef.bind(this);
  }

  handleChange (e) {
    if (e.target.files.length > 0) {
      this.props.onSelectFile(e.target.files);
    }
  }

  handleClick () {
    this.fileElement.click();
  }

  setRef (c) {
    this.fileElement = c;
  }

  render () {

    const { intl, resetFileKey, disabled, acceptContentTypes } = this.props;

    return (
      <div className='compose-form__upload-button'>
        <IconButton icon='camera' title={intl.formatMessage(messages.upload)} disabled={disabled} onClick={this.handleClick} className='compose-form__upload-button-icon' size={18} inverted style={iconStyle}/>
        <input
          key={resetFileKey}
          ref={this.setRef}
          type='file'
          multiple={false}
          accept={ acceptContentTypes.join(',')}
          onChange={this.handleChange}
          disabled={disabled}
          style={{ display: 'none' }}
        />
      </div>
    );
  }

}

UploadButton.propTypes = {
  disabled: PropTypes.bool,
  onSelectFile: PropTypes.func.isRequired,
  style: PropTypes.object,
  resetFileKey: PropTypes.number,
  acceptContentTypes: PropTypes.arrayOf(PropTypes.string).isRequired,
  intl: PropTypes.object.isRequired
};

export default connect(makeMapStateToProps)(injectIntl(UploadButton));