aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/workspaces/index.js
blob: 89999ab0f1eebaae5eed70c772793ce4b7f0e4e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { reaction } from 'mobx';
import WorkspacesStore from './store';
import { resetApiRequests } from './api';

const debug = require('debug')('Franz:feature:workspaces');

export const GA_CATEGORY_WORKSPACES = 'workspaces';

export const workspaceStore = new WorkspacesStore();

export default function initWorkspaces(stores, actions) {
  const { features, user } = stores;

  // Toggle workspace feature
  reaction(
    () => (
      features.features.isWorkspaceEnabled && (
        !features.features.isWorkspacePremiumFeature || user.data.isPremium
      )
    ),
    (isEnabled) => {
      if (isEnabled && !workspaceStore.isFeatureActive) {
        debug('Initializing `workspaces` feature');
        workspaceStore.start(stores, actions);
      } else if (workspaceStore.isFeatureActive) {
        debug('Disabling `workspaces` feature');
        workspaceStore.stop();
        resetApiRequests();
      }
    },
    {
      fireImmediately: true,
    },
  );
}