Wrap user element functions with macro

This commit is contained in:
paku 2024-02-03 22:37:58 +09:00
parent 169a0c1467
commit 3d8fad8e3f

View file

@ -149,7 +149,9 @@ When given :ASCII and :ATTR, it's possible to insert html text as a children, e.
(call-next-method))
(defmacro! define-element (name (&rest args) &body body)
`(defun ,name (&rest ,g!attrs-and-children)
(let ((%name (alexandria:symbolicate '% name)))
`(progn
(defun ,%name (&rest ,g!attrs-and-children)
(multiple-value-bind (,g!attrs ,g!children)
(split-attrs-and-children ,g!attrs-and-children)
(let ((,g!element
@ -162,7 +164,9 @@ When given :ASCII and :ATTR, it's possible to insert html text as a children, e.
(list arg `(attr attrs (make-keyword ',arg))))
args)
(progn ,@body))))
,g!element))))
,g!element)))
(defmacro ,name (&body attrs-and-children)
`(,',%name ,@attrs-and-children)))))
(defvar *expand-user-element* t)