Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
redux-action-translator
Advanced tools
Translate dispatched actions to other actions, for compatibility with reducers/middleware you don't control. E.g. when an action should trigger a history change in redux-router
It's preferable to update your reducers/middleware to acknowledge the source action, but that's not always possible.
$ npm install redux-action-translator
Installing the middleware:
import translator from 'redux-action-translator'
import {createStore, applyMiddleware} from 'redux'
const translation = translator({})
applyMiddleware(translation)(createStore)
Translations match on action.type and expect a value of the type [Action] | (a: Action, getState: () => State) => [Action]
E.g.
const evenAction = (n) => ({ type: "even", payload: a.payload })
const oddAction = (n) => ({ type: "odd", payload: n })
const translation = translator({
"login_complete": [replace("/")],
"registration_complete": [replace("/"), welcome()],
"number": a => a.payload % 2 ? [oddAction(a.payload)] : [evenAction(a.payload)],
"unauthorized": (a, getState) => [redirect(`/login?redirect=${getState().router.location.pathname}`)],
});
applyMiddleware(translation)(createStore)
...
// dispatches registrationComplete, then replace("/), then welcome()
dispatch(registrationComplete())
// dispatches numberAction, then oddAction if it's odd, or evenAction if it's even
dispatch(numberAction(n))
FAQs
Translate dispatched actions to other actions
The npm package redux-action-translator receives a total of 0 weekly downloads. As such, redux-action-translator popularity was classified as not popular.
We found that redux-action-translator 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.