insomnia/app/ui/containers/EnvironmentsDropdown.js

89 lines
3.4 KiB
JavaScript
Raw Normal View History

import React, {Component, PropTypes} from 'react';
import {ipcRenderer} from 'electron';
2016-09-15 22:45:08 +00:00
import {connect} from 'react-redux';
import classnames from 'classnames';
import EnvironmentsModal from '../components/modals/WorkspaceEnvironmentsEditModal';
2016-11-11 22:01:21 +00:00
import {Dropdown, DropdownDivider, DropdownButton, DropdownItem} from '../components/base/dropdown';
import {showModal} from '../components/modals/index';
2016-11-10 05:56:23 +00:00
import * as models from '../../models';
class EnvironmentsDropdown extends Component {
_getActiveWorkspace (props) {
// TODO: Factor this out into a selector
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
const {entities, global} = props || this.props;
let workspace = entities.workspaces[global.activeWorkspaceId];
if (!workspace) {
workspace = entities.workspaces[Object.keys(entities.workspaces)[0]];
}
return workspace;
}
_handleActivateEnvironment (environment) {
const workspace = this._getActiveWorkspace();
2016-11-10 01:15:27 +00:00
models.workspace.update(workspace, {metaActiveEnvironmentId: environment._id});
}
render () {
const {className, entities, ...other} = this.props;
const workspace = this._getActiveWorkspace(this.props);
const allEnvironments = Object.keys(entities.environments).map(id => entities.environments[id]);
2016-08-17 18:05:52 +00:00
// NOTE: Base environment might not exist if the users hasn't managed environments yet.
const baseEnvironment = allEnvironments.find(e => e.parentId === workspace._id);
const subEnvironments = allEnvironments.filter(e => e.parentId === (baseEnvironment && baseEnvironment._id));
2016-08-15 22:31:30 +00:00
const activeEnvironment = allEnvironments.find(e => e._id === workspace.metaActiveEnvironmentId) || baseEnvironment;
2016-11-12 08:38:55 +00:00
const description = activeEnvironment !== baseEnvironment ? activeEnvironment.name : 'No Environment';
return (
2016-09-15 22:45:08 +00:00
<Dropdown {...other} className={classnames(className, 'wide')}>
2016-11-11 22:01:21 +00:00
<DropdownButton className="btn btn--super-compact no-wrap">
<div className="sidebar__menu__thing">
2016-11-12 08:38:55 +00:00
<span>{description}</span> <i className="fa fa-caret-down"></i>
</div>
2016-11-11 22:01:21 +00:00
</DropdownButton>
2016-11-12 01:08:35 +00:00
<DropdownDivider name="Switch Environment"/>
2016-11-11 22:01:21 +00:00
{subEnvironments.map(environment => (
<DropdownItem key={environment._id}
2016-11-12 01:08:35 +00:00
disabled={environment._id === activeEnvironment._id}
2016-11-11 22:01:21 +00:00
onClick={() => this._handleActivateEnvironment(environment)}>
<i className="fa fa-random"></i> Use <strong>{environment.name}</strong>
</DropdownItem>
))}
2016-11-12 01:08:35 +00:00
<DropdownItem disabled={!activeEnvironment || activeEnvironment._id === baseEnvironment._id}
2016-11-12 08:38:55 +00:00
onClick={() => baseEnvironment && this._handleActivateEnvironment(baseEnvironment)}>
2016-11-11 22:01:21 +00:00
<i className="fa fa-empty"></i> No Environment
</DropdownItem>
<DropdownDivider name="General"/>
<DropdownItem onClick={e => showModal(EnvironmentsModal, workspace)}>
<i className="fa fa-wrench"></i> Manage Environments
</DropdownItem>
</Dropdown>
)
}
}
EnvironmentsDropdown.propTypes = {
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
global: PropTypes.shape({
activeWorkspaceId: PropTypes.string
}),
entities: PropTypes.shape({
workspaces: PropTypes.object.isRequired,
environments: PropTypes.object.isRequired
}).isRequired
};
function mapStateToProps (state) {
return {
Sync Proof of Concept (#33) * Maybe working POC * Change to use remote url * Other URL too * Some logic * Got the push part working * Made some updates * Fix * Update * Add status code check * Stuff * Implemented new sync api * A bit more robust * Debounce changes * Change timeout * Some fixes * Remove .less * Better error handling * Fix base url * Support for created vs updated docs * Try silent * Silence removal too * Small fix after merge * Fix test * Stuff * Implement key generation algorithm * Tidy * stuff * A bunch of stuff for the new API * Integrated the session stuff * Stuff * Just started on encryption * Lots of updates to encryption * Finished createResourceGroup function * Full encryption/decryption working (I think) * Encrypt localstorage with sessionID * Some more * Some extra checks * Now uses separate DB. Still needs to be simplified a LOT * Fix deletion bug * Fixed unicode bug with encryption * Simplified and working * A bunch of polish * Some stuff * Removed some workspace meta properties * Migrated a few more meta properties * Small changes * Fix body scrolling and url cursor jumping * Removed duplication of webpack port * Remove workspaces reduces * Some small fixes * Added sync modal and opt-in setting * Good start to sync flow * Refactored modal footer css * Update sync status * Sync logger * A bit better logging * Fixed a bunch of sync-related bugs * Fixed signup form button * Gravatar component * Split sync modal into tabs * Tidying * Some more error handling * start sending 'user agent * Login/signup error handling * Use real UUIDs * Fixed tests * Remove unused function * Some extra checks * Moved cloud sync setting to about page * Some small changes * Some things
2016-10-21 17:20:36 +00:00
global: state.global,
entities: state.entities,
actions: state.actions
};
}
export default connect(mapStateToProps)(EnvironmentsDropdown);