PhxViewHelpers (phx_component_helpers v0.13.1) View Source
PhxComponentHelpers
are helper functions meant to be used within Phoenix
your views to facilitate usage of live_components inside templates.
Link to this section Summary
Functions
Extends Phoenix.HTML.Form.form_for/3
options to merge css class as with
PhxComponentHelpers.extend_class/2
.
Link to this section 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