1.1.14 • Published 6 months ago

flourish-web-sdk-react v1.1.14

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

Web SDK for React

Everything you need to know to start integrating your React application with Flourish

Getting Started

The integration with us works as follows, the client will make a call to our API to authenticates himself, retrieve an access token and pass to our component, given that, the sdk serves to encapsulate and help in loading this webview.

Step 1: Installation

Start by adding our SDK into your project with the following command:

npm install flourish-web-sdk-react
yarn add flourish-web-sdk-react

Step 2: Initializing the SDK

After adding our module, it is necessary to retrieve an access token from our API, and we strongly recommend that it be done through a backend because the request needs your credentials and it's good to avoid the harmful environment of the web.

With your accessToken in hand, a call must happen to the signIn method along with your application initialization, which is required to complete the initialization of our component.

import { signIn } from 'flourish-web-sdk-react'

signIn(accessToken, 'staging')

Step 3: Using the SDK

After initialization and with your accessToken in hand, it is possible to pass it to the SDK component, along with the desired environment and language, just like this:

import Flourish from 'flourish-web-sdk-react';

return (
    <Flourish
        token='accessToken'
        environment='environment'
        language='"language"'
    />
);

After a successful rendering, you should see something like this.


Step 4: Listening events

You can register for some events to know when something happens within our platform.

Listen our events

To listen to our events, you will pass a callback function to our Flourish component when you add it to your screen.

import Flourish from 'flourish-web-sdk-react';

const printEventData = (data: string): void => {
  console.log('Event Client side', data);
};

return <Flourish eventCallback={printEventData} />;
Event nameDescription
GoToAutoPaymentWhen you need to know when the user clicks to set up an automatic payment on our platform.
GoToPaymentWhen you need to know when the user clicks to set up a payment on our platform.
TriviaFinishedWhen you need to know when the user finishes a Trivia game on our platform.
GoBackWhen you need to know when the user clicks on the back menu button on our platform.
RetryLoginWhen you need to know when the accessToken has expired and you need to retrieve a new one on our platform.

Example

Inside this repository, you have an example app to show how to integrate with us:

https://github.com/Flourish-savings/flourish-web-sdk-react/tree/main/example

1.1.14

6 months ago

2.1.0-FFE

8 months ago

2.0.1-FFE

8 months ago

2.1.0

8 months ago

2.0.0-FFE

8 months ago

2.0.0

10 months ago

1.1.13

11 months ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.1.7

1 year ago

1.0.8

1 year ago

1.1.6

1 year ago

1.0.7

1 year ago

1.1.5

1 year ago

1.0.6

1 year ago

1.1.4

1 year ago

1.0.5

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago