Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
react-hoc-loader
Advanced tools
HOC (Higher Order Component) Loader for Redux Containers
yarn add react-hoc-loader
or
npm install react-hoc-loader
Component sits within the container and fires off a function in a similar way to which componentWillMount
would.
An optional loading indicator can be passed from a state key to determine if a loading indicator should be displayed before rendering the intended component.
If there is no component, but you would like to display a simple text message, then pass undefined as the 4th argument and a string message as the 5th.
import { connect } from 'react-redux';
import HOCLoader from 'react-hoc-loader';
import LoadingScreen from './loading-screen';
import Component from './components';
const mapStateToProps = ({ reducer }) => ({
// State key to determine if a load is in progress
isLoading: reducer.isLoading
});
export const mapDispatchToProps = dispatch => ({
onLoad() {
// Function to fire off when container first loads
dispatch({ type: 'LOADING_DATA' });
},
});
...
const Container = connect(
mapStateToProps,
mapDispatchToProps,
)(HOCLoader(Component, 'onLoad', 'isLoading', LoadingScreen));
...
Discover the release history by heading on over to the releases page.
Unless stated otherwise all works are:
and licensed under:
FAQs
HOC (Higher Order Component) Loader for Redux Containers
We found that react-hoc-loader 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.