AFFiNE/libs/datasource/feature-flags
2022-08-05 22:44:01 +08:00
..
src Revert "Revert "Merge pull request #42 from toeverything/feat/sub-page"" 2022-08-05 22:44:01 +08:00
.babelrc init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
.eslintrc.json init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
jest.config.ts init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
package.json init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
project.json init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
README.md Revert "Revert "Merge pull request #42 from toeverything/feat/sub-page"" 2022-08-05 22:44:01 +08:00
tsconfig.json init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
tsconfig.lib.json init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00
tsconfig.spec.json init: the first public commit for AFFiNE 2022-07-22 15:49:21 +08:00

Feature Flags

Usage

# .env.local
AFFINE_FEATURE_FLAG_TOKEN=XXXXXXX
  • Set provider
import { FeatureFlagsProvider } from '@toeverything/datasource/feature-flags';

const App = () => {
    return (
        <FeatureFlagsProvider>
            <Page />
        </FeatureFlagsProvider>
    );
};
  • use flag
import { useFlag } from '@toeverything/datasource/feature-flags';

const App = () => {
    //                   flag key, default value
    const flag1 = useFlag('flag1', false);
    // ^? boolean
    const flag2 = useFlag<boolean>('flag2');
    // ^? boolean | undefined
    return flag1 && <div>The flag1 is enable!</div>;
};

How to add a new feature flag?

  • Enter Portal
  • Click New Switch button
    • Input Switch Name, and Enter
    • Adjust data and save

Test flags

When entering development mode feature flag will NOT be updated in real time

  • activateFfcDevMode(PASSWORD) play with feature flags locally
    • The devModePassword can be obtained from src/config.ts
  • quitFfcDevMode() quit dev mode

Running unit tests

Run nx test datasource/feature-flags to execute the unit tests via Jest.

References