From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/components/suggestion/command_provider.jsx | 41 ----------------------- 1 file changed, 41 deletions(-) delete mode 100644 webapp/components/suggestion/command_provider.jsx (limited to 'webapp/components/suggestion/command_provider.jsx') diff --git a/webapp/components/suggestion/command_provider.jsx b/webapp/components/suggestion/command_provider.jsx deleted file mode 100644 index 4f74ebd55..000000000 --- a/webapp/components/suggestion/command_provider.jsx +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import React from 'react'; - -import Suggestion from './suggestion.jsx'; - -import {getSuggestedCommands} from 'actions/integration_actions.jsx'; - -class CommandSuggestion extends Suggestion { - render() { - const {item, isSelection} = this.props; - - let className = 'command'; - if (isSelection) { - className += ' suggestion--selected'; - } - - return ( -
-
- {item.suggestion} {item.hint} -
-
- {item.description} -
-
- ); - } -} - -export default class CommandProvider { - handlePretextChanged(suggestionId, pretext) { - if (pretext.startsWith('/')) { - getSuggestedCommands(pretext.toLowerCase(), suggestionId, CommandSuggestion, pretext.toLowerCase()); - } - } -} -- cgit v1.2.3-1-g7c22