2023-03-12 22:12:33 +08:00
|
|
|
local strategy = {
|
2023-03-14 13:18:53 +08:00
|
|
|
play = function()
|
2023-03-12 22:12:33 +08:00
|
|
|
print('TODO: play')
|
|
|
|
end,
|
|
|
|
pageup = function()
|
|
|
|
print('TODO: pageup')
|
|
|
|
end,
|
|
|
|
pagedown = function()
|
|
|
|
print('TODO: pagedown')
|
|
|
|
end,
|
|
|
|
pin = function()
|
|
|
|
print('TODO: pin')
|
|
|
|
end,
|
2023-03-14 13:18:53 +08:00
|
|
|
close = function(hover)
|
|
|
|
hover:destroy()
|
2023-03-12 22:12:33 +08:00
|
|
|
end,
|
|
|
|
toggle_entry = function()
|
|
|
|
print('TODO: toggle_entry')
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-03-14 13:18:53 +08:00
|
|
|
return function(hover, action)
|
2023-03-12 22:12:33 +08:00
|
|
|
-- TODO :
|
2023-03-14 13:18:53 +08:00
|
|
|
coroutine.wrap(strategy[action])(hover)
|
2023-03-12 22:12:33 +08:00
|
|
|
end
|