Mailspring/internal_packages/plugins/lib/package.jsx
Jackie Luo 45ef25fc02 🎨(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

107 lines
3.2 KiB
JavaScript

import React from 'react';
import {Flexbox, RetinaImg, Switch} from 'nylas-component-kit';
import PluginsActions from './plugins-actions';
class Package extends React.Component {
static displayName = 'Package';
static propTypes = {
package: React.PropTypes.object.isRequired,
}
constructor() {
super();
}
_onDisablePackage = () => {
PluginsActions.disablePackage(this.props.package);
}
_onEnablePackage = () => {
PluginsActions.enablePackage(this.props.package);
}
_onUninstallPackage = () => {
PluginsActions.uninstallPackage(this.props.package);
}
_onUpdatePackage = () => {
PluginsActions.updatePackage(this.props.package);
}
_onInstallPackage = () => {
PluginsActions.installPackage(this.props.package);
}
_onShowPackage = () => {
PluginsActions.showPackage(this.props.package);
}
render() {
const actions = [];
const extras = [];
let icon = (<RetinaImg name="plugin-icon-default.png" mode="ContentPreserve" />);
let uninstallButton = null;
if (this.props.package.icon) {
icon = (<img src={`nylas://${this.props.package.name}/${this.props.package.icon}`} style={{width: 27, alignContent: "center", objectFit: "scale-down"}} />);
} else if (this.props.package.theme) {
icon = (<RetinaImg name="theme-icon-default.png" mode="ContentPreserve" />);
}
if (this.props.package.installed) {
if (['user', 'dev', 'example'].indexOf(this.props.package.category) !== -1 && !this.props.package.theme) {
if (this.props.package.enabled) {
actions.push(<Switch checked onChange={this._onDisablePackage}>Disable</Switch>);
} else {
actions.push(<Switch onChange={this._onEnablePackage}>Enable</Switch>);
}
}
if (this.props.package.category === 'user') {
uninstallButton = <div className="uninstall-plugin" onClick={this._onUninstallPackage}>Uninstall</div>
}
if (this.props.package.category === 'dev') {
actions.push(<div className="btn" onClick={this._onShowPackage}>Show...</div>);
}
} else if (this.props.package.installing) {
actions.push(<div className="btn">Installing...</div>);
} else {
actions.push(<div className="btn" onClick={this._onInstallPackage}>Install</div>);
}
const {name, description, title} = this.props.package;
if (this.props.package.newerVersionAvailable) {
extras.push(
<div className="padded update-info">
A newer version is available: {this.props.package.newerVersion}
<div className="btn btn-emphasis" onClick={this._onUpdatePackage}>Update</div>
</div>
)
}
return (
<Flexbox className="package" direction="row">
<div className="icon-container">
<div className="icon" >{icon}</div>
</div>
<div className="info">
<div style={{display: "flex", flexDirection: "row"}}>
<div className="title">{title || name}</div>
{uninstallButton}
</div>
<div className="description">{description}</div>
</div>
<div className="actions">{actions}</div>
{extras}
</Flexbox>
);
}
}
export default Package;