You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
local lvgl = require("lvgl")
|
|
local widgets = require("widgets")
|
|
local legacy_ui = require("legacy_ui")
|
|
local database = require("database")
|
|
local backstack = require("backstack")
|
|
local browser = require("browser")
|
|
|
|
return function()
|
|
local menu = {}
|
|
menu.root = lvgl.Object(nil, {
|
|
flex = {
|
|
flex_direction = "column",
|
|
flex_wrap = "wrap",
|
|
justify_content = "flex-start",
|
|
align_items = "flex-start",
|
|
align_content = "flex-start",
|
|
},
|
|
w = lvgl.HOR_RES(),
|
|
h = lvgl.VER_RES(),
|
|
})
|
|
menu.root:center()
|
|
|
|
menu.status_bar = widgets.StatusBar(menu.root, {transparent_bg = true})
|
|
|
|
menu.list = lvgl.List(menu.root, {
|
|
w = lvgl.PCT(100),
|
|
h = lvgl.PCT(100),
|
|
flex_grow = 1,
|
|
})
|
|
|
|
menu.list:add_btn(nil, "Now Playing"):onClicked(function()
|
|
legacy_ui.open_now_playing();
|
|
end)
|
|
|
|
local indexes = database.indexes()
|
|
for id, idx in ipairs(indexes) do
|
|
local btn = menu.list:add_btn(nil, tostring(idx))
|
|
btn:onClicked(function()
|
|
backstack.push(function()
|
|
return browser {
|
|
title = tostring(idx),
|
|
iterator = idx:iter()
|
|
}
|
|
end)
|
|
end)
|
|
end
|
|
|
|
menu.list:add_btn(nil, "Settings"):onClicked(function()
|
|
legacy_ui.open_settings();
|
|
end)
|
|
|
|
return menu
|
|
end
|
|
|