Giter Club home page Giter Club logo

flag-poles's Introduction

flag-poles โ›ณ

Build fast and simple feature flags to integrate seamlessly into your react components


All Contributors PRs Welcome Code of Conduct Supports React

The problem

You need feature flags, to show or hide certain parts of your application and you want it to be easy. You also don' want to pay a lot of money for this.

This solution

The library offers a couple of solutions. The first solution, is a flag "guard" which you can use to wrap your component passing a simple identifier attribute.

The second solution is a compound component which offers on/off branches in case you want to show custom content if the feature flag is disabled.

Table of Contents

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's dependencies:

npm install --save flag-poles
# or with yarn
yarn add flag-poles

This package also depends on react. Please make sure you have it installed as well.

Usage

Try it out in the browser

import * as React from "react";
import { render } from "react-dom";
import { FlagProvider, FlagGuard, FlagSwitch } from "flag-poles";

const options = {
  flags: {
    my_flag: { enabled: false },
    my_flag_switch: { enabled: true },
  },
};

render(
  <FlagProvider value={options}>
    <div>You can see mee</div>
    <FlagGuard flag="my_flag">
      <div>I shall not be rendered</div>
    </FlagGuard>
    <FlagSwitch flag="my_flag_switch">
      <FlagSwitch.On>
        <div> Im a on switch</div>
      </FlagSwitch.On>
      <FlagSwitch.Off>
        <div> This will render if flag is off</div>
      </FlagSwitch.Off>
    </FlagSwitch>
    <div>You should see me too</div>
  </FlagProvider>,
  document.getElementById("root")
);

Render Function

So the case might be you're not just expecting to render flags only based on enabled:true/false but probably need a slightly more complex logic. To accomplish this you can override default checkFlag function by:

import * as React from "react";
import { render } from "react-dom";
import { FlagProvider, FlagGuard, FlagSwitch } from "flag-poles";

const customLogicFunction = () => true;

const options = {
  flags: {
    flag1: { enabled: true },
  },
  // This function will apply to all flags.
  checkFlag: (flag, flags) => flags[flag].enabled && customLogicFunction(),
};

Contributors

Thanks goes to these people (emoji key):


Tomas Caraccia

๐Ÿ’ป ๐Ÿ“– ๐Ÿš‡ โš ๏ธ ๐Ÿ‘€ ๐Ÿ“ ๐Ÿ› ๐Ÿ’ก ๐Ÿค” ๐Ÿ“ข

This project follows the all-contributors specification. Contributions of any kind welcome!

LICENSE

MIT


flag-poles's People

Contributors

tcarac avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.