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
Compare revisions
6f8947c7ee0d7fed959825262d87acad1e64f74d to 8c3baa855f7291c026763e2084bc384b5813f2b8
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
informationsvisualisierung-2024/infovis-projekt
Select target project
No results found
8c3baa855f7291c026763e2084bc384b5813f2b8
Select Git revision
Branches
master
Swap
Target
informationsvisualisierung-2024/infovis-projekt
Select target project
informationsvisualisierung-2024/infovis-projekt
1 result
6f8947c7ee0d7fed959825262d87acad1e64f74d
Select Git revision
Branches
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (4)
Updated navbar icon.
· 725317a1
Damian Romano Haj-Houssin
authored
3 months ago
725317a1
Removed dummy Other page.
· 3d707b4d
Damian Romano Haj-Houssin
authored
3 months ago
3d707b4d
Moved datatable icon to end in navbar.
· 63ba930d
Damian Romano Haj-Houssin
authored
3 months ago
63ba930d
Small style update for loading spinner.
· 8c3baa85
Damian Romano Haj-Houssin
authored
3 months ago
8c3baa85
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
public/style.css
+0
-1
0 additions, 1 deletion
public/style.css
src/Main.elm
+6
-14
6 additions, 14 deletions
src/Main.elm
src/Model.elm
+0
-1
0 additions, 1 deletion
src/Model.elm
with
6 additions
and
16 deletions
public/style.css
View file @
8c3baa85
...
...
@@ -179,7 +179,6 @@ body {
width
:
120px
;
height
:
120px
;
animation
:
spin
2s
linear
infinite
;
}
@keyframes
spin
{
...
...
This diff is collapsed.
Click to expand it.
src/Main.elm
View file @
8c3baa85
...
...
@@ -168,18 +168,16 @@ viewNav ( global, _ ) =
,
div
[
Html
.
Attributes
.
class
"
navbar-title"
]
[
text
"
Schengen Visa Statistics"
]
,
div
[
Html
.
Attributes
.
class
"
navbar-view-icons"
]
[
button
[
activeClass
Other
|>
Html
.
Attributes
.
class
,
ViewChange
Other
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-wrench fa-xl"
]
[]
]
,
button
[
activeClass
MapView
|>
Html
.
Attributes
.
class
,
ViewChange
MapView
|>
onClick
]
[
button
[
activeClass
MapView
|>
Html
.
Attributes
.
class
,
ViewChange
MapView
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-map fa-xl"
]
[]
]
,
button
[
activeClass
DataTable
|>
Html
.
Attributes
.
class
,
ViewChange
DataTable
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-table fa-xl"
]
[]
]
,
button
[
activeClass
ForceDirectedGraph
|>
Html
.
Attributes
.
class
,
ViewChange
ForceDirectedGraph
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-
poo
fa-xl"
]
[]
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-
hexagon-nodes
fa-xl"
]
[]
]
,
button
[
activeClass
BarPlot
|>
Html
.
Attributes
.
class
,
ViewChange
BarPlot
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-chart-simple fa-xl"
]
[]
]
,
button
[
activeClass
LinePlot
|>
Html
.
Attributes
.
class
,
ViewChange
LinePlot
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-chart-line fa-xl"
]
[]
]
,
button
[
activeClass
DataTable
|>
Html
.
Attributes
.
class
,
ViewChange
DataTable
|>
onClick
]
[
i
[
Html
.
Attributes
.
class
"
fa-solid fa-table fa-xl"
]
[]
]
]
]
...
...
@@ -189,15 +187,13 @@ viewContent ( global, local ) =
let
message
=
Html
.
div
[
Html
.
Attributes
.
style
"
justify-items"
"
center"
,
Html
.
Attributes
.
style
"
align-content"
"
center"
,
Html
.
Attributes
.
style
"
flex-grow"
"
1"
]
[
Html
.
Attributes
.
style
"
margin"
"
auto"
]
(
case
global
.
progress
of
Loading
->
[
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..."
]
...
...
@@ -215,10 +211,6 @@ viewContent ( global, local ) =
div
[
Html
.
Attributes
.
class
"
content"
]
[
message
]
Other
->
div
[
Html
.
Attributes
.
class
"
content"
]
[
text
"
Other Page"
]
MapView
->
div
[
Html
.
Attributes
.
class
"
content"
]
[
MapView
.
view
global
local
.
map
]
...
...
This diff is collapsed.
Click to expand it.
src/Model.elm
View file @
8c3baa85
...
...
@@ -10,7 +10,6 @@ import Data.DataLoader exposing (Entry)
type
View
=
Home
|
Other
|
MapView
|
DataTable
|
ForceDirectedGraph
...
...
This diff is collapsed.
Click to expand it.