Document.purs 1.84 KB
Newer Older
arturo's avatar
arturo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
module Gargantext.Components.Nodes.Corpus.Document
  ( node
  ) where

import Gargantext.Prelude

import Data.Maybe (Maybe(..), isJust)
import Data.Tuple.Nested ((/\))
import Gargantext.Components.Bootstrap as B
import Gargantext.Components.Document.API (loadData)
import Gargantext.Components.Document.Layout (layout)
import Gargantext.Components.Document.Types (LoadedData, DocPath)
import Gargantext.Config.REST (logRESTError)
import Gargantext.Hooks.Loader (useLoaderEffect)
import Gargantext.Hooks.Session (useSession)
import Gargantext.Types (CTabNgramType(..), ListId, NodeID, TabSubType(..), TabType(..))
17
import Gargantext.Utils.Reactix as R2
18
import Reactix as R
19

arturo's avatar
arturo committed
20 21
type Props =
  ( listId    :: ListId
22 23
  , mCorpusId :: Maybe NodeID
  , nodeId    :: NodeID
24
  )
25

arturo's avatar
arturo committed
26 27
here :: R2.Here
here = R2.here "Gargantext.Components.Nodes.Corpus.Document"
28

arturo's avatar
arturo committed
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
node :: R2.Leaf ( key :: String | Props )
node = R2.leaf nodeCpt

nodeCpt :: R.Component ( key :: String | Props )
nodeCpt = here.component "node" cpt where
  cpt { listId
      , mCorpusId
      , nodeId
      } _ = do
    -- | States
    -- |
    session <- useSession

    state' /\ state <- R2.useBox' (Nothing :: Maybe LoadedData)

    -- | Computed
    -- |
    let
      tabType :: TabType
      tabType = TabDocument (TabNgramType CTabTerms)

      path :: DocPath
      path = { listIds: [listId], mCorpusId, nodeId, session, tabType }

    -- | Hooks
    -- |
    useLoaderEffect
      { errorHandler: logRESTError here "[documentLayoutWithKey]"
      , loader: loadData
      , path
      , state
      }

    -- | Render
    -- |
    pure $

      B.cloak
      { isDisplayed: isJust state'
      , idlingPhaseDuration: Just 150
      , cloakSlot:
          B.preloader
          {}

      , defaultSlot:
          R2.fromMaybe state' \loaded ->
            layout
            { loaded
            , path
            }
      }