Implement the rest

This is still quite buggy, but now the basics are in place.
This commit is contained in:
Joscha 2020-03-01 00:14:45 +00:00
parent fd10a59b86
commit 64aa07e04c
5 changed files with 103 additions and 24 deletions

17
src/Profold/Options.hs Normal file
View file

@ -0,0 +1,17 @@
module Profold.Options
( Options(..)
, options
) where
import Options.Applicative
newtype Options = Options
{ optFileName :: String
} deriving (Show)
parser :: Parser Options
parser = Options
<$> strArgument (help "Path to the .prof file" <> metavar "FILE")
options :: ParserInfo Options
options = info (helper <*> parser) fullDesc

View file

@ -0,0 +1,54 @@
{-# LANGUAGE OverloadedStrings #-}
module Profold.ParseProfFile
( ProfFile(..)
, parseProfFile
) where
import Control.Monad
import qualified Data.Text as T
import Data.Void
import Text.Megaparsec
import Text.Megaparsec.Char
import Profold.LineNode
data ProfFile = ProfFile
{ profInfoLines :: [T.Text]
, profNode :: LineNode
} deriving (Show)
type Parser = Parsec Void T.Text
line :: Parser T.Text
line = label "line" $ takeWhileP Nothing (/= '\n') <* newline
skipUntilTheInterestingStuff :: Parser ()
skipUntilTheInterestingStuff = void $ skipManyTill line newLines
where
newLines = try $ newline >> newline
lineWithIndentation :: T.Text -> Parser T.Text
lineWithIndentation indentation = do
void $ string indentation
l <- line
pure $ indentation <> l
lineNode :: T.Text -> Parser LineNode
lineNode indentation = do
text <- lineWithIndentation indentation
children <- many $ lineNode $ indentation <> " "
pure $ newLineNode text children
profFile :: Parser ProfFile
profFile = do
skipUntilTheInterestingStuff
info <- count 2 line
void newline
node <- lineNode ""
pure $ ProfFile info node
parseProfFile :: String -> T.Text -> Either String ProfFile
parseProfFile filename text = case parse profFile filename text of
Left e -> Left $ errorBundlePretty e
Right f -> Right f

View file

@ -13,18 +13,20 @@ module Profold.UiState
import Brick
import Data.Maybe
import qualified Data.Text as T
import qualified Data.Vector as V
import Profold.LineNode
import Profold.Util
data UiState = UiState
{ uiTree :: LineNode
{ uiInfo :: [T.Text]
, uiTree :: LineNode
, uiFocused :: Path
} deriving (Show)
newUiState :: LineNode -> UiState
newUiState ln = UiState ln []
newUiState :: [T.Text] -> LineNode -> UiState
newUiState info ln = UiState info ln []
moveFocusUp :: UiState -> UiState
moveFocusUp s =
@ -50,24 +52,22 @@ toggleFold s =
| V.null $ lineChildren ln = ln
| otherwise = ln {lineFolded = not $ lineFolded ln}
wrapFolded :: Bool -> Widget n -> Widget n
wrapFolded False widget = withDefAttr "unfolded" $ str " " <+> widget
wrapFolded True widget = withDefAttr "folded" $ str "+" <+> widget
wrapFocused :: Bool -> Widget n -> Widget n
wrapFocused False = withDefAttr "unfocused"
wrapFocused True = visible . withDefAttr "focused"
renderLine :: Bool -> LineNode -> Widget n
renderLine focused ln =
wrapFocused focused $
wrapFolded foldedWithChildren $ padRight Max $ txt $ lineText ln
where
foldedWithChildren = lineFolded ln && not (V.null $ lineChildren ln)
let prefix
| V.null $ lineChildren ln = " "
| lineFolded ln = "+"
| otherwise = "-"
in wrapFocused focused $ padRight Max $ str prefix <+> txt (lineText ln)
renderUiState :: UiState -> Widget n
renderUiState s =
let flat = V.toList $ flatten $ uiTree s
renderUiState :: (Show n, Ord n) => n -> UiState -> Widget n
renderUiState n s =
let info = vBox $ map txt $ uiInfo s
flat = V.toList $ flatten $ uiTree s
focused = uiFocused s
rendered = map (\(p, ln) -> renderLine (p == focused) ln) flat
in vBox rendered
in info <=> viewport n Vertical (vBox rendered)