summaryrefslogtreecommitdiffstats
path: root/webapp/components/backstage/installed_incoming_webhooks.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/backstage/installed_incoming_webhooks.jsx')
-rw-r--r--webapp/components/backstage/installed_incoming_webhooks.jsx94
1 files changed, 0 insertions, 94 deletions
diff --git a/webapp/components/backstage/installed_incoming_webhooks.jsx b/webapp/components/backstage/installed_incoming_webhooks.jsx
deleted file mode 100644
index 0a38a6ab5..000000000
--- a/webapp/components/backstage/installed_incoming_webhooks.jsx
+++ /dev/null
@@ -1,94 +0,0 @@
-// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import React from 'react';
-
-import * as AsyncClient from 'utils/async_client.jsx';
-import IntegrationStore from 'stores/integration_store.jsx';
-import TeamStore from 'stores/team_store.jsx';
-import * as Utils from 'utils/utils.jsx';
-
-import {FormattedMessage} from 'react-intl';
-import InstalledIncomingWebhook from './installed_incoming_webhook.jsx';
-import InstalledIntegrations from './installed_integrations.jsx';
-
-export default class InstalledIncomingWebhooks extends React.Component {
- constructor(props) {
- super(props);
-
- this.handleIntegrationChange = this.handleIntegrationChange.bind(this);
-
- this.deleteIncomingWebhook = this.deleteIncomingWebhook.bind(this);
-
- const teamId = TeamStore.getCurrentId();
-
- this.state = {
- incomingWebhooks: IntegrationStore.getIncomingWebhooks(teamId),
- loading: !IntegrationStore.hasReceivedIncomingWebhooks(teamId)
- };
- }
-
- componentDidMount() {
- IntegrationStore.addChangeListener(this.handleIntegrationChange);
-
- if (window.mm_config.EnableIncomingWebhooks === 'true') {
- AsyncClient.listIncomingHooks();
- }
- }
-
- componentWillUnmount() {
- IntegrationStore.removeChangeListener(this.handleIntegrationChange);
- }
-
- handleIntegrationChange() {
- const teamId = TeamStore.getCurrentId();
-
- this.setState({
- incomingWebhooks: IntegrationStore.getIncomingWebhooks(teamId),
- loading: !IntegrationStore.hasReceivedIncomingWebhooks(teamId)
- });
- }
-
- deleteIncomingWebhook(incomingWebhook) {
- AsyncClient.deleteIncomingHook(incomingWebhook.id);
- }
-
- render() {
- const incomingWebhooks = this.state.incomingWebhooks.map((incomingWebhook) => {
- return (
- <InstalledIncomingWebhook
- key={incomingWebhook.id}
- incomingWebhook={incomingWebhook}
- onDelete={this.deleteIncomingWebhook}
- />
- );
- });
-
- return (
- <InstalledIntegrations
- header={
- <FormattedMessage
- id='installed_incoming_webhooks.header'
- defaultMessage='Installed Incoming Webhooks'
- />
- }
- addText={
- <FormattedMessage
- id='installed_incoming_webhooks.add'
- defaultMessage='Add Incoming Webhook'
- />
- }
- addLink={'/' + Utils.getTeamNameFromUrl() + '/settings/integrations/incoming_webhooks/add'}
- emptyText={
- <FormattedMessage
- id='installed_incoming_webhooks.empty'
- defaultMessage='No incoming webhooks found'
- />
- }
- loading={this.state.loading}
- >
- {incomingWebhooks}
- </InstalledIntegrations>
- );
- }
-}