-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathflow-router-meta.js
358 lines (328 loc) · 10.4 KB
/
flow-router-meta.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
export { FlowRouterTitle } from 'meteor/ostrio:flow-router-title';
/**
* Helper functions for type and value checks.
*/
const helpers = {
/**
* Checks if the provided value is a plain object.
*
* @param {*} obj - The value to check.
* @returns {boolean} True if obj is a plain object, false otherwise.
*/
isObject(obj) {
if (obj === null || this.isArray(obj) || this.isFunction(obj)) {
return false;
}
return obj === Object(obj);
},
/**
* Checks if the provided value is an array.
*
* @param {*} obj - The value to check.
* @returns {boolean} True if obj is an array, false otherwise.
*/
isArray(obj) {
return Array.isArray(obj);
},
/**
* Checks if the provided value is a function.
*
* @param {*} obj - The value to check.
* @returns {boolean} True if obj is a function, false otherwise.
*/
isFunction(obj) {
return typeof obj === 'function';
},
/**
* Checks if the provided value is considered empty.
*
* For objects, it checks if there are any own properties.
* For arrays and strings, it checks the length.
* Dates are never considered empty.
*
* @param {*} obj - The value to check.
* @returns {boolean} True if obj is empty, false otherwise.
*/
isEmpty(obj) {
if (this.isDate(obj)) {
return false;
}
if (this.isObject(obj)) {
return !Object.keys(obj).length;
}
if (this.isArray(obj) || this.isString(obj)) {
return !obj.length;
}
return false;
},
/**
* Checks if the object has a specified property.
*
* @param {Object} obj - The object to check.
* @param {(string|Array)} path - The property name (currently supports only string keys).
* @returns {boolean} True if the property exists on the object, false otherwise.
*/
has(obj, path) {
if (!this.isObject(obj)) {
return false;
}
if (!this.isArray(path)) {
return Object.prototype.hasOwnProperty.call(obj, path);
}
return false;
},
/**
* Checks if the provided value is a string.
*
* @param {*} obj - The value to check.
* @returns {boolean} True if obj is a string, false otherwise.
*/
isString(obj) {
return Object.prototype.toString.call(obj) === '[object String]';
},
/**
* Checks if the provided value is a Date.
*
* @param {*} obj - The value to check.
* @returns {boolean} True if obj is a Date, false otherwise.
*/
isDate(obj) {
return Object.prototype.toString.call(obj) === '[object Date]';
}
};
/**
* Class representing meta tag handling for FlowRouter.
*/
export class FlowRouterMeta {
/**
* Creates an instance of FlowRouterMeta.
*
* @param {FlowRouter|Router} router - The FlowRouter or Router instance.
*/
constructor(router) {
const self = this;
this.metaSetTimer = null;
this.router = router;
this.router.triggers.enter([this.metaHandler.bind(this)]);
this.tags = ['link', 'meta', 'script'];
const _orig = this.router._notfoundRoute;
this.router._notfoundRoute = function () {
let _context = {
route: {
options: {}
}
};
const notFoundRoute = (self.router.notFound || self.router.notfound || null);
for (let k = self.tags.length - 1; k >= 0; k--) {
if (notFoundRoute[self.tags[k]]) {
_context.route.options[self.tags[k]] = notFoundRoute[self.tags[k]];
}
}
if (!helpers.isEmpty(self.router._current)) {
setTimeout(() => {
self.metaHandler.call(self, Object.assign({}, self.router._current, _context));
}, 5);
} else {
setTimeout(() => {
self.metaHandler.call(self, _context);
}, 5);
}
return _orig.apply(this, arguments);
};
}
/**
* Recursively retrieves and merges tag options from parent groups.
*
* @param {Object} group - The group object.
* @param {string} type - The tag type (e.g., 'meta', 'link', 'script').
* @param {Object} _context - The context object.
* @param {Array} _arguments - The arguments array.
* @param {Object} [result={}] - The accumulator for merged values.
* @returns {Object} The merged tag options.
*/
_fromParent(group, type, _context, _arguments, result = {}) {
if (group) {
if (group.options && helpers.has(group.options, type)) {
return Object.assign({}, this._getValue(group.options[type], _context, _arguments), result);
}
if (group.parent) {
return this._fromParent(group.parent, type, _context, _arguments, result);
}
}
return result;
}
/**
* Recursively resolves the value of a property.
*
* If the property is a function, it is executed with the provided context and arguments.
* If it's an array or object, each element or property is recursively resolved.
*
* @param {*} prop - The property to resolve. Can be a function, string, array, or object.
* @param {Object} _context - The context for function execution.
* @param {Array} _arguments - The arguments to pass if prop is a function.
* @returns {*} The resolved value.
*/
_getValue(prop, _context, _arguments) {
if (helpers.isFunction(prop)) {
return this._getValue(prop.apply(_context, _arguments), _context, _arguments);
}
if (helpers.isString(prop)) {
return prop;
}
if (helpers.isArray(prop)) {
return prop.reduce((acc, propVal, index) => {
acc[index] = this._getValue(propVal, _context, _arguments);
return acc;
}, {});
}
if (helpers.isObject(prop)) {
return Object.keys(prop).reduce((acc, key) => {
acc[key] = this._getValue(prop[key], _context, _arguments);
return acc;
}, {});
}
if (prop === null) {
return null;
}
return prop;
}
/**
* Constructs attributes for a tag based on its type.
*
* @param {string} tagType - The tag type (e.g., 'meta', 'link', 'script').
* @param {(string|Object)} attrs - The attributes as a string or object.
* @param {string} key - The key to use for attribute assignment.
* @returns {(Object|undefined)} The attributes object, or undefined if not applicable.
*/
_getAttrs(tagType, attrs, key) {
if (!attrs || (!helpers.isString(attrs) && !helpers.isObject(attrs))) {
return attrs;
}
switch (tagType) {
case 'meta':
if (helpers.isObject(attrs)) {
return { name: key, ...attrs };
}
return {
content: attrs,
name: key
};
case 'link':
if (helpers.isObject(attrs)) {
return { rel: key, ...attrs };
}
return {
href: attrs,
rel: key
};
case 'script':
if (helpers.isObject(attrs)) {
return attrs;
}
return {
src: attrs
};
default:
return void 0;
}
}
/**
* Sets meta tags in the document head based on the current route context.
*
* Merges global, group, and route-specific tag options, then updates
* the corresponding DOM elements.
*
* @param {HTMLElement} head - The document head element.
* @param {Object} context - The current route context.
* @param {*} data - Additional data.
*/
_setTags(head, context, data) {
this.metaSetTimer = null;
const elements = {};
const _context = Object.assign({}, { query: context.queryParams, params: {} }, context);
const _arguments = [context.params, context.queryParams, data];
for (let tagType of this.tags) {
if (!elements[tagType]) {
elements[tagType] = {};
}
if (this.router.globals && this.router.globals.length) {
for (let i = this.router.globals.length - 1; i >= 0; i--) {
if (helpers.has(this.router.globals[i], tagType)) {
elements[tagType] = Object.assign({}, elements[tagType], this._getValue(this.router.globals[i][tagType], _context, _arguments));
}
}
}
if (context.route) {
if (context.route.group) {
elements[tagType] = Object.assign({}, elements[tagType], this._fromParent(context.route.group, tagType, _context, _arguments));
}
if (context.route.options) {
if (helpers.has(context.route.options, tagType)) {
elements[tagType] = Object.assign({}, elements[tagType], this._getValue(context.route.options[tagType], _context, _arguments));
}
}
}
// eslint-disable-next-line guard-for-in
for (const key in elements[tagType]) {
let element = head.querySelectorAll(`${tagType}[data-name="${key}"]`)[0];
if (elements[tagType][key] === null || helpers.isEmpty(elements[tagType][key])) {
if (element) {
head.removeChild(element);
}
continue;
}
if (!element) {
element = document.createElement(tagType);
head.appendChild(element);
}
element.dataset.name = key;
const attributes = this._getAttrs(tagType, elements[tagType][key], key);
if (!attributes) {
continue;
}
for (const attrName in attributes) {
if (helpers.isString(attributes[attrName])) {
if (attrName === 'innerHTML') {
element.innerHTML = attributes[attrName];
} else {
element.setAttribute(attrName, attributes[attrName]);
}
}
}
if (element.attributes && element.attributes.length) {
for (let i = element.attributes.length - 1; i >= 0; i--) {
if (element.attributes[i].name !== 'data-name' && !helpers.has(attributes, element.attributes[i].name)) {
element.removeAttribute(element.attributes[i].name);
}
}
}
if (element.attributes.length === 0) {
head.removeChild(element);
}
}
}
}
/**
* Handles meta tag updates when a route is entered.
*
* Schedules the update of meta tags in the document head based on the
* provided context.
*
* @param {Object} context - The current route context.
* @param {*} _redirect - Unused parameter for redirection.
* @param {*} _stop - Unused parameter for stopping route processing.
* @param {*} data - `data` returned from `data()` hook.
*/
metaHandler(context, _redirect, _stop, data) {
const head = document.getElementsByTagName('head')[0];
if (!head) {
return;
}
if (this.metaSetTimer) {
clearTimeout(this.metaSetTimer);
}
this.metaSetTimer = setTimeout(() => {
this._setTags(head, context, data);
}, 5);
}
}