packages feed

morpheus-graphql-server-0.28.0: src/Data/Morpheus/Server/Deriving/Utils/Kinded.hs

{-# LANGUAGE DataKinds #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE StandaloneDeriving #-}
{-# LANGUAGE NoImplicitPrelude #-}

module Data.Morpheus.Server.Deriving.Utils.Kinded
  ( CatType (..),
    inputType,
    outputType,
    unliftKind,
    mapCat,
    mkScalar,
    isIN,
    Kinded (..),
    mkEnum,
    mkObject,
  )
where

import Data.Morpheus.Server.Types.Kind (DerivingKind)
import Data.Morpheus.Types.Internal.AST
  ( DataEnumValue,
    FieldDefinition,
    IN,
    OUT,
    ScalarDefinition,
    TRUE,
    TypeCategory (..),
    TypeContent (..),
    unsafeFromFields,
  )
import Prelude

data CatType (cat :: TypeCategory) a where
  InputType :: CatType IN a
  OutputType :: CatType OUT a

deriving instance Show (CatType cat a)

inputType :: f a -> CatType IN a
inputType _ = InputType

outputType :: f a -> CatType OUT a
outputType _ = OutputType

unliftKind :: CatType cat (f k a) -> CatType cat a
unliftKind InputType = InputType
unliftKind OutputType = OutputType

mapCat :: f a -> CatType cat b -> CatType cat a
mapCat _ InputType = InputType
mapCat _ OutputType = OutputType

mkScalar :: CatType c a -> ScalarDefinition -> TypeContent TRUE c s
mkScalar InputType f = DataScalar f
mkScalar OutputType f = DataScalar f

mkEnum :: CatType c a -> [DataEnumValue s] -> TypeContent TRUE c s
mkEnum InputType x = DataEnum x
mkEnum OutputType x = DataEnum x

mkObject :: CatType kind a -> [FieldDefinition kind s] -> TypeContent TRUE kind s
mkObject InputType = DataInputObject . unsafeFromFields
mkObject OutputType = DataObject [] . unsafeFromFields

isIN :: CatType c a -> Bool
isIN InputType = True
isIN _ = False

newtype Kinded (kind :: DerivingKind) a = Kinded {unkind :: a}