Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
148
Issues
148
List
Board
Labels
Milestones
Merge Requests
10
Merge Requests
10
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext
Commits
ca45f758
Commit
ca45f758
authored
Oct 08, 2020
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Social] ListType WIP
parent
77c4095c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
90 additions
and
0 deletions
+90
-0
Social.hs
src/Gargantext/Core/Text/List/Social.hs
+90
-0
No files found.
src/Gargantext/Core/Text/List/Social.hs
View file @
ca45f758
...
...
@@ -13,6 +13,7 @@ Portability : POSIX
module
Gargantext.Core.Text.List.Social
where
-- findList imports
import
Gargantext.Database.Prelude
import
Gargantext.Database.Query.Tree
import
Gargantext.Database.Query.Tree.Root
(
getRootId
)
...
...
@@ -22,6 +23,95 @@ import Gargantext.Prelude
import
Gargantext.Database.Query.Table.Node.Error
import
Gargantext.Database.Admin.Config
-- filterList imports
import
Data.Maybe
(
fromMaybe
,
catMaybes
)
import
Data.Set
(
Set
)
import
Data.Text
(
Text
)
import
Data.Map
(
Map
)
import
Data.Tuple
(
fst
)
import
qualified
Data.List
as
List
import
qualified
Data.Set
as
Set
import
qualified
Data.Map
as
Map
import
Gargantext.API.Ngrams.Types
import
Gargantext.API.Ngrams.Tools
-- (getListNgrams)
import
Gargantext.API.Ngrams
import
Gargantext.Core.Types.Main
import
Gargantext.Database.Schema.Ngrams
---------------------------------------------------------------------------
-- TODO: maybe use social groups too
toSocialList
::
Map
Text
(
Map
ListType
Int
)
->
Set
Text
->
Set
(
Text
,
Maybe
ListType
)
toSocialList
m
=
Set
.
map
(
toSocialList1
m
)
-- | TODO what if equality ?
-- choice depends on Ord instance of ListType
-- for now : data ListType = StopTerm | CandidateTerm | MapTerm
-- means MapTerm > CandidateTerm > StopTerm in case of equality of counts
-- (we minimize errors on MapTerms if doubt)
toSocialList1
::
Map
Text
(
Map
ListType
Int
)
->
Text
->
(
Text
,
Maybe
ListType
)
toSocialList1
m
t
=
case
Map
.
lookup
t
m
of
Nothing
->
(
t
,
Nothing
)
Just
m
->
(
t
,
(
fst
.
fst
)
<$>
Map
.
maxViewWithKey
m
)
---------------------------------------------------------------------------
-- | [ListId] does not merge the lists (it is for Master and User lists
-- here we need UserList only
countFilterList
::
RepoCmdM
env
err
m
=>
Set
Text
->
NgramsType
->
[
ListId
]
->
Map
Text
(
Map
ListType
Int
)
->
m
(
Map
Text
(
Map
ListType
Int
))
countFilterList
st
nt
ls
input
=
foldM'
(
\
m
l
->
countFilterList'
st
nt
[
l
]
m
)
input
ls
countFilterList'
::
RepoCmdM
env
err
m
=>
Set
Text
->
NgramsType
->
[
ListId
]
->
Map
Text
(
Map
ListType
Int
)
->
m
(
Map
Text
(
Map
ListType
Int
))
countFilterList'
st
nt
ls
input
=
do
ml
<-
toMapListType
<$>
getListNgrams
ls
nt
pure
$
Set
.
foldl'
(
\
m
t
->
countList
t
ml
m
)
input
st
---------------------------------------------------------------------------
toMapListType
::
Map
Text
NgramsRepoElement
->
Map
Text
ListType
toMapListType
=
Map
.
fromListWith
(
<>
)
.
List
.
concat
.
(
map
toList
)
.
Map
.
toList
toList
::
(
Text
,
NgramsRepoElement
)
->
[(
Text
,
ListType
)]
toList
(
t
,
NgramsRepoElement
_
lt
r
parent
(
MSet
children
))
=
List
.
zip
terms
(
List
.
cycle
[
lt
])
where
terms
=
[
t
]
<>
maybe
[]
(
\
n
->
[
unNgramsTerm
n
])
parent
<>
(
map
unNgramsTerm
$
Map
.
keys
children
)
---------------------------------------------------------------------------
countList
::
Text
->
Map
Text
ListType
->
Map
Text
(
Map
ListType
Int
)
->
Map
Text
(
Map
ListType
Int
)
countList
t
m
input
=
case
Map
.
lookup
t
m
of
Nothing
->
input
Just
l
->
Map
.
alter
add
t
input
where
add
Nothing
=
Just
$
addCount
l
Map
.
empty
add
(
Just
lm
)
=
Just
$
addCount
l
lm
addCount
::
ListType
->
Map
ListType
Int
->
Map
ListType
Int
addCount
l
m
=
Map
.
alter
add
l
m
where
add
Nothing
=
Just
1
add
(
Just
x
)
=
Just
$
x
+
1
------------------------------------------------------------------------
findListsId
::
(
HasNodeError
err
,
HasTreeError
err
)
=>
NodeMode
->
User
->
Cmd
err
[
NodeId
]
findListsId
mode
u
=
do
r
<-
getRootId
u
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment