matterhorn-50200.17.0: src/Matterhorn/Events/ThemeListWindow.hs
module Matterhorn.Events.ThemeListWindow where
import Prelude ()
import Matterhorn.Prelude
import qualified Graphics.Vty as Vty
import Network.Mattermost.Types ( TeamId )
import Matterhorn.Events.Keybindings
import Matterhorn.State.ThemeListWindow
import Matterhorn.State.ListWindow
import Matterhorn.Types
onEventThemeListWindow :: TeamId -> Vty.Event -> MH ()
onEventThemeListWindow tId =
void . onEventListWindow (csTeam(tId).tsThemeListWindow)
(themeListWindowKeybindings tId)
-- | The keybindings we want to use while viewing a user list window
themeListWindowKeybindings :: TeamId -> KeyConfig -> KeyHandlerMap
themeListWindowKeybindings tId = mkKeybindings (themeListWindowKeyHandlers tId)
themeListWindowKeyHandlers :: TeamId -> [KeyEventHandler]
themeListWindowKeyHandlers tId =
[ mkKb CancelEvent "Close the theme list"
(exitListWindow tId (csTeam(tId).tsThemeListWindow))
, mkKb SearchSelectUpEvent "Select the previous theme" $
themeListSelectUp tId
, mkKb SearchSelectDownEvent "Select the next theme" $
themeListSelectDown tId
, mkKb PageDownEvent "Page down in the theme list" $
themeListPageDown tId
, mkKb PageUpEvent "Page up in the theme list" $
themeListPageUp tId
, mkKb ActivateListItemEvent "Switch to the selected color theme"
(listWindowActivateCurrent tId (csTeam(tId).tsThemeListWindow))
]