forked from mattermost/mattermost-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.jsx
161 lines (137 loc) · 4.94 KB
/
root.jsx
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
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import $ from 'jquery';
require('perfect-scrollbar/jquery')($);
import React from 'react';
import ReactDOM from 'react-dom';
import {Provider} from 'react-redux';
import {Router, browserHistory} from 'react-router';
import PDFJS from 'pdfjs-dist';
import * as Websockets from 'actions/websocket_actions.jsx';
import {loadMeAndConfig} from 'actions/user_actions.jsx';
import PersistGate from 'components/persist_gate';
import ChannelStore from 'stores/channel_store.jsx';
import {trackLoadTime} from 'actions/diagnostics_actions.jsx';
import * as I18n from 'i18n/i18n.jsx';
import {initializePlugins} from 'plugins';
// Import our styles
import 'bootstrap-colorpicker/dist/css/bootstrap-colorpicker.css';
import 'sass/styles.scss';
import 'katex/dist/katex.min.css';
// Redux actions
import store from 'stores/redux_store.jsx';
const dispatch = store.dispatch;
const getState = store.getState;
import {viewChannel} from 'mattermost-redux/actions/channels'; // eslint-disable-line import/order
import {getClientConfig, getLicenseConfig, setUrl} from 'mattermost-redux/actions/general'; // eslint-disable-line import/order
// Import the root of our routing tree
import rRoot from 'routes/route_root.jsx';
PDFJS.disableWorker = true;
// This is for anything that needs to be done for ALL react components.
// This runs before we start to render anything.
function preRenderSetup(callwhendone) {
window.onerror = (msg, url, line, column, stack) => {
var l = {};
l.level = 'ERROR';
l.message = 'msg: ' + msg + ' row: ' + line + ' col: ' + column + ' stack: ' + stack + ' url: ' + url;
$.ajax({
url: '/api/v3/general/log_client',
dataType: 'json',
contentType: 'application/json',
type: 'POST',
data: JSON.stringify(l)
});
if (window.mm_config && window.mm_config.EnableDeveloper === 'true') {
window.ErrorStore.storeLastError({type: 'developer', message: 'DEVELOPER MODE: A JavaScript error has occurred. Please use the JavaScript console to capture and report the error (row: ' + line + ' col: ' + column + ').'});
window.ErrorStore.emitChange();
}
};
var d1 = $.Deferred(); //eslint-disable-line new-cap
setUrl(window.location.origin);
if (document.cookie.indexOf('MMUSERID=') > -1) {
loadMeAndConfig(() => d1.resolve());
} else {
getClientConfig()(store.dispatch, store.getState).then(
({data: config}) => {
global.window.mm_config = config;
getLicenseConfig()(store.dispatch, store.getState).then(
({data: license}) => {
global.window.mm_license = license;
d1.resolve();
}
);
}
);
}
// Make sure the websockets close and reset version
$(window).on('beforeunload',
() => {
// Turn off to prevent getting stuck in a loop
$(window).off('beforeunload');
if (document.cookie.indexOf('MMUSERID=') > -1) {
viewChannel('', ChannelStore.getCurrentId() || '')(dispatch, getState);
}
Websockets.close();
}
);
function afterIntl() {
$.when(d1).done(() => {
initializePlugins();
I18n.doAddLocaleData();
callwhendone();
});
}
if (global.Intl) {
afterIntl();
} else {
I18n.safariFix(afterIntl);
}
// Prevent drag and drop files from navigating away from the app
document.addEventListener('drop', (e) => {
e.preventDefault();
e.stopPropagation();
});
document.addEventListener('dragover', (e) => {
e.preventDefault();
e.stopPropagation();
});
}
function renderRootComponent() {
ReactDOM.render((
<Provider store={store}>
<PersistGate loading={null}>
<Router
history={browserHistory}
routes={rRoot}
/>
</PersistGate>
</Provider>
),
document.getElementById('root'));
}
/**
* Adds a function to be invoked onload appended to any existing onload
* event handlers.
*
* @param {function} fn onload event handler
*
*/
function appendOnLoadEvent(fn) {
if (window.attachEvent) {
window.attachEvent('onload', fn);
} else if (window.onload) {
const curronload = window.onload;
window.onload = (evt) => {
curronload(evt);
fn(evt);
};
} else {
window.onload = fn;
}
}
appendOnLoadEvent(() => {
// Do the pre-render setup and call renderRootComponent when done
preRenderSetup(renderRootComponent);
});
// Append trackLoadTime function to any exisitng onload events
appendOnLoadEvent(trackLoadTime);