2017-02-28 21:32:23 +00:00
|
|
|
import React, {PureComponent, PropTypes} from 'react';
|
2016-11-23 19:33:24 +00:00
|
|
|
import {basename as pathBasename} from 'path';
|
2016-11-22 22:26:52 +00:00
|
|
|
import {remote} from 'electron';
|
|
|
|
|
2017-02-28 21:32:23 +00:00
|
|
|
class FileInputButton extends PureComponent {
|
2017-02-28 06:26:24 +00:00
|
|
|
focus () {
|
|
|
|
this._button.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
_setRef = n => this._button = n;
|
|
|
|
|
2016-11-29 22:28:55 +00:00
|
|
|
_handleChooseFile = () => {
|
2016-11-22 22:26:52 +00:00
|
|
|
const options = {
|
|
|
|
title: 'Import File',
|
|
|
|
buttonLabel: 'Import',
|
|
|
|
properties: ['openFile']
|
|
|
|
};
|
|
|
|
|
|
|
|
remote.dialog.showOpenDialog(options, async paths => {
|
|
|
|
if (!paths || paths.length === 0) {
|
2016-11-29 20:55:31 +00:00
|
|
|
// Cancelling will clear the value
|
|
|
|
this.props.onChange('');
|
2016-11-22 22:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const path = paths[0];
|
|
|
|
this.props.onChange(path);
|
|
|
|
})
|
2016-11-29 22:28:55 +00:00
|
|
|
};
|
2016-11-22 22:26:52 +00:00
|
|
|
|
|
|
|
render () {
|
2016-11-29 20:55:31 +00:00
|
|
|
const {showFileName, path, name, ...extraProps} = this.props;
|
2016-11-23 19:33:24 +00:00
|
|
|
const fileName = pathBasename(path);
|
2016-11-22 22:26:52 +00:00
|
|
|
return (
|
2017-02-28 06:26:24 +00:00
|
|
|
<button type="button" ref={this._setRef} onClick={this._handleChooseFile} {...extraProps}>
|
|
|
|
{showFileName && fileName ? `${fileName}` : `Choose ${name || 'File'}`}
|
2016-11-23 19:33:24 +00:00
|
|
|
</button>
|
2016-11-22 22:26:52 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FileInputButton.propTypes = {
|
2016-11-23 19:33:24 +00:00
|
|
|
// Required
|
2016-11-22 22:26:52 +00:00
|
|
|
onChange: PropTypes.func.isRequired,
|
|
|
|
path: PropTypes.string.isRequired,
|
2016-11-23 19:33:24 +00:00
|
|
|
|
|
|
|
// Optional
|
|
|
|
showFileName: PropTypes.bool,
|
2016-11-29 20:55:31 +00:00
|
|
|
name: PropTypes.string,
|
2016-11-22 22:26:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default FileInputButton;
|