Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
redux-wpapi
Advanced tools
A node-wpapi integration for a Redux based Application.
This library exposes node-wpapi instance through the actionCreator callAPI. The resulting action is interpreted in the middleware, doing so by resolving the request and controlling the reducer through actions.
npm install --save redux-wpapi
Then, to enable ReduxWPAPI, use applyMiddleware()
and combineReducers()
:
import reducers from './reducers';
import ReduxWPAPI from 'redux-wpapi';
const { reducer: wp, middleware } = new ReduxWPAPI({ /* … */ });
const store = createStore(
// the reducer must be placed at the root of the state as `wp`
// so the selector knows where state lives in
{ ...reducers, wp },
applyMiddleware(middleware)
);
import React from 'react';
import { wp, selectRequest, ResponseStatus } from 'redux-wpapi';
import { connect } from 'react-redux';
export class HomePage extends React.Component {
static loadData(props) {
return props.callAPI(
// The name where the request state will be placed
'HomePagePosts',
// A callback where wpapi instance is injected
api =>
api.posts()
.page(props.page)
.perPage(props.perPage)
);
}
componentWillMount() {
HomePage.loadData(this.props);
}
componentWillReceiveProps(props) {
HomePage.loadData(props);
}
render() {
const { status, data: posts } = this.props.request;
if (!posts) {
switch (status) {
case ResponseStatus.pending: return <div>Loading…</div>;
case ResponseStatus.rejected: return <div>An error has occurred</div>;
}
}
return (
<div>
{!posts.length ? <NoPostFound /> : <PostList posts={posts} />}
</div>
);
}
}
export default connect({
request: selectRequest('HomePagePosts'),
}, { callAPI })(HomePage);
All contributions are welcome, and very much appreciated.
We are preparing some helper documents to facilitate the process (hopefully), but for now we're following the these guidelines:
Every Pull Request must have the following:
FAQs
Wordpress integration Redux middleware based on node-wpapi.
The npm package redux-wpapi receives a total of 0 weekly downloads. As such, redux-wpapi popularity was classified as not popular.
We found that redux-wpapi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.