David Fahlander

Results 556 comments of David Fahlander

The only reason bulkUpdate isn't updated has been lack of time ;) The bulk methods are, as @nponiros said, a transaction block with operations, but there is a great performance...

The implementation of bulkUpdate should do things similarily to how Collection.modify() is implemented but a much simpler as it will only apply a set of keyPaths and change to their...

> So is there any sample code showing how to achieve this before `bulkUpdate` is implemented? > > Is this code alright? > > ```ts > const updateMulti = async...

dexie-export-import is a client-side library so you'd need to avoid it being executed on the server.

The typing of useObservable had become incompatible but the runtime is correct. The typings used to work with rxjs@6 but not rxjs@7. After adjusting typings for rxjs@7 it works less...

Thanks for sharing it and making me aware of it. The addon does actually work more as a base for dexie-syncable than a pure observation enabler and as such, it...

The heart beat is always going on no matter if there are multiple tabs or not.

@activebiz Make sure you have the following in **tsconfig.json**: ```json { "compilerOptions": { ... "module": "es2015", "moduleResolution": "node" ... } } ``` Also, that you import Dexie as the default...

Sounds like a pure webpack problem. The dexie.mjs does not contain any call to require. Seems webpack is doing some transpiling here, or you are using some fork of dexie.