2017-02-28 21:32:23 +00:00
|
|
|
import React, {PureComponent, PropTypes} from 'react';
|
2017-03-03 01:44:07 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
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-03-03 01:44:07 +00:00
|
|
|
@autobind
|
2017-02-28 21:32:23 +00:00
|
|
|
class FileInputButton extends PureComponent {
|
2017-02-28 06:26:24 +00:00
|
|
|
focus () {
|
|
|
|
this._button.focus();
|
|
|
|
}
|
|
|
|
|
2017-04-07 18:10:15 +00:00
|
|
|
focusEnd () {
|
|
|
|
this._button.focus();
|
|
|
|
}
|
|
|
|
|
2017-03-03 01:44:07 +00:00
|
|
|
_setRef (n) {
|
|
|
|
this._button = n;
|
|
|
|
}
|
2017-02-28 06:26:24 +00:00
|
|
|
|
2017-03-03 01:44:07 +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 => {
|
2017-05-12 23:52:23 +00:00
|
|
|
// Only change the file if a new file was selected
|
2016-11-22 22:26:52 +00:00
|
|
|
if (!paths || paths.length === 0) {
|
2017-05-12 23:52:23 +00:00
|
|
|
return;
|
2016-11-22 22:26:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const path = paths[0];
|
|
|
|
this.props.onChange(path);
|
2017-03-03 20:09:08 +00:00
|
|
|
});
|
2017-03-03 01:44:07 +00:00
|
|
|
}
|
2016-11-22 22:26:52 +00:00
|
|
|
|
|
|
|
render () {
|
2017-06-09 21:42:19 +00:00
|
|
|
const {showFileName, showFileIcon, 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-03-28 22:45:23 +00:00
|
|
|
<button type="button"
|
|
|
|
ref={this._setRef}
|
|
|
|
onClick={this._handleChooseFile}
|
2017-06-10 02:18:33 +00:00
|
|
|
title={path}
|
2017-03-28 22:45:23 +00:00
|
|
|
{...extraProps}>
|
2017-06-09 21:42:19 +00:00
|
|
|
{showFileIcon && <i className="fa fa-file-o space-right"/>}
|
2017-02-28 06:26:24 +00:00
|
|
|
{showFileName && fileName ? `${fileName}` : `Choose ${name || 'File'}`}
|
2016-11-23 19:33:24 +00:00
|
|
|
</button>
|
2017-03-03 20:09:08 +00:00
|
|
|
);
|
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,
|
2017-06-09 21:42:19 +00:00
|
|
|
showFileIcon: PropTypes.bool,
|
2017-03-03 20:09:08 +00:00
|
|
|
name: PropTypes.string
|
2016-11-22 22:26:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default FileInputButton;
|