ParseReact icon indicating copy to clipboard operation
ParseReact copied to clipboard

Seamlessly bring Parse data into your React applications.

Results 72 ParseReact issues
Sort by recently updated
recently updated
newest added

Hi I'm able to login/signup and am observing ParseReact.currentUser and everything is working fine. Though when I refresh on the iOS simulator this.data.user returns false and I have to signup/login...

Been trying this for a few hours now and I just can't get it to work. Asking here is pretty much my last resort. The gist below is my entire...

Hi, I am not sure whether to use Parse SDK (with Redux perhaps) or Parse React in a React native project. I have heard of several developers that choose to...

Hello im trying to select single object not an array of objects, how that is possible? as a parse javascript sdk docs says, it must be done using .first(), but...

PS: submitted an issue on the Parse repo regarding this issue as well. I can't seem to be able to query Parse. I'm using the ParseReact and React packages. Here's...

``` Javascript observe: function (_props, _state) { var self = this; return { attendees: self._getAttendees(_props, _state) }; }, _getAttendees: function (_props, _state) { var Event = Parse.Object.extend('Event'); var e =...

Using react native I am able to select an image from the camera roll and successfully upload it to Parse. However, I am having trouble retrieving that same image from...

How would one go about doing an infinite scroll? I ask because in my render() function I can't setState.

I'm observing the current user: ``` observe: function() { return { user: ParseReact.currentUser, }; }, ``` However, after the user signs in via Facebook and the current user's information is...

When using a Parse .include, and a mutation is dispatched, the mutation is not updated locally. For example: ``` observe: function() { var query = new Parse.Query("_User"); query.equalTo("objectId", Parse.User.current().id); query.include("Posts");...