summaryrefslogtreecommitdiffstats
path: root/web/react/components/error_bar.jsx
blob: 9a114c5441e2da7fb71439f7c5b0f15ba453f343 (plain)
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
95
96
97
98
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import ErrorStore from '../stores/error_store.jsx';

// import mm-intl is required for the tool to be able to extract the messages
import {defineMessages} from 'mm-intl';

var messages = defineMessages({
    preview: {
        id: 'error_bar.preview_mode',
        defaultMessage: 'Preview Mode: Email notifications have not been configured'
    }
});

export default class ErrorBar extends React.Component {
    constructor() {
        super();

        this.onErrorChange = this.onErrorChange.bind(this);
        this.handleClose = this.handleClose.bind(this);

        this.state = ErrorStore.getLastError();
    }

    static propTypes() {
        return {
            intl: ReactIntl.intlShape.isRequired
        };
    }

    isValidError(s) {
        if (!s) {
            return false;
        }

        if (!s.message) {
            return false;
        }

        return true;
    }

    componentWillMount() {
        if (global.window.mm_config.SendEmailNotifications === 'false') {
            ErrorStore.storeLastError({message: this.props.intl.formatMessage(messages.preview)});
            this.onErrorChange();
        }
    }

    componentDidMount() {
        ErrorStore.addChangeListener(this.onErrorChange);
    }

    componentWillUnmount() {
        ErrorStore.removeChangeListener(this.onErrorChange);
    }

    onErrorChange() {
        var newState = ErrorStore.getLastError();

        if (newState) {
            this.setState(newState);
        } else {
            this.setState({message: null});
        }
    }

    handleClose(e) {
        if (e) {
            e.preventDefault();
        }

        ErrorStore.clearLastError();
        this.setState({message: null});
    }

    render() {
        if (!this.isValidError(this.state)) {
            return <div/>;
        }

        return (
            <div className='error-bar'>
                <span>{this.state.message}</span>
                <a
                    href='#'
                    className='error-bar__close'
                    onClick={this.handleClose}
                >
                    &times;
                </a>
            </div>
        );
    }
}

export default ReactIntl.injectIntl(ErrorBar);