New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@bucketco/react-sdk

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bucketco/react-sdk

React client side library for [Bucket.co](https://bucket.co)

  • 1.0.0-beta.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
985
increased by37.19%
Maintainers
0
Weekly downloads
 
Created
Source

Bucket React SDK

React client side library for Bucket.co

Install

Install via npm:

npm i @bucketco/react-sdk

Setup

1. Define Flags (optional)

To get type safe feature flags, extend the definition of the Flags interface and define which flags you have. See the example below for the details.

If no explicit flag definitions are provided, there will be no types checked flag lookups.

Example:

// Define your flags by extending the `Flags` interface in @bucketco/react-sdk
declare module "@bucketco/react-sdk" {
  interface Flags {
    huddle: boolean;
    recordVideo: boolean;
  }
}

2. Add the BucketProvider context provider

Add the BucketProvider context provider to your application. This will initialize the Bucket SDK, fetch feature flags and start listening for Live Satisfaction events.

Example:

import { BucketProvider } from "@bucketco/react-sdk"

<BucketProvider
  publishableKey="{YOUR_PUBLISHABLE_KEY}"
  company={ id: "acme_inc" }
  user={ id: "john doe" }
  loadingComponent={<Loading />}
  fallbackFlags={["huddle"]}
>
{/* children here are shown when loading finishes or immediately if no `loadingComponent` is given */}
</BucketProvider>
  • publishableKey is used to connect the provider to an environment on Bucket. Find your publishableKey under Activity on https://app.bucket.co.

  • company, user and otherContext make up the context that is used to determine if a feature flag is enabled or not. company and user contexts are automatically transmitted to Bucket servers so the Bucket app can show you which companies have access to which flags etc.

    If you specify company and/or user they must have at least the id property plus anything additional you want to be able to evaluate flags against. See "Managing Bucket context" below.

  • fallbackFlags is a list of strings which specify which flags to consider enabled if the SDK is unable to fetch flags.

  • loadingComponent lets you specify an React component to be rendered instead of the children while the Bucket provider is initializing. If you want more control over loading screens, useFlags() returns isLoading which you can use to customize the loading experience:

    function LoadingBucket({ children }) {
      const {isLoading} = useFlags()
      if (isLoading) {
        return <Spinner />
      }
    
      return children
    }
    
    //-- Initialize the Bucket provider
    <BucketProvider publishableKey={YOUR_PUBLISHABLE_KEY} /*...*/>
      <LoadingBucket>
      {/* children here are shown when loading finishes */}
      </LoadingBucket>
    <BucketProvider>
    

Hooks

useFlagIsEnabled()

Returns a boolean indicating if the given feature flag is enabled for the current context. useFlagIsEnabled returns false while flags are being loaded.

Use useFlag() for fine-grained control over loading and rendering.

import { useFlagIsEnabled } from "@bucketco/react-sdk";

function StartHuddleButton() {
  const joinHuddleFlagEnabled = useFlagIsEnabled("huddle");
  // true / false

  if (!joinHuddleFlagEnabled) {
    return null;
  }

  return <Button />;
}

useFlag()

Returns the state of a given feature flag for the current context.

import { useFlag } from "@bucketco/react-sdk";

function StartHuddleButton() {
  const { isLoading, isEnabled } = useFlag("huddle");

  if (isLoading) {
    return <Loading />;
  }

  if (!isEnabled) {
    return null;
  }

  return <Button />;
}

useFlags()

Returns all enabled feature flags as an object. Mostly useful for debugging and getting the current loading state.

import { useFlags } from "@bucketco/react-sdk";

function DebugFlags() {
  const featureFlags = useFlags();
  // {
  //   "isLoading": false,
  //   "flags: {
  //     "join-huddle": true
  //     "post-message": true
  //   }
  // }

  if (featureFlags.isLoading) {
    return <Loading />;
  }

  return <pre>{JSON.stringify(featureFlags.flags)}</pre>;
}

useUpdateContext()

useUpdateContext returns functions updateCompany, updateUser and updateOtherContext. The functions lets you update the context that is used to determine if a feature flag is enabled or not. For example, if the user logs out, changes company or similar or a specific property changes on the company as in the example below:

import { useUpdateContext } from "@bucketco/react-sdk";

function Company() {
  const [company, _] = useState(initialCompany);
  const { updateCompany } = useUpdateContext();
  return (
    <div>
      <button onClick={() => updateCompany({ ...company, plan: "enterprise" })}>
        Upgrade to enterprise
      </button>
    </div>
  );
}

useTrack()

useTrack() lets you send events to Bucket. Use this whenever a user uses a feature. Create features in Bucket based off of these events to analyze feature usage.

import { useTrack } from "@bucketco/react-sdk";

function StartHuddle() {
  const track = useTrack();
  return (
    <div>
      <button onClick={() => track("Huddle Started", { huddleType: "voice" })}>
        Start voice huddle!
      </button>
    </div>
  );
}

useRequestFeedback()

useRequestFeedback() returns a function that lets you open up a dialog to ask for feedback on a specific feature. See Live Satisfaction for how to do this automatically, without code.

import { useTrackEvent } from "@bucketco/react-sdk";

const requestFeedback = useRequestFeedback();

requestFeedback({
  featureId: "bucket-feature-id",
  title: "How satisfied are you with file uploads?",
});

See https://github.com/bucketco/bucket-javascript-sdk/blob/main/packages/tracking-sdk/FEEDBACK.md#manual-feedback-collection for more information on requestFeedback

useSendFeedback()

useSendFeedback() returns a function that lets you send feedback to Bucket. This is useful if you've manually collected feedback and want to send it to Bucket.

import { useSendFeedback } from "@bucketco/react-sdk";

const sendFeedback = useSendFeedback();

sendFeedback({
  featureId: "bucket-feature-id",
  score: 5,
  comment: "Best thing I"ve ever tried!",
});

See https://github.com/bucketco/bucket-javascript-sdk/blob/main/packages/tracking-sdk/FEEDBACK.md#manual-feedback-collection for more information on sendFeedback

License

MIT License

Copyright (c) 2024 Bucket ApS

FAQs

Package last updated on 31 Jul 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc