2016-11-22 22:26:52 +00:00
|
|
|
import React, {Component, 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';
|
|
|
|
|
|
|
|
class FileInputButton extends Component {
|
|
|
|
_handleChooseFile () {
|
|
|
|
const options = {
|
|
|
|
title: 'Import File',
|
|
|
|
buttonLabel: 'Import',
|
|
|
|
properties: ['openFile']
|
|
|
|
};
|
|
|
|
|
|
|
|
remote.dialog.showOpenDialog(options, async paths => {
|
|
|
|
if (!paths || paths.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = paths[0];
|
|
|
|
this.props.onChange(path);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2016-11-23 19:33:24 +00:00
|
|
|
const {showFileName, path, ...extraProps} = this.props;
|
|
|
|
const fileName = pathBasename(path);
|
2016-11-22 22:26:52 +00:00
|
|
|
return (
|
2016-11-23 19:33:24 +00:00
|
|
|
<button onClick={e => this._handleChooseFile()} {...extraProps}>
|
|
|
|
{showFileName && fileName ? `${fileName}`: 'Choose File'}
|
|
|
|
</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-22 22:26:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default FileInputButton;
|