
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-cloud-code-mixin
Advanced tools
A Parse Cloud Code mixin for React.js, inspired by the ParseReact Mixin.
Mixin for React components to easily listen for changes and re-render from Parse Cloud Code function calls. The format here is very heavily inspired from ParseReact's Mixin.
The first step is to include the mixin in your component like so:
var MyComponent = React.createClass({
mixins: [ ParseCCMixin ],
/*...*/
});
This mixin requires you to define a loadData function (analagous to ParseReact's observe function). It returns an object where the keys are the name of the data key where the results will be stored, and the value is an object containing data for running the Cloud Code function (details below). For example:
var MyComponent = React.createClass({
mixins: [ ParseCCMixin ],
loadData: function(props, state) {
return {
MyCloudCodeData: {
name: "getMyCloudCodeData",
params: {
myFirstParam: "foo",
mySecondParam: "bar"
}
}
};
},
/*...*/
render: function() {
//example render function
return (
<h1>{this.data.MyCloudCodeData.join(", ")}</h1>
);
}
});
Whenever the component mounts, it will issue a function call to the /getMyCloudCodeData endpoint and the results will be stored in this.data.MyCloudCodeData. Any time props or state change, the function will be called again (unless otherwise configured—details below).
The objects associated with the data keys can take the following parameters:
name: the name of the Parse Cloud Code function you wish to run.params: the parameters passed to the cloud code function.propDeps: an array with the names of each prop whose value change should cause a reload (e.g. the component will only pull data and re-render if one of these changed).*stateDeps: an array with the names of each state whose value change should cause a reload (e.g. the component will only pull data and re-render if one of these changed).*defaultValue: the default value assigned to the data key on mount.Example:
var MyComponent = React.createClass({
mixins: [ ParseCCMixin ],
loadData: function(props, state) {
return {
Users: {
name: "getUsers",
params: {
age: this.props.userAge
},
propDeps: ['userAge'],
defaultValue: []
}
};
},
/*...*/
render: function() {
//example render function
return (
<h1>{this.data.Users.join(", ")}</h1>
);
}
});
In the example, the getUsers Cloud Code function is called with the parameter age set to this.props.userAge, and data is stored in this.data.Users (whose initial value was []). Our propDeps specify that any time that this.props.userAge changes, the data is pulled again from the server and the component is reloaded.
The propDeps and stateDeps declarations are the biggest departure from the ParseReact mixin; ParseReact reloads in response to any prop or state change. To get this behavior, simply omit the propDeps and statedDeps keys. This will force a reload with any prop or state change. If you don't want to ever reload data in response to props or state, this can also be specified by defining propDeps and stateDeps to be empty arrays.
*Array and Object values not yet supported for propDeps and stateDeps
###this.pendingQueries()
Returns an array containing the names of calls that are currently waiting for results.
###this.queryErrors()
Returns a map of call names to the error they encountered on the last request, if there was one.
###this.reloadData([callList])
Forces a refresh of Cloud Code calls with names in the callList, if provided, else refreshes data from all the calls. Note: the names in the callList should be the name of the data key in which the data is stored (e.g. the key part of the key-value pairs returned in loadData.
npm install react-cloud-code-mixin
Then, in your React project:
var ParseCCMixin = require('react-cloud-code-mixin');
Or, if you're using ES6/ECMA2015 syntax:
import ParseCCMixin from 'react-cloud-code-mixin'
If you prefer to use a CDN, add the following to your main HTML file:
<script src="https://npmcdn.com/react-cloud-code-mixin/dist/index.min.js" />
None! Well, except Parse. But that's a given.
Does this replace ParseReact Mixin?
It can, but it doesn't have to. This project started when my company switched from doing Parse queries client-side to making API calls in order to reduce client-side logic and network usage. We use this in our app now instead of ParseReact, but the two can operate side by side (as long as you don't name two data params the same).
Is this production ready?
Like with most open-source software, I can't make any guarantees, but I can tell you it's stable enough that the company I work at is using actively it in production.
How can I contribute?
Feel free to fork this project and create a pull request! I'll merge in anything useful. Thanks!
MIT
FAQs
A Parse Cloud Code mixin for React.js, inspired by the ParseReact Mixin.
We found that react-cloud-code-mixin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.