View Source PhxViewHelpers (phx_component_helpers v1.4.0)
PhxComponentHelpers
are helper functions meant to be used within Phoenix your views to
facilitate usage of live_components inside templates.
Summary
Functions
Extends Phoenix.HTML.Form.form_for/3
options to merge css class as with
PhxComponentHelpers.extend_class/2
.
Functions
Extends Phoenix.HTML.Form.form_for/3
options to merge css class as with
PhxComponentHelpers.extend_class/2
.
It's useful to define your own form_for
functions with default css classes that still can be
overriden from the template.
Example
def my_form_for(form_data, action, options) when is_list(options) do
new_options = extend_form_class(options, "mt-4 space-y-2")
form_for(form_data, action, new_options)
end