mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
71 lines
2.1 KiB
Text
71 lines
2.1 KiB
Text
|
React = require 'react'
|
||
|
_ = require 'underscore'
|
||
|
|
||
|
SettingsActions = require './settings-actions'
|
||
|
|
||
|
class Package extends React.Component
|
||
|
@displayName: 'Package'
|
||
|
|
||
|
@propTypes:
|
||
|
'package': React.PropTypes.object.isRequired
|
||
|
|
||
|
constructor: (@props) ->
|
||
|
|
||
|
render: =>
|
||
|
actions = []
|
||
|
extras = []
|
||
|
|
||
|
if @props.package.installed
|
||
|
if @props.package.enabled
|
||
|
actions.push <div className="btn btn-small" onClick={@_onDisablePackage}>Disable</div>
|
||
|
else
|
||
|
actions.push <div className="btn btn-small" onClick={@_onEnablePackage}>Enable</div>
|
||
|
if @props.package.category is 'user'
|
||
|
actions.push <div className="btn btn-small" onClick={@_onUninstallPackage}>Uninstall</div>
|
||
|
if @props.package.category is 'dev'
|
||
|
actions.push <div className="btn btn-small" onClick={@_onShowPackage}>Show...</div>
|
||
|
|
||
|
else if @props.package.installing
|
||
|
actions.push <div className="btn btn-small">Installing...</div>
|
||
|
else
|
||
|
actions.push <div className="btn btn-small" onClick={@_onInstallPackage}>Install</div>
|
||
|
|
||
|
{name, description} = @props.package
|
||
|
|
||
|
if @props.package.newerVersionAvailable
|
||
|
extras.push(
|
||
|
<div className="padded update-info">
|
||
|
A newer version is available: {@props.package.newerVersion}
|
||
|
<div className="btn btn-small btn-emphasis" onClick={@_onUpdatePackage}>Update</div>
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
<div className="package">
|
||
|
<div className="padded">
|
||
|
<div className="actions">{actions}</div>
|
||
|
<div className="title">{name}</div>
|
||
|
<div className="description">{description}</div>
|
||
|
</div>
|
||
|
{extras}
|
||
|
</div>
|
||
|
|
||
|
_onDisablePackage: =>
|
||
|
SettingsActions.disablePackage(@props.package)
|
||
|
|
||
|
_onEnablePackage: =>
|
||
|
SettingsActions.enablePackage(@props.package)
|
||
|
|
||
|
_onUninstallPackage: =>
|
||
|
SettingsActions.uninstallPackage(@props.package)
|
||
|
|
||
|
_onUpdatePackage: =>
|
||
|
SettingsActions.updatePackage(@props.package)
|
||
|
|
||
|
_onInstallPackage: =>
|
||
|
SettingsActions.installPackage(@props.package)
|
||
|
|
||
|
_onShowPackage: =>
|
||
|
SettingsActions.showPackage(@props.package)
|
||
|
|
||
|
module.exports = Package
|