5.1.0 • Published 2 months ago

@tryabby/next v5.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

@tryabby/next

createAbby

Parameters

The createAbby function takes an object as a parameter. The object can contain the following properties:

NameTypeRequiredDescriptiondetails
projectIdstringThe ID of your project in Abby-
apiUrlstringThe URL of the Abby API. Defaults to the hosted version-
currentEnvironmentstringThe current environment of your applicationlink
testsobjectAn object containing your defined A/B Tests-
flagsobjectAn array containing your defined Feature Flags-
settingsobjectAn object with additional settings for Abby-

tests

The tests property is an object containing your defined A/B Tests. You probably want to use the Copy Button in your dashboard to copy the tests object. They keys of the object represent the names of your predefined A/B tests. The values are objects containing the following properties:

NameTypeRequiredDescription
variantsArray<string>An array of strings containing the variants of the test
Example
const abby = createAbby({
  // ... your config
  tests: {
    "test-abtest": {
      variants: ["control", "variant-a", "variant-b"],
    },
  },
});

flags

The flags property is an array containing your defined Feature Flags. You probably want to use the Copy Button in your dashboard to copy the flags array.

Example
const abby = createAbby({
  // ... your config
  flags: { "test-flag": "Boolean" },
});

settings

The settings property is an object containing additional settings for Abby. The following properties are available:

  • flags.defaultValues: Allows you to set a general default value for each flag type. The keys of the object represent the types of the flags. The default value is the following:

    {
      "Boolean": false,
      "String": "",
      "Number": 0,
      "JSON": {}
    }
  • flags.devOverrides: An object containing the values of feature flags in development mode. The keys of the object represent the names of the flags. The values need to be of the type of the flag. This means if your flag is a String flag, this needs to be a string.

Return Values

useAbby

useAbby is a react hook that used to access the value of an A/B Test. Recurring users will always get the same value for a test. New users will get a random value for a test depending on the defined weights

Parameters
  • string: The name of the test or flag, needs to be one of the defined tests.
Return Values
  • variant : The variant of the test

  • onAct: A function to call when the user performs an action associated with the test Type: function

useFeatureFlag

useFeatureFlag is a react hook that used to access the value of a Feature Flag.

Parameters

The name of the test or flag, needs to be one of the defined flags.

Return Value

The value of the flag Type: boolean

AbbyProvider

A react component to wrap your application.

Props
  • children: The children of the component
  • initialData (optional): The data (weights, tests, etc). If not provided, the data will be fetched on the client.

getFeatureFlagValue

getFeatureFlagValue is a function to access the value of a feature flag. This can be called in a non-react scope (Regular Typescript, Edge Functions and API Routes)

Parameters

The name of the test or flag, needs to be one of the defined flags.

getABTestValue

getABTestValue is a function to access the users variant of an A/B Test. This can be called in a non-react scope. If the user is new, a random variant will be generated based on the weights, persisted in a cookie and returned. Otherwise the variant will be read from the cookie and returned.

Parameters

The name of the test, needs to be one of the defined tests.

Return Values

The variant of the test.

__abby__

__abby__ is the Abby instance. It can be used to access the data of the current user. In most cases you will not need to use this.

withDevtools

withDevtools is a higher order function to wrap the Devtools from @tryabby/devtools for usage within Reacts.

Parameters

The Devtools component from @tryabby/devtools

Example
import { AbbyDevTools } from "@tryabby/devtools";
export const AbbyDevtools = withDevtools(AbbyDevTools);

withAbby

A higher-order component that enables Server Side Rendering within Next.js. If you wrap your _app component with this, all occurances of useFeatureFlag will be SSR'd

Example
// _app.tsx (or _app.js)
import { withAbby } from "lib/abby";

function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />;
}

export default withAbby(MyApp);

withAbbyEdge

A higher-order function that can be wrapped around any vercel edge function (like the middleware.ts). It will preload the data for the current user and pass it to the edge function.

Parameters

Your edge function

Example
// middleware.ts
import { withAbbyEdge } from "lib/abby";
import { NextResponse } from "next/server";

export default withAbbyEdge((req) => {
  const myFlag = getFeatureFlagValue("test-flag");

  // make sure to use the req object here
  const [currentVariant, setCookie] = getABTestValue("test-abtest", req);

  if (myFlag && currentVariant === "beta-user") {
    const res = NextResponse.redirect("/beta");

    // update the user's cookie
    setCookie(res);
    return res;
  }

  return NextResponse.next();
});

withAbbyApiHandler

A higher-order function that can be wrapped around any api route. It will preload the data for the current user and pass it to the edge function.

Parameters

Your api route handler

Example
// /api/test.ts
import { withAbbyApiHandler } from "lib/abby";

export default withAbbyApiHandler((req, res) => {
  const myFlag = getFeatureFlagValue("test-flag");

  // make sure to use the req object here
  const [currentVariant, setCookie] = getABTestValue("test-abtest", req);

  if (myFlag && currentVariant === "beta-user") {
    // update the user's cookie
    setCookie(res);
    return res.status(200).end();
  }

  res.status(404).end();
});

getABResetFunction

This is a function which returns a function that can be used to reset the stored variant for the current user. This means the cookie will be deleted and the user will get a new variant on the next page load.

Parameters

The name of the test, needs to be one of the defined tests.

Example

import { getABResetFunction } from "lib/abby";
import { useRouter } from "next/router";

export default function SomePage() {
  const router = useRouter();

  const onReset = () => {
    const resetCookie = getABResetFunction("SignupButton");
    resetCookie();
    router.reload();
  };

  return (
    <div>
      <h1>Hello World</h1>
      <button onClick={onReset}>Reset Cookie</button>
    </div>
  );
}
5.1.0

2 months ago

5.0.6

4 months ago

5.0.5

5 months ago

5.0.4

5 months ago

5.0.3

5 months ago

4.0.1

10 months ago

4.0.0

10 months ago

5.0.2

6 months ago

5.0.1

8 months ago

5.0.0

8 months ago

4.1.0

9 months ago

4.1.1

9 months ago

3.4.0

12 months ago

3.3.0

12 months ago

3.2.1

12 months ago

3.1.2

1 year ago

3.2.0

1 year ago

3.1.1

1 year ago

3.1.0

1 year ago

3.0.1

1 year ago

2.3.0

1 year ago

2.4.1

1 year ago

2.4.0

1 year ago

2.2.2

1 year ago

2.4.3

1 year ago

3.0.0

1 year ago

2.2.1

1 year ago

1.8.1

1 year ago

1.8.0

1 year ago

1.6.2

1 year ago

1.7.0

1 year ago

2.2.0

1 year ago

2.1.0

1 year ago

2.0.0

1 year ago

1.6.1

1 year ago

1.6.0

1 year ago

1.5.0

1 year ago

1.4.4

1 year ago

1.4.3

1 year ago

1.4.2

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.10

1 year ago

1.3.9

1 year ago

1.3.8-rc3

1 year ago

1.3.8-rc2

1 year ago

1.3.8-rc1

1 year ago

1.3.8

1 year ago

1.3.7

1 year ago

1.3.6

1 year ago

1.3.5

1 year ago

1.3.4

1 year ago

1.3.3

1 year ago

1.3.1

1 year ago

1.3.0

1 year ago

1.2.0

1 year ago