Mailspring/internal_packages/plugins/lib/plugins-tabs-view.jsx
Jackie Luo 6e07dce03c 🎨(preferences): Updates preferences to look prettier
Summary:
Adds new redesigned preferences with horizontal tab bar and refactored code.

Converts Preferences, Plugins, and a few components to ES6.

Test Plan: Tested locally.

Reviewers: evan, bengotow

Reviewed By: bengotow

Subscribers: juan

Differential Revision: https://phab.nylas.com/D2818
2016-04-01 14:01:26 -07:00

69 lines
1.3 KiB
JavaScript

import React from 'react';
import classNames from 'classnames';
import Tabs from './tabs';
import TabsStore from './tabs-store';
import PluginsActions from './plugins-actions';
class PluginsTabs extends React.Component {
static displayName = 'PluginsTabs';
static propTypes = {
'onChange': React.PropTypes.Func,
};
constructor() {
super();
this.state = this._getStateFromStores();
}
componentDidMount() {
this._unsubscribers = [];
this._unsubscribers.push(TabsStore.listen(this._onChange));
}
componentWillUnmount() {
this._unsubscribers.forEach(unsubscribe => unsubscribe());
}
static containerRequired = false;
static containerStyles = {
minWidth: 200,
maxWidth: 290,
};
_getStateFromStores() {
return {
tabIndex: TabsStore.tabIndex(),
};
}
_onChange = () => {
this.setState(this._getStateFromStores());
}
_renderItems() {
return Tabs.map(({name, key, icon}, idx) => {
const classes = classNames({
'tab': true,
'active': idx === this.state.tabIndex,
});
return (<li key={key} className={classes} onClick={() => PluginsActions.selectTabIndex(idx)}>{name}</li>);
});
}
render() {
return (
<ul className="plugins-view-tabs">
{this._renderItems()}
</ul>
);
}
}
export default PluginsTabs;