Restructure
This commit is contained in:
parent
df8f6716fa
commit
c2139af5ad
7 changed files with 50 additions and 34 deletions
|
@ -9,7 +9,7 @@ import (
|
||||||
"gioui.org/op"
|
"gioui.org/op"
|
||||||
)
|
)
|
||||||
|
|
||||||
var currentView t_ui.UIView = t_ui.UIViewMain
|
var currentView t_ui.UIView = t_ui.UIViewHome
|
||||||
|
|
||||||
// run takes a window as parameter and runs the UI on it.
|
// run takes a window as parameter and runs the UI on it.
|
||||||
func run(window *app.Window) error {
|
func run(window *app.Window) error {
|
||||||
|
|
|
@ -52,7 +52,7 @@ func renderSidebar(th *material.Theme) layout.Widget {
|
||||||
Axis: layout.Vertical,
|
Axis: layout.Vertical,
|
||||||
Alignment: layout.Start,
|
Alignment: layout.Start,
|
||||||
}.Layout(gtx,
|
}.Layout(gtx,
|
||||||
layout.Rigid(renderNavButton(th, icons.ActionHome, "Main", &mainButton, t_ui.UIViewMain)),
|
layout.Rigid(renderNavButton(th, icons.ActionHome, "Main", &mainButton, t_ui.UIViewHome)),
|
||||||
layout.Rigid(renderNavButton(th, icons.ActionBuild, "Parts", &partsButton, t_ui.UIViewParts)),
|
layout.Rigid(renderNavButton(th, icons.ActionBuild, "Parts", &partsButton, t_ui.UIViewParts)),
|
||||||
layout.Rigid(renderNavButton(th, icons.ActionSettings, "Settings", &settingsButton, t_ui.UIViewSettings)),
|
layout.Rigid(renderNavButton(th, icons.ActionSettings, "Settings", &settingsButton, t_ui.UIViewSettings)),
|
||||||
)
|
)
|
||||||
|
@ -71,14 +71,14 @@ func renderNavButton(th *material.Theme, icon *widget.Icon, label string, btn *w
|
||||||
|
|
||||||
// Padding for each button, to add spacing between them.
|
// Padding for each button, to add spacing between them.
|
||||||
in := layout.Inset{
|
in := layout.Inset{
|
||||||
Bottom: unit.Dp(8),
|
Bottom: unit.Dp(12),
|
||||||
Left: unit.Dp(4),
|
Left: unit.Dp(4),
|
||||||
Right: unit.Dp(4),
|
Right: unit.Dp(4),
|
||||||
}
|
}
|
||||||
|
|
||||||
return in.Layout(gtx, func(gtx layout.Context) layout.Dimensions {
|
return in.Layout(gtx, func(gtx layout.Context) layout.Dimensions {
|
||||||
btn := material.IconButton(th, btn, icon, label)
|
btn := material.IconButton(th, btn, icon, label)
|
||||||
btn.Size = unit.Dp(30)
|
btn.Size = unit.Dp(gtx.Constraints.Max.X / 2)
|
||||||
return btn.Layout(gtx)
|
return btn.Layout(gtx)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
package ui
|
package ui
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"icdb/internal/ui/views"
|
||||||
t_ui "icdb/pkg/types/ui"
|
t_ui "icdb/pkg/types/ui"
|
||||||
"image/color"
|
|
||||||
|
|
||||||
"gioui.org/layout"
|
"gioui.org/layout"
|
||||||
"gioui.org/text"
|
|
||||||
"gioui.org/widget/material"
|
"gioui.org/widget/material"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -13,36 +12,14 @@ import (
|
||||||
func renderView(th *material.Theme) layout.Widget {
|
func renderView(th *material.Theme) layout.Widget {
|
||||||
return func(gtx layout.Context) layout.Dimensions {
|
return func(gtx layout.Context) layout.Dimensions {
|
||||||
switch currentView {
|
switch currentView {
|
||||||
case t_ui.UIViewMain:
|
case t_ui.UIViewHome:
|
||||||
return renderMainView(gtx, th)
|
return views.HomeView(gtx, th)
|
||||||
case t_ui.UIViewParts:
|
case t_ui.UIViewParts:
|
||||||
return renderPartsView(gtx, th)
|
return views.PartsView(gtx, th)
|
||||||
case t_ui.UIViewSettings:
|
case t_ui.UIViewSettings:
|
||||||
return renderSettingsView(gtx, th)
|
return views.SettingsView(gtx, th)
|
||||||
default:
|
default:
|
||||||
return renderMainView(gtx, th)
|
return views.HomeView(gtx, th)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// renderMainView displays the main view
|
|
||||||
func renderMainView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
|
||||||
title := material.H2(th, "Welcome to ICDB")
|
|
||||||
title.Color = color.NRGBA{R: 127, G: 0, B: 0, A: 255}
|
|
||||||
title.Alignment = text.Middle
|
|
||||||
return title.Layout(gtx)
|
|
||||||
}
|
|
||||||
|
|
||||||
// renderPartsView displays the parts list
|
|
||||||
func renderPartsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
|
||||||
title := material.H2(th, "Parts Management")
|
|
||||||
title.Alignment = text.Middle
|
|
||||||
return title.Layout(gtx)
|
|
||||||
}
|
|
||||||
|
|
||||||
// renderSettingsView displays the settings view
|
|
||||||
func renderSettingsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
|
||||||
title := material.H2(th, "Settings")
|
|
||||||
title.Alignment = text.Middle
|
|
||||||
return title.Layout(gtx)
|
|
||||||
}
|
|
||||||
|
|
13
src/internal/ui/views/home.go
Normal file
13
src/internal/ui/views/home.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package views
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gioui.org/layout"
|
||||||
|
"gioui.org/text"
|
||||||
|
"gioui.org/widget/material"
|
||||||
|
)
|
||||||
|
|
||||||
|
func HomeView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
||||||
|
title := material.H2(th, "Welcome to ICDB")
|
||||||
|
title.Alignment = text.Middle
|
||||||
|
return title.Layout(gtx)
|
||||||
|
}
|
13
src/internal/ui/views/parts.go
Normal file
13
src/internal/ui/views/parts.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package views
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gioui.org/layout"
|
||||||
|
"gioui.org/text"
|
||||||
|
"gioui.org/widget/material"
|
||||||
|
)
|
||||||
|
|
||||||
|
func PartsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
||||||
|
title := material.H2(th, "Parts")
|
||||||
|
title.Alignment = text.Middle
|
||||||
|
return title.Layout(gtx)
|
||||||
|
}
|
13
src/internal/ui/views/settings.go
Normal file
13
src/internal/ui/views/settings.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package views
|
||||||
|
|
||||||
|
import (
|
||||||
|
"gioui.org/layout"
|
||||||
|
"gioui.org/text"
|
||||||
|
"gioui.org/widget/material"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SettingsView(gtx layout.Context, th *material.Theme) layout.Dimensions {
|
||||||
|
title := material.H2(th, "Settings")
|
||||||
|
title.Alignment = text.Middle
|
||||||
|
return title.Layout(gtx)
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
package ui
|
package ui
|
||||||
|
|
||||||
const (
|
const (
|
||||||
UIViewMain UIView = 0
|
UIViewHome UIView = 0
|
||||||
UIViewParts UIView = 1
|
UIViewParts UIView = 1
|
||||||
UIViewCategories UIView = 2
|
UIViewCategories UIView = 2
|
||||||
UIViewLocations UIView = 3
|
UIViewLocations UIView = 3
|
||||||
|
|
Loading…
Add table
Reference in a new issue