insomnia/app/ui/components/editors/body/FileEditor.js
2016-11-23 17:12:13 -08:00

73 lines
2.1 KiB
JavaScript

import fs from 'fs';
import electron from 'electron';
import React, {PropTypes, Component} from 'react';
import FileInputButton from '../../base/FileInputButton';
import PromptButton from '../../base/PromptButton';
import * as misc from '../../../../common/misc';
import {trackEvent} from '../../../../analytics/index';
class FileEditor extends Component {
render () {
const {path, onChange} = this.props;
// Replace home path with ~/ to make the path shorter
const homeDirectory = electron.remote.app.getPath('home');
const pathDescription = path.replace(homeDirectory, '~');
let sizeDescription = '';
try {
const bytes = fs.statSync(path).size;
sizeDescription = misc.describeByteSize(bytes);
} catch (e) {
sizeDescription = '';
}
return (
<div className="text-center">
<div className="pad text-left">
<label className="label--small">Selected File</label>
{path ? (
<code className="block txt-sm">
<span className="force-wrap selectable" title={path}>
{pathDescription}
</span>
{" "}
<span className="no-wrap">({sizeDescription})</span>
</code>
) : (
<code className="super-faint block txt-sm">
No file selected
</code>
)}
</div>
<div>
<PromptButton className="btn btn--super-compact"
disabled={!path}
onClick={e => {
onChange('');
trackEvent('File Editor', 'Reset')
}}>
Reset File
</PromptButton>
&nbsp;&nbsp;
<FileInputButton
path={path}
className="btn btn--super-compact btn--outlined"
onChange={path => {
onChange(path);
trackEvent('File Editor', 'Choose')
}}
/>
</div>
</div>
)
}
}
FileEditor.propTypes = {
onChange: PropTypes.func.isRequired,
path: PropTypes.string.isRequired,
};
export default FileEditor;