-
-
Notifications
You must be signed in to change notification settings - Fork 631
/
clientStartup.js
242 lines (202 loc) · 7.06 KB
/
clientStartup.js
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/* global ReactOnRails Turbolinks */
import ReactDOM from 'react-dom';
import createReactElement from './createReactElement';
import isRouterResult from './isCreateReactElementResultNonReactComponent';
const REACT_ON_RAILS_STORE_ATTRIBUTE = 'data-js-react-on-rails-store';
function findContext() {
if (typeof window.ReactOnRails !== 'undefined') {
return window;
} else if (typeof ReactOnRails !== 'undefined') {
return global;
}
throw new Error(`\
ReactOnRails is undefined in both global and window namespaces.
`);
}
function debugTurbolinks(...msg) {
if (!window) {
return;
}
const context = findContext();
if (context.ReactOnRails.option('traceTurbolinks')) {
console.log('TURBO:', ...msg);
}
}
function turbolinksInstalled() {
return (typeof Turbolinks !== 'undefined');
}
function forEach(fn, className, railsContext) {
const els = document.getElementsByClassName(className);
for (let i = 0; i < els.length; i += 1) {
fn(els[i], railsContext);
}
}
function forEachByAttribute(fn, attributeName, railsContext) {
const els = document.querySelectorAll(`[${attributeName}]`);
for (let i = 0; i < els.length; i += 1) {
fn(els[i], railsContext);
}
}
function forEachComponent(fn, railsContext) {
forEach(fn, 'js-react-on-rails-component', railsContext);
}
function initializeStore(el, railsContext) {
const context = findContext();
const name = el.getAttribute(REACT_ON_RAILS_STORE_ATTRIBUTE);
const props = JSON.parse(el.textContent);
const storeGenerator = context.ReactOnRails.getStoreGenerator(name);
const store = storeGenerator(props, railsContext);
context.ReactOnRails.setStore(name, store);
}
function forEachStore(railsContext) {
forEachByAttribute(initializeStore, REACT_ON_RAILS_STORE_ATTRIBUTE, railsContext);
}
function turbolinksVersion5() {
return (typeof Turbolinks.controller !== 'undefined');
}
function turbolinksSupported() {
return Turbolinks.supported;
}
function delegateToRenderer(componentObj, props, railsContext, domNodeId, trace) {
const { name, component, isRenderer } = componentObj;
if (isRenderer) {
if (trace) {
console.log(`\
DELEGATING TO RENDERER ${name} for dom node with id: ${domNodeId} with props, railsContext:`,
props, railsContext);
}
component(props, railsContext, domNodeId);
return true;
}
return false;
}
function domNodeIdForEl(el) {
return el.getAttribute('data-dom-id');
}
/**
* Used for client rendering by ReactOnRails. Either calls ReactDOM.hydrate, ReactDOM.render, or
* delegates to a renderer registered by the user.
* @param el
*/
function render(el, railsContext) {
const context = findContext();
// This must match app/helpers/react_on_rails_helper.rb:113
const name = el.getAttribute('data-component-name');
const domNodeId = domNodeIdForEl(el);
const props = JSON.parse(el.textContent);
const trace = el.getAttribute('data-trace');
try {
const domNode = document.getElementById(domNodeId);
if (domNode) {
const componentObj = context.ReactOnRails.getComponent(name);
if (delegateToRenderer(componentObj, props, railsContext, domNodeId, trace)) {
return;
}
// Hydrate if available and was server rendered
const shouldHydrate = !!ReactDOM.hydrate && !!domNode.innerHTML;
const reactElementOrRouterResult = createReactElement({
componentObj,
props,
domNodeId,
trace,
railsContext,
shouldHydrate,
});
if (isRouterResult(reactElementOrRouterResult)) {
throw new Error(`\
You returned a server side type of react-router error: ${JSON.stringify(reactElementOrRouterResult)}
You should return a React.Component always for the client side entry point.`);
} else if (shouldHydrate) {
ReactDOM.hydrate(reactElementOrRouterResult, domNode);
} else {
ReactDOM.render(reactElementOrRouterResult, domNode);
}
}
} catch (e) {
e.message = `ReactOnRails encountered an error while rendering component: ${name}.\n` +
`Original message: ${e.message}`;
throw e;
}
}
function parseRailsContext() {
const el = document.getElementById('js-react-on-rails-context');
if (el) {
return JSON.parse(el.textContent);
}
return null;
}
export function reactOnRailsPageLoaded() {
debugTurbolinks('reactOnRailsPageLoaded');
const railsContext = parseRailsContext();
forEachStore(railsContext);
forEachComponent(render, railsContext);
}
function unmount(el) {
const domNodeId = domNodeIdForEl(el);
const domNode = document.getElementById(domNodeId);
try {
ReactDOM.unmountComponentAtNode(domNode);
} catch (e) {
console.info(`Caught error calling unmountComponentAtNode: ${e.message} for domNode`,
domNode, e);
}
}
function reactOnRailsPageUnloaded() {
debugTurbolinks('reactOnRailsPageUnloaded');
forEachComponent(unmount);
}
export function clientStartup(context) {
const document = context.document;
// Check if server rendering
if (!document) {
return;
}
// Tried with a file local variable, but the install handler gets called twice.
// eslint-disable-next-line no-underscore-dangle
if (context.__REACT_ON_RAILS_EVENT_HANDLERS_RAN_ONCE__) {
return;
}
// eslint-disable-next-line no-underscore-dangle, no-param-reassign
context.__REACT_ON_RAILS_EVENT_HANDLERS_RAN_ONCE__ = true;
debugTurbolinks('Adding DOMContentLoaded event to install event listeners.');
window.setTimeout(() => {
if (!turbolinksInstalled() || !turbolinksSupported()) {
if (document.readyState === 'complete' ||
(document.readyState !== 'loading' && !document.documentElement.doScroll)
) {
debugTurbolinks(
'NOT USING TURBOLINKS: DOM is already loaded, calling reactOnRailsPageLoaded',
);
reactOnRailsPageLoaded();
} else {
document.addEventListener('DOMContentLoaded', () => {
debugTurbolinks(
'NOT USING TURBOLINKS: DOMContentLoaded event, calling reactOnRailsPageLoaded',
);
reactOnRailsPageLoaded();
});
}
}
});
document.addEventListener('DOMContentLoaded', () => {
// Install listeners when running on the client (browser).
// We must do this check for turbolinks AFTER the document is loaded because we load the
// Webpack bundles first.
if (turbolinksInstalled() && turbolinksSupported()) {
if (turbolinksVersion5()) {
debugTurbolinks(
'USING TURBOLINKS 5: document added event listeners ' +
'turbolinks:before-render and turbolinks:render.');
document.addEventListener('turbolinks:before-render', reactOnRailsPageUnloaded);
document.addEventListener('turbolinks:render', reactOnRailsPageLoaded);
reactOnRailsPageLoaded();
} else {
debugTurbolinks(
'USING TURBOLINKS 2: document added event listeners page:before-unload and ' +
'page:change.');
document.addEventListener('page:before-unload', reactOnRailsPageUnloaded);
document.addEventListener('page:change', reactOnRailsPageLoaded);
}
}
});
}