Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
infovis-projekt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
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
Informationsvisualisierung 2024
infovis-projekt
Commits
862da1b0
Commit
862da1b0
authored
3 months ago
by
Aamon Paul Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
fix not showing spinner when switching views (for real for real)
parent
41ad2eca
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#24408
passed
3 months ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Main.elm
+8
-8
8 additions, 8 deletions
src/Main.elm
src/Views/ForceDirectedGraph.elm
+4
-2
4 additions, 2 deletions
src/Views/ForceDirectedGraph.elm
with
12 additions
and
10 deletions
src/Main.elm
+
8
−
8
View file @
862da1b0
...
...
@@ -194,14 +194,14 @@ viewHome global =
case
global
.
progress
of
Loading
->
Html
.
div
[
Html
.
Attributes
.
style
"
margin"
"
auto"
]
[
Html
.
div
[
Html
.
Attributes
.
class
"
loader"
]
[]
,
Html
.
div
[
Html
.
Attributes
.
style
"
position"
"
relative"
,
Html
.
Attributes
.
style
"
left"
"
1.5rem"
,
Html
.
Attributes
.
style
"
bottom"
"
5rem"
[
Html
.
div
[
Html
.
Attributes
.
class
"
loader"
]
[]
,
Html
.
div
[
Html
.
Attributes
.
style
"
position"
"
relative"
,
Html
.
Attributes
.
style
"
left"
"
1.5rem"
,
Html
.
Attributes
.
style
"
bottom"
"
5rem"
]
[
Html
.
text
"
Loading Data..."
]
]
[
Html
.
text
"
Loading Data..."
]
]
Failure
msg
->
Html
.
text
(
msg
|>
(
++
)
"
Error while loading data. "
)
...
...
@@ -237,7 +237,7 @@ viewHome global =
,
Html
.
b
[]
[
text
"
Chernoff Gesichtern"
]
,
text
"
vergleichen kannst."
,
text
"
Durch "
,
Html
.
b
[]
[
text
"
Klick auf ein Drittland"
]
,
Html
.
b
[]
[
text
"
Klick auf ein Drittland"
]
,
text
"
und ggf. anschließende Auswahl eines "
,
Html
.
b
[]
[
text
"
Konsulats"
]
,
text
"
kannst du die zur Berechnung der Gesichter verwendeten Daten filtern."
...
...
This diff is collapsed.
Click to expand it.
src/Views/ForceDirectedGraph.elm
+
4
−
2
View file @
862da1b0
...
...
@@ -26,10 +26,12 @@ import TypedSvg.Core exposing (Attribute, Svg, text)
import
TypedSvg
.
Types
exposing
(
AlignmentBaseline
(
..
)
,
AnchorAlignment
(
..
)
,
Paint
(
..
)
,
ShapeRendering
(
..
)
,
TextRendering
(
..
)
,
px
)
import
Utils
exposing
(
flag
)
icon
:
Html
Msg
icon
=
Html
.
i
[
Html
.
Attributes
.
class
"
fa-solid fa-hexagon-nodes fa-xl"
]
[]
w
:
Float
w
=
1000
...
...
@@ -104,7 +106,7 @@ view global local =
]
,
Html
.
div
[
Html
.
Attributes
.
class
"
legend"
,
style
"
width"
"
19%"
]
[
Html
.
div
[
style
"
display"
"
flex"
]
[
Html
.
h3
[
style
"
margin-top"
"
0rem"
,
style
"
margin-bottom"
"
0rem"
,
style
"
align-content"
"
center"
]
[
Html
.
h3
[
style
"
margin-top"
"
0rem"
,
style
"
margin-bottom"
"
0rem"
,
style
"
align-content"
"
center"
]
[
Html
.
text
"
Legende"
]
,
if
not
<|
local
.
highlight
==
"
"
then
...
...
@@ -458,7 +460,7 @@ updateGraphWithList =
calculateModel
:
List
Entry
->
Local
.
Model
->
Cmd
Local
.
Msg
calculateModel
data
local
=
Task
.
perform
Local
.
RecalcEnd
(
Process
.
sleep
0
|>
Task
.
andThen
(
\
_
->
postInit
data
local
))
Task
.
perform
Local
.
RecalcEnd
(
Process
.
sleep
10
|>
Task
.
andThen
(
\
_
->
Process
.
sleep
0
)
|>
Task
.
andThen
(
\
_
->
postInit
data
local
))
update
:
Local
.
Msg
->
Global
->
Local
.
Model
->
(
Global
,
Local
.
Model
,
Cmd
Msg
)
...
...
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