complete tutorial. remove show all tools from widgets. resolve some conflicts.

This commit is contained in:
Luis Morillo 2023-11-23 16:05:12 +01:00
parent d3474d0cd9
commit 0e46b9509a

View File

@ -192,8 +192,8 @@ handleGenericListEvent (VtyEvent (Vty.EvKey (Vty.KChar '\t') [])) = sectionListF
handleGenericListEvent (VtyEvent (Vty.EvKey Vty.KBackTab [])) = sectionListFocusRingL %= F.focusPrev handleGenericListEvent (VtyEvent (Vty.EvKey Vty.KBackTab [])) = sectionListFocusRingL %= F.focusPrev
handleGenericListEvent (MouseDown _ Vty.BScrollDown _ _) = moveDown handleGenericListEvent (MouseDown _ Vty.BScrollDown _ _) = moveDown
handleGenericListEvent (MouseDown _ Vty.BScrollUp _ _) = moveUp handleGenericListEvent (MouseDown _ Vty.BScrollUp _ _) = moveUp
handleGenericListEvent (VtyEvent (Vty.EvKey Vty.KDown [])) = moveDown handleGenericListEvent (VtyEvent (Vty.EvKey Vty.KDown [])) = moveDown
handleGenericListEvent (VtyEvent (Vty.EvKey Vty.KUp [])) = moveUp handleGenericListEvent (VtyEvent (Vty.EvKey Vty.KUp [])) = moveUp
handleGenericListEvent (VtyEvent ev) = do handleGenericListEvent (VtyEvent ev) = do
ring <- use sectionListFocusRingL ring <- use sectionListFocusRingL
case F.focusGetCurrent ring of case F.focusGetCurrent ring of
@ -281,10 +281,7 @@ data BrickData = BrickData
makeLenses ''BrickData makeLenses ''BrickData
data BrickSettings = BrickSettings data BrickSettings = BrickSettings { _showAllVersions :: Bool}
{ _showAllVersions :: Bool
, _showAllTools :: Bool
}
--deriving Show --deriving Show
makeLenses ''BrickSettings makeLenses ''BrickSettings
@ -455,7 +452,7 @@ drawTutorial =
, mkTextBox [ , mkTextBox [
Brick.hBox [ Brick.hBox [
Brick.withAttr recommendedAttr $ Brick.str "recommended" Brick.withAttr recommendedAttr $ Brick.str "recommended"
, Brick.txtWrap " tag is based on ..." , Brick.txtWrap " tag is based on community adoption, known bugs, etc... So It makes this version the least experimental"
] ]
, Brick.hBox [ , Brick.hBox [
Brick.withAttr latestAttr $ Brick.str "latest" Brick.withAttr latestAttr $ Brick.str "latest"
@ -516,11 +513,6 @@ drawKeyInfo KeyBindings {..} =
, keyToWidget bShowAllVersions , keyToWidget bShowAllVersions
, Brick.txtWrap " to show older version of each tool" , Brick.txtWrap " to show older version of each tool"
] ]
, Brick.hBox [
Brick.txt "Press "
, keyToWidget bShowAllTools
, Brick.txtWrap " to ??? "
]
] ]
] ]
<=> Brick.hBox [Brick.txt "Press q to return to Navigation" <+> Brick.padRight Brick.Max (Brick.txt " ") <+> Brick.txt "Press Enter to go to the Tutorial"] <=> Brick.hBox [Brick.txt "Press q to return to Navigation" <+> Brick.padRight Brick.Max (Brick.txt " ") <+> Brick.txt "Press Enter to go to the Tutorial"]
@ -618,18 +610,19 @@ keyHandlers KeyBindings {..} =
, ( bShowAllVersions , ( bShowAllVersions
, \BrickSettings {..} -> , \BrickSettings {..} ->
if _showAllVersions then "Don't show all versions" else "Show all versions" if _showAllVersions then "Don't show all versions" else "Show all versions"
, hideShowHandler' (not . _showAllVersions) _showAllTools , hideShowHandler' (not . _showAllVersions)
) )
, (bUp, const "Up", Brick.zoom (toLensVL appState) moveUp)
, (bDown, const "Down", Brick.zoom (toLensVL appState) moveDown)
, (KeyCombination (Vty.KChar 'h') [], const "help", mode .= KeyInfo) , (KeyCombination (Vty.KChar 'h') [], const "help", mode .= KeyInfo)
] ]
where where
--hideShowHandler' :: (BrickSettings -> Bool) -> (BrickSettings -> Bool) -> m () --hideShowHandler' :: (BrickSettings -> Bool) -> (BrickSettings -> Bool) -> m ()
hideShowHandler' f p = do hideShowHandler' f = do
app_settings <- use appSettings app_settings <- use appSettings
let let
vers = f app_settings vers = f app_settings
tools = p app_settings newAppSettings = app_settings & showAllVersions .~ vers
newAppSettings = app_settings & showAllVersions .~ vers & showAllTools .~ tools
ad <- use appData ad <- use appData
current_app_state <- use appState current_app_state <- use appState
appSettings .= newAppSettings appSettings .= newAppSettings
@ -719,8 +712,7 @@ constructList :: BrickData
-> Maybe BrickInternalState -> Maybe BrickInternalState
-> BrickInternalState -> BrickInternalState
constructList appD settings = constructList appD settings =
replaceLR (filterVisible (_showAllVersions settings) replaceLR (filterVisible (_showAllVersions settings))
(_showAllTools settings))
(_lr appD) (_lr appD)
-- | Focus on the tool section and the predicate which matches. If no result matches, focus on index 0 -- | Focus on the tool section and the predicate which matches. If no result matches, focus on index 0
@ -1015,7 +1007,7 @@ brickMain s = do
defaultAppSettings :: BrickSettings defaultAppSettings :: BrickSettings
defaultAppSettings = BrickSettings { _showAllVersions = False, _showAllTools = False } defaultAppSettings = BrickSettings { _showAllVersions = False}
getGHCupInfo :: IO (Either String GHCupInfo) getGHCupInfo :: IO (Either String GHCupInfo)