aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/ui/UploadButton.js
blob: b652e5222845caf610930c741edc7c961b0e5c12 (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
import Icon from './Icon';

/**
 * @typedef {object} UploadButtonProps
 * @property {string} value
 * @property {import('react').MutableRefObject<HTMLInputElement>} inputRef
 * @property {Function} onChange
 */

/**
 * Upload button
 * @param {UploadButtonProps} props
 */
export default function UploadButton(props) {
    let openfile = () => {
        const input = props.inputRef.current;
        if (props.value) {
            props.onChange('');
        } else {
            input.click();
        }
    };

    /**
     * @param {import('react').ChangeEvent<HTMLInputElement>} event
     */
    let attachmentChanged = (event) => {
        props.onChange(event.target.value);
    };
    return (
        <div style={props.value ? activeStyle : inactiveStyle}
            onClick={openfile}>
            <Icon name="ei-camera" size="s" />
            <input type="file" accept="image/jpeg,image/png" onClick={e => e.stopPropagation()}
                style={{ display: 'none' }} ref={props.inputRef} value={props.value}
                onChange={attachmentChanged} />
        </div>
    );
}

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