lbry-desktop/ui/component/common/file-selector.jsx

86 lines
2.1 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
2019-02-22 06:01:59 +01:00
import * as React from 'react';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
2019-02-13 17:27:20 +01:00
import { FormField } from 'component/common/form';
2018-10-13 17:49:47 +02:00
2018-03-26 23:32:43 +02:00
type Props = {
type: string,
currentPath?: ?string,
onFileChosen: WebFile => void,
label?: string,
placeholder?: string,
2018-07-18 17:46:21 +02:00
fileLabel?: string,
2018-06-08 06:05:45 +02:00
directoryLabel?: string,
accept?: string,
error?: string,
disabled?: boolean,
2018-03-26 23:32:43 +02:00
};
class FileSelector extends React.PureComponent<Props> {
static defaultProps = {
type: 'file',
};
2019-09-27 18:22:15 +02:00
fileInput: React.ElementRef<any>;
2019-02-22 06:01:59 +01:00
2018-03-26 23:32:43 +02:00
constructor() {
super();
2019-02-22 06:01:59 +01:00
this.fileInput = React.createRef();
this.handleFileInputSelection = this.handleFileInputSelection.bind(this);
this.fileInputButton = this.fileInputButton.bind(this);
2018-03-26 23:32:43 +02:00
}
handleFileInputSelection = () => {
2019-09-27 18:22:15 +02:00
const { files } = this.fileInput.current;
if (!files) {
return;
}
const file = files[0];
2019-09-27 18:22:15 +02:00
if (this.props.onFileChosen) {
this.props.onFileChosen(file);
2019-09-27 18:22:15 +02:00
}
};
fileInputButton = () => {
this.fileInput.current.click();
};
2019-02-22 06:01:59 +01:00
2018-03-26 23:32:43 +02:00
input: ?HTMLInputElement;
render() {
const { type, currentPath, label, fileLabel, directoryLabel, placeholder, accept, error, disabled } = this.props;
2018-04-02 15:59:23 +02:00
const buttonLabel = type === 'file' ? fileLabel || __('Choose File') : directoryLabel || __('Choose Directory');
const placeHolder = currentPath || placeholder;
2018-03-26 23:32:43 +02:00
return (
2019-02-22 06:01:59 +01:00
<React.Fragment>
<FormField
label={label}
2019-03-18 06:06:41 +01:00
webkitdirectory="true"
className="form-field--copyable"
error={error}
disabled={disabled}
2019-03-18 06:06:41 +01:00
type="text"
readOnly="readonly"
value={placeHolder || __('Choose a file')}
inputButton={
<Button button="primary" disabled={disabled} onClick={this.fileInputButton} label={buttonLabel} />
}
/>
<input
type={'file'}
style={{ display: 'none' }}
accept={accept}
ref={this.fileInput}
onChange={() => this.handleFileInputSelection()}
webkitdirectory={type === 'openDirectory' ? 'True' : null}
2019-02-22 06:01:59 +01:00
/>
</React.Fragment>
2018-03-26 23:32:43 +02:00
);
}
}
export default FileSelector;