insomnia/app/ui/components/base/file-input-button.js

66 lines
1.5 KiB
JavaScript
Raw Normal View History

import React, {PureComponent, PropTypes} from 'react';
import autobind from 'autobind-decorator';
import {basename as pathBasename} from 'path';
2016-11-22 22:26:52 +00:00
import {remote} from 'electron';
@autobind
class FileInputButton extends PureComponent {
focus () {
this._button.focus();
}
focusEnd () {
this._button.focus();
}
_setRef (n) {
this._button = n;
}
_handleChooseFile () {
2016-11-22 22:26:52 +00:00
const options = {
title: 'Import File',
buttonLabel: 'Import',
properties: ['openFile']
};
remote.dialog.showOpenDialog(options, async paths => {
// Only change the file if a new file was selected
2016-11-22 22:26:52 +00:00
if (!paths || paths.length === 0) {
return;
2016-11-22 22:26:52 +00:00
}
const path = paths[0];
this.props.onChange(path);
});
}
2016-11-22 22:26:52 +00:00
render () {
const {showFileName, showFileIcon, path, name, ...extraProps} = this.props;
const fileName = pathBasename(path);
2016-11-22 22:26:52 +00:00
return (
<button type="button"
ref={this._setRef}
onClick={this._handleChooseFile}
2017-06-10 02:18:33 +00:00
title={path}
{...extraProps}>
{showFileIcon && <i className="fa fa-file-o space-right"/>}
{showFileName && fileName ? `${fileName}` : `Choose ${name || '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,
showFileIcon: PropTypes.bool,
name: PropTypes.string
2016-11-22 22:26:52 +00:00
};
export default FileInputButton;