graphql-engine/server/src-lib/Data/Text/Extended.hs

102 lines
2.2 KiB
Haskell
Raw Normal View History

2018-06-27 16:11:32 +03:00
module Data.Text.Extended
( ToTxt(..)
2020-08-27 19:36:39 +03:00
, bquote
2018-06-27 16:11:32 +03:00
, squote
, dquote
, dquoteList
, commaSeparated
2018-06-27 16:11:32 +03:00
, paren
, parenB
2018-06-27 16:11:32 +03:00
, (<->)
, (<~>)
, (<>>)
, (<<>)
2018-06-27 16:11:32 +03:00
) where
import Hasura.Prelude
import qualified Database.ODBC.SQLServer as ODBC
import qualified Language.GraphQL.Draft.Printer as G
import qualified Language.GraphQL.Draft.Syntax as G
import qualified Text.Builder as TB
2020-08-27 19:36:39 +03:00
import Data.Text as DT
class ToTxt a where
toTxt :: a -> Text
instance ToTxt Text where
toTxt = id
{-# INLINE toTxt #-}
instance ToTxt Char where
toTxt = DT.singleton
instance ToTxt G.Name where
toTxt = G.unName
deriving instance ToTxt G.EnumValue
instance ToTxt () where
toTxt = tshow
instance ToTxt Void where
toTxt = absurd
instance ToTxt (G.Value Void) where
toTxt = TB.run . G.value
instance ToTxt ODBC.Query where
toTxt = ODBC.renderQuery
bquote :: ToTxt t => t -> Text
bquote t = DT.singleton '`' <> toTxt t <> DT.singleton '`'
2020-08-27 19:36:39 +03:00
{-# INLINE bquote #-}
2018-06-27 16:11:32 +03:00
squote :: ToTxt t => t -> Text
squote t = DT.singleton '\'' <> toTxt t <> DT.singleton '\''
2018-06-27 16:11:32 +03:00
{-# INLINE squote #-}
dquote :: ToTxt t => t -> Text
dquote t = DT.singleton '"' <> toTxt t <> DT.singleton '"'
2018-06-27 16:11:32 +03:00
{-# INLINE dquote #-}
paren :: ToTxt t => t -> Text
paren t = "(" <> toTxt t <> ")"
2018-06-27 16:11:32 +03:00
{-# INLINE paren #-}
parenB :: TB.Builder -> TB.Builder
parenB t = TB.char '(' <> t <> TB.char ')'
{-# INLINE parenB #-}
dquoteList :: (ToTxt t, Foldable f) => f t -> Text
dquoteList = DT.intercalate ", " . fmap dquote . toList
{-# INLINE dquoteList #-}
commaSeparated :: (ToTxt t, Foldable f) => f t -> Text
commaSeparated = DT.intercalate ", " . fmap toTxt . toList
{-# INLINE commaSeparated #-}
2018-06-27 16:11:32 +03:00
infixr 6 <->
(<->) :: ToTxt t => t -> t -> Text
(<->) l r = toTxt l <> DT.singleton ' ' <> toTxt r
2018-06-27 16:11:32 +03:00
{-# INLINE (<->) #-}
infixr 6 <>>
(<>>) :: ToTxt t => Text -> t -> Text
(<>>) lTxt a = lTxt <> dquote a
{-# INLINE (<>>) #-}
infixr 6 <<>
(<<>) :: ToTxt t => t -> Text -> Text
(<<>) a rTxt = dquote a <> rTxt
{-# INLINE (<<>) #-}
infixr 6 <~>
(<~>) :: TB.Builder -> TB.Builder -> TB.Builder
(<~>) l r = l <> TB.char ' ' <> r
{-# INLINE (<~>) #-}