Dmitry

Results 124 comments of Dmitry

Okay, then now we need to do a smoke test: is it enough to move to `defer` only links with `target`? Let's assume naive defer implementation (it will not be...

That’s a hard issue 🤔 Maybe we need to clone scope in this way? ```ts const scope = fork(oldScope, { values: props.initialState }) ``` Which will mean that state of...

You might call allSettled in a handler as it described in [useRouter](https://nextjs.org/docs/api-reference/next/router#userouter) docs. `allSettled` is essentially "wait for each pending effect to complete" ```tsx import {useRouter} from 'next/router' import {allSettled,...

It’s ok, as we explicitly pass scope to allSettled. useEvent is for case when we receive scope via Provider, implicitly

This is a relatively new feature, so there might be such issues @ilajosmanov any ideas?

We are working on it, this is one of the top priorities

In effector 20 we introduced first part for that issue: internal updates for representing relationships between things as a ownership graph, so now we able to make first version for...

> @zerobias How I can access to this representation? # node Each store/event/effect has its own graph node called `graphite`, e.g.: ```javascript import {createStore, createEvent} from 'effector' const event =...

Yes and no: it is an advanced api for sure, which can and would overwhelm users which not interested in details of implementation, so property `graphite` is not typed, but...

Work in progress, we aimed to visualize relationships between units in entire app, as it allows to comprehend dataflows and application architecture ![image](https://user-images.githubusercontent.com/15912112/94944148-7d396c00-04e1-11eb-9f11-89eb2b8c9b62.png) Visualizing such huge graphs in meaningful way...