aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/plan-helpers.js
blob: e0f1fd89a9cc9fcf5c7e49e0f852aab9101d07cf (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
36
37
38
39
40
41
42
43
44
45
import { defineMessages } from 'react-intl';
import { PLANS_MAPPING, PLANS } from '../config';

const messages = defineMessages({
  [PLANS.PRO]: {
    id: 'pricing.plan.pro',
    defaultMessage: '!!!Franz Professional',
  },
  [PLANS.PERSONAL]: {
    id: 'pricing.plan.personal',
    defaultMessage: '!!!Franz Personal',
  },
  [PLANS.FREE]: {
    id: 'pricing.plan.free',
    defaultMessage: '!!!Franz Free',
  },
  [PLANS.LEGACY]: {
    id: 'pricing.plan.legacy',
    defaultMessage: '!!!Franz Premium',
  },
});

export function i18nPlanName(planId, intl) {
  if (!planId) {
    throw new Error('planId is required');
  }

  if (!intl) {
    throw new Error('intl context is required');
  }

  const plan = PLANS_MAPPING[planId];

  return intl.formatMessage(messages[plan]);
}

export function getPlan(planId) {
  if (!planId) {
    throw new Error('planId is required');
  }

  const plan = PLANS_MAPPING[planId];

  return plan;
}