insomnia/app/ui/components/base/FileInputButton.js
Gregory Schier d89aa525da Workspace Settings (#66)
* Started on workspace settings modal

* Added keyboard shortcut for workspace settings

* More work on workspace settings

* Actually use client certificates

* Only add cmd+w on mac closes #64
2016-11-29 12:55:31 -08:00

46 lines
1.1 KiB
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) {
// 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" onClick={e => 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;