yew-callbacks
Yet another crate nobody asked for.
This crate provides a derive macro Callbacks that can be used on Yew enum messages to help
managing callbacks.
But why
Callbacks in Yew's components are easy to create but hard to manage. To avoid duplication you
should create them preemptively in the create() method of your component, store them in the
state of your component, then pass clones to the children. Unfortunately this creates a lot of
bloat.
To address this, yew-callbacks provides a macro that will automatically create some kind of
cache for your callbacks. You create this cache once in the create() method of your component
and then you can use the methods to get your callbacks easily.
Example
use *;
use Callbacks;
Why care
Not perf.
Your children components will be updated if their properties changed. If you do
onclick={ctx.link().callback(Msg::OnClick) then the child component will think there is an
update every time the parent component updates. This is because doing
ctx.link().callback(Msg::OnClick) creates a new callback every time.
Handling multiple child components
This crate also allows currying the arguments of your callback.
Example
use *;
use Callbacks;