-
## Proposal
Add ability to call combine as string literal with stores:
```ts
const $a = createStore(0)
const $b = createStore("foo")
const $result = combine`The ${a} and the ${b}`;
$result…
-
I found an interesting pattern in Aviasales codebase. In many cases we use `Date.now` and `new Date()`, and now we have no Effector-way to handle it.
Maybe we can add utility function for `currentT…
-
Error occurs when my release-drafter workflow runs.
```sh
Deprecation: [@octokit/request-error] `error.code` is deprecated, use `error.status`.
at RequestError.get (/app/node_modules/@octokit…
usk81 updated
2 years ago
-
TypeScript gives error when i use reeffect with [patronum/pending](https://github.com/effector/patronum/tree/main/pending)
![image](https://user-images.githubusercontent.com/70065394/94166982-a5e3b…
-
```js
const { tick, opened } = interval({ timeout: 300, start: event, stop: event });
sample({
clock: tick,
target: readTimeFx,
})
// or (bad example) but take an idea
$time.on(tick, ()…
-
Hello!
I have started exploring effector and stack with an issue which I don't understand. My experimental feature is simple: start and stop interval (native setInterval from JS). Every time interv…
-
**What is the current behavior:**
Usage of `.on` method is deprecated on derived stores and to be removed in the next release - this is very good news and, i think, makes everything a lot more co…
-
I am modelling stores that are backed by data retrieved from the backend API.
In this case, the value provided as `defaultState` to `createStore` often doesn't make sense to the app. I'd like to avoi…
-
- `@testing-library/react` version: 12.0.0
- Testing Framework and version: jest 26.0.24
- DOM Environment:
### Relevant code or config:
```js
beforeEach(() => {
jest.useF…
-
To the form `persist({ source, target })`, something like:
```javascript
persist({
source: $store,
clock: doPersist,
})
```
In order to be more "API-compliment" with effector