insomnia/app/components/modals/SettingsModal.js
Gregory Schier ada732015e v3.0.12 (#30)
* Added some more tracking

* Fixed all stupid input usage

* Specify JSON in environment modal
2016-07-28 13:10:26 -07:00

288 lines
8.6 KiB
JavaScript

import React, {Component, PropTypes} from 'react';
import {connect} from 'react-redux'
import {bindActionCreators} from 'redux';
import {Tab, Tabs, TabList, TabPanel} from 'react-tabs'
import {shell} from 'electron';
import Link from '../base/Link';
import Modal from '../base/Modal';
import ModalBody from '../base/ModalBody';
import ModalHeader from '../base/ModalHeader';
import ModalFooter from '../base/ModalFooter';
import ModalComponent from '../lib/ModalComponent';
import KeyboardShortcutsTable from '../KeyboardShortcutsTable';
import * as GlobalActions from '../../redux/modules/global';
import * as db from '../../database';
import {MASHAPE_URL} from '../../lib/constants';
import {getAppVersion} from '../../lib/appInfo';
import {getAppName, getAppLongName} from '../../lib/appInfo';
class SettingsTabs extends Component {
_importFile () {
const workspace = this._getActiveWorkspace(this.props);
this.props.actions.global.importFile(workspace);
this.props.hide();
}
_exportFile () {
this.props.actions.global.exportFile();
this.props.hide();
}
_getActiveWorkspace (props) {
// TODO: Factor this out into a selector
const {entities, workspaces} = props || this.props;
let workspace = entities.workspaces[workspaces.activeId];
if (!workspace) {
workspace = entities.workspaces[Object.keys(entities.workspaces)[0]];
}
return workspace;
}
render () {
const {entities, selectedIndex} = this.props;
const settings = entities.settings[Object.keys(entities.settings)[0]];
return (
<Tabs selectedIndex={selectedIndex >= 0 ? selectedIndex : 0}>
<TabList>
<Tab>
<button>General</button>
</Tab>
<Tab>
<button>Import/Export</button>
</Tab>
<Tab>
<button>Shortcuts</button>
</Tab>
<Tab>
<button>About</button>
</Tab>
</TabList>
<TabPanel className="pad">
<div>
<h2 className="txt-md">
<label className="label--small">General Settings</label>
</h2>
<div>
<input
id="setting-show-passwords"
type="checkbox"
checked={settings.showPasswords}
onChange={e => db.settingsUpdate(settings, {showPasswords: e.target.checked})}
/>
&nbsp;&nbsp;
<label htmlFor="setting-show-passwords">
Show passwords in plain-text
</label>
</div>
<div className="pad-top">
<input
id="setting-follow-redirects"
type="checkbox"
value={settings.followRedirects}
onChange={e => db.settingsUpdate(settings, {followRedirects: e.target.checked})}
/>
&nbsp;&nbsp;
<label htmlFor="setting-follow-redirects">
Follow redirects automatically
</label>
</div>
<div className="pad-top">
<input
id="setting-validate-ssl"
type="checkbox"
checked={settings.validateSSL}
onChange={e => db.settingsUpdate(settings, {validateSSL: e.target.checked})}
/>
&nbsp;&nbsp;
<label htmlFor="setting-validate-ssl">
Validate SSL Certificates
</label>
</div>
<div>
<label htmlFor="setting-request-timeout" className="pad-top">
Request Timeout (ms) (0 for no timeout)
</label>
<div className="form-control form-control--outlined no-margin">
<input
id="setting-request-timeout"
type="number"
min={0}
value={settings.timeout}
onChange={e => db.settingsUpdate(settings, {timeout: parseInt(e.target.value, 10)})}
/>
</div>
</div>
</div>
<div className="pad-top">
<br/>
<label className="label--small">Code Editor Settings</label>
<div className="pad-top">
<input
id="setting-editor-line-wrapping"
type="checkbox"
checked={settings.editorLineWrapping}
onChange={e => db.settingsUpdate(settings, {editorLineWrapping: e.target.checked})}
/>
&nbsp;&nbsp;
<label htmlFor="setting-editor-line-wrapping">
Wrap Long Lines
</label>
</div>
<div>
<label htmlFor="setting-editor-font-size" className="pad-top">
Font Size (px)
</label>
<div className="form-control form-control--outlined no-margin">
<input
id="setting-editor-font-size"
type="number"
min={8}
max={20}
value={settings.editorFontSize}
onChange={e => db.settingsUpdate(settings, {editorFontSize: parseInt(e.target.value, 10)})}
/>
</div>
</div>
</div>
</TabPanel>
<TabPanel className="pad">
<p>
Import or export your data, so you can share it or back it up.
</p>
<p>
<button className="btn btn--super-compact btn--outlined"
onClick={e => this._importFile()}>
Import
</button>
{" "}
<button className="btn btn--super-compact btn--outlined"
onClick={e => this._exportFile()}>
Export
</button>
</p>
</TabPanel>
<TabPanel className="pad">
<p>Use these shortcuts to improve your productivity.</p>
<br/>
<KeyboardShortcutsTable />
</TabPanel>
<TabPanel className="pad">
<h1>Hi there!</h1>
<p>
<Link href="http://insomnia.rest">{getAppName()}</Link> is made with love by me,&nbsp;
<Link href="http://schier.co">Gregory Schier</Link>.
</p>
<p>
You can help me out by sending your feedback to&nbsp;
<Link href="mailto:supporot@insomnia.rest">support@insomnia.rest</Link> or tweet&nbsp;
<Link href="https://twitter.com/GetInsomnia">@GetInsomnia</Link>.
</p>
<p>Thanks!</p>
<br/>
<p>~Gregory</p>
</TabPanel>
</Tabs>
);
}
}
SettingsTabs.propTypes = {
hide: PropTypes.func.isRequired,
workspaces: PropTypes.shape({
activeId: PropTypes.string
}),
entities: PropTypes.shape({
workspaces: PropTypes.object.isRequired,
settings: PropTypes.object.isRequired
}).isRequired,
actions: PropTypes.shape({
global: PropTypes.shape({
importFile: PropTypes.func.isRequired,
exportFile: PropTypes.func.isRequired,
})
}),
// Optional
selectedIndex: PropTypes.number
};
function mapStateToProps (state) {
return {
workspaces: state.workspaces,
entities: state.entities,
actions: state.actions,
loading: state.global.loading
};
}
function mapDispatchToProps (dispatch) {
return {
actions: {
global: bindActionCreators(GlobalActions, dispatch)
}
}
}
// NOTE: We can't _connect_ the SettingsModal because it hides the public methods
const ConnectedSettingsTabs = connect(
mapStateToProps,
mapDispatchToProps
)(SettingsTabs);
class SettingsModal extends ModalComponent {
constructor (props) {
super(props);
this.state = {
selectedIndex: 0
}
}
show (selectedIndex = 0) {
super.show();
if (selectedIndex >= 0) {
this.setState({selectedIndex});
} else {
this.setState({selectedIndex: 0});
}
}
render () {
const {selectedIndex} = this.state;
return (
<Modal ref="modal" tall={true} {...this.props}>
<ModalHeader>
{getAppLongName()}
&nbsp;&nbsp;
<span className="faint txt-sm">v{getAppVersion()}</span>
</ModalHeader>
<ModalBody>
<ConnectedSettingsTabs hide={() => this.hide()} selectedIndex={selectedIndex}/>
</ModalBody>
<ModalFooter className="pad text-right">
<div className="relative">
Supported By&nbsp;&nbsp;
<Link href={MASHAPE_URL}>
<img src="images/mashape.png" style={{height: '1.5em'}} className="valign-bottom"/>
</Link>
</div>
</ModalFooter>
</Modal>
);
}
}
export default SettingsModal;