{-# LANGUAGE LambdaCase #-}
module Text.Jira.Parser.Shared
( icon
) where
import Data.Char (isLetter)
import Data.Text (Text)
import Text.Jira.Markup
import Text.Parsec
icon :: Parsec Text u Icon
icon = smiley <|> otherIcon
smiley :: Parsec Text u Icon
smiley = try $ choice
[ IconWinking <$ string ";)"
, char ':' *> anyChar >>= \case
'D' -> pure IconSmiling
')' -> pure IconSlightlySmiling
'(' -> pure IconFrowning
'P' -> pure IconTongue
c -> fail ("unknown smiley: :" ++ [c])
]
otherIcon :: Parsec Text u Icon
otherIcon = try $ do
let isIconChar c = isLetter c || (c `elem` ("/!+-?*" :: String))
name <- char '('
*> many1 (satisfy isIconChar)
<* char ')'
case name of
"y" -> pure IconThumbsUp
"n" -> pure IconThumbsDown
"i" -> pure IconInfo
"/" -> pure IconCheckmark
"x" -> pure IconX
"!" -> pure IconAttention
"+" -> pure IconPlus
"-" -> pure IconMinus
"?" -> pure IconQuestionmark
"on" -> pure IconOn
"off" -> pure IconOff
"*" -> pure IconStar
"*r" -> pure IconStarRed
"*g" -> pure IconStarGreen
"*b" -> pure IconStarBlue
"*y" -> pure IconStarYellow
"flag" -> pure IconFlag
"flagoff" -> pure IconFlagOff
_ -> fail ("not a known emoji" ++ name)