Questions tagged [parse-react]

Parse + React is an interface layer on top of the Parse JS SDK.

Parse + React is an interface layer on top of the Parse JS SDK that provides simple access to the Parse API from React. It lets React components subscribe to Parse queries, and allows data mutations to be dispatched in a Flux-style manner. In the background, these subscriptions are managed in a way that lets these components automatically update as objects are created and modified, allowing user interfaces to be snappy and responsive.

8 questions
2
votes
2 answers

Unable to resolve parse-react in React Native project

I'm trying to include parse-react into my React Native project, but when running the app I'm getting the error in XCode and simulator: Unable to resolve module ./lib/react-native/ParseReact.js from…
Corey
  • 21
  • 1
  • 2
2
votes
0 answers

Calling Cloud Function with ParseReact

With ParseReact, it is possible to call Parse Query in a reactive way. I try to call user defined function from Parse Cloud Code but I don't see how to do. So do you have example about calling a cloud function in ParseReact
EntrustName
  • 421
  • 6
  • 19
2
votes
0 answers

Uncaught TypeError: Cannot call a class as a function in Parse-React App

I am building a Parse-React-Ratchet App and I am running into an unfamiliar error "Uncaught TypeError: Cannot call a class as a function" in the browser console. The error message is rooted in class-call-check.js in the node-module babel-runtime. I…
2
votes
1 answer

Using Parse react query goes to local storage instead of Parse.com

I have an observe function in a react native app that is needed by the Parse react mixin: var Parse = require('parse').Parse; var ParseReact = require('parse-react'); var React = require('react-native'); var PollingPage = React.createClass({ …
Nikos
  • 7,295
  • 7
  • 52
  • 88
1
vote
0 answers

Parse React Error On Facebook Login

I am learning Parse together with React. So far I have in my HTML
Jiew Meng
  • 84,767
  • 185
  • 495
  • 805
0
votes
1 answer

Form in React doesn't behave as expected

I have a form in React that is used for logging into my application. The code itself for logging in is firing off fine, however when you first load the page and enter login information and click submit, the code to login fires, but the page reloads…
0
votes
1 answer

How to insure non logged inuser data submitted to parse.com only comes from mobile app

I have a mobile app (React native) that I am using with ParseReact with and have it so the user can immediately send data to parse inside the app. How can I lock this down so that parse.com will only take data from users with the APP…
SuperUberDuper
  • 9,242
  • 9
  • 39
  • 72
0
votes
0 answers

use parse react query results as an html tag attribute

This is my first time asking a question so I am a true SO newbie. I am currently working on a mobile app and I am using Parse React and Ratchet to build it. I have read the React documentations on FB github and apparently do not understand all…