summaryrefslogtreecommitdiffstats
path: root/web/react/components/error_bar.jsx
blob: b100fd337776ee359275a67ba594b7b92a94d72c (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

var ErrorStore = require('../stores/error_store.jsx');

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

        this.onErrorChange = this.onErrorChange.bind(this);
        this.handleClose = this.handleClose.bind(this);
        this.resize = this.resize.bind(this);
        this.prevTimer = null;

        this.state = ErrorStore.getLastError();
        if (this.isValidError(this.state)) {
            this.prevTimer = setTimeout(this.handleClose, 10000);
        }
    }

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

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

        if (s.connErrorCount && s.connErrorCount >= 1 && s.connErrorCount < 7) {
            return false;
        }

        return true;
    }

    isConnectionError(s) {
        if (!s.connErrorCount || s.connErrorCount === 0) {
            return false;
        }

        if (s.connErrorCount > 7) {
            return true;
        }

        return false;
    }

    resize() {
        if (this.isValidError(this.state)) {
            var height = $(React.findDOMNode(this)).outerHeight();
            height = height < 30 ? 30 : height;
            $('body').css('padding-top', height + 'px');
        } else {
            $('body').css('padding-top', '0');
        }
    }

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

        $(window).resize(() => {
            this.resize();
        });

        this.resize();
    }

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

    componentDidUpdate() {
        this.resize();
    }

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

        if (this.prevTimer != null) {
            clearInterval(this.prevTimer);
            this.prevTimer = null;
        }

        if (newState) {
            this.setState(newState);
            if (!this.isConnectionError(newState)) {
                this.prevTimer = setTimeout(this.handleClose, 10000);
            }
        } else {
            this.setState({message: null});
        }
    }

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

        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>
        );
    }
}