Mikhail Nasyrov

Results 20 comments of Mikhail Nasyrov

Hi guys! I've just faced with the same issue when I tried to manually update to the latest `emoji.json` file. How about to fix the issue by patching the regex...

In my case, a following workaround helps me: I had to add all 'index.d.ts' files from 'dist' dir to my tsconfig.json. ``` "include": [ "./node_modules/ng2-validation/dist/**/index.d.ts" ], ```

@netopolit @BallisticPain Can't help with it :( My final tsconfig has a next tweak which is compiled by ngc 2.2.1: ```json "include": [ "./node_modules/ng2-validation/dist/**/*.d.ts" ], "exclude": [ "./node_modules/ng2-validation/dist/index.d.ts" ] ```

There are client/server apps which communicate over web sockets using JSON-RPC. Clients perform some server's methods and listen for a few server's notifications. Since a web socket is a bidirectional...

David, thank you for explanations! I'm using WebCrypto because of its AES cipher (requirements) which is more performant than JS implementations. As I understood, it should be enough to override...

It seems like the error is specific for `[email protected]`. I did quick integration testing and the cursor works OK with `[email protected]` (renderer process, Chromium 80.0.3987.165).

@dfahlander David, thank you for pointing the error with `fake-indexeddb`, it was fixed in 3.0.2 version. I have another question regarding implementation of a middleware with async encryption or other...

Could it possible that `PSD.trans` is not set during cursor creation, so `Dexie.waitFor(slowOperation())` does not take effect?

@dfahlander Finally, I managed to make the cursor work. For this I made a custom workaround based on dexie's `transaction.waitFor()` function. Below is `keepTransactionUntil()` function, it works directly with IDB...

Also I faced with following error during implementing a custom cursor: ``` TypeError: Illegal invocation at onNext (/test/node_modules/dexie/src/classes/collection/collection-helpers.ts:98:28) at /test/src/test.js:227:19 at /test/node_modules/dexie/src/helpers/promise.js:843:23 at callListener (/test/node_modules/dexie/src/helpers/promise.js:497:19) at endMicroTickScope (/test/node_modules/dexie/src/helpers/promise.js:583:25) at physicalTick...