Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EUbOPEN Web
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ChEMBL
EUbOPEN
EUbOPEN Web
Commits
5b799fc8
Commit
5b799fc8
authored
3 years ago
by
David Mendez
Browse files
Options
Downloads
Patches
Plain Diff
Sunburst: recompute labels text when navigating through levels
parent
80a7e39e
No related branches found
No related tags found
1 merge request
!18
Sunburst: implement navigation and initial version or radial labels
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
components/mainPage/visualisations/TargetsTree/TargetsSunburst.vue
+32
-1
32 additions, 1 deletion
...s/mainPage/visualisations/TargetsTree/TargetsSunburst.vue
web-components-submodule
+1
-1
1 addition, 1 deletion
web-components-submodule
with
33 additions
and
2 deletions
components/mainPage/visualisations/TargetsTree/TargetsSunburst.vue
+
32
−
1
View file @
5b799fc8
<
template
>
<div
class=
"targets-sunburst"
>
<v-skeleton-loader
v-if=
"loading"
type=
"card"
></v-skeleton-loader>
<Sunburst
v-else
:hierachy-tree=
"parsedTree"
/>
<template
v-else
>
<v-card
tile
flat
class=
"sunburst-card"
>
<v-card-subtitle>
Targets in EUbOPEN
</v-card-subtitle>
<v-divider
/>
<v-breadcrumbs
:items=
"currentPath"
></v-breadcrumbs>
<Sunburst
:hierachy-tree=
"parsedTree"
/>
<v-card-text
class=
"text-caption text-justify"
>
Click on a section to expand it. Click on the links on top to see the
targets of the corresponding class.
</v-card-text>
</v-card>
</
template
>
</div>
</template>
...
...
@@ -18,6 +29,23 @@ export default {
return
{
loading
:
true
,
rawHierachyTree
:
{},
currentPath
:
[
{
text
:
'
Enzyme
'
,
disabled
:
false
,
href
:
'
breadcrumbs_dashboard
'
,
},
{
text
:
'
Kinase
'
,
disabled
:
false
,
href
:
'
breadcrumbs_link_1
'
,
},
{
text
:
'
Protein Kinase
'
,
disabled
:
true
,
href
:
'
breadcrumbs_link_2
'
,
},
],
}
},
computed
:
{
...
...
@@ -58,5 +86,8 @@ export default {
.targets-sunburst
{
height
:
100%
;
width
:
100%
;
.sunburst-card
{
height
:
100%
;
}
}
</
style
>
This diff is collapsed.
Click to expand it.
web-components-submodule
@
3c482f5d
Compare
c7988048
...
3c482f5d
Subproject commit
c7988048f1387d3880e9f3d6b2d6398a605a24d4
Subproject commit
3c482f5da16e600940b5ce97e32ca16c1f51cc46
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment