Add duplicate button

This commit is contained in:
luk3yx 2024-03-22 14:58:39 +13:00
parent 3c5c615d0a
commit f131c1f365
1 changed files with 17 additions and 3 deletions

View File

@ -233,9 +233,10 @@ local function show_properties(elem, node)
formspec = formspec .. formspec = formspec ..
'button[0.25,' .. y .. ';2.7,0.75;send_to_back;Send to back]' .. 'button[0.25,' .. y .. ';2.7,0.75;send_to_back;Send to back]' ..
'button[3.05,' .. y .. ';2.7,0.75;bring_to_front;Bring to front]' .. 'button[3.05,' .. y .. ';2.7,0.75;bring_to_front;Bring to front]' ..
'button[0.25,' .. y + 0.85 .. ';2.7,0.75;delete;Delete element]' .. 'button[0.25,' .. y + 0.85 .. ';5.5,0.75;duplicate;Duplicate]' ..
'button[3.05,' .. y + 0.85 .. ';2.7,0.75;reset;Reset]' 'button[0.25,' .. y + 1.7 .. ';2.7,0.75;delete;Delete element]' ..
y = y + 1.7 'button[3.05,' .. y + 1.7 .. ';2.7,0.75;reset;Reset]'
y = y + 2.55
end end
formspec = 'formspec_version[2]size[6,' .. y + 1.25 .. ']' .. formspec .. formspec = 'formspec_version[2]size[6,' .. y + 1.25 .. ']' .. formspec ..
@ -249,6 +250,19 @@ local function show_properties(elem, node)
end end
formspec = formspec .. ']' formspec = formspec .. ']'
local counter = 0
function callbacks.duplicate()
local parent = elem.parentNode
elem = elem:cloneNode(true)
parent:appendChild(elem)
counter = counter + 1
-- Set up drag+drop
renderer.default_elem_hook(node, elem, SCALE)
properties_elem:querySelector(
'[data-formspec_ast-name="duplicate"]'
).textContent = "Duplicated x" .. counter
end
function callbacks.delete() function callbacks.delete()
if js.global:confirm('Are you sure?') then if js.global:confirm('Are you sure?') then
elem.parentNode:removeChild(elem) elem.parentNode:removeChild(elem)