init
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
local Button = require('elements/Button')
|
||||
|
||||
---@alias ManagedButtonProps {name: string; anchor_id?: string; render_order?: number; hide?: boolean}
|
||||
|
||||
---@class ManagedButton : Button
|
||||
local ManagedButton = class(Button)
|
||||
|
||||
---@param id string
|
||||
---@param props ManagedButtonProps
|
||||
function ManagedButton:new(id, props) return Class.new(self, id, props) --[[@as ManagedButton]] end
|
||||
---@param id string
|
||||
---@param props ManagedButtonProps
|
||||
function ManagedButton:init(id, props)
|
||||
---@type string | table | nil
|
||||
self.command = nil
|
||||
---@type boolean
|
||||
self.hide = nil
|
||||
---@type fun(hide: boolean) | nil
|
||||
self.on_hide = nil
|
||||
Button.init(self, id, table_assign({}, props, {on_click = function() execute_command(self.command) end}))
|
||||
self:update(buttons:get(props.name))
|
||||
self:register_disposer(buttons:subscribe(props.name, function(data) self:update(data) end))
|
||||
end
|
||||
|
||||
function ManagedButton:update(data)
|
||||
local hide_before = self.hide
|
||||
for _, prop in ipairs({'icon', 'active', 'badge', 'command', 'tooltip', 'hide'}) do
|
||||
self[prop] = data[prop]
|
||||
end
|
||||
self.is_clickable = self.command ~= nil
|
||||
if self.hide ~= hide_before and self.on_hide then
|
||||
self.on_hide(self.hide)
|
||||
end
|
||||
end
|
||||
|
||||
return ManagedButton
|
||||
Reference in New Issue
Block a user