aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/assets/components/Dashboard.jsx
blob: b60736d8c03762691990bbfce8c1b68d8bb726d2 (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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
// @flow

// Copyright 2017 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

import React, {Component} from 'react';

import withStyles from 'material-ui/styles/withStyles';
import {lensPath, view, set} from 'ramda';

import Header from './Header';
import Body from './Body';
import {MENU, SAMPLE} from './Common';
import type {Message, HomeMessage, LogsMessage, Chart} from '../types/message';
import type {Content} from '../types/content';

// appender appends an array (A) to the end of another array (B) in the state.
// lens is the path of B in the state, samples is A, and limit is the maximum size of the changed array.
//
// appender retrieves a function, which overrides the state's value at lens, and returns with the overridden state.
const appender = (lens, samples, limit) => (state) => {
    const newSamples = [
        ...view(lens, state), // retrieves a specific value of the state at the given path (lens).
        ...samples,
    ];
    // set is a function of ramda.js, which needs the path, the new value, the original state, and retrieves
    // the altered state.
    return set(
        lens,
        newSamples.slice(newSamples.length > limit ? newSamples.length - limit : 0),
        state
    );
};
// Lenses for specific data fields in the state, used for a clearer deep update.
// NOTE: This solution will be changed very likely.
const memoryLens = lensPath(['content', 'home', 'memory']);
const trafficLens = lensPath(['content', 'home', 'traffic']);
const logLens = lensPath(['content', 'logs', 'log']);
// styles retrieves the styles for the Dashboard component.
const styles = theme => ({
    dashboard: {
        display:    'flex',
        flexFlow:   'column',
        width:      '100%',
        height:     '100%',
        background: theme.palette.background.default,
        zIndex:     1,
        overflow:   'hidden',
    },
});
export type Props = {
    classes: Object,
};
type State = {
    active: string, // active menu
    sideBar: boolean, // true if the sidebar is opened
    content: $Shape<Content>, // the visualized data
    shouldUpdate: Set<string> // labels for the components, which need to rerender based on the incoming message
};
// Dashboard is the main component, which renders the whole page, makes connection with the server and
// listens for messages. When there is an incoming message, updates the page's content correspondingly.
class Dashboard extends Component<Props, State> {
    constructor(props: Props) {
        super(props);
        this.state = {
            active:       MENU.get('home').id,
            sideBar:      true,
            content:      {home: {memory: [], traffic: []}, logs: {log: []}},
            shouldUpdate: new Set(),
        };
    }

    // componentDidMount initiates the establishment of the first websocket connection after the component is rendered.
    componentDidMount() {
        this.reconnect();
    }

    // reconnect establishes a websocket connection with the server, listens for incoming messages
    // and tries to reconnect on connection loss.
    reconnect = () => {
        this.setState({
            content: {home: {memory: [], traffic: []}, logs: {log: []}},
        });
        const server = new WebSocket(`${((window.location.protocol === 'https:') ? 'wss://' : 'ws://') + window.location.host}/api`);
        server.onmessage = (event) => {
            const msg: Message = JSON.parse(event.data);
            if (!msg) {
                return;
            }
            this.update(msg);
        };
        server.onclose = () => {
            setTimeout(this.reconnect, 3000);
        };
    };

    // samples retrieves the raw data of a chart field from the incoming message.
    samples = (chart: Chart) => {
        let s = [];
        if (chart.history) {
            s = chart.history.map(({value}) => (value || 0)); // traffic comes without value at the beginning
        }
        if (chart.new) {
            s = [...s, chart.new.value || 0];
        }
        return s;
    };

    // handleHome changes the home-menu related part of the state.
    handleHome = (home: HomeMessage) => {
        this.setState((prevState) => {
            let newState = prevState;
            newState.shouldUpdate = new Set();
            if (home.memory) {
                newState = appender(memoryLens, this.samples(home.memory), SAMPLE.get('memory').limit)(newState);
                newState.shouldUpdate.add('memory');
            }
            if (home.traffic) {
                newState = appender(trafficLens, this.samples(home.traffic), SAMPLE.get('traffic').limit)(newState);
                newState.shouldUpdate.add('traffic');
            }
            return newState;
        });
    };

    // handleLogs changes the logs-menu related part of the state.
    handleLogs = (logs: LogsMessage) => {
        this.setState((prevState) => {
            let newState = prevState;
            newState.shouldUpdate = new Set();
            if (logs.log) {
                newState = appender(logLens, [logs.log], SAMPLE.get('logs').limit)(newState);
                newState.shouldUpdate.add('logs');
            }
            return newState;
        });
    };

    // update analyzes the incoming message, and updates the charts' content correspondingly.
    update = (msg: Message) => {
        if (msg.home) {
            this.handleHome(msg.home);
        }
        if (msg.logs) {
            this.handleLogs(msg.logs);
        }
    };

    // changeContent sets the active label, which is used at the content rendering.
    changeContent = (newActive: string) => {
        this.setState(prevState => (prevState.active !== newActive ? {active: newActive} : {}));
    };

    // openSideBar opens the sidebar.
    openSideBar = () => {
        this.setState({sideBar: true});
    };

    // closeSideBar closes the sidebar.
    closeSideBar = () => {
        this.setState({sideBar: false});
    };

    render() {
        const {classes} = this.props; // The classes property is injected by withStyles().

        return (
            <div className={classes.dashboard}>
                <Header
                    opened={this.state.sideBar}
                    openSideBar={this.openSideBar}
                    closeSideBar={this.closeSideBar}
                />
                <Body
                    opened={this.state.sideBar}
                    changeContent={this.changeContent}
                    active={this.state.active}
                    content={this.state.content}
                    shouldUpdate={this.state.shouldUpdate}
                />
            </div>
        );
    }
}

export default withStyles(styles)(Dashboard);