Files
aiolauncher_scripts/community/amdroid-nextalarm-app-widget.lua
2024-03-22 22:02:45 +04:00

49 lines
1.1 KiB
Lua

-- name = "Amdroid Next Alarm"
-- description = "AIO wrapper for the Amdroid next alarm app widget"
-- type = "widget"
-- author = "Theodor Galanis"
-- version = "1.0"
-- foldable = "false"
-- uses_app = "com.amdroidalarmclock.amdroid"
local prefs = require "prefs"
local next_alarm = ""
local w_bridge = nil
function on_resume()
if not widgets:bound(prefs.wid) then
setup_app_widget()
end
widgets:request_updates(prefs.wid)
end
function on_app_widget_updated(bridge)
local tab = bridge:dump_table()
next_alarm = tab.v_layout_1.text_1
w_bridge = bridge
if next_alarm ~= nil
then
ui:show_table({{" ", "%%fa:alarm-clock%% "..next_alarm, " "}}, 0, true)
else
ui:show_text("Empty")
end
end
function on_click(idx)
w_bridge:click(next_alarm)
end
function setup_app_widget()
local id = widgets:setup("com.amdroidalarmclock.amdroid/com.amdroidalarmclock.amdroid.widgets.NextAlarmWidgetProvider")
if (id ~= nil) then
prefs.wid = id
else
ui:show_text("Can't add widget")
end
end