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.
@flipgive/react-native-rewards
Advanced tools
A React Native module for rewards partners, providing seamless integration of reward systems into your mobile app.
Only EXPO_PUBLIC_US_DEFAULT_REWARDS_TOKEN
is needed for single country configuration.
npm install @flipgive/react-native-rewards
or
yarn add @flipgive/react-native-rewards
or
pnpm add @flipgive/react-native-rewards
To use this package, ensure you have the following components installed in your project:
These dependencies need to be manually installed in your project:
Here's a quick example to get you started:
import { SafeAreaView, StyleSheet } from 'react-native';
import { ShopRewards } from '@flipgive/react-native-rewards';
export default function App() {
return (
<SafeAreaView style={styles.container}>
<ShopRewards
keys={{
REWARDS_PROPS_US_DEFAULT_REWARDS_TOKEN: process.env.EXPO_PUBLIC_US_DEFAULT_REWARDS_TOKEN || '',
REWARDS_PROPS_CA_DEFAULT_REWARDS_TOKEN: process.env.EXPO_PUBLIC_CA_DEFAULT_REWARDS_TOKEN || '',
REWARDS_PROPS_BASE_URL: process.env.EXPO_PUBLIC_BASE_URL || '',
REWARDS_PROPS_GOOGLE_API_KEY: process.env.EXPO_PUBLIC_GOOGLE_API_KEY || '',
REWARDS_PROPS_API_URL: process.env.EXPO_PUBLIC_API_URL || '',
REWARDS_PROPS_X_REWARDS_PARTNER_ID: process.env.EXPO_PUBLIC_X_REWARDS_PARTNER_ID || '',
}}
/>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
});
for more information go to the examples folder.
For now it is necessary to use this entry point for all imports until the split imports task is completed.
import { ShopRewards..... } from '@flipgive/react-native-rewards'
This package is compatible with expo go - expo snacks
Property | Type | Required |
---|---|---|
REWARDS_PROPS_US_DEFAULT_REWARDS_TOKEN | string | No |
REWARDS_PROPS_CA_DEFAULT_REWARDS_TOKEN | string | No |
REWARDS_PROPS_BASE_URL | string | Yes |
REWARDS_PROPS_GOOGLE_API_KEY | string | No |
REWARDS_PROPS_API_URL | string | Yes |
REWARDS_PROPS_X_REWARDS_PARTNER_ID | string | Yes |
Property | Type | Required |
---|---|---|
colors | Partial | No |
Component | Type | Required |
---|---|---|
CustomCountryPicker | ComponentType | No |
CustomSignUpScreen | ComponentType | No |
CustomSignInScreen | ComponentType | No |
CustomCreateTeamScreen | ComponentType | No |
CustomLogoutScreen | ComponentType | No |
CustomWebViewShop | ComponentType<{ baseURL: string }> | No |
CustomModalLoader | ComponentType | No |
CustomInitialScreen | ComponentType | No |
CustomForgotPasswordScreen | ComponentType | No |
Property | Type | Required | Description |
---|---|---|---|
shouldResetKeychain | boolean | No | |
showWebDebugOptions | boolean | No | Enables debug buttons for webview messages: login/logout/optIn |
customMethods
Property | Type | Required |
---|---|---|
onNavigationStateChange | (navState: WebViewNavigation) => void; | No |
onDeleteUserAccount | (error?: unknown; response?: DeleteUserResponse or null;) => void; | No |
onWindowOpen | (url: string) => void; | No |
Component | Description |
---|---|
ShopRewards | Main component to display rewards. |
ShopRewardsProvider | Highly Customizable Store Provider |
FadeWrapper | fade animation wrapper for views |
Hook | Description |
---|---|
useSignUpForm | Hook for managing sign-up form. |
useSignInForm | Hook for managing sign-in form. |
useCountrySelect | Hook for selecting countries. |
useCreateTeamForm | Hook for managing team creation form. |
useGetCategories | Hook for fetching categories. |
useCityAutocomplete | Hook for city autocomplete feature - google api. |
useHost | Hook for context usage |
useLoadKeysToEnv | Hook for Resetting Environment and Local Storage on New Props |
useResetPassword | Hook for resetting password |
useUpdateDeviceInfo | Hook for register push token into our cloud solution, updateDeviceInfo({ device: { fcm_token: '1234' } }) |
Componet | Description |
---|---|
HostProvider | Bare provider |
See the contributing guide to learn how to contribute to the repository and the development workflow.
This library is distributed under the Apache License, version 2.0
copyright 2023. FlipGive, inc. all rights reserved.
licensed under the apache license, version 2.0 (the "license");
you may not use this file except in compliance with the license.
you may obtain a copy of the license at
http://www.apache.org/licenses/license-2.0
unless required by applicable law or agreed to in writing, software
distributed under the license is distributed on an "as is" basis,
without warranties or conditions of any kind, either express or implied.
see the license for the specific language governing permissions and
limitations under the license.
Made with ❤️ by create-react-native-library.
FAQs
React native module for rewards partners
The npm package @flipgive/react-native-rewards receives a total of 138 weekly downloads. As such, @flipgive/react-native-rewards popularity was classified as not popular.
We found that @flipgive/react-native-rewards demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
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.