Mitchell Marino mitchell
  • Joined on 2024-01-30
mitchell pushed to feature/context at MarinoDev/leptos_form_tool 2024-06-12 23:44:48 +00:00
fac8e515f6 remove the FS and CX generics
mitchell created pull request MarinoDev/leptos_form_tool#27 2024-06-12 23:10:40 +00:00
Add context
mitchell pushed to feature/context at MarinoDev/leptos_form_tool 2024-06-12 22:37:03 +00:00
e371ff748b impl context
4c6b6fa920 add context
Compare 2 commits »
mitchell created branch feature/context in MarinoDev/leptos_form_tool 2024-06-12 22:04:23 +00:00
mitchell pushed to feature/context at MarinoDev/leptos_form_tool 2024-06-12 22:04:23 +00:00
mitchell commented on issue MarinoDev/leptos_form_tool#12 2024-06-12 21:56:14 +00:00
Add support for conditional rendering

This gets tough when you consider the validation and what should happen on the server.

Do you validate fields that aren't showing? Do you validate them on the server? What if the context is…

mitchell closed issue MarinoDev/leptos_form_tool#24 2024-06-12 21:49:37 +00:00
Dont provide style and FD for getting validator
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-12 21:49:12 +00:00
bd73591b9f merge
mitchell deleted branch feature/separate_validation_builder from MarinoDev/leptos_form_tool 2024-06-12 21:46:29 +00:00
mitchell pushed to main at MarinoDev/leptos_form_tool 2024-06-12 21:46:29 +00:00
a5fd4f85ee Merge pull request 'Various improvements' (#26) from feature/separate_validation_builder into main
079c9bde53 lint
1e2709dc8c ControlRenderData no long has boxed data
64d2631140 clean up style trait
115ff1abde remove fd and fs from builder
Compare 6 commits »
mitchell merged pull request MarinoDev/leptos_form_tool#26 2024-06-12 21:46:28 +00:00
Various improvements
079c9bde53 lint
1e2709dc8c ControlRenderData no long has boxed data
64d2631140 clean up style trait
Compare 3 commits »
mitchell created pull request MarinoDev/leptos_form_tool#26 2024-06-12 21:29:03 +00:00
Various improvements
115ff1abde remove fd and fs from builder
a39f2ce664 selects can have different values and customized button builder
mitchell commented on issue MarinoDev/leptos_form_tool#24 2024-06-12 20:19:02 +00:00
Dont provide style and FD for getting validator

It looks like we can even get rid of the fd field in the builder, since it's passed in in the render fn. Perhaps the same with the style.

mitchell commented on issue MarinoDev/leptos_form_tool#24 2024-06-12 20:12:31 +00:00
Dont provide style and FD for getting validator

The problem is, if we pass the context in addition to the builder when building components (which is necessary for dynamic select options) then the context must be present for building the form…

mitchell created branch feature/separate_validation_builder in MarinoDev/leptos_form_tool 2024-06-12 19:11:49 +00:00
mitchell commented on issue MarinoDev/leptos_form_tool#24 2024-06-12 19:10:11 +00:00
Dont provide style and FD for getting validator

Since we are putting the Validation Builder back in, it might make sense to get rid of the RenderFn