Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-redux
Advanced tools
Implement React-Redux into your React-Native app in just One Step!
Install & Link React Native Async Storage // SKIP this step if already using react-native async storage
Then install React Native Redux
npm i react-native-redux
- OR - yarn add react-native-redux
initialState: object?
loading: JSX.Element?
import React from "react"
import { Provider } from "react-native-redux"
import AppContainer from "../navigation" // Path to Root Navigation
const myInitialState = { /* your initial state */ }
/*
Important Note: state will initialize for first time only,
then you have to use xSetState or setStateForKey to change it,
If you want to reinitialize state, you have to call xResetState once.
See xResetState below
*/
export default ()=> (
<Provider
initialState={myInitialState}
loading={/* your loading UI*/}
>
<AppContainer />
</Provider>
)
WrappedComponent: Component
requiredKeys: string[]?
import React from "react"
import { connect } from "react-native-redux"
class UserPage extend React.Component {
// Your Component goes here
}
// this will connect all your store to UserPage component props
export default connect(UserPage)
/*
OR you can choose what keys this component using by providing requiredKeys argument
NOTE: Make sure that your requiredKeys values are already initiated.
*/
export default connect(UserPage, ["user", "someKey", "anotherKey"])
// You can also connect to deep state ( Up to 5 levels ) using dotted key.
export default connect(UserPage, ["user.name"])
// a prop with key "user_name" will be connected
// You can change deepKeyReplacer as a third optional argument
export default connect(UserPage, ["user.name"], "-")
// a prop with key "user-name" will be connected
state: object
import { xSetState } from "react-native-redux"
// Anywhere in your code
xSetState({ user: { id: 1, name: "Some Name" } })
// console logs => ReactNativeRedux.user, { id: 1, name: "Some Name" }
// Now all your connected components will have "user" prop
// Usage with API
async getMyData(){
xSetState({ isFetching: true })
try {
const response = await fetch("http://www.myServer.com/api/myData")
const responseJson = await response.json()
xSetState({ isFetching: false, myData: responseJson })
} catch (error) {
alert(error.message)
// Remeber that You can use xSetState ANYWHERE! as much as you want !
xSetState({ isFetching: false })
}
}
key: string
state: object
import { setStateForKey } from "react-native-redux"
// Similar to xSetState
// plus it can be used to set deep state up to 3 levels
setStateForKey("user", { id: 1, name: "Some Name" })
// console logs => ReactNativeRedux.user, { id: 1, name: "Some Name" }
// Now all your connected components will have "user" prop
// Usage to set deep state
setStateForKey("user.name", "New Name" )
// console logs => ReactNativeRedux.user.name, "New Name"
// Remeber that You can use setStateForKey ANYWHERE!
key: string
import { getStateForKey } from "react-native-redux"
// Similar to setStateForKey
// but it can be used to get state and deep state
const userData = getStateForKey("user")
console.log(userData) // => { id: 1, name: "Some Name" }
const userName = getStateForKey("user.name")
console.log(userName) // => "Some Name"
// getting state for unknown key will return null
const someValue = getStateForKey("someKey")
console.log(someValue) // => null
const anotherValue = getStateForKey("anotherKey.subKey")
console.log(anotherValue) // => null
// You may add fallback value as second optional argument
/// default fallback is null
const undefinedValue = getStateForKey("somekey.subKey.subsubkey","Hello World")
console.log(anotherValue) // => Hello World
// Remeber that You can use getStateForKey ANYWHERE!
import React from "react"
import { useStateX } from "react-native-redux"
// Hooks Are used inside functional components
const MyComponent = (props) => {
// Depth: 2 levels
const isLoggedIn = useStateX("user.loggedIn")
// Depth: 3 levels
const userName = isLoggedIn ? useStateX("user.data.name") : "Guest"
// NOTE THAT DEPTH TREE SHOULD BE INITIALIZED BEFORE HOOKING IT
// You may add fallback value as second optional argument
// default fallback is null
const undefinedValue = getStateForKey("somekey.subKey.subsubkey","Hello World")
console.log(anotherValue) // => Hello World
return (
<>
// Your Component goes here
<Text>Name: {userName}</Text>
</>
)
}
export default MyComponent
import React from "react"
import { xResetState } from "react-native-redux"
/*
Top level index in your code, call this method once during your develeopment process
to allow you to reinitialize your state again from Provider initialState prop
*/
// Call this Once, Then Don't forget to remove it.
xResetState()
FAQs
Implement React-Redux into your React-Native app in just One Step!
The npm package react-native-redux receives a total of 34 weekly downloads. As such, react-native-redux popularity was classified as not popular.
We found that react-native-redux 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.