NullVoxPopuli

Results 2063 comments of NullVoxPopuli

What's the tldr on the coloring problem? Here is a test that shows behavior, if that helps: https://github.com/NullVoxPopuli/signal-utils/blob/ef3d29f2dd2ff943714c5f7c1bfd0c89af529ad7/tests/async-function.test.ts#L111 State changes are propagated appropriately (and non duplicatively) when tracked states are...

Ah ok, thanks for explaining! This is indeed a familiar concept than i've been trying to find ergonomics for, and one that @ef4 has been pushing back on @wycats and...

I'm not the best person to ask about cacheless computed :sweat_smile: In Ember, the move away from a cached-computed was that it turned out that _most_ usages of a cached...

I think, explained in another Issue (I forget where), but you can achieve a modified value via `Signal.Computed`, and _modification_ to a signal should happen as the result of an...

You may be interested in this issue: - https://github.com/proposal-signals/proposal-signals/issues/74 It's currently on the library/framework author to to ergonomicify APIs. There will still probably be room for an abstraction project, as...

I tried responding here: https://github.com/proposal-signals/proposal-signals/pull/102 lemme know what you think!

@ddamato with proxies, ```js let data = new Proxy({ /* what goes here */ }, { trap }); ``` Signals are used entirely differently -- let's say we want to...

> Are we saying that they need to be able to sort of execute the code in their head and realize what dependencies may or may not trigger the notification...

Is that for memory efficiency? Or are there other reasons?