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
| /**
| * SSR Window 2.0.0
| * Better handling for window object in SSR environment
| * https://github.com/nolimits4web/ssr-window
| *
| * Copyright 2020, Vladimir Kharlampidi
| *
| * Licensed under MIT
| *
| * Released on: May 12, 2020
| */
| /* eslint-disable no-param-reassign */
| function isObject(obj) {
| return (obj !== null &&
| typeof obj === 'object' &&
| 'constructor' in obj &&
| obj.constructor === Object);
| }
| function extend(target, src) {
| if (target === void 0) { target = {}; }
| if (src === void 0) { src = {}; }
| Object.keys(src).forEach(function (key) {
| if (typeof target[key] === 'undefined')
| target[key] = src[key];
| else if (isObject(src[key]) &&
| isObject(target[key]) &&
| Object.keys(src[key]).length > 0) {
| extend(target[key], src[key]);
| }
| });
| }
|
| var doc = typeof document !== 'undefined' ? document : {};
| var ssrDocument = {
| body: {},
| addEventListener: function () { },
| removeEventListener: function () { },
| activeElement: {
| blur: function () { },
| nodeName: '',
| },
| querySelector: function () {
| return null;
| },
| querySelectorAll: function () {
| return [];
| },
| getElementById: function () {
| return null;
| },
| createEvent: function () {
| return {
| initEvent: function () { },
| };
| },
| createElement: function () {
| return {
| children: [],
| childNodes: [],
| style: {},
| setAttribute: function () { },
| getElementsByTagName: function () {
| return [];
| },
| };
| },
| createElementNS: function () {
| return {};
| },
| importNode: function () {
| return null;
| },
| location: {
| hash: '',
| host: '',
| hostname: '',
| href: '',
| origin: '',
| pathname: '',
| protocol: '',
| search: '',
| },
| };
| extend(doc, ssrDocument);
|
| var win = typeof window !== 'undefined' ? window : {};
| var ssrWindow = {
| document: ssrDocument,
| navigator: {
| userAgent: '',
| },
| location: {
| hash: '',
| host: '',
| hostname: '',
| href: '',
| origin: '',
| pathname: '',
| protocol: '',
| search: '',
| },
| history: {
| replaceState: function () { },
| pushState: function () { },
| go: function () { },
| back: function () { },
| },
| CustomEvent: function CustomEvent() {
| return this;
| },
| addEventListener: function () { },
| removeEventListener: function () { },
| getComputedStyle: function () {
| return {
| getPropertyValue: function () {
| return '';
| },
| };
| },
| Image: function () { },
| Date: function () { },
| screen: {},
| setTimeout: function () { },
| clearTimeout: function () { },
| matchMedia: function () {
| return {};
| },
| };
| extend(win, ssrWindow);
|
| export { doc as document, extend, win as window };
|
|