2 Module : Gargantext.Core.Text.List.Group
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
12 {-# LANGUAGE TemplateHaskell #-}
13 {-# LANGUAGE ConstraintKinds #-}
14 {-# LANGUAGE TypeFamilies #-}
15 {-# LANGUAGE FunctionalDependencies #-}
18 module Gargantext.Core.Text.List.Group
21 import Control.Lens (set)
24 import Data.Text (Text)
25 import Gargantext.Core.Types (ListType(..))
26 import Gargantext.Database.Admin.Types.Node (NodeId)
27 import Gargantext.Core.Text.List.Social.Prelude (FlowListScores(..))
28 import Gargantext.Core.Text.List.Group.WithStem
29 import Gargantext.Core.Text.List.Group.WithScores
30 import Gargantext.Prelude
31 import qualified Data.Set as Set
32 import qualified Data.Map as Map
33 import qualified Data.List as List
35 ------------------------------------------------------------------------
36 toGroupedText :: GroupedTextParams a b
37 -> Map Text FlowListScores
38 -> Map Text (Set NodeId)
39 -> Map Stem (GroupedText Int)
40 toGroupedText groupParams scores =
41 (groupWithStem groupParams) . (groupWithScores scores)
43 ------------------------------------------------------------------------
44 -- | TODO put in test folder
45 toGroupedText_test :: Bool -- Map Stem (GroupedText Int)
47 -- fromGroupedScores $ fromListScores from
48 toGroupedText params from datas == result
50 params = GroupedTextParams identity (Set.size . snd) fst snd
51 from :: Map Text FlowListScores
52 from = Map.fromList [("A. Rahmani",FlowListScores {_fls_parents = Map.fromList [("T. Reposeur",1)]
53 ,_fls_listType = Map.fromList [(MapTerm,2)]})
54 ,("B. Tamain",FlowListScores {_fls_parents = Map.fromList [("T. Reposeur",1)]
55 , _fls_listType = Map.fromList [(MapTerm,2)]})
58 datas :: Map Text (Set NodeId)
59 datas = Map.fromList [("A. Rahmani" , Set.fromList [1,2])
60 ,("T. Reposeur", Set.fromList [3,4])
61 ,("B. Tamain" , Set.fromList [5,6])
65 result :: Map Stem (GroupedText Int)
66 result = Map.fromList [("A. Rahmani",GroupedText {_gt_listType = Nothing
67 ,_gt_label = "A. Rahmani"
69 ,_gt_children = Set.empty
71 ,_gt_stem = "A. Rahmani"
72 ,_gt_nodes = Set.fromList [1,2]
75 ,("B. Tamain",GroupedText {_gt_listType = Nothing
76 , _gt_label = "B. Tamain"
78 , _gt_children = Set.empty
80 , _gt_stem = "B. Tamain"
81 , _gt_nodes = Set.fromList [5,6]
84 ,("T. Reposeur",GroupedText {_gt_listType = Nothing
85 ,_gt_label = "T. Reposeur"
87 ,_gt_children = Set.fromList ["A. Rahmani","B. Tamain"]
89 ,_gt_stem = "T. Reposeur"
90 ,_gt_nodes = Set.fromList [1..6]
95 ------------------------------------------------------------------------
96 -- | TODO To be removed
97 addListType :: Map Text ListType -> GroupedText a -> GroupedText a
98 addListType m g = set gt_listType (hasListType m g) g
100 hasListType :: Map Text ListType -> GroupedText a -> Maybe ListType
101 hasListType m' (GroupedText _ label _ g' _ _ _) =
102 List.foldl' (<>) Nothing
103 $ map (\t -> Map.lookup t m')
105 $ Set.insert label g'