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 #-}
16 {-# LANGUAGE InstanceSigs #-}
18 module Gargantext.Core.Text.List.Group
21 import Control.Lens (set, view)
24 import Data.Maybe (fromMaybe)
25 import Data.Monoid (Monoid, mempty)
26 import Data.Text (Text)
27 import Gargantext.Core.Types (ListType(..))
28 import Gargantext.Database.Admin.Types.Node (NodeId)
29 import Gargantext.Core.Text.List.Social.Prelude
30 import Gargantext.Core.Text.List.Group.Prelude
31 import Gargantext.Core.Text.List.Group.WithStem
32 import Gargantext.Core.Text.List.Group.WithScores
33 import Gargantext.Prelude
34 import qualified Data.Set as Set
35 import qualified Data.Map as Map
36 import qualified Data.List as List
38 ------------------------------------------------------------------------
39 -- | TODO add group with stemming
40 toGroupedTree :: (Ord a, Monoid a, GroupWithStem a)
42 -> FlowCont Text FlowListScores
44 -- -> Map Text (GroupedTreeScores (Set NodeId))
45 -> FlowCont Text (GroupedTreeScores a)
46 toGroupedTree groupParams flc scores = {-view flc_scores-} flow2
48 flow1 = groupWithScores' flc scoring
49 scoring t = fromMaybe mempty $ Map.lookup t scores
51 flow2 = case (view flc_cont flow1) == Map.empty of
53 False -> groupWithStem' groupParams flow1
55 setScoresWith :: Map Text a
56 -> Map Text (GroupedTreeScores b)
57 -> Map Text (GroupedTreeScores a)
58 setScoresWith = undefined
61 ------------------------------------------------------------------------
62 ------------------------------------------------------------------------
63 -- 8<-- 8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--8<--
64 -- | TODO To be removed
65 toGroupedText :: GroupedTextParams a b
66 -> Map Text FlowListScores
67 -> Map Text (Set NodeId)
68 -> Map Stem (GroupedText Int)
69 toGroupedText groupParams scores =
70 (groupWithStem groupParams) . (groupWithScores scores)
73 addListType :: Map Text ListType -> GroupedText a -> GroupedText a
74 addListType m g = set gt_listType (hasListType m g) g
76 hasListType :: Map Text ListType -> GroupedText a -> Maybe ListType
77 hasListType m' (GroupedText _ label _ g' _ _ _) =
78 List.foldl' (<>) Nothing
79 $ map (\t -> Map.lookup t m')