Чтобы добавить перевод, откройте Pull Request по этой ссылке.
Отображается содержимое для языка по умолчанию.
There is the official Next.js bindings package - @effector/next
. Follow its documentation to find out, how to integrate Next.js with effector.
This is a simplified example of integration with the Next.js router. We create a similar model for storing the router instance:
import { attach, createEvent, createStore, sample } from 'effector';
import { NextRouter } from 'next/router';
const attachRouterEv = createEvent<NextRouter | null>();
const $router = createStore<NextRouter | null>(null);
$router.on(attachRouterEv, (_, router) => router);
const goToRouteEv = createEvent<string>();
const goToRouteFx = attach({
source: $router,
effect: (router, param) => {
return router && router.asPath !== param && router.push(param);
},
});
sample({
clock: goToRouteEv,
target: goToRouteFx,
});
export { $router, attachRouterEv, goToRouteFx };
We take the router instance from _app.tsx:
import { useUnit } from 'effector-react';
import { useRouter } from 'next/router';
...
const router = useRouter();
const attachRouter = useUnit(attachRouterEv);
useEffect(() => {
attachRouter(router);
}, [router, attachRouter]);
...
And we use it in our models:
import { sample } from 'effector';
...
sample({
clock: redirectEv,
fn: () => '/home',
target: goToRouteFx,
});
Документация на английском языке - самая актуальная, поскольку её пишет и обновляет команда effector. Перевод документации на другие языки осуществляется сообществом по мере наличия сил и желания.
Помните, что переведенные статьи могут быть неактуальными, поэтому для получения наиболее точной и актуальной информации рекомендуем использовать оригинальную англоязычную версию документации.