mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 23:00:30 +00:00
2cdd4761c8
* Add digest auth and response timeline * Some css fixes * Fixed Button * More auth methods, fixed URL regex, and fix gzip * Get rid of negotiate auth * Fix proxy * Fixed GA tracking * Some very small changes and fixes * Fix content type names * Even better auth switching and timeline syntax * Some auth tweaks * CSS tweaks * Reworked toasts * Fixed timer rounding quirk * Request settings and render errors * Fixed tests * Vertical dragging and stuff * Remove beta
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
import React, {PureComponent, PropTypes} from 'react';
|
|
import autobind from 'autobind-decorator';
|
|
import {basename as pathBasename} from 'path';
|
|
import {remote} from 'electron';
|
|
|
|
@autobind
|
|
class FileInputButton extends PureComponent {
|
|
focus () {
|
|
this._button.focus();
|
|
}
|
|
|
|
_setRef (n) {
|
|
this._button = n;
|
|
}
|
|
|
|
_handleChooseFile () {
|
|
const options = {
|
|
title: 'Import File',
|
|
buttonLabel: 'Import',
|
|
properties: ['openFile']
|
|
};
|
|
|
|
remote.dialog.showOpenDialog(options, async paths => {
|
|
if (!paths || paths.length === 0) {
|
|
// Cancelling will clear the value
|
|
this.props.onChange('');
|
|
}
|
|
|
|
const path = paths[0];
|
|
this.props.onChange(path);
|
|
});
|
|
}
|
|
|
|
render () {
|
|
const {showFileName, path, name, ...extraProps} = this.props;
|
|
const fileName = pathBasename(path);
|
|
return (
|
|
<button type="button"
|
|
ref={this._setRef}
|
|
onClick={this._handleChooseFile}
|
|
{...extraProps}>
|
|
{showFileName && fileName ? `${fileName}` : `Choose ${name || 'File'}`}
|
|
</button>
|
|
);
|
|
}
|
|
}
|
|
|
|
FileInputButton.propTypes = {
|
|
// Required
|
|
onChange: PropTypes.func.isRequired,
|
|
path: PropTypes.string.isRequired,
|
|
|
|
// Optional
|
|
showFileName: PropTypes.bool,
|
|
name: PropTypes.string
|
|
};
|
|
|
|
export default FileInputButton;
|