@pepperdash/mobile-control-react-app-core 1.9.0 → 1.9.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mobile-control-react-app-core.es.js +987 -984
- package/dist/mobile-control-react-app-core.umd.js +11 -11
- package/dist/shared/Icons/MultiStateIcons/IconMultiController.d.ts.map +1 -1
- package/dist/shared/Icons/MultiStateIcons/IconMultiRoomPC.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts +8 -0
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtimeSelectors.d.ts +3 -0
- package/dist/store/runtimeConfig/runtimeSelectors.d.ts.map +1 -1
- package/dist/utils/WebsocketProvider.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
var W3 = Object.defineProperty;
|
|
2
|
-
var H3 = (t, e,
|
|
3
|
-
var
|
|
2
|
+
var H3 = (t, e, s) => e in t ? W3(t, e, { enumerable: !0, configurable: !0, writable: !0, value: s }) : t[e] = s;
|
|
3
|
+
var L = (t, e, s) => (H3(t, typeof e != "symbol" ? e + "" : e, s), s);
|
|
4
4
|
import K3 from "axios";
|
|
5
|
-
import { createSlice as
|
|
5
|
+
import { createSlice as i1, combineReducers as G3, configureStore as c3, createSelector as q3 } from "@reduxjs/toolkit";
|
|
6
6
|
import { useSelector as Y3, useDispatch as J3, Provider as z3 } from "react-redux";
|
|
7
|
-
import * as
|
|
8
|
-
import
|
|
7
|
+
import * as o3 from "lodash";
|
|
8
|
+
import r3, { createContext as X3, useState as N, useRef as l1, useCallback as s1, useEffect as Q, useContext as Q3 } from "react";
|
|
9
9
|
import { useNavigate as N3 } from "react-router-dom";
|
|
10
10
|
const e2 = {
|
|
11
11
|
config: {
|
|
@@ -17,7 +17,7 @@ const e2 = {
|
|
|
17
17
|
loginMode: "",
|
|
18
18
|
modes: {}
|
|
19
19
|
}
|
|
20
|
-
},
|
|
20
|
+
}, l3 = i1({
|
|
21
21
|
name: "appConfig",
|
|
22
22
|
initialState: e2,
|
|
23
23
|
reducers: {
|
|
@@ -25,33 +25,33 @@ const e2 = {
|
|
|
25
25
|
t.config = e.payload;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
}), t2 =
|
|
28
|
+
}), t2 = l3.actions, n2 = l3.reducer, s2 = {}, i3 = i1({
|
|
29
29
|
name: "devices",
|
|
30
|
-
initialState:
|
|
30
|
+
initialState: s2,
|
|
31
31
|
reducers: {
|
|
32
32
|
setDeviceState(t, e) {
|
|
33
|
-
const
|
|
33
|
+
const s = e.payload.type, o = s.slice(s.lastIndexOf("/") + 1);
|
|
34
34
|
if (!o)
|
|
35
35
|
return;
|
|
36
|
-
const l = e.payload.content, i = t[o] ?? {},
|
|
37
|
-
return t[o] =
|
|
36
|
+
const l = e.payload.content, i = t[o] ?? {}, u = o3.merge(i, l);
|
|
37
|
+
return t[o] = u, t;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
}),
|
|
40
|
+
}), c2 = i3.actions, o2 = i3.reducer, r2 = {}, a3 = i1({
|
|
41
41
|
name: "rooms",
|
|
42
42
|
initialState: r2,
|
|
43
43
|
reducers: {
|
|
44
44
|
setRoomState(t, e) {
|
|
45
|
-
const
|
|
46
|
-
if (console.log(
|
|
45
|
+
const s = e.payload.type, o = s.slice(s.lastIndexOf("/") + 1);
|
|
46
|
+
if (console.log(s, o), !o)
|
|
47
47
|
return;
|
|
48
48
|
const l = e.payload.content;
|
|
49
49
|
console.log(l);
|
|
50
|
-
const i = t[o] ?? {},
|
|
51
|
-
return t[o] =
|
|
50
|
+
const i = t[o] ?? {}, u = o3.merge(i, l);
|
|
51
|
+
return t[o] = u, console.log(t), t;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
|
-
}), l2 =
|
|
54
|
+
}), l2 = a3.actions, i2 = a3.reducer, a2 = {
|
|
55
55
|
apiVersion: "",
|
|
56
56
|
serverIsRunningOnProcessorHardware: !1,
|
|
57
57
|
websocket: {
|
|
@@ -60,6 +60,7 @@ const e2 = {
|
|
|
60
60
|
pluginVersion: "",
|
|
61
61
|
disconnectionMessage: "",
|
|
62
62
|
token: "",
|
|
63
|
+
roomKey: "",
|
|
63
64
|
roomData: {
|
|
64
65
|
clientId: "",
|
|
65
66
|
roomKey: "",
|
|
@@ -70,7 +71,7 @@ const e2 = {
|
|
|
70
71
|
userCode: "",
|
|
71
72
|
qrUrl: ""
|
|
72
73
|
}
|
|
73
|
-
},
|
|
74
|
+
}, u3 = i1({
|
|
74
75
|
name: "runtimeConfig",
|
|
75
76
|
initialState: a2,
|
|
76
77
|
reducers: {
|
|
@@ -90,19 +91,19 @@ const e2 = {
|
|
|
90
91
|
t.roomData = e.payload;
|
|
91
92
|
},
|
|
92
93
|
setCurrentRoomKey(t, e) {
|
|
93
|
-
t.
|
|
94
|
+
t.roomKey = e.payload;
|
|
94
95
|
},
|
|
95
96
|
setUserCode(t, e) {
|
|
96
97
|
t.roomData.userCode = e.payload.userCode, t.roomData.qrUrl = e.payload.qrUrl;
|
|
97
98
|
}
|
|
98
99
|
}
|
|
99
|
-
}),
|
|
100
|
+
}), X = u3.actions, u2 = u3.reducer, d2 = {
|
|
100
101
|
modalVisibility: {
|
|
101
102
|
showShutdownModal: !1,
|
|
102
103
|
showIncomingCallModal: !1
|
|
103
104
|
},
|
|
104
105
|
popoverVisibility: {}
|
|
105
|
-
},
|
|
106
|
+
}, d3 = i1({
|
|
106
107
|
name: "ui",
|
|
107
108
|
initialState: d2,
|
|
108
109
|
reducers: {
|
|
@@ -121,142 +122,142 @@ const e2 = {
|
|
|
121
122
|
t.modalVisibility.showIncomingCallModal = e.payload;
|
|
122
123
|
},
|
|
123
124
|
setPopoverState(t, e) {
|
|
124
|
-
t.popoverVisibility[e.payload.popoverGroup] || (t.popoverVisibility[e.payload.popoverGroup] = {}), Object.entries(t.popoverVisibility[e.payload.popoverGroup]).forEach(([
|
|
125
|
-
t.popoverVisibility[e.payload.popoverGroup][
|
|
125
|
+
t.popoverVisibility[e.payload.popoverGroup] || (t.popoverVisibility[e.payload.popoverGroup] = {}), Object.entries(t.popoverVisibility[e.payload.popoverGroup]).forEach(([s]) => {
|
|
126
|
+
t.popoverVisibility[e.payload.popoverGroup][s] = !1;
|
|
126
127
|
}), t.popoverVisibility[e.payload.popoverGroup][e.payload.popoverId] = e.payload.value;
|
|
127
128
|
}
|
|
128
129
|
}
|
|
129
|
-
}),
|
|
130
|
+
}), D8 = d3.actions, v2 = d3.reducer, v3 = G3({
|
|
130
131
|
appConfig: n2,
|
|
131
132
|
runtimeConfig: u2,
|
|
132
133
|
rooms: i2,
|
|
133
134
|
devices: o2,
|
|
134
135
|
ui: v2
|
|
135
|
-
}), h2 =
|
|
136
|
-
reducer:
|
|
137
|
-
}),
|
|
138
|
-
function
|
|
139
|
-
return
|
|
136
|
+
}), h2 = c3({
|
|
137
|
+
reducer: v3
|
|
138
|
+
}), p = Y3, g2 = () => p((t) => t.appConfig.config), P8 = () => p((t) => t.appConfig.config.apiPath), f2 = () => p((t) => t.devices);
|
|
139
|
+
function $(t) {
|
|
140
|
+
return p((e) => e.devices[t] ? e.devices[t] : void 0);
|
|
140
141
|
}
|
|
141
|
-
const
|
|
142
|
+
const O8 = (t) => p(
|
|
142
143
|
(e) => {
|
|
143
|
-
var
|
|
144
|
-
return e.rooms[t] ? (
|
|
144
|
+
var s;
|
|
145
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.configuration : void 0;
|
|
145
146
|
}
|
|
146
|
-
),
|
|
147
|
+
), L1 = (t) => p(
|
|
147
148
|
(e) => e.rooms[t] ? e.rooms[t] : void 0
|
|
148
|
-
),
|
|
149
|
+
), V8 = (t) => p(
|
|
149
150
|
(e) => {
|
|
150
|
-
var
|
|
151
|
-
return e.rooms[t] ? (
|
|
151
|
+
var s;
|
|
152
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.name : void 0;
|
|
152
153
|
}
|
|
153
|
-
), w2 = (t, e) =>
|
|
154
|
-
(
|
|
154
|
+
), w2 = (t, e) => p(
|
|
155
|
+
(s) => {
|
|
155
156
|
var o;
|
|
156
|
-
return
|
|
157
|
+
return s.rooms[t] ? (o = s.rooms[t]) == null ? void 0 : o.volumes[e] : void 0;
|
|
157
158
|
}
|
|
158
|
-
),
|
|
159
|
+
), F8 = (t) => p(
|
|
159
160
|
(e) => {
|
|
160
|
-
var
|
|
161
|
-
return e.rooms[t] ? (o = (
|
|
161
|
+
var s, o;
|
|
162
|
+
return e.rooms[t] ? (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.sourceList : void 0;
|
|
162
163
|
}
|
|
163
|
-
),
|
|
164
|
+
), k8 = (t) => p(
|
|
164
165
|
(e) => {
|
|
165
|
-
var
|
|
166
|
-
return e.rooms[t] ? (o = (
|
|
166
|
+
var s, o;
|
|
167
|
+
return e.rooms[t] ? (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.destinations : void 0;
|
|
167
168
|
}
|
|
168
|
-
),
|
|
169
|
+
), U8 = (t) => p(
|
|
169
170
|
(e) => {
|
|
170
|
-
var
|
|
171
|
-
return e.rooms[t] ? (o = (
|
|
171
|
+
var s, o;
|
|
172
|
+
return e.rooms[t] ? (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.destinationList : void 0;
|
|
172
173
|
}
|
|
173
|
-
),
|
|
174
|
+
), W8 = (t) => p(
|
|
174
175
|
(e) => {
|
|
175
|
-
var
|
|
176
|
-
return e.rooms[t] ? (o = (
|
|
176
|
+
var s, o;
|
|
177
|
+
return e.rooms[t] ? (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.environmentalDevices : void 0;
|
|
177
178
|
}
|
|
178
|
-
),
|
|
179
|
+
), H8 = (t) => p(
|
|
179
180
|
(e) => {
|
|
180
|
-
var
|
|
181
|
-
return (o = (
|
|
181
|
+
var s, o, l, i, u, g, h, S;
|
|
182
|
+
return (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) != null && o.destinationList.programAudio ? (u = (i = (l = e.rooms[t]) == null ? void 0 : l.configuration) == null ? void 0 : i.destinationList.programAudio) == null ? void 0 : u.sinkKey : ((S = (h = (g = e.rooms[t]) == null ? void 0 : g.configuration) == null ? void 0 : h.destinationList.defaultDisplay) == null ? void 0 : S.sinkKey) || "";
|
|
182
183
|
}
|
|
183
|
-
),
|
|
184
|
+
), K8 = (t) => p(
|
|
184
185
|
(e) => {
|
|
185
|
-
var
|
|
186
|
-
return e.rooms[t] ? (l = (o = (
|
|
186
|
+
var s, o, l;
|
|
187
|
+
return e.rooms[t] ? (l = (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.destinationList.codecContent) == null ? void 0 : l.sinkKey : void 0;
|
|
187
188
|
}
|
|
188
|
-
),
|
|
189
|
+
), G8 = (t) => p(
|
|
189
190
|
(e) => {
|
|
190
|
-
var
|
|
191
|
-
return e.rooms[t] ? (
|
|
191
|
+
var s;
|
|
192
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isInCall : void 0;
|
|
192
193
|
}
|
|
193
|
-
),
|
|
194
|
+
), q8 = (t) => p(
|
|
194
195
|
(e) => {
|
|
195
|
-
var
|
|
196
|
-
return e.rooms[t] ? (
|
|
196
|
+
var s;
|
|
197
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isWarmingUp : void 0;
|
|
197
198
|
}
|
|
198
|
-
),
|
|
199
|
+
), Y8 = (t) => p(
|
|
199
200
|
(e) => {
|
|
200
|
-
var
|
|
201
|
-
return e.rooms[t] ? (
|
|
201
|
+
var s;
|
|
202
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isCoolingDown : void 0;
|
|
202
203
|
}
|
|
203
|
-
),
|
|
204
|
+
), J8 = (t) => p(
|
|
204
205
|
(e) => {
|
|
205
|
-
var
|
|
206
|
-
return e.rooms[t] ? (
|
|
206
|
+
var s;
|
|
207
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.isOn : void 0;
|
|
207
208
|
}
|
|
208
|
-
),
|
|
209
|
+
), z8 = (t) => p(
|
|
209
210
|
(e) => {
|
|
210
|
-
var
|
|
211
|
-
return e.rooms[t] ? (
|
|
211
|
+
var s;
|
|
212
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.advancedSharingActive : void 0;
|
|
212
213
|
}
|
|
213
|
-
),
|
|
214
|
+
), X8 = (t) => p(
|
|
214
215
|
(e) => {
|
|
215
|
-
var
|
|
216
|
-
return e.rooms[t] ? (
|
|
216
|
+
var s;
|
|
217
|
+
return e.rooms[t] ? (s = e.rooms[t]) == null ? void 0 : s.share : void 0;
|
|
217
218
|
}
|
|
218
|
-
),
|
|
219
|
+
), Q8 = (t) => q3(
|
|
219
220
|
[
|
|
220
|
-
(e,
|
|
221
|
+
(e, s) => s,
|
|
221
222
|
f2,
|
|
222
223
|
(e) => {
|
|
223
|
-
var
|
|
224
|
-
return (o = (
|
|
224
|
+
var s, o;
|
|
225
|
+
return (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.destinations;
|
|
225
226
|
}
|
|
226
227
|
],
|
|
227
|
-
(e,
|
|
228
|
-
if (console.log("roomKey", e), console.log("devices",
|
|
228
|
+
(e, s, o) => {
|
|
229
|
+
if (console.log("roomKey", e), console.log("devices", s), console.log("destinations", o), !o)
|
|
229
230
|
return;
|
|
230
|
-
const l = Object.entries(o).filter(([
|
|
231
|
-
return Object.values(
|
|
231
|
+
const l = Object.entries(o).filter(([u]) => u !== "programAudio" && u !== "codecContent").map(([, u]) => u);
|
|
232
|
+
return Object.values(s).filter((u) => Object.values(l).includes(u.key));
|
|
232
233
|
}
|
|
233
|
-
)(h2.getState(), t),
|
|
234
|
+
)(h2.getState(), t), N8 = (t) => p(
|
|
234
235
|
(e) => {
|
|
235
|
-
var
|
|
236
|
-
return e.rooms[t] ? (o = (
|
|
237
|
-
}
|
|
238
|
-
), p2 = () =>
|
|
239
|
-
const
|
|
240
|
-
if (
|
|
241
|
-
return Object.keys(
|
|
242
|
-
}),
|
|
236
|
+
var s, o;
|
|
237
|
+
return e.rooms[t] ? (o = (s = e.rooms[t]) == null ? void 0 : s.configuration) == null ? void 0 : o.zoomRoomControllerKey : void 0;
|
|
238
|
+
}
|
|
239
|
+
), p2 = () => p((t) => t.runtimeConfig.websocket.isConnected), x2 = () => p((t) => t.runtimeConfig.roomKey), M2 = () => p((t) => t.runtimeConfig.roomData.clientId), m2 = () => p((t) => t.runtimeConfig.serverIsRunningOnProcessorHardware), Z2 = () => p((t) => t.runtimeConfig.roomData.systemUuid), j2 = () => p((t) => t.runtimeConfig.roomData.userCode), e6 = () => p((t) => t.ui.modalVisibility.showShutdownModal), t6 = () => p((t) => t.ui.modalVisibility.showIncomingCallModal), n6 = (t) => p((e) => e.ui.modalVisibility[t]), s6 = (t) => p((e) => {
|
|
240
|
+
const s = e.ui.popoverVisibility[t];
|
|
241
|
+
if (s)
|
|
242
|
+
return Object.keys(s).find((o) => s[o]);
|
|
243
|
+
}), c6 = (t, e) => p((s) => {
|
|
243
244
|
var o;
|
|
244
|
-
return (o =
|
|
245
|
-
}),
|
|
246
|
-
reducer:
|
|
247
|
-
}),
|
|
248
|
-
function
|
|
249
|
-
const t =
|
|
245
|
+
return (o = s.ui.popoverVisibility[t]) == null ? void 0 : o[e];
|
|
246
|
+
}), H = c3({
|
|
247
|
+
reducer: v3
|
|
248
|
+
}), C2 = J3, R1 = K3.create();
|
|
249
|
+
function S2() {
|
|
250
|
+
const t = C2();
|
|
250
251
|
return async () => {
|
|
251
252
|
try {
|
|
252
253
|
const e = location.pathname.split("/").filter((l) => l.length > 0);
|
|
253
254
|
e.length >= 5 ? e.length = 5 : e.length = 2;
|
|
254
|
-
const
|
|
255
|
+
const s = `/${e.join("/")}`, o = await R1.get("/_local-config/_config.local.json", { baseURL: s });
|
|
255
256
|
if (o.status == 200 && o.data) {
|
|
256
257
|
const l = o.data.apiPath;
|
|
257
258
|
t(t2.setAppConfig(o.data));
|
|
258
|
-
const i = await
|
|
259
|
-
i.status == 200 && i.data && t(
|
|
259
|
+
const i = await R1.get(`${l}/version`);
|
|
260
|
+
i.status == 200 && i.data && t(X.setRuntimeConfig(i.data));
|
|
260
261
|
}
|
|
261
262
|
} catch (e) {
|
|
262
263
|
console.error("Error getting config", e);
|
|
@@ -264,7 +265,7 @@ function Z2() {
|
|
|
264
265
|
return !0;
|
|
265
266
|
};
|
|
266
267
|
}
|
|
267
|
-
var
|
|
268
|
+
var E1 = { exports: {} }, c1 = {};
|
|
268
269
|
/**
|
|
269
270
|
* @license React
|
|
270
271
|
* react-jsx-runtime.development.js
|
|
@@ -274,64 +275,64 @@ var I1 = { exports: {} }, t1 = {};
|
|
|
274
275
|
* This source code is licensed under the MIT license found in the
|
|
275
276
|
* LICENSE file in the root directory of this source tree.
|
|
276
277
|
*/
|
|
277
|
-
var
|
|
278
|
-
function
|
|
279
|
-
return
|
|
280
|
-
var t =
|
|
281
|
-
function
|
|
282
|
-
if (
|
|
278
|
+
var t3;
|
|
279
|
+
function b2() {
|
|
280
|
+
return t3 || (t3 = 1, process.env.NODE_ENV !== "production" && function() {
|
|
281
|
+
var t = r3, e = Symbol.for("react.element"), s = Symbol.for("react.portal"), o = Symbol.for("react.fragment"), l = Symbol.for("react.strict_mode"), i = Symbol.for("react.profiler"), u = Symbol.for("react.provider"), g = Symbol.for("react.context"), h = Symbol.for("react.forward_ref"), S = Symbol.for("react.suspense"), j = Symbol.for("react.suspense_list"), C = Symbol.for("react.memo"), A = Symbol.for("react.lazy"), V = Symbol.for("react.offscreen"), P = Symbol.iterator, q = "@@iterator";
|
|
282
|
+
function U(c) {
|
|
283
|
+
if (c === null || typeof c != "object")
|
|
283
284
|
return null;
|
|
284
|
-
var r =
|
|
285
|
+
var r = P && c[P] || c[q];
|
|
285
286
|
return typeof r == "function" ? r : null;
|
|
286
287
|
}
|
|
287
|
-
var
|
|
288
|
-
function
|
|
288
|
+
var T = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
289
|
+
function R(c) {
|
|
289
290
|
{
|
|
290
|
-
for (var r = arguments.length, a = new Array(r > 1 ? r - 1 : 0),
|
|
291
|
-
a[
|
|
292
|
-
|
|
291
|
+
for (var r = arguments.length, a = new Array(r > 1 ? r - 1 : 0), d = 1; d < r; d++)
|
|
292
|
+
a[d - 1] = arguments[d];
|
|
293
|
+
g1("error", c, a);
|
|
293
294
|
}
|
|
294
295
|
}
|
|
295
|
-
function
|
|
296
|
+
function g1(c, r, a) {
|
|
296
297
|
{
|
|
297
|
-
var
|
|
298
|
+
var d = T.ReactDebugCurrentFrame, M = d.getStackAddendum();
|
|
298
299
|
M !== "" && (r += "%s", a = a.concat([M]));
|
|
299
|
-
var
|
|
300
|
-
return String(
|
|
300
|
+
var Z = a.map(function(w) {
|
|
301
|
+
return String(w);
|
|
301
302
|
});
|
|
302
|
-
|
|
303
|
+
Z.unshift("Warning: " + r), Function.prototype.apply.call(console[c], console, Z);
|
|
303
304
|
}
|
|
304
305
|
}
|
|
305
|
-
var
|
|
306
|
-
|
|
307
|
-
function
|
|
308
|
-
return !!(typeof
|
|
306
|
+
var E = !1, m = !1, k = !1, W = !1, _ = !1, Y;
|
|
307
|
+
Y = Symbol.for("react.module.reference");
|
|
308
|
+
function f1(c) {
|
|
309
|
+
return !!(typeof c == "string" || typeof c == "function" || c === o || c === i || _ || c === l || c === S || c === j || W || c === V || E || m || k || typeof c == "object" && c !== null && (c.$$typeof === A || c.$$typeof === C || c.$$typeof === u || c.$$typeof === g || c.$$typeof === h || // This needs to include all possible module reference object
|
|
309
310
|
// types supported by any Flight configuration anywhere since
|
|
310
311
|
// we don't know which Flight build this will end up being used
|
|
311
312
|
// with.
|
|
312
|
-
|
|
313
|
+
c.$$typeof === Y || c.getModuleId !== void 0));
|
|
313
314
|
}
|
|
314
|
-
function
|
|
315
|
-
var
|
|
316
|
-
if (
|
|
317
|
-
return
|
|
315
|
+
function w1(c, r, a) {
|
|
316
|
+
var d = c.displayName;
|
|
317
|
+
if (d)
|
|
318
|
+
return d;
|
|
318
319
|
var M = r.displayName || r.name || "";
|
|
319
320
|
return M !== "" ? a + "(" + M + ")" : a;
|
|
320
321
|
}
|
|
321
|
-
function
|
|
322
|
-
return
|
|
322
|
+
function $1(c) {
|
|
323
|
+
return c.displayName || "Context";
|
|
323
324
|
}
|
|
324
|
-
function
|
|
325
|
-
if (
|
|
325
|
+
function F(c) {
|
|
326
|
+
if (c == null)
|
|
326
327
|
return null;
|
|
327
|
-
if (typeof
|
|
328
|
-
return
|
|
329
|
-
if (typeof
|
|
330
|
-
return
|
|
331
|
-
switch (
|
|
328
|
+
if (typeof c.tag == "number" && R("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof c == "function")
|
|
329
|
+
return c.displayName || c.name || null;
|
|
330
|
+
if (typeof c == "string")
|
|
331
|
+
return c;
|
|
332
|
+
switch (c) {
|
|
332
333
|
case o:
|
|
333
334
|
return "Fragment";
|
|
334
|
-
case
|
|
335
|
+
case s:
|
|
335
336
|
return "Portal";
|
|
336
337
|
case i:
|
|
337
338
|
return "Profiler";
|
|
@@ -339,26 +340,26 @@ function j2() {
|
|
|
339
340
|
return "StrictMode";
|
|
340
341
|
case S:
|
|
341
342
|
return "Suspense";
|
|
342
|
-
case
|
|
343
|
+
case j:
|
|
343
344
|
return "SuspenseList";
|
|
344
345
|
}
|
|
345
|
-
if (typeof
|
|
346
|
-
switch (
|
|
347
|
-
case
|
|
348
|
-
var r =
|
|
349
|
-
return
|
|
350
|
-
case d:
|
|
351
|
-
var a = s;
|
|
352
|
-
return _1(a._context) + ".Provider";
|
|
346
|
+
if (typeof c == "object")
|
|
347
|
+
switch (c.$$typeof) {
|
|
348
|
+
case g:
|
|
349
|
+
var r = c;
|
|
350
|
+
return $1(r) + ".Consumer";
|
|
353
351
|
case u:
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
return
|
|
352
|
+
var a = c;
|
|
353
|
+
return $1(a._context) + ".Provider";
|
|
354
|
+
case h:
|
|
355
|
+
return w1(c, c.render, "ForwardRef");
|
|
356
|
+
case C:
|
|
357
|
+
var d = c.displayName || null;
|
|
358
|
+
return d !== null ? d : F(c.type) || "Memo";
|
|
358
359
|
case A: {
|
|
359
|
-
var M =
|
|
360
|
+
var M = c, Z = M._payload, w = M._init;
|
|
360
361
|
try {
|
|
361
|
-
return
|
|
362
|
+
return F(w(Z));
|
|
362
363
|
} catch {
|
|
363
364
|
return null;
|
|
364
365
|
}
|
|
@@ -366,372 +367,372 @@ function j2() {
|
|
|
366
367
|
}
|
|
367
368
|
return null;
|
|
368
369
|
}
|
|
369
|
-
var
|
|
370
|
-
function
|
|
370
|
+
var K = Object.assign, e1 = 0, A1, B1, T1, D1, P1, O1, V1;
|
|
371
|
+
function F1() {
|
|
371
372
|
}
|
|
372
|
-
|
|
373
|
+
F1.__reactDisabledLog = !0;
|
|
373
374
|
function w3() {
|
|
374
375
|
{
|
|
375
|
-
if (
|
|
376
|
-
|
|
377
|
-
var
|
|
376
|
+
if (e1 === 0) {
|
|
377
|
+
A1 = console.log, B1 = console.info, T1 = console.warn, D1 = console.error, P1 = console.group, O1 = console.groupCollapsed, V1 = console.groupEnd;
|
|
378
|
+
var c = {
|
|
378
379
|
configurable: !0,
|
|
379
380
|
enumerable: !0,
|
|
380
|
-
value:
|
|
381
|
+
value: F1,
|
|
381
382
|
writable: !0
|
|
382
383
|
};
|
|
383
384
|
Object.defineProperties(console, {
|
|
384
|
-
info:
|
|
385
|
-
log:
|
|
386
|
-
warn:
|
|
387
|
-
error:
|
|
388
|
-
group:
|
|
389
|
-
groupCollapsed:
|
|
390
|
-
groupEnd:
|
|
385
|
+
info: c,
|
|
386
|
+
log: c,
|
|
387
|
+
warn: c,
|
|
388
|
+
error: c,
|
|
389
|
+
group: c,
|
|
390
|
+
groupCollapsed: c,
|
|
391
|
+
groupEnd: c
|
|
391
392
|
});
|
|
392
393
|
}
|
|
393
|
-
|
|
394
|
+
e1++;
|
|
394
395
|
}
|
|
395
396
|
}
|
|
396
397
|
function p3() {
|
|
397
398
|
{
|
|
398
|
-
if (
|
|
399
|
-
var
|
|
399
|
+
if (e1--, e1 === 0) {
|
|
400
|
+
var c = {
|
|
400
401
|
configurable: !0,
|
|
401
402
|
enumerable: !0,
|
|
402
403
|
writable: !0
|
|
403
404
|
};
|
|
404
405
|
Object.defineProperties(console, {
|
|
405
|
-
log:
|
|
406
|
-
value: L1
|
|
407
|
-
}),
|
|
408
|
-
info: k({}, s, {
|
|
409
|
-
value: $1
|
|
410
|
-
}),
|
|
411
|
-
warn: k({}, s, {
|
|
406
|
+
log: K({}, c, {
|
|
412
407
|
value: A1
|
|
413
408
|
}),
|
|
414
|
-
|
|
409
|
+
info: K({}, c, {
|
|
415
410
|
value: B1
|
|
416
411
|
}),
|
|
417
|
-
|
|
412
|
+
warn: K({}, c, {
|
|
418
413
|
value: T1
|
|
419
414
|
}),
|
|
420
|
-
|
|
415
|
+
error: K({}, c, {
|
|
421
416
|
value: D1
|
|
422
417
|
}),
|
|
423
|
-
|
|
418
|
+
group: K({}, c, {
|
|
424
419
|
value: P1
|
|
420
|
+
}),
|
|
421
|
+
groupCollapsed: K({}, c, {
|
|
422
|
+
value: O1
|
|
423
|
+
}),
|
|
424
|
+
groupEnd: K({}, c, {
|
|
425
|
+
value: V1
|
|
425
426
|
})
|
|
426
427
|
});
|
|
427
428
|
}
|
|
428
|
-
|
|
429
|
+
e1 < 0 && R("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
429
430
|
}
|
|
430
431
|
}
|
|
431
|
-
var
|
|
432
|
-
function
|
|
432
|
+
var p1 = T.ReactCurrentDispatcher, x1;
|
|
433
|
+
function a1(c, r, a) {
|
|
433
434
|
{
|
|
434
|
-
if (
|
|
435
|
+
if (x1 === void 0)
|
|
435
436
|
try {
|
|
436
437
|
throw Error();
|
|
437
438
|
} catch (M) {
|
|
438
|
-
var
|
|
439
|
-
|
|
439
|
+
var d = M.stack.trim().match(/\n( *(at )?)/);
|
|
440
|
+
x1 = d && d[1] || "";
|
|
440
441
|
}
|
|
441
442
|
return `
|
|
442
|
-
` +
|
|
443
|
+
` + x1 + c;
|
|
443
444
|
}
|
|
444
445
|
}
|
|
445
|
-
var
|
|
446
|
+
var M1 = !1, u1;
|
|
446
447
|
{
|
|
447
448
|
var x3 = typeof WeakMap == "function" ? WeakMap : Map;
|
|
448
|
-
|
|
449
|
+
u1 = new x3();
|
|
449
450
|
}
|
|
450
|
-
function
|
|
451
|
-
if (!
|
|
451
|
+
function k1(c, r) {
|
|
452
|
+
if (!c || M1)
|
|
452
453
|
return "";
|
|
453
454
|
{
|
|
454
|
-
var a =
|
|
455
|
+
var a = u1.get(c);
|
|
455
456
|
if (a !== void 0)
|
|
456
457
|
return a;
|
|
457
458
|
}
|
|
458
|
-
var
|
|
459
|
-
|
|
459
|
+
var d;
|
|
460
|
+
M1 = !0;
|
|
460
461
|
var M = Error.prepareStackTrace;
|
|
461
462
|
Error.prepareStackTrace = void 0;
|
|
462
|
-
var
|
|
463
|
-
|
|
463
|
+
var Z;
|
|
464
|
+
Z = p1.current, p1.current = null, w3();
|
|
464
465
|
try {
|
|
465
466
|
if (r) {
|
|
466
|
-
var
|
|
467
|
+
var w = function() {
|
|
467
468
|
throw Error();
|
|
468
469
|
};
|
|
469
|
-
if (Object.defineProperty(
|
|
470
|
+
if (Object.defineProperty(w.prototype, "props", {
|
|
470
471
|
set: function() {
|
|
471
472
|
throw Error();
|
|
472
473
|
}
|
|
473
474
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
474
475
|
try {
|
|
475
|
-
Reflect.construct(
|
|
476
|
-
} catch (
|
|
477
|
-
|
|
476
|
+
Reflect.construct(w, []);
|
|
477
|
+
} catch (D) {
|
|
478
|
+
d = D;
|
|
478
479
|
}
|
|
479
|
-
Reflect.construct(
|
|
480
|
+
Reflect.construct(c, [], w);
|
|
480
481
|
} else {
|
|
481
482
|
try {
|
|
482
|
-
|
|
483
|
-
} catch (
|
|
484
|
-
|
|
483
|
+
w.call();
|
|
484
|
+
} catch (D) {
|
|
485
|
+
d = D;
|
|
485
486
|
}
|
|
486
|
-
|
|
487
|
+
c.call(w.prototype);
|
|
487
488
|
}
|
|
488
489
|
} else {
|
|
489
490
|
try {
|
|
490
491
|
throw Error();
|
|
491
|
-
} catch (
|
|
492
|
-
|
|
492
|
+
} catch (D) {
|
|
493
|
+
d = D;
|
|
493
494
|
}
|
|
494
|
-
|
|
495
|
-
}
|
|
496
|
-
} catch (
|
|
497
|
-
if (
|
|
498
|
-
for (var
|
|
499
|
-
`),
|
|
500
|
-
`),
|
|
501
|
-
|
|
502
|
-
for (;
|
|
503
|
-
if (
|
|
504
|
-
if (
|
|
495
|
+
c();
|
|
496
|
+
}
|
|
497
|
+
} catch (D) {
|
|
498
|
+
if (D && d && typeof D.stack == "string") {
|
|
499
|
+
for (var f = D.stack.split(`
|
|
500
|
+
`), B = d.stack.split(`
|
|
501
|
+
`), b = f.length - 1, y = B.length - 1; b >= 1 && y >= 0 && f[b] !== B[y]; )
|
|
502
|
+
y--;
|
|
503
|
+
for (; b >= 1 && y >= 0; b--, y--)
|
|
504
|
+
if (f[b] !== B[y]) {
|
|
505
|
+
if (b !== 1 || y !== 1)
|
|
505
506
|
do
|
|
506
|
-
if (
|
|
507
|
-
var
|
|
508
|
-
` +
|
|
509
|
-
return
|
|
507
|
+
if (b--, y--, y < 0 || f[b] !== B[y]) {
|
|
508
|
+
var O = `
|
|
509
|
+
` + f[b].replace(" at new ", " at ");
|
|
510
|
+
return c.displayName && O.includes("<anonymous>") && (O = O.replace("<anonymous>", c.displayName)), typeof c == "function" && u1.set(c, O), O;
|
|
510
511
|
}
|
|
511
|
-
while (
|
|
512
|
+
while (b >= 1 && y >= 0);
|
|
512
513
|
break;
|
|
513
514
|
}
|
|
514
515
|
}
|
|
515
516
|
} finally {
|
|
516
|
-
|
|
517
|
+
M1 = !1, p1.current = Z, p3(), Error.prepareStackTrace = M;
|
|
517
518
|
}
|
|
518
|
-
var
|
|
519
|
-
return typeof
|
|
519
|
+
var z = c ? c.displayName || c.name : "", G = z ? a1(z) : "";
|
|
520
|
+
return typeof c == "function" && u1.set(c, G), G;
|
|
520
521
|
}
|
|
521
|
-
function M3(
|
|
522
|
-
return
|
|
522
|
+
function M3(c, r, a) {
|
|
523
|
+
return k1(c, !1);
|
|
523
524
|
}
|
|
524
|
-
function m3(
|
|
525
|
-
var r =
|
|
525
|
+
function m3(c) {
|
|
526
|
+
var r = c.prototype;
|
|
526
527
|
return !!(r && r.isReactComponent);
|
|
527
528
|
}
|
|
528
|
-
function
|
|
529
|
-
if (
|
|
529
|
+
function d1(c, r, a) {
|
|
530
|
+
if (c == null)
|
|
530
531
|
return "";
|
|
531
|
-
if (typeof
|
|
532
|
-
return
|
|
533
|
-
if (typeof
|
|
534
|
-
return
|
|
535
|
-
switch (
|
|
532
|
+
if (typeof c == "function")
|
|
533
|
+
return k1(c, m3(c));
|
|
534
|
+
if (typeof c == "string")
|
|
535
|
+
return a1(c);
|
|
536
|
+
switch (c) {
|
|
536
537
|
case S:
|
|
537
|
-
return
|
|
538
|
-
case
|
|
539
|
-
return
|
|
538
|
+
return a1("Suspense");
|
|
539
|
+
case j:
|
|
540
|
+
return a1("SuspenseList");
|
|
540
541
|
}
|
|
541
|
-
if (typeof
|
|
542
|
-
switch (
|
|
543
|
-
case
|
|
544
|
-
return M3(
|
|
545
|
-
case
|
|
546
|
-
return
|
|
542
|
+
if (typeof c == "object")
|
|
543
|
+
switch (c.$$typeof) {
|
|
544
|
+
case h:
|
|
545
|
+
return M3(c.render);
|
|
546
|
+
case C:
|
|
547
|
+
return d1(c.type, r, a);
|
|
547
548
|
case A: {
|
|
548
|
-
var
|
|
549
|
+
var d = c, M = d._payload, Z = d._init;
|
|
549
550
|
try {
|
|
550
|
-
return
|
|
551
|
+
return d1(Z(M), r, a);
|
|
551
552
|
} catch {
|
|
552
553
|
}
|
|
553
554
|
}
|
|
554
555
|
}
|
|
555
556
|
return "";
|
|
556
557
|
}
|
|
557
|
-
var
|
|
558
|
-
function
|
|
559
|
-
if (
|
|
560
|
-
var r =
|
|
561
|
-
|
|
558
|
+
var t1 = Object.prototype.hasOwnProperty, U1 = {}, W1 = T.ReactDebugCurrentFrame;
|
|
559
|
+
function v1(c) {
|
|
560
|
+
if (c) {
|
|
561
|
+
var r = c._owner, a = d1(c.type, c._source, r ? r.type : null);
|
|
562
|
+
W1.setExtraStackFrame(a);
|
|
562
563
|
} else
|
|
563
|
-
|
|
564
|
+
W1.setExtraStackFrame(null);
|
|
564
565
|
}
|
|
565
|
-
function Z3(
|
|
566
|
+
function Z3(c, r, a, d, M) {
|
|
566
567
|
{
|
|
567
|
-
var
|
|
568
|
-
for (var
|
|
569
|
-
if (
|
|
570
|
-
var
|
|
568
|
+
var Z = Function.call.bind(t1);
|
|
569
|
+
for (var w in c)
|
|
570
|
+
if (Z(c, w)) {
|
|
571
|
+
var f = void 0;
|
|
571
572
|
try {
|
|
572
|
-
if (typeof
|
|
573
|
-
var
|
|
574
|
-
throw
|
|
573
|
+
if (typeof c[w] != "function") {
|
|
574
|
+
var B = Error((d || "React class") + ": " + a + " type `" + w + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof c[w] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
575
|
+
throw B.name = "Invariant Violation", B;
|
|
575
576
|
}
|
|
576
|
-
|
|
577
|
-
} catch (
|
|
578
|
-
|
|
577
|
+
f = c[w](r, w, d, a, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
578
|
+
} catch (b) {
|
|
579
|
+
f = b;
|
|
579
580
|
}
|
|
580
|
-
|
|
581
|
+
f && !(f instanceof Error) && (v1(M), R("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", d || "React class", a, w, typeof f), v1(null)), f instanceof Error && !(f.message in U1) && (U1[f.message] = !0, v1(M), R("Failed %s type: %s", a, f.message), v1(null));
|
|
581
582
|
}
|
|
582
583
|
}
|
|
583
584
|
}
|
|
584
585
|
var j3 = Array.isArray;
|
|
585
|
-
function
|
|
586
|
-
return j3(
|
|
586
|
+
function m1(c) {
|
|
587
|
+
return j3(c);
|
|
587
588
|
}
|
|
588
|
-
function C3(
|
|
589
|
+
function C3(c) {
|
|
589
590
|
{
|
|
590
|
-
var r = typeof Symbol == "function" && Symbol.toStringTag, a = r &&
|
|
591
|
+
var r = typeof Symbol == "function" && Symbol.toStringTag, a = r && c[Symbol.toStringTag] || c.constructor.name || "Object";
|
|
591
592
|
return a;
|
|
592
593
|
}
|
|
593
594
|
}
|
|
594
|
-
function S3(
|
|
595
|
+
function S3(c) {
|
|
595
596
|
try {
|
|
596
|
-
return
|
|
597
|
+
return H1(c), !1;
|
|
597
598
|
} catch {
|
|
598
599
|
return !0;
|
|
599
600
|
}
|
|
600
601
|
}
|
|
601
|
-
function
|
|
602
|
-
return "" +
|
|
602
|
+
function H1(c) {
|
|
603
|
+
return "" + c;
|
|
603
604
|
}
|
|
604
|
-
function
|
|
605
|
-
if (S3(
|
|
606
|
-
return
|
|
605
|
+
function K1(c) {
|
|
606
|
+
if (S3(c))
|
|
607
|
+
return R("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", C3(c)), H1(c);
|
|
607
608
|
}
|
|
608
|
-
var
|
|
609
|
+
var n1 = T.ReactCurrentOwner, b3 = {
|
|
609
610
|
key: !0,
|
|
610
611
|
ref: !0,
|
|
611
612
|
__self: !0,
|
|
612
613
|
__source: !0
|
|
613
|
-
},
|
|
614
|
-
|
|
615
|
-
function I3(
|
|
616
|
-
if (
|
|
617
|
-
var r = Object.getOwnPropertyDescriptor(
|
|
614
|
+
}, G1, q1, Z1;
|
|
615
|
+
Z1 = {};
|
|
616
|
+
function I3(c) {
|
|
617
|
+
if (t1.call(c, "ref")) {
|
|
618
|
+
var r = Object.getOwnPropertyDescriptor(c, "ref").get;
|
|
618
619
|
if (r && r.isReactWarning)
|
|
619
620
|
return !1;
|
|
620
621
|
}
|
|
621
|
-
return
|
|
622
|
+
return c.ref !== void 0;
|
|
622
623
|
}
|
|
623
|
-
function y3(
|
|
624
|
-
if (
|
|
625
|
-
var r = Object.getOwnPropertyDescriptor(
|
|
624
|
+
function y3(c) {
|
|
625
|
+
if (t1.call(c, "key")) {
|
|
626
|
+
var r = Object.getOwnPropertyDescriptor(c, "key").get;
|
|
626
627
|
if (r && r.isReactWarning)
|
|
627
628
|
return !1;
|
|
628
629
|
}
|
|
629
|
-
return
|
|
630
|
+
return c.key !== void 0;
|
|
630
631
|
}
|
|
631
|
-
function R3(
|
|
632
|
-
if (typeof
|
|
633
|
-
var a =
|
|
634
|
-
|
|
632
|
+
function R3(c, r) {
|
|
633
|
+
if (typeof c.ref == "string" && n1.current && r && n1.current.stateNode !== r) {
|
|
634
|
+
var a = F(n1.current.type);
|
|
635
|
+
Z1[a] || (R('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', F(n1.current.type), c.ref), Z1[a] = !0);
|
|
635
636
|
}
|
|
636
637
|
}
|
|
637
|
-
function E3(
|
|
638
|
+
function E3(c, r) {
|
|
638
639
|
{
|
|
639
640
|
var a = function() {
|
|
640
|
-
|
|
641
|
+
G1 || (G1 = !0, R("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", r));
|
|
641
642
|
};
|
|
642
|
-
a.isReactWarning = !0, Object.defineProperty(
|
|
643
|
+
a.isReactWarning = !0, Object.defineProperty(c, "key", {
|
|
643
644
|
get: a,
|
|
644
645
|
configurable: !0
|
|
645
646
|
});
|
|
646
647
|
}
|
|
647
648
|
}
|
|
648
|
-
function _3(
|
|
649
|
+
function _3(c, r) {
|
|
649
650
|
{
|
|
650
651
|
var a = function() {
|
|
651
|
-
|
|
652
|
+
q1 || (q1 = !0, R("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", r));
|
|
652
653
|
};
|
|
653
|
-
a.isReactWarning = !0, Object.defineProperty(
|
|
654
|
+
a.isReactWarning = !0, Object.defineProperty(c, "ref", {
|
|
654
655
|
get: a,
|
|
655
656
|
configurable: !0
|
|
656
657
|
});
|
|
657
658
|
}
|
|
658
659
|
}
|
|
659
|
-
var L3 = function(
|
|
660
|
-
var
|
|
660
|
+
var L3 = function(c, r, a, d, M, Z, w) {
|
|
661
|
+
var f = {
|
|
661
662
|
// This tag allows us to uniquely identify this as a React Element
|
|
662
663
|
$$typeof: e,
|
|
663
664
|
// Built-in properties that belong on the element
|
|
664
|
-
type:
|
|
665
|
+
type: c,
|
|
665
666
|
key: r,
|
|
666
667
|
ref: a,
|
|
667
|
-
props:
|
|
668
|
+
props: w,
|
|
668
669
|
// Record the component responsible for creating this element.
|
|
669
|
-
_owner:
|
|
670
|
+
_owner: Z
|
|
670
671
|
};
|
|
671
|
-
return
|
|
672
|
+
return f._store = {}, Object.defineProperty(f._store, "validated", {
|
|
672
673
|
configurable: !1,
|
|
673
674
|
enumerable: !1,
|
|
674
675
|
writable: !0,
|
|
675
676
|
value: !1
|
|
676
|
-
}), Object.defineProperty(
|
|
677
|
+
}), Object.defineProperty(f, "_self", {
|
|
677
678
|
configurable: !1,
|
|
678
679
|
enumerable: !1,
|
|
679
680
|
writable: !1,
|
|
680
|
-
value:
|
|
681
|
-
}), Object.defineProperty(
|
|
681
|
+
value: d
|
|
682
|
+
}), Object.defineProperty(f, "_source", {
|
|
682
683
|
configurable: !1,
|
|
683
684
|
enumerable: !1,
|
|
684
685
|
writable: !1,
|
|
685
686
|
value: M
|
|
686
|
-
}), Object.freeze && (Object.freeze(
|
|
687
|
+
}), Object.freeze && (Object.freeze(f.props), Object.freeze(f)), f;
|
|
687
688
|
};
|
|
688
|
-
function $3(
|
|
689
|
+
function $3(c, r, a, d, M) {
|
|
689
690
|
{
|
|
690
|
-
var
|
|
691
|
-
a !== void 0 && (
|
|
692
|
-
for (
|
|
693
|
-
|
|
694
|
-
if (
|
|
695
|
-
var
|
|
696
|
-
for (
|
|
697
|
-
|
|
698
|
-
}
|
|
699
|
-
if (
|
|
700
|
-
var
|
|
701
|
-
|
|
702
|
-
}
|
|
703
|
-
return L3(
|
|
691
|
+
var Z, w = {}, f = null, B = null;
|
|
692
|
+
a !== void 0 && (K1(a), f = "" + a), y3(r) && (K1(r.key), f = "" + r.key), I3(r) && (B = r.ref, R3(r, M));
|
|
693
|
+
for (Z in r)
|
|
694
|
+
t1.call(r, Z) && !b3.hasOwnProperty(Z) && (w[Z] = r[Z]);
|
|
695
|
+
if (c && c.defaultProps) {
|
|
696
|
+
var b = c.defaultProps;
|
|
697
|
+
for (Z in b)
|
|
698
|
+
w[Z] === void 0 && (w[Z] = b[Z]);
|
|
699
|
+
}
|
|
700
|
+
if (f || B) {
|
|
701
|
+
var y = typeof c == "function" ? c.displayName || c.name || "Unknown" : c;
|
|
702
|
+
f && E3(w, y), B && _3(w, y);
|
|
703
|
+
}
|
|
704
|
+
return L3(c, f, B, M, d, n1.current, w);
|
|
704
705
|
}
|
|
705
706
|
}
|
|
706
|
-
var
|
|
707
|
-
function
|
|
708
|
-
if (
|
|
709
|
-
var r =
|
|
710
|
-
|
|
707
|
+
var j1 = T.ReactCurrentOwner, Y1 = T.ReactDebugCurrentFrame;
|
|
708
|
+
function J(c) {
|
|
709
|
+
if (c) {
|
|
710
|
+
var r = c._owner, a = d1(c.type, c._source, r ? r.type : null);
|
|
711
|
+
Y1.setExtraStackFrame(a);
|
|
711
712
|
} else
|
|
712
|
-
|
|
713
|
+
Y1.setExtraStackFrame(null);
|
|
713
714
|
}
|
|
714
|
-
var
|
|
715
|
-
|
|
716
|
-
function
|
|
717
|
-
return typeof
|
|
715
|
+
var C1;
|
|
716
|
+
C1 = !1;
|
|
717
|
+
function S1(c) {
|
|
718
|
+
return typeof c == "object" && c !== null && c.$$typeof === e;
|
|
718
719
|
}
|
|
719
|
-
function
|
|
720
|
+
function J1() {
|
|
720
721
|
{
|
|
721
|
-
if (
|
|
722
|
-
var
|
|
723
|
-
if (
|
|
722
|
+
if (j1.current) {
|
|
723
|
+
var c = F(j1.current.type);
|
|
724
|
+
if (c)
|
|
724
725
|
return `
|
|
725
726
|
|
|
726
|
-
Check the render method of \`` +
|
|
727
|
+
Check the render method of \`` + c + "`.";
|
|
727
728
|
}
|
|
728
729
|
return "";
|
|
729
730
|
}
|
|
730
731
|
}
|
|
731
|
-
function A3(
|
|
732
|
+
function A3(c) {
|
|
732
733
|
{
|
|
733
|
-
if (
|
|
734
|
-
var r =
|
|
734
|
+
if (c !== void 0) {
|
|
735
|
+
var r = c.fileName.replace(/^.*[\\\/]/, ""), a = c.lineNumber;
|
|
735
736
|
return `
|
|
736
737
|
|
|
737
738
|
Check your code at ` + r + ":" + a + ".";
|
|
@@ -739,12 +740,12 @@ Check your code at ` + r + ":" + a + ".";
|
|
|
739
740
|
return "";
|
|
740
741
|
}
|
|
741
742
|
}
|
|
742
|
-
var
|
|
743
|
-
function B3(
|
|
743
|
+
var z1 = {};
|
|
744
|
+
function B3(c) {
|
|
744
745
|
{
|
|
745
|
-
var r =
|
|
746
|
+
var r = J1();
|
|
746
747
|
if (!r) {
|
|
747
|
-
var a = typeof
|
|
748
|
+
var a = typeof c == "string" ? c : c.displayName || c.name;
|
|
748
749
|
a && (r = `
|
|
749
750
|
|
|
750
751
|
Check the top-level render call using <` + a + ">.");
|
|
@@ -752,131 +753,131 @@ Check the top-level render call using <` + a + ">.");
|
|
|
752
753
|
return r;
|
|
753
754
|
}
|
|
754
755
|
}
|
|
755
|
-
function
|
|
756
|
+
function X1(c, r) {
|
|
756
757
|
{
|
|
757
|
-
if (!
|
|
758
|
+
if (!c._store || c._store.validated || c.key != null)
|
|
758
759
|
return;
|
|
759
|
-
|
|
760
|
+
c._store.validated = !0;
|
|
760
761
|
var a = B3(r);
|
|
761
|
-
if (
|
|
762
|
+
if (z1[a])
|
|
762
763
|
return;
|
|
763
|
-
|
|
764
|
-
var
|
|
765
|
-
|
|
764
|
+
z1[a] = !0;
|
|
765
|
+
var d = "";
|
|
766
|
+
c && c._owner && c._owner !== j1.current && (d = " It was passed a child from " + F(c._owner.type) + "."), J(c), R('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', a, d), J(null);
|
|
766
767
|
}
|
|
767
768
|
}
|
|
768
|
-
function
|
|
769
|
+
function Q1(c, r) {
|
|
769
770
|
{
|
|
770
|
-
if (typeof
|
|
771
|
+
if (typeof c != "object")
|
|
771
772
|
return;
|
|
772
|
-
if (
|
|
773
|
-
for (var a = 0; a <
|
|
774
|
-
var
|
|
775
|
-
|
|
773
|
+
if (m1(c))
|
|
774
|
+
for (var a = 0; a < c.length; a++) {
|
|
775
|
+
var d = c[a];
|
|
776
|
+
S1(d) && X1(d, r);
|
|
776
777
|
}
|
|
777
|
-
else if (
|
|
778
|
-
|
|
779
|
-
else if (
|
|
780
|
-
var M =
|
|
781
|
-
if (typeof M == "function" && M !==
|
|
782
|
-
for (var
|
|
783
|
-
|
|
778
|
+
else if (S1(c))
|
|
779
|
+
c._store && (c._store.validated = !0);
|
|
780
|
+
else if (c) {
|
|
781
|
+
var M = U(c);
|
|
782
|
+
if (typeof M == "function" && M !== c.entries)
|
|
783
|
+
for (var Z = M.call(c), w; !(w = Z.next()).done; )
|
|
784
|
+
S1(w.value) && X1(w.value, r);
|
|
784
785
|
}
|
|
785
786
|
}
|
|
786
787
|
}
|
|
787
|
-
function T3(
|
|
788
|
+
function T3(c) {
|
|
788
789
|
{
|
|
789
|
-
var r =
|
|
790
|
+
var r = c.type;
|
|
790
791
|
if (r == null || typeof r == "string")
|
|
791
792
|
return;
|
|
792
793
|
var a;
|
|
793
794
|
if (typeof r == "function")
|
|
794
795
|
a = r.propTypes;
|
|
795
|
-
else if (typeof r == "object" && (r.$$typeof ===
|
|
796
|
+
else if (typeof r == "object" && (r.$$typeof === h || // Note: Memo only checks outer props here.
|
|
796
797
|
// Inner props are checked in the reconciler.
|
|
797
|
-
r.$$typeof ===
|
|
798
|
+
r.$$typeof === C))
|
|
798
799
|
a = r.propTypes;
|
|
799
800
|
else
|
|
800
801
|
return;
|
|
801
802
|
if (a) {
|
|
802
|
-
var
|
|
803
|
-
Z3(a,
|
|
804
|
-
} else if (r.PropTypes !== void 0 && !
|
|
805
|
-
|
|
806
|
-
var M =
|
|
807
|
-
|
|
808
|
-
}
|
|
809
|
-
typeof r.getDefaultProps == "function" && !r.getDefaultProps.isReactClassApproved &&
|
|
803
|
+
var d = F(r);
|
|
804
|
+
Z3(a, c.props, "prop", d, c);
|
|
805
|
+
} else if (r.PropTypes !== void 0 && !C1) {
|
|
806
|
+
C1 = !0;
|
|
807
|
+
var M = F(r);
|
|
808
|
+
R("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", M || "Unknown");
|
|
809
|
+
}
|
|
810
|
+
typeof r.getDefaultProps == "function" && !r.getDefaultProps.isReactClassApproved && R("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
810
811
|
}
|
|
811
812
|
}
|
|
812
|
-
function D3(
|
|
813
|
+
function D3(c) {
|
|
813
814
|
{
|
|
814
|
-
for (var r = Object.keys(
|
|
815
|
-
var
|
|
816
|
-
if (
|
|
817
|
-
|
|
815
|
+
for (var r = Object.keys(c.props), a = 0; a < r.length; a++) {
|
|
816
|
+
var d = r[a];
|
|
817
|
+
if (d !== "children" && d !== "key") {
|
|
818
|
+
J(c), R("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", d), J(null);
|
|
818
819
|
break;
|
|
819
820
|
}
|
|
820
821
|
}
|
|
821
|
-
|
|
822
|
+
c.ref !== null && (J(c), R("Invalid attribute `ref` supplied to `React.Fragment`."), J(null));
|
|
822
823
|
}
|
|
823
824
|
}
|
|
824
|
-
var
|
|
825
|
-
function
|
|
825
|
+
var N1 = {};
|
|
826
|
+
function e3(c, r, a, d, M, Z) {
|
|
826
827
|
{
|
|
827
|
-
var
|
|
828
|
-
if (!
|
|
829
|
-
var
|
|
830
|
-
(
|
|
831
|
-
var
|
|
832
|
-
|
|
833
|
-
var
|
|
834
|
-
|
|
835
|
-
}
|
|
836
|
-
var
|
|
837
|
-
if (
|
|
838
|
-
return
|
|
839
|
-
if (
|
|
840
|
-
var
|
|
841
|
-
if (
|
|
842
|
-
if (
|
|
843
|
-
if (
|
|
844
|
-
for (var
|
|
845
|
-
|
|
846
|
-
Object.freeze && Object.freeze(
|
|
828
|
+
var w = f1(c);
|
|
829
|
+
if (!w) {
|
|
830
|
+
var f = "";
|
|
831
|
+
(c === void 0 || typeof c == "object" && c !== null && Object.keys(c).length === 0) && (f += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
832
|
+
var B = A3(M);
|
|
833
|
+
B ? f += B : f += J1();
|
|
834
|
+
var b;
|
|
835
|
+
c === null ? b = "null" : m1(c) ? b = "array" : c !== void 0 && c.$$typeof === e ? (b = "<" + (F(c.type) || "Unknown") + " />", f = " Did you accidentally export a JSX literal instead of a component?") : b = typeof c, R("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", b, f);
|
|
836
|
+
}
|
|
837
|
+
var y = $3(c, r, a, M, Z);
|
|
838
|
+
if (y == null)
|
|
839
|
+
return y;
|
|
840
|
+
if (w) {
|
|
841
|
+
var O = r.children;
|
|
842
|
+
if (O !== void 0)
|
|
843
|
+
if (d)
|
|
844
|
+
if (m1(O)) {
|
|
845
|
+
for (var z = 0; z < O.length; z++)
|
|
846
|
+
Q1(O[z], c);
|
|
847
|
+
Object.freeze && Object.freeze(O);
|
|
847
848
|
} else
|
|
848
|
-
|
|
849
|
+
R("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
849
850
|
else
|
|
850
|
-
|
|
851
|
+
Q1(O, c);
|
|
851
852
|
}
|
|
852
|
-
if (
|
|
853
|
-
var
|
|
853
|
+
if (t1.call(r, "key")) {
|
|
854
|
+
var G = F(c), D = Object.keys(r).filter(function(U3) {
|
|
854
855
|
return U3 !== "key";
|
|
855
|
-
}),
|
|
856
|
-
if (!
|
|
857
|
-
var k3 =
|
|
858
|
-
|
|
856
|
+
}), b1 = D.length > 0 ? "{key: someKey, " + D.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
857
|
+
if (!N1[G + b1]) {
|
|
858
|
+
var k3 = D.length > 0 ? "{" + D.join(": ..., ") + ": ...}" : "{}";
|
|
859
|
+
R(`A props object containing a "key" prop is being spread into JSX:
|
|
859
860
|
let props = %s;
|
|
860
861
|
<%s {...props} />
|
|
861
862
|
React keys must be passed directly to JSX without using spread:
|
|
862
863
|
let props = %s;
|
|
863
|
-
<%s key={someKey} {...props} />`,
|
|
864
|
+
<%s key={someKey} {...props} />`, b1, G, k3, G), N1[G + b1] = !0;
|
|
864
865
|
}
|
|
865
866
|
}
|
|
866
|
-
return
|
|
867
|
+
return c === o ? D3(y) : T3(y), y;
|
|
867
868
|
}
|
|
868
869
|
}
|
|
869
|
-
function P3(
|
|
870
|
-
return
|
|
870
|
+
function P3(c, r, a) {
|
|
871
|
+
return e3(c, r, a, !0);
|
|
871
872
|
}
|
|
872
|
-
function O3(
|
|
873
|
-
return
|
|
873
|
+
function O3(c, r, a) {
|
|
874
|
+
return e3(c, r, a, !1);
|
|
874
875
|
}
|
|
875
876
|
var V3 = O3, F3 = P3;
|
|
876
|
-
|
|
877
|
-
}()),
|
|
877
|
+
c1.Fragment = o, c1.jsx = V3, c1.jsxs = F3;
|
|
878
|
+
}()), c1;
|
|
878
879
|
}
|
|
879
|
-
var
|
|
880
|
+
var o1 = {};
|
|
880
881
|
/**
|
|
881
882
|
* @license React
|
|
882
883
|
* react-jsx-runtime.production.min.js
|
|
@@ -886,209 +887,212 @@ var n1 = {};
|
|
|
886
887
|
* This source code is licensed under the MIT license found in the
|
|
887
888
|
* LICENSE file in the root directory of this source tree.
|
|
888
889
|
*/
|
|
889
|
-
var
|
|
890
|
-
function
|
|
891
|
-
if (
|
|
892
|
-
return
|
|
893
|
-
|
|
894
|
-
var t =
|
|
895
|
-
function
|
|
896
|
-
var
|
|
897
|
-
S !== void 0 && (A = "" + S),
|
|
898
|
-
for (
|
|
899
|
-
o.call(
|
|
900
|
-
if (
|
|
901
|
-
for (
|
|
902
|
-
|
|
903
|
-
return { $$typeof: e, type:
|
|
904
|
-
}
|
|
905
|
-
return
|
|
890
|
+
var n3;
|
|
891
|
+
function I2() {
|
|
892
|
+
if (n3)
|
|
893
|
+
return o1;
|
|
894
|
+
n3 = 1;
|
|
895
|
+
var t = r3, e = Symbol.for("react.element"), s = Symbol.for("react.fragment"), o = Object.prototype.hasOwnProperty, l = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, i = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
896
|
+
function u(g, h, S) {
|
|
897
|
+
var j, C = {}, A = null, V = null;
|
|
898
|
+
S !== void 0 && (A = "" + S), h.key !== void 0 && (A = "" + h.key), h.ref !== void 0 && (V = h.ref);
|
|
899
|
+
for (j in h)
|
|
900
|
+
o.call(h, j) && !i.hasOwnProperty(j) && (C[j] = h[j]);
|
|
901
|
+
if (g && g.defaultProps)
|
|
902
|
+
for (j in h = g.defaultProps, h)
|
|
903
|
+
C[j] === void 0 && (C[j] = h[j]);
|
|
904
|
+
return { $$typeof: e, type: g, key: A, ref: V, props: C, _owner: l.current };
|
|
905
|
+
}
|
|
906
|
+
return o1.Fragment = s, o1.jsx = u, o1.jsxs = u, o1;
|
|
906
907
|
}
|
|
907
|
-
process.env.NODE_ENV === "production" ?
|
|
908
|
-
var n =
|
|
909
|
-
const
|
|
908
|
+
process.env.NODE_ENV === "production" ? E1.exports = I2() : E1.exports = b2();
|
|
909
|
+
var n = E1.exports;
|
|
910
|
+
const y2 = () => /* @__PURE__ */ n.jsx(n.Fragment, { children: /* @__PURE__ */ n.jsxs("div", { className: "disconnected-message", children: [
|
|
910
911
|
/* @__PURE__ */ n.jsx("h1", { children: "Disconnected" }),
|
|
911
912
|
/* @__PURE__ */ n.jsx("p", { children: "Reconnecting..." })
|
|
912
913
|
] }) });
|
|
913
|
-
class
|
|
914
|
+
class R2 {
|
|
914
915
|
constructor() {
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
916
|
+
L(this, "uuid", "current-uuid");
|
|
917
|
+
L(this, "roomKey", "current-room-key");
|
|
918
|
+
L(this, "code", "current-code");
|
|
919
|
+
L(this, "expiry", "current-uuid-expires");
|
|
919
920
|
}
|
|
920
921
|
}
|
|
921
|
-
const
|
|
922
|
+
const s3 = new R2(), h3 = X3({
|
|
922
923
|
sendMessage: () => null,
|
|
923
924
|
sendSimpleMessage: () => null,
|
|
924
925
|
addEventHandler: () => null,
|
|
925
926
|
removeEventHandler: () => null
|
|
926
927
|
});
|
|
927
|
-
function
|
|
928
|
+
function E2(t) {
|
|
928
929
|
return sessionStorage.getItem(t) || "";
|
|
929
930
|
}
|
|
930
|
-
function
|
|
931
|
+
function _2(t, e) {
|
|
931
932
|
sessionStorage.setItem(t, e);
|
|
932
933
|
}
|
|
933
|
-
const
|
|
934
|
-
const [e,
|
|
935
|
-
async (
|
|
936
|
-
await
|
|
937
|
-
|
|
938
|
-
}).catch((
|
|
939
|
-
console.log(
|
|
934
|
+
const L2 = ({ children: t }) => {
|
|
935
|
+
const [e, s] = N(), o = p2(), l = x2(), i = M2(), u = S2(), g = g2(), h = m2(), S = Z2(), j = j2(), C = l1(null), [A, V] = N(), P = l1({}), q = s1(
|
|
936
|
+
async (E) => {
|
|
937
|
+
await R1.get(`${E}/ui/joinroom?token=${e}`).then((m) => {
|
|
938
|
+
m.status === 200 && m.data && H.dispatch(X.setRoomData(m.data));
|
|
939
|
+
}).catch((m) => {
|
|
940
|
+
console.log(m), m.repsonse && m.response.status === 498 && console.error("Invalid token. Unable to join room");
|
|
940
941
|
});
|
|
941
942
|
},
|
|
942
943
|
[e]
|
|
943
|
-
),
|
|
944
|
-
(
|
|
945
|
-
|
|
944
|
+
), U = s1(
|
|
945
|
+
(E, m) => {
|
|
946
|
+
C.current && o && C.current.send(JSON.stringify({ type: E, clientId: i, content: m }));
|
|
946
947
|
},
|
|
947
948
|
[o, i]
|
|
948
|
-
),
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
949
|
+
), T = s1(
|
|
950
|
+
(E, m) => {
|
|
951
|
+
U(E, { value: m });
|
|
952
|
+
},
|
|
953
|
+
[U]
|
|
954
|
+
), R = s1(
|
|
955
|
+
(E, m, k) => {
|
|
956
|
+
P.current[E] || (P.current[E] = {}), P.current[E][m] = k, console.log("event handler added", E, m);
|
|
953
957
|
},
|
|
954
958
|
[]
|
|
955
|
-
),
|
|
956
|
-
(
|
|
957
|
-
|
|
959
|
+
), g1 = s1(
|
|
960
|
+
(E, m) => {
|
|
961
|
+
P.current[E] && (delete P.current[E][m], console.log("event handler removed", E, m));
|
|
958
962
|
},
|
|
959
963
|
[]
|
|
960
964
|
);
|
|
961
|
-
return
|
|
962
|
-
let
|
|
963
|
-
|
|
964
|
-
}, []),
|
|
965
|
-
if (!(!
|
|
966
|
-
if (
|
|
967
|
-
const
|
|
968
|
-
|
|
969
|
-
console.log("connected"),
|
|
970
|
-
},
|
|
971
|
-
console.log(
|
|
972
|
-
},
|
|
973
|
-
if (console.log(
|
|
965
|
+
return Q(() => {
|
|
966
|
+
let m = new URLSearchParams(window.location.search).get("token");
|
|
967
|
+
m ? (console.log("saving token: ", m), _2(s3.uuid, m)) : (m = E2(s3.uuid), console.log("loading token: ", m)), s(m), u();
|
|
968
|
+
}, []), Q(() => {
|
|
969
|
+
if (!(!g.apiPath || A || !e)) {
|
|
970
|
+
if (q(g.apiPath), !C.current) {
|
|
971
|
+
const m = `${g.apiPath.replace("http", "ws")}/ui/join/${e}`, k = new WebSocket(m);
|
|
972
|
+
C.current = k, k.onopen = () => {
|
|
973
|
+
console.log("connected"), H.dispatch(X.setWebsocketIsConnected(!0));
|
|
974
|
+
}, k.onerror = (W) => {
|
|
975
|
+
console.log(W);
|
|
976
|
+
}, k.onclose = (W) => {
|
|
977
|
+
if (console.log(`disconnected ${W.code} ${W.reason}`), C.current)
|
|
974
978
|
console.log("WebSocket closed by server.");
|
|
975
979
|
else {
|
|
976
980
|
console.log("WebSocket closed by client.");
|
|
977
981
|
return;
|
|
978
982
|
}
|
|
979
|
-
|
|
980
|
-
},
|
|
983
|
+
A || (H.dispatch(X.setWebsocketIsConnected(!1)), V(!0), setTimeout(() => V(void 0), 5e3));
|
|
984
|
+
}, k.onmessage = (W) => {
|
|
981
985
|
try {
|
|
982
|
-
const
|
|
983
|
-
if (console.log(
|
|
984
|
-
switch (
|
|
986
|
+
const _ = JSON.parse(W.data);
|
|
987
|
+
if (console.log(_), _.type.startsWith("/system/"))
|
|
988
|
+
switch (_.type) {
|
|
985
989
|
case "/system/roomKey":
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
990
|
+
H.dispatch(
|
|
991
|
+
X.setCurrentRoomKey(
|
|
992
|
+
_.content
|
|
989
993
|
)
|
|
990
994
|
);
|
|
991
995
|
break;
|
|
992
996
|
case "/system/userCodeChanged":
|
|
993
|
-
|
|
994
|
-
|
|
997
|
+
H.dispatch(
|
|
998
|
+
X.setUserCode(_.content)
|
|
995
999
|
);
|
|
996
1000
|
break;
|
|
997
1001
|
}
|
|
998
|
-
else if (
|
|
999
|
-
console.log("event message received",
|
|
1000
|
-
const
|
|
1001
|
-
|
|
1002
|
+
else if (_.type.startsWith("/event/")) {
|
|
1003
|
+
console.log("event message received", _);
|
|
1004
|
+
const Y = P.current[_.type];
|
|
1005
|
+
Y || console.log("no handlers found for event type", _.type), Y && Object.values(Y).forEach((f1) => {
|
|
1002
1006
|
try {
|
|
1003
|
-
|
|
1004
|
-
} catch (
|
|
1005
|
-
console.error(
|
|
1007
|
+
f1(_);
|
|
1008
|
+
} catch (w1) {
|
|
1009
|
+
console.error(w1);
|
|
1006
1010
|
}
|
|
1007
1011
|
});
|
|
1008
1012
|
} else
|
|
1009
|
-
|
|
1010
|
-
} catch (
|
|
1011
|
-
console.log(
|
|
1013
|
+
_.type.startsWith("/room/") ? H.dispatch(l2.setRoomState(_)) : _.type.startsWith("/device/") && H.dispatch(c2.setDeviceState(_));
|
|
1014
|
+
} catch (_) {
|
|
1015
|
+
console.log(_);
|
|
1012
1016
|
}
|
|
1013
1017
|
};
|
|
1014
1018
|
}
|
|
1015
1019
|
return () => {
|
|
1016
|
-
|
|
1020
|
+
C.current && C.current.close(), C.current = null;
|
|
1017
1021
|
};
|
|
1018
1022
|
}
|
|
1019
|
-
}, [
|
|
1020
|
-
l &&
|
|
1021
|
-
}, [l
|
|
1022
|
-
},
|
|
1023
|
-
function
|
|
1024
|
-
return Q3(
|
|
1023
|
+
}, [g.apiPath, g.gatewayAppPath, q, h, S, e, j, A]), Q(() => {
|
|
1024
|
+
l && U(`/room/${l}/status`, null);
|
|
1025
|
+
}, [l]), /* @__PURE__ */ n.jsx(h3.Provider, { value: { sendMessage: U, sendSimpleMessage: T, addEventHandler: R, removeEventHandler: g1 }, children: o ? t : /* @__PURE__ */ n.jsx(y2, {}) });
|
|
1026
|
+
}, o6 = ({ children: t }) => /* @__PURE__ */ n.jsx(z3, { store: H, children: /* @__PURE__ */ n.jsx(L2, { children: t }) });
|
|
1027
|
+
function I() {
|
|
1028
|
+
return Q3(h3);
|
|
1025
1029
|
}
|
|
1026
|
-
function
|
|
1030
|
+
function $2({
|
|
1027
1031
|
onPress: t,
|
|
1028
1032
|
onRelease: e,
|
|
1029
|
-
onHold:
|
|
1033
|
+
onHold: s,
|
|
1030
1034
|
holdTimeMs: o = 500
|
|
1031
1035
|
}) {
|
|
1032
|
-
const l =
|
|
1033
|
-
function
|
|
1036
|
+
const l = l1(null), i = l1(!1);
|
|
1037
|
+
function u() {
|
|
1034
1038
|
i.current = !0, t == null || t(), l.current = setTimeout(() => {
|
|
1035
|
-
|
|
1039
|
+
s == null || s(), l.current = null;
|
|
1036
1040
|
}, o);
|
|
1037
1041
|
}
|
|
1038
|
-
function
|
|
1042
|
+
function g() {
|
|
1039
1043
|
i.current = !1, e == null || e(), l.current && (clearTimeout(l.current), l.current = null);
|
|
1040
1044
|
}
|
|
1041
|
-
function
|
|
1042
|
-
i.current &&
|
|
1045
|
+
function h() {
|
|
1046
|
+
i.current && g();
|
|
1043
1047
|
}
|
|
1044
1048
|
return {
|
|
1045
|
-
onPointerDown:
|
|
1046
|
-
onPointerUp:
|
|
1047
|
-
onPointerLeave:
|
|
1049
|
+
onPointerDown: u,
|
|
1050
|
+
onPointerUp: g,
|
|
1051
|
+
onPointerLeave: h
|
|
1048
1052
|
};
|
|
1049
1053
|
}
|
|
1050
|
-
function
|
|
1051
|
-
const { sendMessage: o } =
|
|
1054
|
+
function v(t, e) {
|
|
1055
|
+
const { sendMessage: o } = I(), l = l1(null);
|
|
1052
1056
|
function i() {
|
|
1053
1057
|
o(`${t}/${e}`, { value: "pressed" }), l.current || (l.current = setInterval(() => {
|
|
1054
1058
|
o(`${t}/${e}`, { value: "held" });
|
|
1055
1059
|
}, 250));
|
|
1056
1060
|
}
|
|
1057
|
-
function
|
|
1061
|
+
function u() {
|
|
1058
1062
|
l.current && (clearInterval(l.current), l.current = null), o(`${t}/${e}`, { value: "released" });
|
|
1059
1063
|
}
|
|
1060
|
-
return
|
|
1064
|
+
return $2({ onPress: i, onRelease: u });
|
|
1061
1065
|
}
|
|
1062
|
-
function
|
|
1063
|
-
const { sendMessage:
|
|
1066
|
+
function g3(t, e) {
|
|
1067
|
+
const { sendMessage: s, sendSimpleMessage: o } = I(), l = v(`${t}`, "volumeUp"), i = v(`${t}`, "volumeDown");
|
|
1064
1068
|
return e ? {
|
|
1065
1069
|
volumeState: e,
|
|
1066
1070
|
volumeUp: l,
|
|
1067
1071
|
volumeDown: i,
|
|
1068
|
-
setLevel: (
|
|
1069
|
-
muteToggle: () =>
|
|
1070
|
-
muteOn: () =>
|
|
1071
|
-
muteOff: () =>
|
|
1072
|
+
setLevel: (j) => o(`${t}/level`, j),
|
|
1073
|
+
muteToggle: () => s(`${t}/muteToggle`, null),
|
|
1074
|
+
muteOn: () => s(`${t}/muteOn`, null),
|
|
1075
|
+
muteOff: () => s(`${t}/muteOff`, null)
|
|
1072
1076
|
} : void 0;
|
|
1073
1077
|
}
|
|
1074
|
-
function
|
|
1075
|
-
const { sendMessage:
|
|
1078
|
+
function r6(t, e) {
|
|
1079
|
+
const { sendMessage: s, sendSimpleMessage: o } = I(), l = v(`${t}`, "volumeUp"), i = v(`${t}`, "volumeDown");
|
|
1076
1080
|
return e ? {
|
|
1077
1081
|
volumeState: e,
|
|
1078
1082
|
volumeUp: l,
|
|
1079
1083
|
volumeDown: i,
|
|
1080
|
-
setLevel: (
|
|
1081
|
-
muteToggle: () =>
|
|
1082
|
-
muteOn: () =>
|
|
1083
|
-
muteOff: () =>
|
|
1084
|
+
setLevel: (j) => o(`${t}/level`, j),
|
|
1085
|
+
muteToggle: () => s(`${t}/muteToggle`, null),
|
|
1086
|
+
muteOn: () => s(`${t}/muteOn`, null),
|
|
1087
|
+
muteOff: () => s(`${t}/muteOff`, null)
|
|
1084
1088
|
} : void 0;
|
|
1085
1089
|
}
|
|
1086
|
-
function
|
|
1087
|
-
const e =
|
|
1088
|
-
return
|
|
1090
|
+
function A2(t) {
|
|
1091
|
+
const e = $(t), s = `/device/${t}`;
|
|
1092
|
+
return g3(s, e == null ? void 0 : e.volume);
|
|
1089
1093
|
}
|
|
1090
|
-
function
|
|
1091
|
-
const { sendMessage: e } =
|
|
1094
|
+
function f3(t) {
|
|
1095
|
+
const { sendMessage: e } = I();
|
|
1092
1096
|
return { powerOn: () => {
|
|
1093
1097
|
e(`/device/${t}/powerOn`, null);
|
|
1094
1098
|
}, powerOff: () => {
|
|
@@ -1097,160 +1101,160 @@ function h3(t) {
|
|
|
1097
1101
|
e(`/device/${t}/powerToggle`, null);
|
|
1098
1102
|
} };
|
|
1099
1103
|
}
|
|
1100
|
-
function
|
|
1101
|
-
const { sendMessage: e } =
|
|
1102
|
-
return console.log("deviceState",
|
|
1104
|
+
function _1(t) {
|
|
1105
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1106
|
+
return console.log("deviceState", s), s ? { itemsState: s, selectItem: (l) => {
|
|
1103
1107
|
e(`/device/${t}/${l}`, null);
|
|
1104
1108
|
} } : void 0;
|
|
1105
1109
|
}
|
|
1106
|
-
function
|
|
1107
|
-
const { sendMessage: e } =
|
|
1110
|
+
function B2(t) {
|
|
1111
|
+
const { sendMessage: e } = I(), s = $(t), o = () => {
|
|
1108
1112
|
e(`/device/${t}/setDefaultChannelLevels`, null);
|
|
1109
1113
|
}, l = () => {
|
|
1110
|
-
if ((
|
|
1114
|
+
if ((s == null ? void 0 : s.levelControls) === void 0)
|
|
1111
1115
|
return;
|
|
1112
|
-
Object.keys(
|
|
1113
|
-
e(`/device/${t}/${
|
|
1116
|
+
Object.keys(s == null ? void 0 : s.levelControls).forEach((g) => {
|
|
1117
|
+
e(`/device/${t}/${g}/fullStatus`, null);
|
|
1114
1118
|
});
|
|
1115
1119
|
};
|
|
1116
|
-
return
|
|
1120
|
+
return s ? { levelControls: s.levelControls, setDefaultChannelLevels: o, getFullStatus: l } : void 0;
|
|
1117
1121
|
}
|
|
1118
|
-
function
|
|
1119
|
-
const e =
|
|
1122
|
+
function l6(t) {
|
|
1123
|
+
const e = $(t), s = f3(t), o = _1(t), l = _1(t), i = A2(t), u = B2(t);
|
|
1120
1124
|
if (e)
|
|
1121
1125
|
return {
|
|
1122
1126
|
avrState: e,
|
|
1123
|
-
powerControl:
|
|
1127
|
+
powerControl: s,
|
|
1124
1128
|
inputControl: o,
|
|
1125
1129
|
surroundSoundModes: l,
|
|
1126
|
-
surroundChannels:
|
|
1130
|
+
surroundChannels: u,
|
|
1127
1131
|
mainVolumeControl: i
|
|
1128
1132
|
};
|
|
1129
1133
|
}
|
|
1130
|
-
function
|
|
1131
|
-
const e =
|
|
1134
|
+
function i6(t) {
|
|
1135
|
+
const e = $(t);
|
|
1132
1136
|
if (e)
|
|
1133
1137
|
return { endpointState: e };
|
|
1134
1138
|
}
|
|
1135
|
-
function
|
|
1136
|
-
const e = `/device/${t}`,
|
|
1137
|
-
return { channelUp:
|
|
1139
|
+
function a6(t) {
|
|
1140
|
+
const e = `/device/${t}`, s = v(e, "chanUp"), o = v(e, "chanDown"), l = v(e, "lastChan"), i = v(e, "guide"), u = v(e, "info"), g = v(e, "exit");
|
|
1141
|
+
return { channelUp: s, channelDown: o, lastChannel: l, guide: i, info: u, exit: g };
|
|
1138
1142
|
}
|
|
1139
|
-
function
|
|
1140
|
-
const e = `/device/${t}`,
|
|
1141
|
-
return { red:
|
|
1143
|
+
function u6(t) {
|
|
1144
|
+
const e = `/device/${t}`, s = v(e, "red"), o = v(e, "green"), l = v(e, "yellow"), i = v(e, "blue");
|
|
1145
|
+
return { red: s, green: o, yellow: l, blue: i };
|
|
1142
1146
|
}
|
|
1143
|
-
function
|
|
1144
|
-
const e =
|
|
1147
|
+
function d6(t) {
|
|
1148
|
+
const e = $(t);
|
|
1145
1149
|
if (e)
|
|
1146
1150
|
return {
|
|
1147
1151
|
communicationMonitorState: e
|
|
1148
1152
|
};
|
|
1149
1153
|
}
|
|
1150
|
-
function
|
|
1151
|
-
const e = `/device/${t}`,
|
|
1152
|
-
return { up:
|
|
1154
|
+
function v6(t) {
|
|
1155
|
+
const e = `/device/${t}`, s = v(e, "up"), o = v(e, "down"), l = v(e, "left"), i = v(e, "right"), u = v(e, "select"), g = v(e, "menu"), h = v(e, "exit");
|
|
1156
|
+
return { up: s, down: o, left: l, right: i, select: u, menu: g, exit: h };
|
|
1153
1157
|
}
|
|
1154
|
-
function
|
|
1155
|
-
const e =
|
|
1158
|
+
function h6(t) {
|
|
1159
|
+
const e = $(t);
|
|
1156
1160
|
if (e)
|
|
1157
1161
|
return e.deviceInfo || void 0;
|
|
1158
1162
|
}
|
|
1159
|
-
function
|
|
1160
|
-
const e = `/device/${t}`,
|
|
1161
|
-
return { dvrList:
|
|
1163
|
+
function g6(t) {
|
|
1164
|
+
const e = `/device/${t}`, s = v(e, "dvrList"), o = v(e, "record");
|
|
1165
|
+
return { dvrList: s, record: o };
|
|
1162
1166
|
}
|
|
1163
|
-
const
|
|
1164
|
-
const [e,
|
|
1165
|
-
return
|
|
1167
|
+
const f6 = ({ className: t }) => {
|
|
1168
|
+
const [e, s] = N();
|
|
1169
|
+
return Q(() => {
|
|
1166
1170
|
setInterval(() => {
|
|
1167
1171
|
const o = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1168
|
-
|
|
1172
|
+
s(o);
|
|
1169
1173
|
}, 1e3);
|
|
1170
1174
|
}, []), /* @__PURE__ */ n.jsxs("div", { className: t, children: [
|
|
1171
1175
|
e,
|
|
1172
1176
|
" new change"
|
|
1173
1177
|
] });
|
|
1174
1178
|
};
|
|
1175
|
-
function
|
|
1176
|
-
const { sendMessage: e } =
|
|
1177
|
-
return
|
|
1179
|
+
function w6(t) {
|
|
1180
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1181
|
+
return s ? { roomCombinerState: s, setAutoMode: () => {
|
|
1178
1182
|
e(`/device/${t}/setAutoMode`, null);
|
|
1179
1183
|
}, setManualMode: () => {
|
|
1180
1184
|
e(`/device/${t}/setManualMode`, null);
|
|
1181
1185
|
}, toggleMode: () => {
|
|
1182
1186
|
e(`/device/${t}/toggleMode`, null);
|
|
1183
|
-
}, togglePartitionState: (
|
|
1184
|
-
e(`/device/${t}/togglePartitionState`,
|
|
1185
|
-
}, setRoomCombinationScenario: (
|
|
1186
|
-
e(`/device/${t}/setRoomCombinationScenario`,
|
|
1187
|
+
}, togglePartitionState: (h) => {
|
|
1188
|
+
e(`/device/${t}/togglePartitionState`, h);
|
|
1189
|
+
}, setRoomCombinationScenario: (h) => {
|
|
1190
|
+
e(`/device/${t}/setRoomCombinationScenario`, h);
|
|
1187
1191
|
} } : void 0;
|
|
1188
1192
|
}
|
|
1189
|
-
function
|
|
1190
|
-
const { sendMessage: e, sendSimpleMessage:
|
|
1193
|
+
function p6(t) {
|
|
1194
|
+
const { sendMessage: e, sendSimpleMessage: s } = I(), o = $(t);
|
|
1191
1195
|
return o ? {
|
|
1192
1196
|
levelState: o,
|
|
1193
|
-
setLevel: (
|
|
1194
|
-
muteToggle: (
|
|
1195
|
-
muteOn: (
|
|
1196
|
-
muteOff: (
|
|
1197
|
+
setLevel: (h, S) => s(`${h}/level`, S),
|
|
1198
|
+
muteToggle: (h) => e(`${h}/muteToggle`, null),
|
|
1199
|
+
muteOn: (h) => e(`${h}/muteOn`, null),
|
|
1200
|
+
muteOff: (h) => e(`${h}/muteOff`, null)
|
|
1197
1201
|
} : void 0;
|
|
1198
1202
|
}
|
|
1199
|
-
function
|
|
1200
|
-
const { sendMessage: e } =
|
|
1201
|
-
return
|
|
1203
|
+
function x6(t) {
|
|
1204
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1205
|
+
return s ? { lightingState: s, selectScene: (l) => {
|
|
1202
1206
|
e(`/device/${t}/selectScene`, l);
|
|
1203
1207
|
} } : void 0;
|
|
1204
1208
|
}
|
|
1205
|
-
function
|
|
1206
|
-
const { sendMessage: e } =
|
|
1207
|
-
return
|
|
1209
|
+
function M6(t) {
|
|
1210
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1211
|
+
return s ? { matrixRoutingState: s, setRoute: (l) => {
|
|
1208
1212
|
e(`/device/${t}/route`, l);
|
|
1209
1213
|
} } : void 0;
|
|
1210
1214
|
}
|
|
1211
|
-
function
|
|
1212
|
-
const { sendMessage: e } =
|
|
1215
|
+
function m6(t) {
|
|
1216
|
+
const { sendMessage: e } = I();
|
|
1213
1217
|
return { closeApp: () => {
|
|
1214
1218
|
e(`/device/${t}/closeWebViewController`, null);
|
|
1215
1219
|
} };
|
|
1216
1220
|
}
|
|
1217
|
-
function
|
|
1218
|
-
const e = `/device/${t}`,
|
|
1219
|
-
return { digit0:
|
|
1221
|
+
function Z6(t) {
|
|
1222
|
+
const e = `/device/${t}`, s = v(e, "num0"), o = v(e, "num1"), l = v(e, "num2"), i = v(e, "num3"), u = v(e, "num4"), g = v(e, "num5"), h = v(e, "num6"), S = v(e, "num7"), j = v(e, "num8"), C = v(e, "num9"), A = v(e, "numDash"), V = v(e, "numEnter");
|
|
1223
|
+
return { digit0: s, digit1: o, digit2: l, digit3: i, digit4: u, digit5: g, digit6: h, digit7: S, digit8: j, digit9: C, keypadAccessoryButton1: A, keypadAccessoryButton2: V };
|
|
1220
1224
|
}
|
|
1221
|
-
function
|
|
1222
|
-
const { sendMessage: e } =
|
|
1223
|
-
return
|
|
1225
|
+
function j6(t) {
|
|
1226
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1227
|
+
return s ? { projectorScreenLiftControlState: s, raise: () => {
|
|
1224
1228
|
e(`/device/${t}/raise`, null);
|
|
1225
1229
|
}, lower: () => {
|
|
1226
1230
|
e(`/device/${t}/lower`, null);
|
|
1227
1231
|
} } : void 0;
|
|
1228
1232
|
}
|
|
1229
|
-
function
|
|
1230
|
-
const { sendMessage: e } =
|
|
1231
|
-
return
|
|
1233
|
+
function C6(t) {
|
|
1234
|
+
const { sendMessage: e } = I(), s = L1(t);
|
|
1235
|
+
return s ? { roomEventScheduleState: s, save: (l) => {
|
|
1232
1236
|
e(`/room/${t}/saveScheduledEvents`, l);
|
|
1233
1237
|
} } : void 0;
|
|
1234
1238
|
}
|
|
1235
|
-
function
|
|
1236
|
-
const { sendMessage: e } =
|
|
1239
|
+
function S6(t) {
|
|
1240
|
+
const { sendMessage: e } = I();
|
|
1237
1241
|
return { runDirectRoute: (o) => {
|
|
1238
1242
|
e(`/room/${t}/directRoute`, o);
|
|
1239
1243
|
} };
|
|
1240
1244
|
}
|
|
1241
|
-
function
|
|
1242
|
-
const { sendMessage: e } =
|
|
1243
|
-
return { routingState:
|
|
1245
|
+
function b6(t) {
|
|
1246
|
+
const { sendMessage: e } = I();
|
|
1247
|
+
return { routingState: $(t), runRoute: (l) => {
|
|
1244
1248
|
e(`/room/${t}/source`, l);
|
|
1245
1249
|
} };
|
|
1246
1250
|
}
|
|
1247
|
-
function
|
|
1248
|
-
const e = `/device/${t}`,
|
|
1249
|
-
return { dvrList:
|
|
1251
|
+
function I6(t) {
|
|
1252
|
+
const e = `/device/${t}`, s = v(e, "chanUp"), o = v(e, "chanDown");
|
|
1253
|
+
return { dvrList: s, replay: o };
|
|
1250
1254
|
}
|
|
1251
|
-
function
|
|
1252
|
-
const { sendMessage: e } =
|
|
1253
|
-
return
|
|
1255
|
+
function y6(t) {
|
|
1256
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1257
|
+
return s ? { shadeState: s, shadeUp: () => {
|
|
1254
1258
|
e(`/device/${t}/shadeUp`, null);
|
|
1255
1259
|
}, shadeDown: () => {
|
|
1256
1260
|
e(`/device/${t}/shadeDown`, null);
|
|
@@ -1258,10 +1262,10 @@ function S6(t) {
|
|
|
1258
1262
|
e(`/device/${t}/stopOrPreset`, null);
|
|
1259
1263
|
} } : void 0;
|
|
1260
1264
|
}
|
|
1261
|
-
function
|
|
1262
|
-
const { sendMessage: e } =
|
|
1263
|
-
return
|
|
1264
|
-
e(`/room/${t}/setShutdownPromptSeconds`,
|
|
1265
|
+
function R6(t) {
|
|
1266
|
+
const { sendMessage: e } = I(), s = L1(t);
|
|
1267
|
+
return s ? { shutdownPromptTimerState: s, setShutdownPromptSeconds: (g) => {
|
|
1268
|
+
e(`/room/${t}/setShutdownPromptSeconds`, g);
|
|
1265
1269
|
}, shutdownStart: () => {
|
|
1266
1270
|
e(`/room/${t}/shutdownStart`, null);
|
|
1267
1271
|
}, shutdownEnd: () => {
|
|
@@ -1270,149 +1274,149 @@ function b6(t) {
|
|
|
1270
1274
|
e(`/room/${t}/shutdownCancel`, null);
|
|
1271
1275
|
} } : void 0;
|
|
1272
1276
|
}
|
|
1273
|
-
function
|
|
1274
|
-
const { sendMessage: e } =
|
|
1275
|
-
return
|
|
1277
|
+
function E6(t) {
|
|
1278
|
+
const { sendMessage: e } = I(), s = $(t);
|
|
1279
|
+
return s ? { switchedOutputState: s, on: () => {
|
|
1276
1280
|
e(`/device/${t}/on`, null);
|
|
1277
1281
|
}, off: () => {
|
|
1278
1282
|
e(`/device/${t}/off`, null);
|
|
1279
1283
|
} } : void 0;
|
|
1280
1284
|
}
|
|
1281
|
-
function
|
|
1282
|
-
const { sendMessage: e } =
|
|
1283
|
-
return
|
|
1285
|
+
function _6(t) {
|
|
1286
|
+
const { sendMessage: e } = I(), s = L1(t);
|
|
1287
|
+
return s ? { techPasswordState: s, validatePassword: (i) => {
|
|
1284
1288
|
e(`/room/${t}/validateTechPassword`, { password: i });
|
|
1285
|
-
}, setPassword: (i,
|
|
1286
|
-
e(`/room/${t}/setTechPassword`, { oldPassword: i, newPassword:
|
|
1289
|
+
}, setPassword: (i, u) => {
|
|
1290
|
+
e(`/room/${t}/setTechPassword`, { oldPassword: i, newPassword: u });
|
|
1287
1291
|
} } : void 0;
|
|
1288
1292
|
}
|
|
1289
|
-
function
|
|
1290
|
-
const e = `/device/${t}`,
|
|
1291
|
-
return { play:
|
|
1293
|
+
function L6(t) {
|
|
1294
|
+
const e = `/device/${t}`, s = v(e, "play"), o = v(e, "pause"), l = v(e, "stop"), i = v(e, "prevTrack"), u = v(e, "nextTrack"), g = v(e, "rewind"), h = v(e, "ffwd"), S = v(e, "record");
|
|
1295
|
+
return { play: s, pause: o, stop: l, prevTrack: i, nextTrack: u, rewind: g, fastForward: h, record: S };
|
|
1292
1296
|
}
|
|
1293
|
-
function
|
|
1294
|
-
const e =
|
|
1297
|
+
function $6(t) {
|
|
1298
|
+
const e = $(t), { sendMessage: s } = I();
|
|
1295
1299
|
return e ? {
|
|
1296
1300
|
touchpanelState: e,
|
|
1297
1301
|
appControl: { hideApp: () => {
|
|
1298
|
-
|
|
1302
|
+
s(`/device/${t}/hideApp`, null);
|
|
1299
1303
|
}, openApp: () => {
|
|
1300
|
-
|
|
1304
|
+
s(`/device/${t}/openApp`, null);
|
|
1301
1305
|
}, closeApp: () => {
|
|
1302
|
-
|
|
1306
|
+
s(`/device/${t}/closeApp`, null);
|
|
1303
1307
|
} },
|
|
1304
1308
|
zoomControl: { endCall: () => {
|
|
1305
|
-
|
|
1309
|
+
s(`/device/${t}/endCall`, null);
|
|
1306
1310
|
} }
|
|
1307
1311
|
} : void 0;
|
|
1308
1312
|
}
|
|
1309
|
-
function
|
|
1310
|
-
const e =
|
|
1313
|
+
function A6(t) {
|
|
1314
|
+
const e = $(t), s = f3(t), o = _1(t);
|
|
1311
1315
|
if (!e)
|
|
1312
1316
|
return;
|
|
1313
1317
|
const l = (e.powerState || e.isWarming) && !e.isCooling, i = (!e.powerState || e.isCooling) && !e.isWarming;
|
|
1314
1318
|
return {
|
|
1315
1319
|
displayState: e,
|
|
1316
|
-
powerControl:
|
|
1320
|
+
powerControl: s,
|
|
1317
1321
|
inputControl: o,
|
|
1318
1322
|
powerFb: { powerOnFb: l, powerOffFb: i }
|
|
1319
1323
|
};
|
|
1320
1324
|
}
|
|
1321
|
-
const
|
|
1322
|
-
const { sendMessage: e } =
|
|
1323
|
-
|
|
1325
|
+
const B6 = ({ config: t }) => {
|
|
1326
|
+
const { sendMessage: e } = I();
|
|
1327
|
+
Q(() => {
|
|
1324
1328
|
var o, l;
|
|
1325
1329
|
if (!t)
|
|
1326
1330
|
return;
|
|
1327
|
-
const
|
|
1331
|
+
const s = [];
|
|
1328
1332
|
Object.values(t.destinations).forEach((i) => {
|
|
1329
|
-
|
|
1333
|
+
s.push(i);
|
|
1330
1334
|
}), Object.values(t.destinationList).forEach((i) => {
|
|
1331
|
-
|
|
1335
|
+
s.push(i.sinkKey);
|
|
1332
1336
|
}), (o = t.touchpanelKeys) == null || o.forEach((i) => {
|
|
1333
|
-
|
|
1337
|
+
s.push(i);
|
|
1334
1338
|
}), t.environmentalDevices.forEach((i) => {
|
|
1335
|
-
|
|
1339
|
+
s.push(i.deviceKey);
|
|
1336
1340
|
}), (l = t.accessoryDeviceKeys) == null || l.forEach((i) => {
|
|
1337
|
-
|
|
1338
|
-
}), t.audioCodecKey &&
|
|
1339
|
-
|
|
1341
|
+
s.push(i);
|
|
1342
|
+
}), t.audioCodecKey && s.push(t.audioCodecKey), t.videoCodecKey && s.push(t.videoCodecKey), t.matrixRoutingKey && s.push(t.matrixRoutingKey), t.roomCombinerKey && s.push(t.roomCombinerKey), t.endpointKeys && t.endpointKeys.forEach((i) => {
|
|
1343
|
+
s.push(i);
|
|
1340
1344
|
});
|
|
1341
1345
|
for (const i of Object.values(t.sourceList))
|
|
1342
|
-
i.sourceKey && i.sourceKey !== "$off" &&
|
|
1343
|
-
console.log("deviceKeys",
|
|
1346
|
+
i.sourceKey && i.sourceKey !== "$off" && s.push(i.sourceKey);
|
|
1347
|
+
console.log("deviceKeys", s), s.forEach((i) => {
|
|
1344
1348
|
e(`/device/${i}/fullStatus`, { deviceKey: i });
|
|
1345
1349
|
});
|
|
1346
1350
|
}, [t, e]);
|
|
1347
1351
|
};
|
|
1348
|
-
function
|
|
1349
|
-
const
|
|
1350
|
-
return
|
|
1352
|
+
function T6(t, e) {
|
|
1353
|
+
const s = w2(t, e), o = `/room/${t}/volumes/${e}`;
|
|
1354
|
+
return g3(o, s);
|
|
1351
1355
|
}
|
|
1352
|
-
function
|
|
1353
|
-
const [t, e] =
|
|
1356
|
+
function D6() {
|
|
1357
|
+
const [t, e] = N(), [s, o] = N();
|
|
1354
1358
|
function l() {
|
|
1355
1359
|
e((/* @__PURE__ */ new Date()).toLocaleDateString("en-US", { dateStyle: "long" }));
|
|
1356
1360
|
const i = (/* @__PURE__ */ new Date()).toLocaleTimeString("en-US", { hour12: !0, hour: "numeric", minute: "numeric" });
|
|
1357
1361
|
o(i);
|
|
1358
1362
|
}
|
|
1359
|
-
return
|
|
1363
|
+
return Q(() => {
|
|
1360
1364
|
l();
|
|
1361
1365
|
const i = setInterval(() => {
|
|
1362
1366
|
l();
|
|
1363
1367
|
}, 1e3);
|
|
1364
1368
|
return () => clearInterval(i);
|
|
1365
|
-
}, []), { date: t, time:
|
|
1369
|
+
}, []), { date: t, time: s };
|
|
1366
1370
|
}
|
|
1367
|
-
const
|
|
1371
|
+
const P6 = () => {
|
|
1368
1372
|
const t = N3();
|
|
1369
1373
|
return /* @__PURE__ */ n.jsxs("div", { className: "d-flex flex-column align-items-center gap-5", children: [
|
|
1370
1374
|
/* @__PURE__ */ n.jsx("div", { className: "m-2 p-2 bg-danger rounded d-flex align-items-center", children: /* @__PURE__ */ n.jsx("span", { className: "fs-5 text-white", children: "We are sorry. Something went wrong." }) }),
|
|
1371
1375
|
/* @__PURE__ */ n.jsx("button", { className: "btn btn-primary p-2", onClick: () => t(-1), children: "Go Back" })
|
|
1372
1376
|
] });
|
|
1373
|
-
},
|
|
1374
|
-
iconbtn:
|
|
1375
|
-
iconbtnvert:
|
|
1376
|
-
iconsm:
|
|
1377
|
-
},
|
|
1377
|
+
}, T2 = "_iconbtn_16qss_1", D2 = "_iconbtnvert_16qss_7", P2 = "_iconsm_16qss_18", I1 = {
|
|
1378
|
+
iconbtn: T2,
|
|
1379
|
+
iconbtnvert: D2,
|
|
1380
|
+
iconsm: P2
|
|
1381
|
+
}, O2 = ({
|
|
1378
1382
|
multiIcon: t,
|
|
1379
1383
|
otherContent: e = null,
|
|
1380
|
-
vert:
|
|
1384
|
+
vert: s = !1,
|
|
1381
1385
|
className: o,
|
|
1382
1386
|
iconClassName: l = "",
|
|
1383
1387
|
otherContentClassName: i = "",
|
|
1384
|
-
disabled:
|
|
1385
|
-
feedback:
|
|
1386
|
-
feedbackClassName:
|
|
1388
|
+
disabled: u,
|
|
1389
|
+
feedback: g,
|
|
1390
|
+
feedbackClassName: h,
|
|
1387
1391
|
onPointerDown: S,
|
|
1388
|
-
onPointerUp:
|
|
1389
|
-
onPointerLeave:
|
|
1392
|
+
onPointerUp: j,
|
|
1393
|
+
onPointerLeave: C,
|
|
1390
1394
|
...A
|
|
1391
1395
|
}) => {
|
|
1392
|
-
const [
|
|
1396
|
+
const [V, P] = N(!1), q = !u && g ? h : "", U = !u && (V || g);
|
|
1393
1397
|
return /* @__PURE__ */ n.jsxs(
|
|
1394
1398
|
"button",
|
|
1395
1399
|
{
|
|
1396
1400
|
type: "button",
|
|
1397
|
-
className: `${
|
|
1401
|
+
className: `${I1.iconbtn} ${s ? I1.iconbtnvert : ""} ${o} ${q}`,
|
|
1398
1402
|
...A,
|
|
1399
|
-
disabled:
|
|
1400
|
-
onPointerDown: (
|
|
1401
|
-
|
|
1403
|
+
disabled: u,
|
|
1404
|
+
onPointerDown: (T) => {
|
|
1405
|
+
P(!0), S == null || S(T);
|
|
1402
1406
|
},
|
|
1403
|
-
onPointerUp: (
|
|
1404
|
-
|
|
1407
|
+
onPointerUp: (T) => {
|
|
1408
|
+
P(!1), j == null || j(T);
|
|
1405
1409
|
},
|
|
1406
|
-
onPointerLeave: (
|
|
1407
|
-
|
|
1410
|
+
onPointerLeave: (T) => {
|
|
1411
|
+
P(!1), C == null || C(T);
|
|
1408
1412
|
},
|
|
1409
1413
|
children: [
|
|
1410
1414
|
t && /* @__PURE__ */ n.jsx(
|
|
1411
1415
|
t,
|
|
1412
1416
|
{
|
|
1413
|
-
className: `${l ||
|
|
1414
|
-
active:
|
|
1415
|
-
disabled:
|
|
1417
|
+
className: `${l || I1.iconsm}`,
|
|
1418
|
+
active: U,
|
|
1419
|
+
disabled: u
|
|
1416
1420
|
}
|
|
1417
1421
|
),
|
|
1418
1422
|
/* @__PURE__ */ n.jsx("div", { className: i, children: e })
|
|
@@ -1422,13 +1426,13 @@ const B6 = () => {
|
|
|
1422
1426
|
}, x = ({
|
|
1423
1427
|
ActiveImage: t,
|
|
1424
1428
|
DisabledImage: e,
|
|
1425
|
-
EnabledImage:
|
|
1429
|
+
EnabledImage: s,
|
|
1426
1430
|
active: o,
|
|
1427
1431
|
disabled: l
|
|
1428
|
-
}) => l ? e : o ? t :
|
|
1432
|
+
}) => l ? e : o ? t : s, V2 = ({
|
|
1429
1433
|
active: t,
|
|
1430
1434
|
className: e = "",
|
|
1431
|
-
disabled:
|
|
1435
|
+
disabled: s
|
|
1432
1436
|
}) => /* @__PURE__ */ n.jsx(
|
|
1433
1437
|
x,
|
|
1434
1438
|
{
|
|
@@ -1475,12 +1479,12 @@ const B6 = () => {
|
|
|
1475
1479
|
}
|
|
1476
1480
|
),
|
|
1477
1481
|
active: t,
|
|
1478
|
-
disabled:
|
|
1482
|
+
disabled: s
|
|
1479
1483
|
}
|
|
1480
|
-
),
|
|
1484
|
+
), F2 = ({
|
|
1481
1485
|
active: t,
|
|
1482
1486
|
className: e = "",
|
|
1483
|
-
disabled:
|
|
1487
|
+
disabled: s
|
|
1484
1488
|
}) => /* @__PURE__ */ n.jsx(
|
|
1485
1489
|
x,
|
|
1486
1490
|
{
|
|
@@ -1524,12 +1528,12 @@ const B6 = () => {
|
|
|
1524
1528
|
)
|
|
1525
1529
|
),
|
|
1526
1530
|
active: t,
|
|
1527
|
-
disabled:
|
|
1531
|
+
disabled: s
|
|
1528
1532
|
}
|
|
1529
|
-
),
|
|
1533
|
+
), k2 = ({
|
|
1530
1534
|
active: t,
|
|
1531
1535
|
className: e = "",
|
|
1532
|
-
disabled:
|
|
1536
|
+
disabled: s
|
|
1533
1537
|
}) => /* @__PURE__ */ n.jsx(
|
|
1534
1538
|
x,
|
|
1535
1539
|
{
|
|
@@ -1564,12 +1568,12 @@ const B6 = () => {
|
|
|
1564
1568
|
}
|
|
1565
1569
|
),
|
|
1566
1570
|
active: t,
|
|
1567
|
-
disabled:
|
|
1571
|
+
disabled: s
|
|
1568
1572
|
}
|
|
1569
|
-
),
|
|
1573
|
+
), U2 = ({
|
|
1570
1574
|
active: t,
|
|
1571
1575
|
className: e = "",
|
|
1572
|
-
disabled:
|
|
1576
|
+
disabled: s
|
|
1573
1577
|
}) => /* @__PURE__ */ n.jsx(
|
|
1574
1578
|
x,
|
|
1575
1579
|
{
|
|
@@ -1613,14 +1617,14 @@ const B6 = () => {
|
|
|
1613
1617
|
)
|
|
1614
1618
|
),
|
|
1615
1619
|
active: t,
|
|
1616
|
-
disabled:
|
|
1620
|
+
disabled: s
|
|
1617
1621
|
}
|
|
1618
|
-
),
|
|
1622
|
+
), W2 = ({
|
|
1619
1623
|
active: t,
|
|
1620
1624
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1621
1625
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1622
1626
|
className: e = "",
|
|
1623
|
-
disabled:
|
|
1627
|
+
disabled: s
|
|
1624
1628
|
}) => /* @__PURE__ */ n.jsx(
|
|
1625
1629
|
x,
|
|
1626
1630
|
{
|
|
@@ -1637,7 +1641,6 @@ const B6 = () => {
|
|
|
1637
1641
|
"path",
|
|
1638
1642
|
{
|
|
1639
1643
|
d: "M111.57,63.01c-.5-1.94-1.51-3.52-3.02-4.74-1.51-1.22-3.27-1.83-5.28-1.83h-42.04c-2.01,0-3.79.61-5.34,1.83-1.54,1.22-2.53,2.8-2.96,4.74l-9.06,36.11c-.14.43-.22,1.08-.22,1.94,0,2.01.74,3.7,2.21,5.07,1.47,1.37,3.25,2.05,5.34,2.05,1.37,0,2.6-.36,3.72-1.08,1.11-.72,1.96-1.69,2.53-2.91l3.02-6.14c1.08-2.23,2.66-3.97,4.74-5.23,2.08-1.26,4.35-1.89,6.79-1.89h20.48c2.44,0,4.71.65,6.79,1.94,2.08,1.29,3.7,3.02,4.85,5.17l3.02,6.14c.58,1.22,1.42,2.19,2.53,2.91,1.11.72,2.35,1.08,3.72,1.08,2.01,0,3.74-.66,5.17-1.99,1.44-1.33,2.19-3,2.26-5.01,0,.07-.07-.61-.22-2.05l-9.06-36.11ZM94.27,61.98c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07ZM77.02,76c-.61.61-1.38.92-2.32.92h-4.31v4.31c0,.93-.31,1.71-.92,2.32-.61.61-1.38.92-2.32.92s-1.71-.31-2.32-.92c-.61-.61-.92-1.38-.92-2.32v-4.31h-4.31c-.93,0-1.71-.31-2.32-.92-.61-.61-.92-1.38-.92-2.32s.31-1.71.92-2.32c.61-.61,1.38-.92,2.32-.92h4.31v-4.31c0-.93.31-1.71.92-2.32.61-.61,1.38-.92,2.32-.92s1.71.31,2.32.92c.61.61.92,1.38.92,2.32v4.31h4.31c.93,0,1.71.31,2.32.92s.92,1.38.92,2.32-.31,1.71-.92,2.32ZM91.79,76.75c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07ZM100.41,85.38c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24c.83.83,1.24,1.85,1.24,3.07s-.41,2.25-1.24,3.07ZM109.04,76.75c-.83.83-1.85,1.24-3.07,1.24s-2.25-.41-3.07-1.24c-.83-.83-1.24-1.85-1.24-3.07s.41-2.25,1.24-3.07c.83-.83,1.85-1.24,3.07-1.24s2.25.41,3.07,1.24,1.24,1.85,1.24,3.07-.41,2.25-1.24,3.07ZM82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM124.89,112.22c-3.13,3.05-6.88,4.58-11.27,4.58-3.02,0-5.82-.79-8.41-2.37-2.59-1.58-4.53-3.74-5.82-6.47l-3.02-6.25c-.36-.72-.9-1.26-1.62-1.62-.72-.36-1.47-.54-2.26-.54h-20.48c-.79,0-1.55.18-2.26.54-.72.36-1.26.9-1.62,1.62l-3.02,6.25c-1.29,2.73-3.23,4.89-5.82,6.47-2.59,1.58-5.39,2.37-8.41,2.37-4.31,0-8-1.55-11.05-4.64-3.05-3.09-4.65-6.83-4.8-11.21,0-.65.04-1.29.11-1.94.07-.65.18-1.29.32-1.94l9.06-36.22c1.01-3.88,3.05-7.03,6.15-9.43,3.09-2.41,6.61-3.61,10.56-3.61h42.04c3.95,0,7.47,1.2,10.56,3.61,3.09,2.41,5.14,5.55,6.14,9.43l9.06,36.22c.14.65.27,1.31.38,1.99s.16,1.35.16,1.99c0,4.38-1.56,8.1-4.69,11.16Z",
|
|
1640
|
-
fill: "#000",
|
|
1641
1644
|
"stroke-width": "0"
|
|
1642
1645
|
}
|
|
1643
1646
|
) })
|
|
@@ -1685,12 +1688,12 @@ const B6 = () => {
|
|
|
1685
1688
|
)
|
|
1686
1689
|
),
|
|
1687
1690
|
active: t,
|
|
1688
|
-
disabled:
|
|
1691
|
+
disabled: s
|
|
1689
1692
|
}
|
|
1690
|
-
),
|
|
1693
|
+
), H2 = ({
|
|
1691
1694
|
active: t,
|
|
1692
1695
|
className: e = "",
|
|
1693
|
-
disabled:
|
|
1696
|
+
disabled: s
|
|
1694
1697
|
}) => /* @__PURE__ */ n.jsx(
|
|
1695
1698
|
x,
|
|
1696
1699
|
{
|
|
@@ -1734,12 +1737,12 @@ const B6 = () => {
|
|
|
1734
1737
|
)
|
|
1735
1738
|
),
|
|
1736
1739
|
active: t,
|
|
1737
|
-
disabled:
|
|
1740
|
+
disabled: s
|
|
1738
1741
|
}
|
|
1739
|
-
),
|
|
1742
|
+
), K2 = ({
|
|
1740
1743
|
active: t,
|
|
1741
1744
|
className: e = "",
|
|
1742
|
-
disabled:
|
|
1745
|
+
disabled: s
|
|
1743
1746
|
}) => /* @__PURE__ */ n.jsx(
|
|
1744
1747
|
x,
|
|
1745
1748
|
{
|
|
@@ -1783,12 +1786,12 @@ const B6 = () => {
|
|
|
1783
1786
|
)
|
|
1784
1787
|
),
|
|
1785
1788
|
active: t,
|
|
1786
|
-
disabled:
|
|
1789
|
+
disabled: s
|
|
1787
1790
|
}
|
|
1788
|
-
),
|
|
1791
|
+
), G2 = ({
|
|
1789
1792
|
active: t,
|
|
1790
1793
|
className: e = "",
|
|
1791
|
-
disabled:
|
|
1794
|
+
disabled: s
|
|
1792
1795
|
}) => /* @__PURE__ */ n.jsx(
|
|
1793
1796
|
x,
|
|
1794
1797
|
{
|
|
@@ -1832,12 +1835,12 @@ const B6 = () => {
|
|
|
1832
1835
|
)
|
|
1833
1836
|
),
|
|
1834
1837
|
active: t,
|
|
1835
|
-
disabled:
|
|
1838
|
+
disabled: s
|
|
1836
1839
|
}
|
|
1837
|
-
),
|
|
1840
|
+
), q2 = ({
|
|
1838
1841
|
active: t,
|
|
1839
1842
|
className: e = "",
|
|
1840
|
-
disabled:
|
|
1843
|
+
disabled: s
|
|
1841
1844
|
}) => /* @__PURE__ */ n.jsx(
|
|
1842
1845
|
x,
|
|
1843
1846
|
{
|
|
@@ -1881,12 +1884,12 @@ const B6 = () => {
|
|
|
1881
1884
|
)
|
|
1882
1885
|
),
|
|
1883
1886
|
active: t,
|
|
1884
|
-
disabled:
|
|
1887
|
+
disabled: s
|
|
1885
1888
|
}
|
|
1886
|
-
),
|
|
1889
|
+
), Y2 = ({
|
|
1887
1890
|
active: t,
|
|
1888
1891
|
className: e = "",
|
|
1889
|
-
disabled:
|
|
1892
|
+
disabled: s
|
|
1890
1893
|
}) => /* @__PURE__ */ n.jsx(
|
|
1891
1894
|
x,
|
|
1892
1895
|
{
|
|
@@ -1930,14 +1933,14 @@ const B6 = () => {
|
|
|
1930
1933
|
)
|
|
1931
1934
|
),
|
|
1932
1935
|
active: t,
|
|
1933
|
-
disabled:
|
|
1936
|
+
disabled: s
|
|
1934
1937
|
}
|
|
1935
|
-
),
|
|
1938
|
+
), J2 = ({
|
|
1936
1939
|
active: t,
|
|
1937
1940
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
1938
1941
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1939
1942
|
className: e = "",
|
|
1940
|
-
disabled:
|
|
1943
|
+
disabled: s
|
|
1941
1944
|
}) => /* @__PURE__ */ n.jsx(
|
|
1942
1945
|
x,
|
|
1943
1946
|
{
|
|
@@ -1999,12 +2002,12 @@ const B6 = () => {
|
|
|
1999
2002
|
)
|
|
2000
2003
|
),
|
|
2001
2004
|
active: t,
|
|
2002
|
-
disabled:
|
|
2005
|
+
disabled: s
|
|
2003
2006
|
}
|
|
2004
|
-
),
|
|
2007
|
+
), z2 = ({
|
|
2005
2008
|
active: t,
|
|
2006
2009
|
className: e = "",
|
|
2007
|
-
disabled:
|
|
2010
|
+
disabled: s
|
|
2008
2011
|
}) => /* @__PURE__ */ n.jsx(
|
|
2009
2012
|
x,
|
|
2010
2013
|
{
|
|
@@ -2048,12 +2051,12 @@ const B6 = () => {
|
|
|
2048
2051
|
)
|
|
2049
2052
|
),
|
|
2050
2053
|
active: t,
|
|
2051
|
-
disabled:
|
|
2054
|
+
disabled: s
|
|
2052
2055
|
}
|
|
2053
|
-
),
|
|
2056
|
+
), X2 = ({
|
|
2054
2057
|
active: t,
|
|
2055
2058
|
className: e = "",
|
|
2056
|
-
disabled:
|
|
2059
|
+
disabled: s
|
|
2057
2060
|
}) => /* @__PURE__ */ n.jsx(
|
|
2058
2061
|
x,
|
|
2059
2062
|
{
|
|
@@ -2097,12 +2100,12 @@ const B6 = () => {
|
|
|
2097
2100
|
)
|
|
2098
2101
|
),
|
|
2099
2102
|
active: t,
|
|
2100
|
-
disabled:
|
|
2103
|
+
disabled: s
|
|
2101
2104
|
}
|
|
2102
|
-
),
|
|
2105
|
+
), Q2 = ({
|
|
2103
2106
|
active: t,
|
|
2104
2107
|
className: e = "",
|
|
2105
|
-
disabled:
|
|
2108
|
+
disabled: s
|
|
2106
2109
|
}) => /* @__PURE__ */ n.jsx(
|
|
2107
2110
|
x,
|
|
2108
2111
|
{
|
|
@@ -2146,12 +2149,12 @@ const B6 = () => {
|
|
|
2146
2149
|
)
|
|
2147
2150
|
),
|
|
2148
2151
|
active: t,
|
|
2149
|
-
disabled:
|
|
2152
|
+
disabled: s
|
|
2150
2153
|
}
|
|
2151
|
-
),
|
|
2154
|
+
), N2 = ({
|
|
2152
2155
|
active: t,
|
|
2153
2156
|
className: e = "",
|
|
2154
|
-
disabled:
|
|
2157
|
+
disabled: s
|
|
2155
2158
|
}) => /* @__PURE__ */ n.jsx(
|
|
2156
2159
|
x,
|
|
2157
2160
|
{
|
|
@@ -2195,12 +2198,12 @@ const B6 = () => {
|
|
|
2195
2198
|
)
|
|
2196
2199
|
),
|
|
2197
2200
|
active: t,
|
|
2198
|
-
disabled:
|
|
2201
|
+
disabled: s
|
|
2199
2202
|
}
|
|
2200
|
-
),
|
|
2203
|
+
), e8 = ({
|
|
2201
2204
|
active: t,
|
|
2202
2205
|
className: e = "",
|
|
2203
|
-
disabled:
|
|
2206
|
+
disabled: s
|
|
2204
2207
|
}) => /* @__PURE__ */ n.jsx(
|
|
2205
2208
|
x,
|
|
2206
2209
|
{
|
|
@@ -2217,12 +2220,12 @@ const B6 = () => {
|
|
|
2217
2220
|
/* @__PURE__ */ n.jsx("svg", { className: e, fill: "currentcolor", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 164.61 164.61", children: /* @__PURE__ */ n.jsx("g", { children: /* @__PURE__ */ n.jsx("path", { d: "M131.62,102.87c-1.96,2.47-6.77,4.24-6.77,4.24l-35.75,12.84v-9.47l26.31-9.37c2.99-1.07,3.44-2.58,1.02-3.38-2.42-.8-6.81-.57-9.8.51l-17.53,6.17v-9.83l1.01-.34s5.07-1.79,12.19-2.58c7.12-.78,15.85.11,22.69,2.7,7.72,2.44,8.59,6.03,6.63,8.51ZM92.51,86.75v-24.22c0-2.84-.52-5.46-3.19-6.2-2.04-.65-3.31,1.24-3.31,4.09v60.65l-16.36-5.19V43.55c6.95,1.29,17.09,4.34,22.53,6.18,13.85,4.76,18.55,10.67,18.55,24.01s-8.02,17.93-18.22,13ZM39.63,109.49c-7.92-2.23-9.24-6.88-5.63-9.56,3.34-2.47,9.01-4.33,9.01-4.33l23.45-8.34v9.51l-16.88,6.04c-2.98,1.07-3.44,2.58-1.02,3.38,2.42.79,6.81.57,9.8-.5l8.1-2.94v8.51c-.51.09-1.09.18-1.61.27-8.1,1.32-16.72.77-25.22-2.03h0ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z" }) }) })
|
|
2218
2221
|
),
|
|
2219
2222
|
active: t,
|
|
2220
|
-
disabled:
|
|
2223
|
+
disabled: s
|
|
2221
2224
|
}
|
|
2222
|
-
),
|
|
2225
|
+
), t8 = ({
|
|
2223
2226
|
active: t,
|
|
2224
2227
|
className: e = "",
|
|
2225
|
-
disabled:
|
|
2228
|
+
disabled: s
|
|
2226
2229
|
}) => /* @__PURE__ */ n.jsx(
|
|
2227
2230
|
x,
|
|
2228
2231
|
{
|
|
@@ -2266,12 +2269,12 @@ const B6 = () => {
|
|
|
2266
2269
|
)
|
|
2267
2270
|
),
|
|
2268
2271
|
active: t,
|
|
2269
|
-
disabled:
|
|
2272
|
+
disabled: s
|
|
2270
2273
|
}
|
|
2271
|
-
),
|
|
2274
|
+
), n8 = ({
|
|
2272
2275
|
active: t,
|
|
2273
2276
|
className: e = "",
|
|
2274
|
-
disabled:
|
|
2277
|
+
disabled: s
|
|
2275
2278
|
}) => /* @__PURE__ */ n.jsx(
|
|
2276
2279
|
x,
|
|
2277
2280
|
{
|
|
@@ -2315,12 +2318,12 @@ const B6 = () => {
|
|
|
2315
2318
|
)
|
|
2316
2319
|
),
|
|
2317
2320
|
active: t,
|
|
2318
|
-
disabled:
|
|
2321
|
+
disabled: s
|
|
2319
2322
|
}
|
|
2320
|
-
),
|
|
2323
|
+
), s8 = ({
|
|
2321
2324
|
active: t,
|
|
2322
2325
|
className: e = "",
|
|
2323
|
-
disabled:
|
|
2326
|
+
disabled: s
|
|
2324
2327
|
}) => /* @__PURE__ */ n.jsx(
|
|
2325
2328
|
x,
|
|
2326
2329
|
{
|
|
@@ -2364,12 +2367,12 @@ const B6 = () => {
|
|
|
2364
2367
|
)
|
|
2365
2368
|
),
|
|
2366
2369
|
active: t,
|
|
2367
|
-
disabled:
|
|
2370
|
+
disabled: s
|
|
2368
2371
|
}
|
|
2369
|
-
),
|
|
2372
|
+
), c8 = ({
|
|
2370
2373
|
active: t,
|
|
2371
2374
|
className: e = "",
|
|
2372
|
-
disabled:
|
|
2375
|
+
disabled: s
|
|
2373
2376
|
}) => /* @__PURE__ */ n.jsx(
|
|
2374
2377
|
x,
|
|
2375
2378
|
{
|
|
@@ -2413,12 +2416,12 @@ const B6 = () => {
|
|
|
2413
2416
|
)
|
|
2414
2417
|
),
|
|
2415
2418
|
active: t,
|
|
2416
|
-
disabled:
|
|
2419
|
+
disabled: s
|
|
2417
2420
|
}
|
|
2418
|
-
),
|
|
2421
|
+
), o8 = ({
|
|
2419
2422
|
active: t,
|
|
2420
2423
|
className: e = "",
|
|
2421
|
-
disabled:
|
|
2424
|
+
disabled: s
|
|
2422
2425
|
}) => /* @__PURE__ */ n.jsx(
|
|
2423
2426
|
x,
|
|
2424
2427
|
{
|
|
@@ -2462,14 +2465,14 @@ const B6 = () => {
|
|
|
2462
2465
|
)
|
|
2463
2466
|
),
|
|
2464
2467
|
active: t,
|
|
2465
|
-
disabled:
|
|
2468
|
+
disabled: s
|
|
2466
2469
|
}
|
|
2467
|
-
),
|
|
2470
|
+
), r8 = ({
|
|
2468
2471
|
active: t,
|
|
2469
2472
|
// Just to shut up the linter on this template. Prefer deleting this lint rule
|
|
2470
2473
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
2471
2474
|
className: e = "",
|
|
2472
|
-
disabled:
|
|
2475
|
+
disabled: s
|
|
2473
2476
|
}) => /* @__PURE__ */ n.jsx(
|
|
2474
2477
|
x,
|
|
2475
2478
|
{
|
|
@@ -2486,7 +2489,6 @@ const B6 = () => {
|
|
|
2486
2489
|
"path",
|
|
2487
2490
|
{
|
|
2488
2491
|
d: "M78.42,76.11v.67c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3ZM75.42,63.11h-28.5c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h28.5c1.66,0,3-1.34,3-3v-.67c0-1.66-1.34-3-3-3ZM74.67,110.78c-2.07,0-3.75,1.68-3.75,3.75s1.68,3.75,3.75,3.75,3.75-1.68,3.75-3.75-1.68-3.75-3.75-3.75ZM164.61,82.3c0,45.38-36.92,82.3-82.3,82.3S0,127.69,0,82.3,36.92,0,82.3,0s82.3,36.92,82.3,82.3ZM82.63,60.68c0-2.15-1.74-3.89-3.89-3.89h-34.83c-2.15,0-3.89,1.74-3.89,3.89v59.64c0,2.15,1.74,3.89,3.89,3.89h34.83c2.15,0,3.89-1.74,3.89-3.89v-59.64ZM124.59,44.82c0-2.44-1.98-4.43-4.43-4.43H54.78c-2.44,0-4.43,1.98-4.43,4.43v6.96h6.06v-1.66c0-1.47,1.19-2.66,2.66-2.66h56.8c1.47,0,2.66,1.19,2.66,2.66v32.53c0,1.47-1.19,2.66-2.66,2.66h-28.24v20.48h21.98c0-4.6-5.41-11.57-13.23-13.41h23.77c2.44,0,4.43-1.98,4.43-4.43v-43.13Z",
|
|
2489
|
-
fill: "#000",
|
|
2490
2492
|
"stroke-width": "0"
|
|
2491
2493
|
}
|
|
2492
2494
|
) })
|
|
@@ -2506,7 +2508,6 @@ const B6 = () => {
|
|
|
2506
2508
|
"path",
|
|
2507
2509
|
{
|
|
2508
2510
|
d: "M82.3,0C36.92,0,0,36.92,0,82.3s36.92,82.3,82.3,82.3,82.3-36.92,82.3-82.3S127.69,0,82.3,0ZM82.3,5c19.83,0,37.93,7.51,51.63,19.83L24.83,133.93c-12.32-13.7-19.83-31.8-19.83-51.63C5,39.68,39.68,5,82.3,5ZM82.3,159.61c-19.83,0-37.93-7.51-51.63-19.83L139.78,30.68c12.32,13.7,19.82,31.8,19.82,51.63,0,42.63-34.68,77.3-77.3,77.3ZM56.41,51.79h-6.06v-6.96c0-2.44,1.98-4.43,4.43-4.43h50.95l-7.07,7.07h-39.58c-1.47,0-2.66,1.19-2.66,2.66v1.66ZM40.02,106.1v-45.42c0-2.15,1.74-3.89,3.89-3.89h34.83c2.15,0,3.89,1.74,3.89,3.89v2.81l-4.45,4.45c.15-.36.23-.75.23-1.16v-.67c0-1.66-1.34-3-3-3h-28.5c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h28.5c.41,0,.8-.08,1.16-.23l-3.57,3.57h-26.09c-1.66,0-3,1.34-3,3v.67c0,1.66,1.34,3,3,3h19.43l-26.32,26.32ZM124.59,58.5v29.46c0,2.44-1.98,4.43-4.43,4.43h-23.77c7.81,1.84,13.23,8.81,13.23,13.41h-21.98v-10.34l10.15-10.15h18.09c1.47,0,2.66-1.19,2.66-2.66v-18.09l6.06-6.06ZM58.88,124.21h19.86c2.15,0,3.89-1.74,3.89-3.89v-19.86l-23.75,23.75ZM74.67,118.28c-2.07,0-3.75-1.68-3.75-3.75s1.68-3.75,3.75-3.75,3.75,1.68,3.75,3.75-1.68,3.75-3.75,3.75Z",
|
|
2509
|
-
fill: "#000",
|
|
2510
2511
|
"stroke-width": "0"
|
|
2511
2512
|
}
|
|
2512
2513
|
) })
|
|
@@ -2526,7 +2527,6 @@ const B6 = () => {
|
|
|
2526
2527
|
"path",
|
|
2527
2528
|
{
|
|
2528
2529
|
d: "M78.74,56.79h-34.83c-2.15,0-3.89,1.74-3.89,3.89v59.64c0,2.15,1.74,3.89,3.89,3.89h34.83c2.15,0,3.89-1.74,3.89-3.89v-59.64c0-2.15-1.74-3.89-3.89-3.89ZM74.67,118.28c-2.07,0-3.75-1.68-3.75-3.75s1.68-3.75,3.75-3.75,3.75,1.68,3.75,3.75-1.68,3.75-3.75,3.75ZM78.42,76.78c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3v.67ZM78.42,66.78c0,1.66-1.34,3-3,3h-28.5c-1.66,0-3-1.34-3-3v-.67c0-1.66,1.34-3,3-3h28.5c1.66,0,3,1.34,3,3v.67ZM124.59,44.82v43.13c0,2.44-1.98,4.43-4.43,4.43h-23.77c7.81,1.84,13.23,8.81,13.23,13.41h-21.98v-20.48h28.24c1.47,0,2.66-1.19,2.66-2.66v-32.53c0-1.47-1.19-2.66-2.66-2.66h-56.8c-1.47,0-2.66,1.19-2.66,2.66v1.66h-6.06v-6.96c0-2.44,1.98-4.43,4.43-4.43h65.38c2.44,0,4.43,1.98,4.43,4.43ZM82.3,164.61C36.92,164.61,0,127.69,0,82.3S36.92,0,82.3,0s82.3,36.92,82.3,82.3-36.92,82.3-82.3,82.3ZM82.3,5C39.68,5,5,39.68,5,82.3s34.68,77.3,77.3,77.3,77.3-34.68,77.3-77.3S124.93,5,82.3,5Z",
|
|
2529
|
-
fill: "#000",
|
|
2530
2530
|
"stroke-width": "0"
|
|
2531
2531
|
}
|
|
2532
2532
|
) }) })
|
|
@@ -2534,12 +2534,12 @@ const B6 = () => {
|
|
|
2534
2534
|
)
|
|
2535
2535
|
),
|
|
2536
2536
|
active: t,
|
|
2537
|
-
disabled:
|
|
2537
|
+
disabled: s
|
|
2538
2538
|
}
|
|
2539
|
-
),
|
|
2539
|
+
), l8 = ({
|
|
2540
2540
|
active: t,
|
|
2541
2541
|
className: e = "",
|
|
2542
|
-
disabled:
|
|
2542
|
+
disabled: s
|
|
2543
2543
|
}) => /* @__PURE__ */ n.jsx(
|
|
2544
2544
|
x,
|
|
2545
2545
|
{
|
|
@@ -2583,12 +2583,12 @@ const B6 = () => {
|
|
|
2583
2583
|
)
|
|
2584
2584
|
),
|
|
2585
2585
|
active: t,
|
|
2586
|
-
disabled:
|
|
2586
|
+
disabled: s
|
|
2587
2587
|
}
|
|
2588
|
-
),
|
|
2588
|
+
), i8 = ({
|
|
2589
2589
|
active: t,
|
|
2590
2590
|
className: e = "",
|
|
2591
|
-
disabled:
|
|
2591
|
+
disabled: s
|
|
2592
2592
|
}) => /* @__PURE__ */ n.jsx(
|
|
2593
2593
|
x,
|
|
2594
2594
|
{
|
|
@@ -2632,12 +2632,12 @@ const B6 = () => {
|
|
|
2632
2632
|
)
|
|
2633
2633
|
),
|
|
2634
2634
|
active: t,
|
|
2635
|
-
disabled:
|
|
2635
|
+
disabled: s
|
|
2636
2636
|
}
|
|
2637
|
-
),
|
|
2637
|
+
), a8 = ({
|
|
2638
2638
|
active: t,
|
|
2639
2639
|
className: e = "",
|
|
2640
|
-
disabled:
|
|
2640
|
+
disabled: s
|
|
2641
2641
|
}) => /* @__PURE__ */ n.jsx(
|
|
2642
2642
|
x,
|
|
2643
2643
|
{
|
|
@@ -2681,12 +2681,12 @@ const B6 = () => {
|
|
|
2681
2681
|
)
|
|
2682
2682
|
),
|
|
2683
2683
|
active: t,
|
|
2684
|
-
disabled:
|
|
2684
|
+
disabled: s
|
|
2685
2685
|
}
|
|
2686
|
-
),
|
|
2686
|
+
), u8 = ({
|
|
2687
2687
|
active: t,
|
|
2688
2688
|
className: e = "",
|
|
2689
|
-
disabled:
|
|
2689
|
+
disabled: s
|
|
2690
2690
|
}) => /* @__PURE__ */ n.jsx(
|
|
2691
2691
|
x,
|
|
2692
2692
|
{
|
|
@@ -2730,12 +2730,12 @@ const B6 = () => {
|
|
|
2730
2730
|
)
|
|
2731
2731
|
),
|
|
2732
2732
|
active: t,
|
|
2733
|
-
disabled:
|
|
2733
|
+
disabled: s
|
|
2734
2734
|
}
|
|
2735
|
-
),
|
|
2735
|
+
), d8 = ({
|
|
2736
2736
|
active: t,
|
|
2737
2737
|
className: e = "",
|
|
2738
|
-
disabled:
|
|
2738
|
+
disabled: s
|
|
2739
2739
|
}) => /* @__PURE__ */ n.jsx(
|
|
2740
2740
|
x,
|
|
2741
2741
|
{
|
|
@@ -2779,12 +2779,12 @@ const B6 = () => {
|
|
|
2779
2779
|
)
|
|
2780
2780
|
),
|
|
2781
2781
|
active: t,
|
|
2782
|
-
disabled:
|
|
2782
|
+
disabled: s
|
|
2783
2783
|
}
|
|
2784
|
-
),
|
|
2784
|
+
), v8 = ({
|
|
2785
2785
|
active: t,
|
|
2786
2786
|
className: e = "",
|
|
2787
|
-
disabled:
|
|
2787
|
+
disabled: s
|
|
2788
2788
|
}) => /* @__PURE__ */ n.jsx(
|
|
2789
2789
|
x,
|
|
2790
2790
|
{
|
|
@@ -2828,12 +2828,12 @@ const B6 = () => {
|
|
|
2828
2828
|
)
|
|
2829
2829
|
),
|
|
2830
2830
|
active: t,
|
|
2831
|
-
disabled:
|
|
2831
|
+
disabled: s
|
|
2832
2832
|
}
|
|
2833
|
-
),
|
|
2833
|
+
), h8 = ({
|
|
2834
2834
|
active: t,
|
|
2835
2835
|
className: e = "",
|
|
2836
|
-
disabled:
|
|
2836
|
+
disabled: s
|
|
2837
2837
|
}) => /* @__PURE__ */ n.jsx(
|
|
2838
2838
|
x,
|
|
2839
2839
|
{
|
|
@@ -2877,12 +2877,12 @@ const B6 = () => {
|
|
|
2877
2877
|
)
|
|
2878
2878
|
),
|
|
2879
2879
|
active: t,
|
|
2880
|
-
disabled:
|
|
2880
|
+
disabled: s
|
|
2881
2881
|
}
|
|
2882
|
-
),
|
|
2882
|
+
), g8 = ({
|
|
2883
2883
|
active: t,
|
|
2884
2884
|
className: e = "",
|
|
2885
|
-
disabled:
|
|
2885
|
+
disabled: s
|
|
2886
2886
|
}) => /* @__PURE__ */ n.jsx(
|
|
2887
2887
|
x,
|
|
2888
2888
|
{
|
|
@@ -2926,12 +2926,12 @@ const B6 = () => {
|
|
|
2926
2926
|
)
|
|
2927
2927
|
),
|
|
2928
2928
|
active: t,
|
|
2929
|
-
disabled:
|
|
2929
|
+
disabled: s
|
|
2930
2930
|
}
|
|
2931
|
-
),
|
|
2931
|
+
), f8 = ({
|
|
2932
2932
|
active: t,
|
|
2933
2933
|
className: e = "",
|
|
2934
|
-
disabled:
|
|
2934
|
+
disabled: s
|
|
2935
2935
|
}) => /* @__PURE__ */ n.jsx(
|
|
2936
2936
|
x,
|
|
2937
2937
|
{
|
|
@@ -2975,12 +2975,12 @@ const B6 = () => {
|
|
|
2975
2975
|
)
|
|
2976
2976
|
),
|
|
2977
2977
|
active: t,
|
|
2978
|
-
disabled:
|
|
2978
|
+
disabled: s
|
|
2979
2979
|
}
|
|
2980
|
-
),
|
|
2980
|
+
), w8 = ({
|
|
2981
2981
|
active: t,
|
|
2982
2982
|
className: e = "",
|
|
2983
|
-
disabled:
|
|
2983
|
+
disabled: s
|
|
2984
2984
|
}) => /* @__PURE__ */ n.jsx(
|
|
2985
2985
|
x,
|
|
2986
2986
|
{
|
|
@@ -3024,235 +3024,238 @@ const B6 = () => {
|
|
|
3024
3024
|
)
|
|
3025
3025
|
),
|
|
3026
3026
|
active: t,
|
|
3027
|
-
disabled:
|
|
3028
|
-
}
|
|
3029
|
-
),
|
|
3030
|
-
Alert:
|
|
3031
|
-
Camera:
|
|
3032
|
-
DownArrow:
|
|
3033
|
-
Ban:
|
|
3034
|
-
Check:
|
|
3035
|
-
Controller:
|
|
3036
|
-
Elipses:
|
|
3037
|
-
Flag:
|
|
3038
|
-
Gear:
|
|
3039
|
-
Glass:
|
|
3040
|
-
Hdmi:
|
|
3041
|
-
Laptop:
|
|
3042
|
-
LeftArrow:
|
|
3043
|
-
Light:
|
|
3044
|
-
Mic:
|
|
3045
|
-
Moon:
|
|
3046
|
-
Playstation:
|
|
3047
|
-
Podium:
|
|
3048
|
-
Power:
|
|
3049
|
-
Privacy:
|
|
3050
|
-
Question:
|
|
3051
|
-
RightArrow:
|
|
3052
|
-
RoomPC:
|
|
3053
|
-
Shade:
|
|
3054
|
-
Sun:
|
|
3055
|
-
UpArrow:
|
|
3056
|
-
VolDown:
|
|
3057
|
-
VolMute:
|
|
3058
|
-
VolUp:
|
|
3059
|
-
Wireless:
|
|
3060
|
-
X:
|
|
3061
|
-
Xbox:
|
|
3027
|
+
disabled: s
|
|
3028
|
+
}
|
|
3029
|
+
), p8 = {
|
|
3030
|
+
Alert: V2,
|
|
3031
|
+
Camera: k2,
|
|
3032
|
+
DownArrow: H2,
|
|
3033
|
+
Ban: F2,
|
|
3034
|
+
Check: U2,
|
|
3035
|
+
Controller: W2,
|
|
3036
|
+
Elipses: K2,
|
|
3037
|
+
Flag: G2,
|
|
3038
|
+
Gear: q2,
|
|
3039
|
+
Glass: Y2,
|
|
3040
|
+
Hdmi: J2,
|
|
3041
|
+
Laptop: z2,
|
|
3042
|
+
LeftArrow: X2,
|
|
3043
|
+
Light: Q2,
|
|
3044
|
+
Mic: w8,
|
|
3045
|
+
Moon: N2,
|
|
3046
|
+
Playstation: e8,
|
|
3047
|
+
Podium: t8,
|
|
3048
|
+
Power: n8,
|
|
3049
|
+
Privacy: s8,
|
|
3050
|
+
Question: c8,
|
|
3051
|
+
RightArrow: o8,
|
|
3052
|
+
RoomPC: r8,
|
|
3053
|
+
Shade: l8,
|
|
3054
|
+
Sun: i8,
|
|
3055
|
+
UpArrow: a8,
|
|
3056
|
+
VolDown: u8,
|
|
3057
|
+
VolMute: d8,
|
|
3058
|
+
VolUp: v8,
|
|
3059
|
+
Wireless: h8,
|
|
3060
|
+
X: g8,
|
|
3061
|
+
Xbox: f8
|
|
3062
3062
|
};
|
|
3063
|
-
function
|
|
3063
|
+
function O6({
|
|
3064
3064
|
name: t,
|
|
3065
|
-
iconsDictionary: e =
|
|
3066
|
-
...
|
|
3065
|
+
iconsDictionary: e = p8,
|
|
3066
|
+
...s
|
|
3067
3067
|
}) {
|
|
3068
3068
|
const o = e[t] ?? null;
|
|
3069
|
-
return o || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ n.jsx(
|
|
3069
|
+
return o || console.error(`Icon ${t} not found in dictionary`), /* @__PURE__ */ n.jsx(O2, { multiIcon: o, ...s });
|
|
3070
3070
|
}
|
|
3071
|
-
const
|
|
3072
|
-
grid:
|
|
3073
|
-
header:
|
|
3074
|
-
content:
|
|
3075
|
-
footer:
|
|
3076
|
-
volume:
|
|
3077
|
-
},
|
|
3078
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
3079
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
3080
|
-
l && /* @__PURE__ */ n.jsx("div", { className:
|
|
3081
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
3082
|
-
] }),
|
|
3083
|
-
grid: m8,
|
|
3084
|
-
header: Z8,
|
|
3085
|
-
content: j8,
|
|
3086
|
-
"left-nav": "_left-nav_11w5q_23"
|
|
3087
|
-
}, P6 = ({ className: t, header: e, content: c, leftNav: o }) => /* @__PURE__ */ n.jsxs("div", { className: `${t} ${d1.grid}`, children: [
|
|
3088
|
-
/* @__PURE__ */ n.jsx("div", { className: d1.header, children: e }),
|
|
3089
|
-
o && /* @__PURE__ */ n.jsx("div", { className: d1.leftNav, children: o }),
|
|
3090
|
-
/* @__PURE__ */ n.jsx("div", { className: d1.content, children: c })
|
|
3091
|
-
] }), C8 = "_grid_1uwfo_1", S8 = "_header_1uwfo_11", b8 = "_content_1uwfo_17", S1 = {
|
|
3071
|
+
const x8 = "_grid_1cmpp_1", M8 = "_header_1cmpp_11", m8 = "_content_1cmpp_17", Z8 = "_footer_1cmpp_23", j8 = "_volume_1cmpp_29", r1 = {
|
|
3072
|
+
grid: x8,
|
|
3073
|
+
header: M8,
|
|
3074
|
+
content: m8,
|
|
3075
|
+
footer: Z8,
|
|
3076
|
+
volume: j8
|
|
3077
|
+
}, V6 = ({ header: t, footer: e, content: s, volume: o, showVolume: l }) => /* @__PURE__ */ n.jsxs("div", { className: r1.grid, children: [
|
|
3078
|
+
/* @__PURE__ */ n.jsx("div", { className: r1.header, children: t }),
|
|
3079
|
+
/* @__PURE__ */ n.jsx("div", { className: r1.content, children: s }),
|
|
3080
|
+
l && /* @__PURE__ */ n.jsx("div", { className: r1.volume, children: o }),
|
|
3081
|
+
/* @__PURE__ */ n.jsx("div", { className: r1.footer, children: e })
|
|
3082
|
+
] }), C8 = "_grid_11w5q_1", S8 = "_header_11w5q_11", b8 = "_content_11w5q_17", h1 = {
|
|
3092
3083
|
grid: C8,
|
|
3093
3084
|
header: S8,
|
|
3094
|
-
content: b8
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
/* @__PURE__ */ n.jsx("div", { className:
|
|
3085
|
+
content: b8,
|
|
3086
|
+
"left-nav": "_left-nav_11w5q_23"
|
|
3087
|
+
}, F6 = ({ className: t, header: e, content: s, leftNav: o }) => /* @__PURE__ */ n.jsxs("div", { className: `${t} ${h1.grid}`, children: [
|
|
3088
|
+
/* @__PURE__ */ n.jsx("div", { className: h1.header, children: e }),
|
|
3089
|
+
o && /* @__PURE__ */ n.jsx("div", { className: h1.leftNav, children: o }),
|
|
3090
|
+
/* @__PURE__ */ n.jsx("div", { className: h1.content, children: s })
|
|
3091
|
+
] }), I8 = "_grid_1uwfo_1", y8 = "_header_1uwfo_11", R8 = "_content_1uwfo_17", y1 = {
|
|
3092
|
+
grid: I8,
|
|
3093
|
+
header: y8,
|
|
3094
|
+
content: R8
|
|
3095
|
+
}, k6 = ({ className: t, header: e, content: s }) => /* @__PURE__ */ n.jsxs("div", { className: `${t} ${y1.grid}`, children: [
|
|
3096
|
+
/* @__PURE__ */ n.jsx("div", { className: y1.header, children: e }),
|
|
3097
|
+
/* @__PURE__ */ n.jsx("div", { className: y1.content, children: s })
|
|
3098
3098
|
] });
|
|
3099
|
-
function
|
|
3099
|
+
function U6() {
|
|
3100
3100
|
return console.log(location.pathname), location.pathname;
|
|
3101
3101
|
}
|
|
3102
|
-
var
|
|
3103
|
-
class
|
|
3104
|
-
constructor(e,
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
this.path = e, this.handler =
|
|
3102
|
+
var E8 = /* @__PURE__ */ ((t) => (t[t.NotSet = 0] = "NotSet", t[t.Sunday = 1] = "Sunday", t[t.Monday = 2] = "Monday", t[t.Tuesday = 4] = "Tuesday", t[t.Wednesday = 8] = "Wednesday", t[t.Thursday = 16] = "Thursday", t[t.Friday = 32] = "Friday", t[t.Saturday = 64] = "Saturday", t))(E8 || {});
|
|
3103
|
+
class W6 {
|
|
3104
|
+
constructor(e, s) {
|
|
3105
|
+
L(this, "path");
|
|
3106
|
+
L(this, "handler");
|
|
3107
|
+
this.path = e, this.handler = s;
|
|
3108
3108
|
}
|
|
3109
3109
|
}
|
|
3110
|
-
const
|
|
3111
|
-
class
|
|
3110
|
+
const H6 = "$off";
|
|
3111
|
+
class K6 {
|
|
3112
3112
|
constructor() {
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3113
|
+
L(this, "name", "");
|
|
3114
|
+
L(this, "iconUrl", "");
|
|
3115
|
+
L(this, "channel", "");
|
|
3116
3116
|
}
|
|
3117
3117
|
}
|
|
3118
|
-
class
|
|
3118
|
+
class G6 {
|
|
3119
3119
|
constructor() {
|
|
3120
|
-
|
|
3121
|
-
|
|
3120
|
+
L(this, "deviceKey");
|
|
3121
|
+
L(this, "deviceType");
|
|
3122
3122
|
}
|
|
3123
3123
|
}
|
|
3124
|
-
class
|
|
3124
|
+
class q6 {
|
|
3125
3125
|
constructor() {
|
|
3126
|
-
|
|
3127
|
-
|
|
3126
|
+
L(this, "deviceKey");
|
|
3127
|
+
L(this, "deviceType");
|
|
3128
3128
|
}
|
|
3129
3129
|
}
|
|
3130
|
-
class
|
|
3130
|
+
class Y6 {
|
|
3131
3131
|
constructor() {
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3132
|
+
L(this, "currentShareText");
|
|
3133
|
+
L(this, "enabled");
|
|
3134
|
+
L(this, "isSharing");
|
|
3135
3135
|
}
|
|
3136
3136
|
}
|
|
3137
3137
|
export {
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3138
|
+
q6 as AccessoryDeviceConfiguration,
|
|
3139
|
+
f6 as Clock,
|
|
3140
|
+
E8 as DaysOfWeek,
|
|
3141
|
+
G6 as EnvironmentalDeviceConfiguration,
|
|
3142
|
+
P6 as ErrorBox,
|
|
3143
|
+
O2 as IconButton,
|
|
3144
|
+
V2 as IconMultiAlert,
|
|
3145
|
+
F2 as IconMultiBan,
|
|
3146
|
+
k2 as IconMultiCamera,
|
|
3147
|
+
U2 as IconMultiCheck,
|
|
3148
|
+
W2 as IconMultiController,
|
|
3149
|
+
H2 as IconMultiDownArrow,
|
|
3150
|
+
K2 as IconMultiElipses,
|
|
3151
|
+
G2 as IconMultiFlag,
|
|
3152
|
+
q2 as IconMultiGear,
|
|
3153
|
+
Y2 as IconMultiGlass,
|
|
3154
|
+
J2 as IconMultiHdmi,
|
|
3155
|
+
z2 as IconMultiLaptop,
|
|
3156
|
+
X2 as IconMultiLeftArrow,
|
|
3157
|
+
Q2 as IconMultiLight,
|
|
3158
|
+
N2 as IconMultiMoon,
|
|
3159
|
+
e8 as IconMultiPlaystation,
|
|
3160
|
+
t8 as IconMultiPodium,
|
|
3161
|
+
n8 as IconMultiPower,
|
|
3162
|
+
s8 as IconMultiPrivacy,
|
|
3163
|
+
c8 as IconMultiQuestion,
|
|
3164
|
+
o8 as IconMultiRightArrow,
|
|
3165
|
+
r8 as IconMultiRoomPC,
|
|
3166
|
+
l8 as IconMultiShade,
|
|
3167
|
+
i8 as IconMultiSun,
|
|
3168
|
+
a8 as IconMultiUpArrow,
|
|
3169
|
+
u8 as IconMultiVolDown,
|
|
3170
|
+
d8 as IconMultiVolMute,
|
|
3171
|
+
v8 as IconMultiVolUp,
|
|
3172
|
+
h8 as IconMultiWireless,
|
|
3173
|
+
g8 as IconMultiX,
|
|
3174
|
+
f8 as IconMultiXbox,
|
|
3175
|
+
V6 as MainLayout,
|
|
3176
|
+
W6 as MessageHandler,
|
|
3177
|
+
o6 as MobileControlProvider,
|
|
3178
3178
|
x as MultiStateIconContainer,
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3179
|
+
O6 as NamedIconButton,
|
|
3180
|
+
K6 as PresetChannel,
|
|
3181
|
+
Y6 as ShareState,
|
|
3182
|
+
F6 as TechLayout,
|
|
3183
|
+
k6 as TechPinLayout,
|
|
3184
|
+
U6 as getBaseLocation,
|
|
3185
|
+
R1 as httpClient,
|
|
3186
|
+
H6 as roomOffSourceKey,
|
|
3187
|
+
H as store,
|
|
3188
|
+
D8 as uiActions,
|
|
3189
3189
|
v2 as uiReducer,
|
|
3190
|
-
|
|
3190
|
+
P8 as useApiPath,
|
|
3191
3191
|
g2 as useAppConfig,
|
|
3192
|
-
|
|
3193
|
-
|
|
3192
|
+
C2 as useAppDispatch,
|
|
3193
|
+
l6 as useAvrControl,
|
|
3194
3194
|
M2 as useClientId,
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3195
|
+
A2 as useDeviceIBasicVolumeWithFeedback,
|
|
3196
|
+
i6 as useEndpoint,
|
|
3197
|
+
B6 as useGetAllDeviceStateFromRoomConfiguration,
|
|
3198
3198
|
f2 as useGetAllDevices,
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3199
|
+
s6 as useGetCurrentPopoverIdForGroup,
|
|
3200
|
+
$ as useGetDevice,
|
|
3201
|
+
r6 as useGetIBasicVolumeWithFeedback,
|
|
3202
|
+
Q8 as useGetRoomDisplayStates,
|
|
3203
|
+
N8 as useGetZoomRoomControllerKey,
|
|
3204
|
+
g3 as useIBasicVolumeWithFeedback,
|
|
3205
|
+
a6 as useIChannelMessenger,
|
|
3206
|
+
u6 as useIColor,
|
|
3207
|
+
d6 as useICommunicationMonitor,
|
|
3208
|
+
v6 as useIDPad,
|
|
3209
|
+
h6 as useIDeviceInfoMessenger,
|
|
3210
|
+
g6 as useIDvr,
|
|
3211
|
+
w6 as useIEssentialsRoomCombiner,
|
|
3212
|
+
f3 as useIHasPowerControl,
|
|
3213
|
+
_1 as useIHasSelectableItems,
|
|
3214
|
+
p6 as useILevelControls,
|
|
3215
|
+
x6 as useILightingScenes,
|
|
3216
|
+
M6 as useIMatrixRouting,
|
|
3217
|
+
m6 as useIMcCiscoCodecUserInterfaceAppControl,
|
|
3218
|
+
Z6 as useINumeric,
|
|
3219
|
+
j6 as useIProjectorScreenLiftControl,
|
|
3220
|
+
C6 as useIRoomEventSchedule,
|
|
3221
|
+
S6 as useIRunDirectRouteAction,
|
|
3222
|
+
b6 as useIRunRouteAction,
|
|
3223
|
+
I6 as useISetTopBoxControls,
|
|
3224
|
+
y6 as useIShadesOpenCloseStop,
|
|
3225
|
+
R6 as useIShutdownPromptTimer,
|
|
3226
|
+
E6 as useISwitchedOutput,
|
|
3227
|
+
_6 as useITechPassword,
|
|
3228
|
+
L6 as useITransport,
|
|
3229
|
+
S2 as useInitialize,
|
|
3230
|
+
$6 as useMobileControlTouchpanelController,
|
|
3231
|
+
$2 as usePressHoldRelease,
|
|
3232
|
+
z8 as useRoomAdvancedSharingActive,
|
|
3233
|
+
K8 as useRoomCodecContentDestinationKey,
|
|
3234
|
+
O8 as useRoomConfiguration,
|
|
3235
|
+
U8 as useRoomDestinationList,
|
|
3236
|
+
k8 as useRoomDestinations,
|
|
3237
|
+
W8 as useRoomEnvironmentalDevices,
|
|
3238
|
+
T6 as useRoomIBasicVolumeWithFeedback,
|
|
3239
|
+
G8 as useRoomInCall,
|
|
3240
|
+
Y8 as useRoomIsCoolingDown,
|
|
3241
|
+
J8 as useRoomIsOn,
|
|
3242
|
+
q8 as useRoomIsWarmingUp,
|
|
3243
3243
|
x2 as useRoomKey,
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3244
|
+
V8 as useRoomName,
|
|
3245
|
+
H8 as useRoomProgramAudioDestinationKey,
|
|
3246
|
+
X8 as useRoomShareState,
|
|
3247
|
+
F8 as useRoomSourceList,
|
|
3248
|
+
L1 as useRoomState,
|
|
3249
3249
|
w2 as useRoomVolume,
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3250
|
+
m2 as useServerIsRunningOnProcessorHardware,
|
|
3251
|
+
t6 as useShowIncomingCallModal,
|
|
3252
|
+
n6 as useShowModal,
|
|
3253
|
+
c6 as useShowPopoverById,
|
|
3254
|
+
e6 as useShowShutdownModal,
|
|
3255
|
+
Z2 as useSystemUuid,
|
|
3256
|
+
D6 as useTimeAndDate,
|
|
3257
|
+
A6 as useTwoWayDisplayBase,
|
|
3258
|
+
j2 as useUserCode,
|
|
3259
|
+
I as useWebsocketContext,
|
|
3257
3260
|
p2 as useWsIsConnected
|
|
3258
3261
|
};
|