aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/serviceLimit/components/LimitReachedInfobox.js
blob: 424c9299098fb2ac0253a4225f107f5a38f2a3f0 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { inject, observer } from 'mobx-react';
import { defineMessages, intlShape } from 'react-intl';
import injectSheet from 'react-jss';
import { Infobox } from '@meetfranz/ui';

const messages = defineMessages({
  limitReached: {
    id: 'feature.serviceLimit.limitReached',
    defaultMessage: '!!!You have added {amount} of {limit} services. Please upgrade your account to add more services.',
  },
  action: {
    id: 'premiumFeature.button.upgradeAccount',
    defaultMessage: '!!!Upgrade account',
  },
});

const styles = theme => ({
  container: {
    height: 'auto',
    background: theme.styleTypes.warning.accent,
    color: theme.styleTypes.warning.contrast,
    borderRadius: 0,
    marginBottom: 0,

    '& > div': {
      marginBottom: 0,
    },

    '& button': {
      color: theme.styleTypes.primary.contrast,
    },
  },
});

@inject('stores', 'actions') @injectSheet(styles) @observer
class LimitReachedInfobox extends Component {
  static propTypes = {
    classes: PropTypes.object.isRequired,
    stores: PropTypes.object.isRequired,
    actions: PropTypes.object.isRequired,
  };

  static contextTypes = {
    intl: intlShape,
  };

  render() {
    const { classes, stores, actions } = this.props;
    const { intl } = this.context;

    const {
      serviceLimit,
    } = stores;

    if (!serviceLimit.userHasReachedServiceLimit) return null;

    return (
      <Infobox
        icon="mdiInformation"
        type="warning"
        className={classes.container}
        ctaLabel={intl.formatMessage(messages.action)}
        ctaOnClick={() => {
          actions.ui.openSettings({ path: 'user' });
        }}
      >
        {intl.formatMessage(messages.limitReached, { amount: serviceLimit.serviceCount, limit: serviceLimit.serviceLimit })}
      </Infobox>
    );
  }
}

export default LimitReachedInfobox;