-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NN-618 rename components of toolbar and adjust new path
- Loading branch information
1 parent
d03dbd0
commit 22942fa
Showing
8 changed files
with
93 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<ul class="flex flex-col gap-1.5 p-0 m-0 list-none"> | ||
<li class="flex items-center justify-between gap-2 dark:text-[#c3c3c3]"> | ||
<ExportGraphImage :mode="mode"></ExportGraphImage> | ||
</li> | ||
<li v-if="mode == 'protein'" class="flex items-center justify-between gap-2 dark:text-[#c3c3c3]"> | ||
<ExportGraphData :mode="mode" :gephi_data="gephi_data" :ensembl_name_index="ensembl_name_index"></ExportGraphData> | ||
</li> | ||
</ul> | ||
</template> | ||
|
||
<script> | ||
import ExportGraphImage from "@/components/toolbar/modules/ExportGraphImage.vue"; | ||
import ExportGraphData from "@/components/toolbar/modules/ExportGraphData.vue"; | ||
export default { | ||
name: "ExportList", | ||
props: ["mode", "gephi_data", "ensembl_name_index"], | ||
components: { | ||
ExportGraphImage, | ||
ExportGraphData, | ||
}, | ||
data() { | ||
return {}; | ||
}, | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<template> | ||
<ul class="list-none p-0 m-0 flex flex-col divide-y dark:divide-[#343b4c]"> | ||
<ConnectedGraph :mode="mode"></ConnectedGraph> | ||
<ShowModules :mode="mode"></ShowModules> | ||
<ModuleSelection :mode="mode"></ModuleSelection> | ||
<EdgeOpacity :mode="mode"></EdgeOpacity> | ||
<NodeLabelSelect :mode="mode"></NodeLabelSelect> | ||
<FDRValue v-if="mode == 'term'"></FDRValue> | ||
</ul> | ||
</template> | ||
|
||
<script> | ||
import FDRValue from "@/components/toolbar/modules/FDRValue.vue"; | ||
import NodeLabelSelect from "@/components/toolbar/modules/NodeLabelSelect.vue"; | ||
import ConnectedGraph from "@/components/toolbar/modules/ConnectedGraph.vue"; | ||
import ShowModules from "@/components/toolbar/modules/ShowModules.vue"; | ||
import EdgeOpacity from "@/components/toolbar/modules/EdgeOpacity.vue"; | ||
import ModuleSelection from "@/components/toolbar/modules/ModuleSelection.vue"; | ||
export default { | ||
name: "SettingList", | ||
props: ["tools_active", "mode", "gephi_data", "ensembl_name_index"], | ||
components: { | ||
EdgeOpacity, | ||
NodeLabelSelect, | ||
ConnectedGraph, | ||
ModuleSelection, | ||
FDRValue, | ||
ShowModules, | ||
}, | ||
data() { | ||
return {}; | ||
}, | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters