Caveat.purs 1.27 KB
Newer Older
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 38 39
module Gargantext.Components.Bootstrap.Caveat(caveat) where

import Gargantext.Prelude

import Data.Foldable (intercalate)
import Gargantext.Components.Bootstrap.Types (Variant(..))
import Gargantext.Utils.Reactix as R2
import Reactix as R
import Reactix.DOM.HTML as H

type Props   = ( | Options )
type Options =
  ( className :: String
  , variant   :: Variant
  )

options :: Record Options
options =
  { className : ""
  , variant   : Light
  }

-- | Smart reference to the <alert> Bootstrap component,
-- | trimming every features regarding the alert system
-- |
-- | https://getbootstrap.com/docs/4.6/components/alerts/
caveat :: forall r. R2.OptComponent Options Props r
caveat = R2.optComponent component options

componentName :: String
componentName = "b-caveat"

bootstrapName :: String
bootstrapName = "alert"

component :: R.Component Props
component = R.hooksComponent componentName cpt where
  cpt props children = do
    -- Computed
arturo's avatar
arturo committed
40 41 42 43 44 45 46 47 48 49
    let
      className = intercalate " "
        -- provided custom className
        [ props.className
        -- BEM classNames
        , componentName
        -- Bootstrap specific classNames
        , bootstrapName
        , bootstrapName <> "-" <> show props.variant
        ]
50 51 52 53 54 55
    -- Render
    pure $

      H.div
      { className }
      children