npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

flourish-web-sdk-react

v2.2.2

Published

Flourish React Web SDK

Downloads

32

Readme

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"'
    />
);

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.

To listen all events

you can listen to all events at once, to do this, just pass a callback function in the "genericEventCallback" attribute

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

const genericEventCallback = (eventData: string): void => {
  console.log('All events here', eventData);
};

return (
  <Flourish token={accessToken}
    environment='staging'
    language='en'
    genericEventCallback={genericEventCallback} />
);

To listen to a specific event

You can also if you want to listen to a specific event

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

const missionActionEventCallback = (missionActionEvent: MissionActionEvent): void => {
  console.log('Mission event type', missionActionEvent.missionType);
  console.log('Mission event name', missionActionEvent.missionEvent);
};

return (
  <Flourish token={accessToken}
    environment='staging'
    language='en'
    missionActionEventCallback={missionActionEventCallback}  />
);

You can find our all mapped events here: https://github.com/Flourish-savings/flourish-web-sdk-react/blob/main/src/events/eventTypes.ts

Events to listen

here you have all events we will return

| Event name | Description | |-----------------|-------------------------------------------------------------------------------------------------------------------| | BACK_BUTTON_PRESSED | When you need to know when the user clicks on the back menu button on our platform. | HOME_BACK_BUTTON_PRESSED | When you need to know when the user clicks on the back menu button when on the home screen of our platform. | | ONBOARDING_BACK_BUTTON_PRESSED | When you need to know when the user clicks on the back menu button when on the onboarding screen of our platform. | | MISSION_ACTION | When you need to know when the user clicks on a mission card | | TRIVIA_GAME_FINISHED | When you need to know when the user finishes a Trivia game on our platform. | | TRIVIA_CLOSED | When you need to know when the user closed the Trivia game on our platform. | | GIFT_CARD_COPY | When you need to know when the user copy the Gift code to the clipboard area. | | REFERRAL_COPY | When you need to know when the user copy the referral code to the clipboard area. | | HOME_BANNER_ACTION | When you need to know when the user clicks on the home banner. | | ERROR | When you need to know when a error happened. |

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