aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/TrialActivationInfoBar.js
blob: 77ab97565151b98cfcc7200e8ea87223caf244be (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { defineMessages, intlShape } from 'react-intl';
import ms from 'ms';
import injectSheet from 'react-jss';
import classnames from 'classnames';

import InfoBar from './ui/InfoBar';

const messages = defineMessages({
  message: {
    id: 'infobar.trialActivated',
    defaultMessage: '!!!Your trial was successfully activated. Happy messaging!',
  },
});

const styles = {
  notification: {
    height: 'auto',
    position: 'absolute',
    top: -50,
    transition: 'top 0.3s',
    zIndex: 500,
    width: 'calc(100% - 300px)',
  },
  show: {
    top: 0,
  },
};

@injectSheet(styles)
class TrialActivationInfoBar extends Component {
  static propTypes = {
    // eslint-disable-next-line
    classes: PropTypes.object.isRequired,
  };

  static contextTypes = {
    intl: intlShape,
  };

  state = {
    showing: false,
    removed: false,
  }

  componentDidMount() {
    setTimeout(() => {
      this.setState({
        showing: true,
      });
    }, 0);

    setTimeout(() => {
      this.setState({
        showing: false,
      });
    }, ms('6s'));

    setTimeout(() => {
      this.setState({
        removed: true,
      });
    }, ms('7s'));
  }

  render() {
    const { classes } = this.props;
    const { showing, removed } = this.state;
    const { intl } = this.context;

    if (removed) return null;

    return (
      <div
        className={classnames({
          [classes.notification]: true,
          [classes.show]: showing,
        })}
      >
        <InfoBar
          type="primary"
          position="top"
          sticky
        >
          <span className="mdi mdi-information" />
          {intl.formatMessage(messages.message)}
        </InfoBar>
      </div>
    );
  }
}

export default TrialActivationInfoBar;