Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
139
Issues
139
List
Board
Labels
Milestones
Merge Requests
4
Merge Requests
4
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
purescript-gargantext
Commits
142480be
Commit
142480be
authored
Sep 26, 2024
by
Alexandre Delanoë
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/696-add-separators-between-keywords-in-phylo' into dev
parents
dbf5d605
d1c63881
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
4 deletions
+23
-4
bootstrap-default.css
dist/styles/bootstrap-default.css
+3
-0
bootstrap-greyson.css
dist/styles/bootstrap-greyson.css
+3
-0
bootstrap-herbie.css
dist/styles/bootstrap-herbie.css
+3
-0
bootstrap-monotony.css
dist/styles/bootstrap-monotony.css
+3
-0
Phylo.purs
src/Gargantext/Components/Nodes/Corpus/Phylo.purs
+1
-1
Resources.js
src/Gargantext/Components/PhyloExplorer/Resources.js
+6
-2
_phylo.scss
src/sass/_legacy/_phylo.scss
+4
-1
No files found.
dist/styles/bootstrap-default.css
View file @
142480be
...
...
@@ -11292,6 +11292,9 @@ select.form-control {
.phylo
.term
:hover
{
font-weight
:
bold
;
}
.phylo
.separator
{
fill
:
#B5B5B5
;
}
.phylo
.term-path
{
fill
:
none
;
stroke
:
#F24C3D
;
...
...
dist/styles/bootstrap-greyson.css
View file @
142480be
...
...
@@ -11138,6 +11138,9 @@ select.form-control {
.phylo
.term
:hover
{
font-weight
:
bold
;
}
.phylo
.separator
{
fill
:
#B5B5B5
;
}
.phylo
.term-path
{
fill
:
none
;
stroke
:
#F24C3D
;
...
...
dist/styles/bootstrap-herbie.css
View file @
142480be
...
...
@@ -11363,6 +11363,9 @@ select.form-control {
.phylo
.term
:hover
{
font-weight
:
bold
;
}
.phylo
.separator
{
fill
:
#B5B5B5
;
}
.phylo
.term-path
{
fill
:
none
;
stroke
:
#F24C3D
;
...
...
dist/styles/bootstrap-monotony.css
View file @
142480be
...
...
@@ -11436,6 +11436,9 @@ select.form-control {
.phylo
.term
:hover
{
font-weight
:
bold
;
}
.phylo
.separator
{
fill
:
#B5B5B5
;
}
.phylo
.term-path
{
fill
:
none
;
stroke
:
#F24C3D
;
...
...
src/Gargantext/Components/Nodes/Corpus/Phylo.purs
View file @
142480be
...
...
@@ -119,5 +119,5 @@ nodeCpt = R2.hereComponent here "node" hCpt where
]
_ -> H.p
{ className: "text-center pt-10" }
[ H.text "Phylo not generated yet, please update the node settings to see your phylo
nometr
y." ]
[ H.text "Phylo not generated yet, please update the node settings to see your phylo
mem
y." ]
}
src/Gargantext/Components/PhyloExplorer/Resources.js
View file @
142480be
...
...
@@ -2062,7 +2062,9 @@ function setGroup(g, xScale, yScale, wScale) {
fdt
=
lines
[
i
].
fdt
,
roles
=
lines
[
i
].
role
,
terms
=
mergeLists
(
words
,
fdt
,
roles
),
toSpan
=
(
acc
,
w
)
=>
acc
+
"<tspan fdt="
+
w
[
1
]
toSpan
=
(
acc
,
w
,
index
)
=>
{
let
separator
=
index
<
terms
.
length
-
1
?
"<tspan class='separator'> | </tspan>"
:
""
;
return
acc
+
"<tspan fdt="
+
w
[
1
]
+
" class='term fdt-"
+
w
[
1
]
+
" "
+
"g-"
+
g
.
gId
+
findRole
(
w
[
2
])
+
"'"
+
" gy="
+
yScale
(
g
.
to
)
+
" gx="
+
xScale
(
g
.
x
)
...
...
@@ -2071,7 +2073,9 @@ function setGroup(g, xScale, yScale, wScale) {
+
" gid="
+
g
.
gId
+
" bid="
+
g
.
bId
+
" from="
+
(
g
.
to
).
getFullYear
()
+
">"
+
w
[
0
]
+
"</tspan>"
;
+
">"
+
w
[
0
]
+
"</tspan>"
+
separator
;
};
panel
.
append
(
"text"
)
...
...
src/sass/_legacy/_phylo.scss
View file @
142480be
...
...
@@ -209,7 +209,10 @@ $decreasing-color: #11638F;
.term
:hover
{
font-weight
:
bold
;
}
.separator
{
fill
:
$graph-heading-color
;
}
// .term-unfocus {
// fill: #A9A9A9;
// }
...
...
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