25 lines
594 B
Lua
25 lines
594 B
Lua
-- name = "Random facts"
|
|
-- description = "Radom useless facts"
|
|
-- data_source = "https://uselessfacts.jsph.pl/"
|
|
-- type = "widget"
|
|
-- author = "Evgeny Zobnin (zobnin@gmail.com)"
|
|
-- version = "1.0"
|
|
-- foldable = "false"
|
|
|
|
function on_alarm()
|
|
http:get("https://uselessfacts.jsph.pl/random.json?language=en")
|
|
end
|
|
|
|
function on_network_result(result, code)
|
|
if code >= 200 and code < 299 then
|
|
text = ajson:get_value(result, "object string:text")
|
|
ui:show_lines{ text }
|
|
end
|
|
end
|
|
|
|
function on_click()
|
|
if text ~= nil then
|
|
system:copy_to_clipboard(text)
|
|
end
|
|
end
|