mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
e9d64ebb23
* Got a hacky workspace implementation running * Removed some hax with reducer composition * Moved some more around * Moved files back out * Started on entities reducer * Split up some components * Moved nested modules back out of workspaces * Started on new Sidebar tree stuff * Better store stuff * Some more tweaks * Removed workspace update action * Re-implemented filtering in the Sidbare * Switch to get the newest response
173 lines
5.3 KiB
JavaScript
173 lines
5.3 KiB
JavaScript
import fs from 'fs'
|
|
import electron from 'electron'
|
|
|
|
import React, {Component, PropTypes} from 'react'
|
|
import {bindActionCreators} from 'redux'
|
|
import {connect} from 'react-redux'
|
|
|
|
import Dropdown from '../components/base/Dropdown'
|
|
import DropdownDivider from '../components/base/DropdownDivider'
|
|
import * as RequestGroupActions from '../redux/modules/requestGroups'
|
|
import * as WorkspaceActions from '../redux/modules/workspaces'
|
|
import * as db from '../database'
|
|
import importData from '../lib/import'
|
|
|
|
class WorkspaceDropdown extends Component {
|
|
_importDialog () {
|
|
const options = {
|
|
properties: ['openFile'],
|
|
filters: [{
|
|
name: 'Insomnia Imports', extensions: ['json']
|
|
}]
|
|
};
|
|
|
|
// TODO: Factor this out into a selector
|
|
const {entities, workspaces} = this.props;
|
|
let workspace = entities.workspaces[workspaces.activeId];
|
|
if (!workspace) {
|
|
workspace = entities.workspaces[Object.keys(entities.workspaces)[0]];
|
|
}
|
|
|
|
electron.remote.dialog.showOpenDialog(options, paths => {
|
|
paths.map(path => {
|
|
fs.readFile(path, 'utf8', (err, data) => {
|
|
err || importData(workspace, data);
|
|
})
|
|
})
|
|
});
|
|
}
|
|
|
|
_workspaceCreate () {
|
|
db.workspaceCreate({name: 'New Workspace'}).then(workspace => {
|
|
this.props.actions.workspaces.activate(workspace);
|
|
});
|
|
}
|
|
|
|
render () {
|
|
const {actions, loading, workspaces, entities, ...other} = this.props;
|
|
|
|
const allWorkspaces = Object.keys(entities.workspaces).map(id => entities.workspaces[id]);
|
|
|
|
// TODO: Factor this out into a selector
|
|
let workspace = entities.workspaces[workspaces.activeId];
|
|
if (!workspace) {
|
|
workspace = entities.workspaces[Object.keys(entities.workspaces)[0]];
|
|
}
|
|
|
|
return (
|
|
<Dropdown right={true} {...other} className="block">
|
|
<button className="btn header__content">
|
|
<div className="grid grid--center">
|
|
<div className="grid__cell">
|
|
<h1 className="no-pad">{workspace.name}</h1>
|
|
</div>
|
|
<div className="no-wrap">
|
|
{loading ? <i className="fa fa-refresh fa-spin txt-lg"></i> : ''}
|
|
<i className="fa fa-caret-down txt-lg"></i>
|
|
</div>
|
|
</div>
|
|
</button>
|
|
<ul>
|
|
|
|
<DropdownDivider name="Current Workspace"/>
|
|
|
|
<li>
|
|
<button onClick={e => db.requestCreate({parentId: workspace._id})}>
|
|
<i className="fa fa-plus-circle"></i> New Request
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button onClick={e => db.requestGroupCreate({parentId: workspace._id})}>
|
|
<i className="fa fa-folder"></i> New Request Group
|
|
</button>
|
|
</li>
|
|
{/*<li>
|
|
<button onClick={e => actions.requestGroups.showEnvironmentEditModal()}>
|
|
<i className="fa fa-code"></i> Manage Environments
|
|
</button>
|
|
</li>*/}
|
|
<li>
|
|
<button onClick={e => this._importDialog()}>
|
|
<i className="fa fa-share-square-o"></i> Import/Export
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button onClick={e => actions.workspaces.showUpdateNamePrompt(workspace)}>
|
|
<i className="fa fa-empty"></i> Rename <strong>{workspace.name}</strong>
|
|
</button>
|
|
</li>
|
|
<li>
|
|
<button onClick={e => db.remove(workspace)}>
|
|
<i className="fa fa-empty"></i> Delete <strong>{workspace.name}</strong>
|
|
</button>
|
|
</li>
|
|
|
|
<DropdownDivider name="Workspaces"/>
|
|
|
|
{allWorkspaces.map(w => {
|
|
return w._id === workspace._id ? null : (
|
|
<li key={w._id}>
|
|
<button onClick={() => actions.workspaces.activate(w)}>
|
|
<i className="fa fa-random"></i> Switch to <strong>{w.name}</strong>
|
|
</button>
|
|
</li>
|
|
)
|
|
})}
|
|
<li>
|
|
<button onClick={e => this._workspaceCreate()}>
|
|
<i className="fa fa-blank"></i> Create Workspace
|
|
</button>
|
|
</li>
|
|
|
|
<DropdownDivider name="Insomnia"/>
|
|
|
|
<li><button><i className="fa fa-cog"></i> Settings</button></li>
|
|
<li><button><i className="fa fa-blank"></i> Open New Window</button></li>
|
|
</ul>
|
|
</Dropdown>
|
|
)
|
|
}
|
|
}
|
|
|
|
WorkspaceDropdown.propTypes = {
|
|
loading: PropTypes.bool.isRequired,
|
|
workspaces: PropTypes.shape({
|
|
activeId: PropTypes.string
|
|
}),
|
|
entities: PropTypes.shape({
|
|
workspaces: PropTypes.object.isRequired
|
|
}).isRequired,
|
|
actions: PropTypes.shape({
|
|
requestGroups: PropTypes.shape({
|
|
showEnvironmentEditModal: PropTypes.func.isRequired
|
|
}),
|
|
workspaces: PropTypes.shape({
|
|
activate: PropTypes.func.isRequired,
|
|
showUpdateNamePrompt: PropTypes.func.isRequired
|
|
})
|
|
})
|
|
};
|
|
|
|
function mapStateToProps (state) {
|
|
return {
|
|
workspaces: state.workspaces,
|
|
entities: state.entities,
|
|
actions: state.actions,
|
|
loading: state.global.loading
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps (dispatch) {
|
|
return {
|
|
actions: {
|
|
requestGroups: bindActionCreators(RequestGroupActions, dispatch),
|
|
workspaces: bindActionCreators(WorkspaceActions, dispatch)
|
|
}
|
|
}
|
|
}
|
|
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(WorkspaceDropdown);
|