Poool Access, but for React Native, but in a Webview β¨
yarn add @poool/react-native-access-webview react-native-webview @react-native-async-storage/async-storageimport { Text } from 'react-native';
import {
AccessContext,
RestrictedContent,
Paywall,
Snippet,
} from '@poool/react-native-access-webview';
export default () => {
return (
<>
{ /*
Wrap everything with our AccessContext component
*/ }
<AccessContext
appId="insert_your_app_id"
config={{ cookies_enabled: true }}
>
{ /* Wrap your snippet with our Snippet component */ }
<Snippet>
<Text>This is a snippet</Text>
</Snippet>
{ /* Wrap your full content with our RestrictedContent component */ }
<RestrictedContent>
<Text>Your article content</Text>
</RestrictedContent>
{ /*
Place our <Paywall /> component where you want your paywall to be
displayed
*/ }
<Paywall />
</AccessContext>
</>
);
};appId{string} Your Poool App IDscriptUrl{string} (optional, default:'https://assets.poool.fr/access.min.js') Default Poool Access SDK urlloadTimeout{number} (optional, default:2000) Timeout for the webview to loadconfig{Record<string, any>} (optional) Default paywall config (see the configuration documentation).styles{Record<string, any>} (optional) Default paywall styles (see the styles documentation).texts{Record<string, string>} (optional) Default paywall texts (see the texts documentation).variables{Record<string, any>} (optional) Paywall variables (see the variables documentation).on*{(event: Event, paywallRef: PaywallRef) => any} (optional) Event listeners (see the events documentation).
id{String} (optional, default: null) Paywall id
id{String} (optional, default: null) Paywall id
id{string} (optional, default: null) Paywall id: used to link the paywall release event to the corresponding snippet/restricted contentpageType{string} (optional, default:'premium') Current page type (supported types:page,premium,free)scriptUrl{string} (optional, default:'https://assets.poool.fr/access.min.js') Default Poool Access SDK urlloadTimeout{number} (optional, default:2000) Timeout for the webview to loadwrapperProps{ViewProps} (optional) Props to pass to the wrapper view around the webview component. Useful for styling or customization purposes.config{Record<string, any>} (optional) Paywall config (see the configuration documentation).styles{Record<string, any>} (optional) Paywall styles (see the styles documentation).texts{Record<string, string>} (optional) Paywall texts (see the texts documentation).variables{Record<string, any>} (optional) Paywall variables (see the variables documentation).on*{(event: Event, paywallRef: PaywallRef) => any} (optional) Event listeners (see the events documentation).
Can be used to retrieve some properties from the current access context, as well as the Access SDK itself.
appId{string} Current app IDconfig{Record<string, any>} Current access context configstyles{Record<string, any>} Current access context stylestexts{Record<string, string>} Current access context textsvariables{Record<string, any>} Current access context variableson*{(event: Event, paywallRef: PaywallRef) => any} Current access context event listeners
const { appId } = useAccess();Please check the CONTRIBUTING.md doc for contribution guidelines.
Install dependencies:
yarn installRun examples:
yarn example iosor
yarn example androidThis software is licensed under MIT.