insomnia/app/ui/components/base/FileInputButton.js

44 lines
1014 B
JavaScript
Raw Normal View History

2016-11-22 22:26:52 +00:00
import React, {Component, PropTypes} from 'react';
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 () {
const {showFileName, path, ...extraProps} = this.props;
const fileName = pathBasename(path);
2016-11-22 22:26:52 +00:00
return (
<button onClick={e => this._handleChooseFile()} {...extraProps}>
{showFileName && fileName ? `${fileName}`: 'Choose File'}
</button>
2016-11-22 22:26:52 +00:00
)
}
}
FileInputButton.propTypes = {
// Required
2016-11-22 22:26:52 +00:00
onChange: PropTypes.func.isRequired,
path: PropTypes.string.isRequired,
// Optional
showFileName: PropTypes.bool,
2016-11-22 22:26:52 +00:00
};
export default FileInputButton;