Zek
Zek
I agree with @mcollina We can create a new function which does - closes queue to abort new pushed jobs - aborts all jobs that are queued but not started...
To overcome this problem, we need to create 2 more applications with a custom docker file (which requires maintaining 3 env files in total) - For laravel queues: https://github.com/renoki-co/laravel-docker-base/blob/master/Dockerfile.worker -...
I also use browser's Intl in my application. We should rely on Intl instead of loading a very big package.
We may also consider a headless notification-center. So we can implement our own logic. Most of the libraries implements this logic such as https://tanstack.com/table/v8/docs/guide/introduction
@alazier Is there any progress for mobx integration?
@bmunkholm Is there any integration plan for future? I believe mobx or any reactivity integration will make realm more powerful. Without reactivity realm is a bit limited.
```js import { createAtom } from 'mobx'; export class Favorites extends Realm.Object { atom = createAtom('Favorite'); constructor(props) { super(props); this.addListener(this.onChange); } get _username(){ this.atom.reportObserved(); return this.username; } onChange = ()...
@bmunkholm I am trying to create a decorator but I couldn't find any way to proxy property access without modifying source code. Do you know any way to proxy property...
having same issue