Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vulnerability-indicators
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Water Mission Area
VizLab
vulnerability-indicators
Commits
69b48eeb
Commit
69b48eeb
authored
10 months ago
by
Cee Nell
Browse files
Options
Downloads
Patches
Plain Diff
reposition beeswarm placement
parent
d4e77dbf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!22
Make beeswarm vertical
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/Beeswarm.vue
+8
-57
8 additions, 57 deletions
src/components/Beeswarm.vue
src/views/VisualizationView.vue
+1
-1
1 addition, 1 deletion
src/views/VisualizationView.vue
with
9 additions
and
58 deletions
src/components/Beeswarm.vue
+
8
−
57
View file @
69b48eeb
<
template
>
<section
id=
"beeswarm"
>
<div
id=
"title"
class=
"text-container title-text"
>
<h3
v-html=
"agVsMunText.title"
/>
</div>
<div
id=
"text1"
class=
"text-container"
>
<p
v-html=
"agVsMunText.paragraph1"
/>
</div>
<div
id=
"toggle-container"
>
<div
id=
"checkbox1-container"
>
<input
type=
"checkbox"
id=
"checkbox1"
v-model=
"checkboxStates[0]"
@
change=
"handleCheckboxChange(0)"
>
...
...
@@ -27,45 +15,16 @@
</div>
</div>
<div
id=
"beeswarm-chart-container"
></div>
<div
id=
"title2"
class=
"text-container title-text"
>
<h3
v-html=
"vulnerabilityText.title"
/>
</div>
<div
id=
"text2"
class=
"text-container"
>
<p
v-html=
"vulnerabilityText.paragraph1"
/>
</div>
<div
id=
"text3"
class=
"text-container"
>
<p
v-html=
"vulnerabilityText.paragraph2"
/>
</div>
<div
id=
"text4"
class=
"text-container"
>
<p
v-html=
"vulnerabilityText.paragraph3"
/>
</div>
</section>
</
template
>
<
script
setup
>
import
{
onMounted
,
ref
,
watch
}
from
"
vue
"
;
import
{
isMobile
}
from
'
mobile-device-detect
'
;
import
*
as
d3
from
'
d3
'
;
import
agVersusMunicipalText
from
"
./../assets/text/agVsMunicipalText
"
;
import
socialVulnerabilityText
from
"
./../assets/text/socialVulnerabilityText
"
import
*
as
d3
from
'
d3
'
;
// global variables
const
publicPath
=
import
.
meta
.
env
.
BASE_URL
;
const
agVsMunText
=
agVersusMunicipalText
.
agVersusMunicipalText
;
const
vulnerabilityText
=
socialVulnerabilityText
.
socialVulnerabilityText
;
const
dataSet1
=
ref
([]);
const
dataSet2
=
ref
([]);
const
selectedDataSet
=
ref
(
'
dataSet1
'
);
...
...
@@ -77,9 +36,9 @@
// set up svg
let
svg
;
const
height
=
6
00
;
const
width
=
10
00
;
let
margin
=
{
top
:
10
0
,
right
:
20
,
bottom
:
20
,
left
:
4
0
}
const
height
=
8
00
;
const
width
=
8
00
;
let
margin
=
{
top
:
3
0
,
right
:
20
,
bottom
:
20
,
left
:
3
0
}
// set colors for bubble charts
const
dimensionColors
=
{
...
...
@@ -107,8 +66,6 @@
async
function
loadDatasets
()
{
dataSet1
.
value
=
await
loadData
(
'
determinant_uncertainty.csv
'
);
dataSet2
.
value
=
await
loadData
(
'
indicator_uncertainty.csv
'
)
// console.log(dataSet1.value);
// console.log(dataSet2.value);
}
async
function
loadData
(
fileName
)
{
...
...
@@ -160,8 +117,6 @@
}
function
handleCheckboxChange
(
index
)
{
// console.log(checkboxStates);
// console.log(checkboxStates.value[index]);
// Call the corresponding function based on the index
checkboxFunctions
[
index
](
checkboxStates
.
value
[
index
]);
}
...
...
@@ -192,11 +147,7 @@
.
attr
(
'
height
'
,
height
)
const
radius
=
10
const
categories
=
Array
.
from
(
new
Set
(
data
.
value
.
map
((
d
)
=>
d
.
dimension
)))
// console.log(categories)
// const categoryCenters = {}
const
numRows
=
2
//Math.ceil(Math.sqrt(categories.length)); // Number of rows for grid layout
const
numCols
=
4
//Math.ceil(categories.length / numRows); // Number of columns
const
colWidth
=
width
/
numCols
...
...
@@ -397,7 +348,7 @@ $switchWidth: 12rem;
justify-content
:
center
;
align-items
:
center
;
width
:
100%
;
margin
:
20px
0
;
/* Add some margin to give space around the toggle container */
margin
:
20px
0
;
}
#checkbox1-container
,
...
...
@@ -405,14 +356,14 @@ $switchWidth: 12rem;
#checkbox3-container
{
display
:
flex
;
align-items
:
center
;
margin
:
0
10px
;
/* Add some space between the checkboxes */
margin
:
0
10px
;
}
#checkbox1-container
label
,
#checkbox2-container
label
,
#checkbox3-container
label
{
margin-left
:
5px
;
/* Add space between the checkbox and the label */
font-size
:
2rem
;
/* Increase label font size if needed */
margin-left
:
5px
;
font-size
:
2rem
;
}
#checkbox1
,
...
...
This diff is collapsed.
Click to expand it.
src/views/VisualizationView.vue
+
1
−
1
View file @
69b48eeb
<
template
>
<section
id=
"visualization"
>
<VizTitle
/>
<Beeswarm
/>
<NarrativeIntro
/>
<BubbleChart
/>
<Dendrogram
/>
<Maps
/>
<!--
<Beeswarm
/>
-->
<ReferencesSection
/>
<AuthorshipSection
/>
</section>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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