mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
6a136bd76a
* Add multi-part form support * tests for form and multipart * Better Analytics Tracking
44 lines
1014 B
JavaScript
44 lines
1014 B
JavaScript
import React, {Component, PropTypes} from 'react';
|
|
import {basename as pathBasename} from 'path';
|
|
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);
|
|
return (
|
|
<button onClick={e => this._handleChooseFile()} {...extraProps}>
|
|
{showFileName && fileName ? `${fileName}`: 'Choose File'}
|
|
</button>
|
|
)
|
|
}
|
|
}
|
|
|
|
FileInputButton.propTypes = {
|
|
// Required
|
|
onChange: PropTypes.func.isRequired,
|
|
path: PropTypes.string.isRequired,
|
|
|
|
// Optional
|
|
showFileName: PropTypes.bool,
|
|
};
|
|
|
|
export default FileInputButton;
|