// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import * as Utils from 'utils/utils.jsx'; import {FormattedMessage} from 'react-intl'; export default class InstalledCommand extends React.Component { static get propTypes() { return { command: React.PropTypes.object.isRequired, onRegenToken: React.PropTypes.func.isRequired, onDelete: React.PropTypes.func.isRequired }; } constructor(props) { super(props); this.handleRegenToken = this.handleRegenToken.bind(this); this.handleDelete = this.handleDelete.bind(this); } handleRegenToken(e) { e.preventDefault(); this.props.onRegenToken(this.props.command); } handleDelete(e) { e.preventDefault(); this.props.onDelete(this.props.command); } render() { const command = this.props.command; return (
{command.display_name}
{command.description}
{' - '}
); } }