mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Added /shortcuts (#3048)
Added message and tests Remember that lower vs uppercase matters Accidentally removed \n Added more Formatted
This commit is contained in:
37
api/command_shortcuts.go
Normal file
37
api/command_shortcuts.go
Normal file
@@ -0,0 +1,37 @@
|
||||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
package api
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/model"
|
||||
)
|
||||
|
||||
type ShortcutsProvider struct {
|
||||
}
|
||||
|
||||
const (
|
||||
CMD_SHORTCUTS = "shortcuts"
|
||||
)
|
||||
|
||||
func init() {
|
||||
RegisterCommandProvider(&ShortcutsProvider{})
|
||||
}
|
||||
|
||||
func (me *ShortcutsProvider) GetTrigger() string {
|
||||
return CMD_SHORTCUTS
|
||||
}
|
||||
|
||||
func (me *ShortcutsProvider) GetCommand(c *Context) *model.Command {
|
||||
return &model.Command{
|
||||
Trigger: CMD_SHORTCUTS,
|
||||
AutoComplete: true,
|
||||
AutoCompleteDesc: c.T("api.command_shortcuts.desc"),
|
||||
AutoCompleteHint: "",
|
||||
DisplayName: c.T("api.command_shortcuts.name"),
|
||||
}
|
||||
}
|
||||
|
||||
func (me *ShortcutsProvider) DoCommand(c *Context, channelId string, message string) *model.CommandResponse {
|
||||
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: c.T("api.command_shortcuts.list")}
|
||||
}
|
||||
21
api/command_shortcuts_test.go
Normal file
21
api/command_shortcuts_test.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
package api
|
||||
|
||||
import (
|
||||
"github.com/mattermost/platform/model"
|
||||
"strings"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestShortcutsCommand(t *testing.T) {
|
||||
th := Setup().InitBasic()
|
||||
Client := th.BasicClient
|
||||
channel := th.BasicChannel
|
||||
|
||||
rs := Client.Must(Client.Command(channel.Id, "/shortcuts ", false)).Data.(*model.CommandResponse)
|
||||
if !strings.Contains(rs.Text, "ALT") {
|
||||
t.Fatal("failed to display shortcuts")
|
||||
}
|
||||
}
|
||||
12
i18n/en.json
12
i18n/en.json
@@ -451,6 +451,18 @@
|
||||
"id": "api.command_shrug.name",
|
||||
"translation": "shrug"
|
||||
},
|
||||
{
|
||||
"id": "api.command_shortcuts.desc",
|
||||
"translation": "Displays a list of keyboard shortcuts"
|
||||
},
|
||||
{
|
||||
"id": "api.command_shortcuts.name",
|
||||
"translation": "shortcuts"
|
||||
},
|
||||
{
|
||||
"id": "api.command_shortcuts.list",
|
||||
"translation": "### Keyboard Shortcuts\n\n#### CTRL/CMD\n\n- CTRL/CMD+K - Open up channel switcher\n- CTRL/CMD+U - Open up file upload\n- CTRL/CMD+Up - Reprint last message or slash command entered\n- CTRL/CMD+SHIFT+A - Open account settings\n- CTRL/CMD+SHIFT+M - Open recent mentions\n\n#### ALT\n\n- ALT+Up - Go to previous channel\n- ALT+Down - Go to next channel\n- ALT+SHIFT+Up - Go to previous channel with unread messages\n- ALT+SHIFT+Down - Go to next channel with unread messages\n\n#### General\n\n- Up - Edit last message\n- /+Up/Down - See available slash commands\n"
|
||||
},
|
||||
{
|
||||
"id": "api.context.404.app_error",
|
||||
"translation": "Sorry, we could not find the page."
|
||||
|
||||
Reference in New Issue
Block a user