2018-11-30 03:21:15 +03:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
module Main where
|
|
|
|
|
|
|
|
#if !(MIN_VERSION_base(4,11,0))
|
|
|
|
import Data.Monoid
|
|
|
|
#endif
|
|
|
|
import qualified Graphics.Vty as V
|
|
|
|
|
|
|
|
import qualified Brick.Main as M
|
|
|
|
import qualified Brick.Widgets.List as L
|
|
|
|
import Brick.Types
|
|
|
|
( Widget
|
|
|
|
, BrickEvent(..)
|
|
|
|
)
|
|
|
|
import Brick.Widgets.Center
|
|
|
|
( center
|
|
|
|
)
|
|
|
|
import Brick.Widgets.Border
|
2018-11-30 22:23:11 +03:00
|
|
|
( borderWithLabel
|
2018-11-30 03:21:15 +03:00
|
|
|
)
|
|
|
|
import Brick.Widgets.Core
|
|
|
|
( hLimit
|
|
|
|
, vLimit
|
2018-11-30 22:23:11 +03:00
|
|
|
, txt
|
2018-11-30 03:21:15 +03:00
|
|
|
)
|
|
|
|
import Brick.Widgets.FileBrowser as FB
|
|
|
|
import qualified Brick.AttrMap as A
|
2018-11-30 21:04:22 +03:00
|
|
|
import Brick.Util (on, fg)
|
2018-11-30 03:21:15 +03:00
|
|
|
import qualified Brick.Types as T
|
|
|
|
|
|
|
|
data Name = FileBrowser1
|
|
|
|
deriving (Eq, Show, Ord)
|
|
|
|
|
|
|
|
drawUI :: FileBrowser Name -> [Widget Name]
|
|
|
|
drawUI b = [ui]
|
|
|
|
where
|
|
|
|
ui = center $
|
|
|
|
vLimit 15 $
|
|
|
|
hLimit 50 $
|
2018-11-30 22:23:11 +03:00
|
|
|
borderWithLabel (txt "Choose a file") $
|
2018-11-30 03:21:15 +03:00
|
|
|
FB.renderFileBrowser True b
|
|
|
|
|
|
|
|
appEvent :: FB.FileBrowser Name -> BrickEvent Name e -> T.EventM Name (T.Next (FB.FileBrowser Name))
|
|
|
|
appEvent b (VtyEvent ev) =
|
|
|
|
case ev of
|
|
|
|
V.EvKey V.KEsc [] -> M.halt b
|
2018-11-30 21:04:22 +03:00
|
|
|
_ -> do
|
|
|
|
b' <- FB.handleFileBrowserEvent ev b
|
|
|
|
-- If the browser has a selected file after handling the
|
|
|
|
-- event (because the user pressed Enter), shut down.
|
|
|
|
case fileBrowserSelection b' of
|
|
|
|
Nothing -> M.continue b'
|
|
|
|
Just _ -> M.halt b'
|
2018-11-30 03:21:15 +03:00
|
|
|
appEvent b _ = M.continue b
|
|
|
|
|
|
|
|
theMap :: A.AttrMap
|
|
|
|
theMap = A.attrMap V.defAttr
|
|
|
|
[ (L.listSelectedFocusedAttr, V.black `on` V.yellow)
|
2018-11-30 22:14:12 +03:00
|
|
|
, (FB.fileBrowserCurrentDirectoryAttr, V.white `on` V.blue)
|
2018-11-30 22:49:08 +03:00
|
|
|
, (FB.fileBrowserSelectionInfoAttr, V.white `on` V.blue)
|
2018-11-30 21:04:22 +03:00
|
|
|
, (FB.fileBrowserDirectoryAttr, fg V.blue)
|
|
|
|
, (FB.fileBrowserBlockDeviceAttr, fg V.magenta)
|
|
|
|
, (FB.fileBrowserCharacterDeviceAttr, fg V.green)
|
|
|
|
, (FB.fileBrowserNamedPipeAttr, fg V.yellow)
|
|
|
|
, (FB.fileBrowserSymbolicLinkAttr, fg V.cyan)
|
|
|
|
, (FB.fileBrowserSocketAttr, fg V.red)
|
2018-11-30 03:21:15 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
theApp :: M.App (FileBrowser Name) e Name
|
|
|
|
theApp =
|
|
|
|
M.App { M.appDraw = drawUI
|
|
|
|
, M.appChooseCursor = M.showFirstCursor
|
|
|
|
, M.appHandleEvent = appEvent
|
|
|
|
, M.appStartEvent = return
|
|
|
|
, M.appAttrMap = const theMap
|
|
|
|
}
|
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = do
|
|
|
|
b <- M.defaultMain theApp =<< FB.newFileBrowser FileBrowser1 Nothing
|
|
|
|
putStrLn $ "Selected entry: " <> show (FB.fileBrowserSelection b)
|