blob: cbe4db1f515dcb418ab059896680d8d4f32439e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
module History.CommitHash
( CommitHash (..),
toShortText,
toText,
)
where
import Data.Binary (Binary)
import Data.Text qualified as T
import GHC.Generics (Generic)
import Render qualified as P
data CommitHash
= WorkingTree
| Commit T.Text
deriving (Eq, Show, Binary, Generic)
toShortText :: CommitHash -> T.Text
toShortText WorkingTree = "<dirty>"
toShortText (Commit hash) = T.take 7 hash
toText :: CommitHash -> T.Text
toText WorkingTree = "<dirty>"
toText (Commit hash) = hash
instance P.Render CommitHash where
render = P.render . P.Detailed
instance P.Render (P.Detailed CommitHash) where
render (P.Detailed commitHash) =
P.styled [P.color P.Yellow] $
P.render (toText commitHash)
instance P.Render (P.Summarized CommitHash) where
render (P.Summarized commitHash) =
P.styled [P.color P.Yellow] $
P.render (toShortText commitHash)
|