aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/UploadButton.js
blob: 5dfa7a1d7e7325369da46f1e9a200e6246ead77e (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 React from 'react';
import PropTypes from 'prop-types';

import Icon from './Icon';

export default class UploadButton extends React.Component {
    constructor(props) {
        super(props);
    }
    openfile = () => {
        const input = this.props.inputRef.current;
        if (this.props.value) {
            this.props.onChange('');
        } else {
            input.click();
        }
    }
    attachmentChanged = (event) => {
        this.props.onChange(event.target.value);
    }
    render() {
        return (
            <div style={this.props.value ? activeStyle : inactiveStyle}
                onClick={this.openfile}>
                <Icon name="ei-camera" size="s" />
                <input type="file" accept="image/jpeg,image/png" onClick={e => e.stopPropagation()}
                    style={{ display: 'none' }} ref={this.props.inputRef} value={this.props.value}
                    onChange={this.attachmentChanged} />
            </div>
        );
    }
}

UploadButton.propTypes = {
    value: PropTypes.string.isRequired,
    onChange: PropTypes.func.isRequired,
    inputRef: PropTypes.shape({ current: PropTypes.instanceOf(Element) })
};

const inactiveStyle = {
    cursor: 'pointer',
    color: '#888'
};
const activeStyle = {
    cursor: 'pointer',
    color: 'green'
};