From 5979856578dd517305a27e7ac0fd94d528cfd7ed Mon Sep 17 00:00:00 2001 From: Jonathan Lamothe Date: Thu, 28 Nov 2019 04:00:33 -0500 Subject: [PATCH] refactored playerReport --- src/Mtlstats/Format.hs | 13 ++++++++ src/Mtlstats/Report.hs | 72 +++++++++++++++++++++++------------------- test/FormatSpec.hs | 25 +++++++++++++++ 3 files changed, 78 insertions(+), 32 deletions(-) diff --git a/src/Mtlstats/Format.hs b/src/Mtlstats/Format.hs index 9825d69..b7a1a06 100644 --- a/src/Mtlstats/Format.hs +++ b/src/Mtlstats/Format.hs @@ -32,6 +32,7 @@ module Mtlstats.Format , numTable , tableWith , complexTable + , overlayLast ) where import Data.List (transpose) @@ -172,3 +173,15 @@ complexTable pFuncs tData = let in map (bFunc . zip3 pFuncs colWidths) tData + +-- | Places an overlay on the last line of an report +overlayLast + :: String + -- ^ The text to overlay + -> [String] + -- ^ The report to modify + -> [String] + -- ^ The resulting report +overlayLast _ [] = [] +overlayLast str [l] = [overlay str l] +overlayLast str (l:ls) = l : overlayLast str ls diff --git a/src/Mtlstats/Report.hs b/src/Mtlstats/Report.hs index cb7ee4f..715337b 100644 --- a/src/Mtlstats/Report.hs +++ b/src/Mtlstats/Report.hs @@ -118,42 +118,50 @@ gameDate gs = fromMaybe "" $ do playerReport :: Int -> String -> [(Player, PlayerStats)] -> [String] playerReport width label ps = let - nameWidth = playerNameColWidth $ map fst ps - tStats = foldr (addPlayerStats . snd) newPlayerStats ps - in + tStats = foldl addPlayerStats newPlayerStats $ map snd ps + + rHeader = [ centre width (label ++ " STATISTICS") , "" - , centre width - $ "NO. " - ++ left nameWidth "PLAYER" - ++ right 3 "G" - ++ right 6 "A" - ++ right 6 "P" - ++ right 6 "PM" - ] ++ map - (\(p, stats) -> centre width - $ right 2 (show $ p^.pNumber) - ++ " " - ++ left nameWidth (p^.pName) - ++ right 3 (show $ stats^.psGoals) - ++ right 6 (show $ stats^.psAssists) - ++ right 6 (show $ psPoints stats) - ++ right 6 (show $ stats^.psPMin)) - ps ++ - [ centre width - $ replicate (4 + nameWidth) ' ' - ++ replicate (3 + 3 * 6) '-' - , overlay - (label ++ " TOTALS") - ( centre width - $ replicate (4 + nameWidth) ' ' - ++ right 3 (show $ tStats^.psGoals) - ++ right 6 (show $ tStats^.psAssists) - ++ right 6 (show $ psPoints tStats) - ++ right 6 (show $ tStats^.psPMin) - ) ] + tHeader = + [ CellText "NO." + , CellText "Player" + , CellText " G" + , CellText " A" + , CellText " P" + , CellText " PM" + ] + + statsCells stats = + [ CellText $ show $ stats^.psGoals + , CellText $ show $ stats^.psAssists + , CellText $ show $ psPoints stats + , CellText $ show $ stats^.psPMin + ] + + body = map + (\(p, stats) -> + [ CellText $ show (p^.pNumber) ++ " " + , CellText $ p^.pName + ] ++ statsCells stats) + ps + + separator = replicate 2 (CellText "") ++ replicate 4 (CellFill '-') + + totals = + [ CellText "" + , CellText "" + ] ++ statsCells tStats + + table = overlayLast (label ++ " TOTALS") + $ map (centre width) + $ complexTable ([right, left] ++ repeat right) + $ tHeader : body ++ [separator, totals] + + in rHeader ++ table + playerNameColWidth :: [Player] -> Int playerNameColWidth = foldr (\player current -> max current $ succ $ length $ player^.pName) diff --git a/test/FormatSpec.hs b/test/FormatSpec.hs index e53249a..9d17668 100644 --- a/test/FormatSpec.hs +++ b/test/FormatSpec.hs @@ -38,6 +38,7 @@ spec = describe "Mtlstats.Format" $ do numTableSpec tableWithSpec complexTableSpec + overlayLastSpec padNumSpec :: Spec padNumSpec = describe "padNum" $ do @@ -201,3 +202,27 @@ complexTableSpec = describe "complexTable" $ mapM_ ] ) ] + +overlayLastSpec :: Spec +overlayLastSpec = describe "overlayLast" $ let + text = "foo" + + sample = + [ "line 1" + , "line 2" + ] + + edited = + [ "line 1" + , "fooe 2" + ] + + in mapM_ + (\(label, input, expected) -> context label $ + it ("should be " ++ show expected) $ + overlayLast text input `shouldBe` expected) + + -- label, input, expected + [ ( "empty list", [], [] ) + , ( "non-empty list", sample, edited ) + ]