swittk
swittk
I've since come to discover that the iOS and Android versions return identical results, and fail the same Key.extractKeyValueDecodedFromValueUsingKeyPath test (both return {"failure":true}). The only difference is in the autoIncrement...
Just found another interesting thing in case it would help; I logged storeProperties.autoInc inside IDBObjectStore.__createInstance and the results were surprising; on iOS almost all calls are autoInc:false, with very, very...
The logs show that the autoInc value provided to IDBObjectStore.__createInstance are the exact opposite in these two platforms .__. I don't know where to look for next; I'm guessing that...
React Native does use the JS SDK, but I'm referring to the Cloud Code in general in this case (since it is the same for whatever client-side is). I did...
You'll have to have widgets listen to mouse hover events and set their background colors according to hover events in/out. Sort of like this. ``` //This line sets the hover...
I did manage to get PouchDB on RN working by using a `abstract-level` compliant store. Repo's [here](https://github.com/swittk/react-native-leveldb-pouch-adapter), and it's backed by my adapter for `react-native-leveldb`, and a slightly modified source...
@mtrezza I've been trying to tackle this here https://github.com/swittk/Parse-SDK-JS/tree/typescript What do you think? If this seems OK I plan to finish more of it soon. There are a few places...
> > import cycles involving ParseObject; help appreciated. > > You mean circular dependencies? Yes, you'll find that currently the failing tests involve classes that extend ParseObject that failed to...
 I've tried using [Madge](https://github.com/pahen/madge) to visualize the circular dependencies and I think the main things that should be of concern are the files named `Parse${name}`, since they require class...