Commit 1c36c287 authored by Alexandre Delanoë's avatar Alexandre Delanoë
parents 12ee415b f5a41588
...@@ -116,7 +116,7 @@ import Prelude (error) ...@@ -116,7 +116,7 @@ import Prelude (error)
import Gargantext.Prelude import Gargantext.Prelude
import Gargantext.API.Admin.Types (HasSettings) import Gargantext.API.Admin.Types (HasSettings)
-- import qualified Gargantext.API.Metrics as Metrics import qualified Gargantext.API.Metrics as Metrics
import Gargantext.API.Ngrams.Types import Gargantext.API.Ngrams.Types
import Gargantext.Core.Types (ListType(..), NodeId, ListId, DocId, Limit, Offset, HasInvalidError, TODO, assertValid) import Gargantext.Core.Types (ListType(..), NodeId, ListId, DocId, Limit, Offset, HasInvalidError, TODO, assertValid)
import Gargantext.Core.Utils (something) import Gargantext.Core.Utils (something)
...@@ -130,8 +130,8 @@ import Gargantext.Database.Query.Table.Node.Error (HasNodeError) ...@@ -130,8 +130,8 @@ import Gargantext.Database.Query.Table.Node.Error (HasNodeError)
import Gargantext.Database.Admin.Types.Node (NodeType(..)) import Gargantext.Database.Admin.Types.Node (NodeType(..))
import Gargantext.Database.Prelude (HasConnectionPool, HasConfig) import Gargantext.Database.Prelude (HasConnectionPool, HasConfig)
import qualified Gargantext.Database.Query.Table.Ngrams as TableNgrams import qualified Gargantext.Database.Query.Table.Ngrams as TableNgrams
-- import Gargantext.Database.Query.Table.Node (getNode) import Gargantext.Database.Query.Table.Node (getNode)
-- import Gargantext.Database.Schema.Node (NodePoly(..)) import Gargantext.Database.Schema.Node (node_id, node_parentId, node_userId)
{- {-
-- TODO sequences of modifications (Patchs) -- TODO sequences of modifications (Patchs)
...@@ -344,11 +344,10 @@ tableNgramsPut tabType listId (Versioned p_version p_table) ...@@ -344,11 +344,10 @@ tableNgramsPut tabType listId (Versioned p_version p_table)
ret <- commitStatePatch (Versioned p_version p) ret <- commitStatePatch (Versioned p_version p)
<&> v_data %~ (view (_PatchMap . at ngramsType . _Just . _PatchMap . at listId . _Just)) <&> v_data %~ (view (_PatchMap . at ngramsType . _Just . _PatchMap . at listId . _Just))
{-
node <- getNode listId node <- getNode listId
let nId = _node_id node let nId = node ^. node_id
_uId = _node_userId node _uId = node ^. node_userId
mCId = _node_parentId node mCId = node ^. node_parentId
-- printDebug "[tableNgramsPut] updating graph with nId" nId -- printDebug "[tableNgramsPut] updating graph with nId" nId
-- printDebug "[tableNgramsPut] updating graph with uId" uId -- printDebug "[tableNgramsPut] updating graph with uId" uId
-- _ <- recomputeGraph uId nId Conditional -- _ <- recomputeGraph uId nId Conditional
...@@ -392,7 +391,6 @@ tableNgramsPut tabType listId (Versioned p_version p_table) ...@@ -392,7 +391,6 @@ tableNgramsPut tabType listId (Versioned p_version p_table)
printDebug "[tableNgramsPut] no update for tabType = " tabType printDebug "[tableNgramsPut] no update for tabType = " tabType
pure () pure ()
pure () pure ()
-}
pure ret pure ret
{- {-
......
...@@ -74,7 +74,6 @@ instance FromHttpApiData TabType ...@@ -74,7 +74,6 @@ instance FromHttpApiData TabType
parseUrlPiece "Contacts" = pure Contacts parseUrlPiece "Contacts" = pure Contacts
parseUrlPiece _ = Left "Unexpected value of TabType" parseUrlPiece _ = Left "Unexpected value of TabType"
instance ToParamSchema TabType instance ToParamSchema TabType
instance ToJSON TabType instance ToJSON TabType
instance FromJSON TabType instance FromJSON TabType
...@@ -82,7 +81,6 @@ instance ToSchema TabType ...@@ -82,7 +81,6 @@ instance ToSchema TabType
instance Arbitrary TabType instance Arbitrary TabType
where where
arbitrary = elements [minBound .. maxBound] arbitrary = elements [minBound .. maxBound]
instance FromJSONKey TabType where instance FromJSONKey TabType where
fromJSONKey = genericFromJSONKey defaultJSONKeyOptions fromJSONKey = genericFromJSONKey defaultJSONKeyOptions
instance ToJSONKey TabType where instance ToJSONKey TabType where
......
...@@ -24,6 +24,7 @@ module Gargantext.Database.Admin.Types.Hyperdata.List ...@@ -24,6 +24,7 @@ module Gargantext.Database.Admin.Types.Hyperdata.List
import Data.Map (Map) import Data.Map (Map)
import qualified Data.Map as Map import qualified Data.Map as Map
import Control.Applicative import Control.Applicative
import Gargantext.Prelude import Gargantext.Prelude
import Gargantext.Core.Viz.Types (Histo(..)) import Gargantext.Core.Viz.Types (Histo(..))
import Gargantext.API.Ngrams.NTree (MyTree) import Gargantext.API.Ngrams.NTree (MyTree)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment