5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 18:46:22 +00:00

feat: un botón accionable

This commit is contained in:
f 2024-05-17 15:17:47 -03:00
parent 7dbe12ed66
commit 76de2e543e
No known key found for this signature in database

View file

@ -0,0 +1,12 @@
-#
Un botón
@param :content [String] Contenido
@param :action [String] Acción de Stimulus
@param :target [String] Objetivo de Stimulus
@param [Hash] Atributos en bruto, con mayor prioridad que action y target
- attributes = local_assigns.to_h.except(:content)
- attributes[:data] ||= {}
- attributes[:data][:action] ||= local_assigns[:action]
- attributes[:data][:target] ||= local_assigns[:target]
%button.btn.btn-secondary{ type: 'button', **attributes }= content