From 3fb447fe006a48bb1e7ecfee3ea0bae2871f78b7 Mon Sep 17 00:00:00 2001 From: tv Date: Mon, 6 Feb 2023 00:45:12 +0100 Subject: Blessings: add quoteSpecials --- src/Blessings/String/Extra.hs | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/Blessings/String/Extra.hs (limited to 'src/Blessings/String') diff --git a/src/Blessings/String/Extra.hs b/src/Blessings/String/Extra.hs new file mode 100644 index 0000000..51d13eb --- /dev/null +++ b/src/Blessings/String/Extra.hs @@ -0,0 +1,41 @@ +{-# LANGUAGE LambdaCase #-} +module Blessings.String.Extra where + +import Blessings +import Control.Arrow ((&&&)) +import Data.Char (isPrint,showLitChar) +import Data.Function (on) +import Data.List (groupBy) + + +quoteSpecials :: Blessings String -> Blessings String +quoteSpecials = \case + Plain s -> quoteSpecials' s + SGR pm x -> SGR pm (quoteSpecials x) + Append a b -> Append (quoteSpecials a) (quoteSpecials b) + Empty -> Empty + + +quoteSpecials' :: String -> Blessings String +quoteSpecials' s = + mconcat . map (uncurry renderClassifiedString) $ classifiedGroupBy isPrint s + where + renderClassifiedString :: Bool -> String -> Blessings String + renderClassifiedString = \case + True -> printableColor . Plain + False -> unprintableColor . Plain . showLitChar' + + (printableColor, unprintableColor) = + (id, SGR [35]) + --if hasFocus + --then (color focus colorConfig, color unprintableFocus colorConfig) + --else (color quote colorConfig, color unprintableNormal colorConfig) + + showLitChar' :: String -> String + showLitChar' = (>>= f) + where f '\ESC' = "^[" + f c = showLitChar c "" + + classifiedGroupBy :: Eq b => (a -> b) -> [a] -> [(b, [a])] + classifiedGroupBy f = + map (f . head &&& id) . groupBy ((==) `on` f) -- cgit v1.2.3