-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathFileEditor.react.js
89 lines (78 loc) · 2.45 KB
/
FileEditor.react.js
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
80
81
82
83
84
85
86
87
88
89
/*
* Copyright (c) 2016-present, Parse, LLC
* All rights reserved.
*
* This source code is licensed under the license found in the LICENSE file in
* the root directory of this source tree.
*/
import hasAncestor from 'lib/hasAncestor';
import Parse from 'parse';
import React from 'react';
import styles from 'components/FileEditor/FileEditor.scss';
export default class FileEditor extends React.Component {
constructor(props) {
super();
this.state = {
value: props.value
};
this.checkExternalClick = this.checkExternalClick.bind(this);
this.handleKey = this.handleKey.bind(this);
this.removeFile = this.removeFile.bind(this);
this.inputRef = React.createRef();
this.fileInputRef = React.createRef();
}
componentDidMount() {
document.body.addEventListener('click', this.checkExternalClick);
document.body.addEventListener('keypress', this.handleKey);
let fileInputElement = document.getElementById('fileInput');
if (fileInputElement) {
fileInputElement.click();
}
}
componentWillUnmount() {
document.body.removeEventListener('click', this.checkExternalClick);
document.body.removeEventListener('keypress', this.handleKey);
}
checkExternalClick(e) {
const { onCancel } = this.props;
if (!hasAncestor(e.target, this.inputRef.current) && onCancel) {
onCancel();
}
}
handleKey(e) {
const { onCancel } = this.props;
if (e.keyCode === 13 && onCancel) {
onCancel();
}
}
getBase64(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => resolve(reader.result);
reader.onerror = error => reject(error);
});
}
removeFile() {
this.fileInputRef.current.value = '';
this.props.onCommit(undefined);
}
async handleChange(e) {
let file = e.target.files[0];
if (file) {
let base64 = await this.getBase64(file);
this.props.onCommit(new Parse.File(file.name, { base64 }));
}
}
render() {
const file = this.props.value;
return (
<div ref={this.inputRef} style={{ minWidth: this.props.width, display: 'none' }} className={styles.editor}>
<a className={styles.upload}>
<input ref={this.fileInputRef} id='fileInput' type='file' onChange={this.handleChange.bind(this)} accept={this.props.accept} />
<span>{file ? 'Replace file' : 'Upload file'}</span>
</a>
</div>
);
}
}