@tracktor/shared-module 2.9.4 → 2.11.0
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/CHANGELOG.md +2 -2
- package/dist/components/Utils/InitializeSentryConfig.d.ts +1 -1
- package/dist/context/InjectDependenciesProvider.d.ts +0 -1
- package/dist/hooks/useAdapter.d.ts +4 -1
- package/dist/main.d.ts +0 -2
- package/dist/main.js +157 -163
- package/dist/main.umd.cjs +7 -7
- package/dist/utils/adapter/distanceAdapter.d.ts +5 -2
- package/package.json +1 -1
- package/dist/components/Utils/InitializeMapBoxConfig.d.ts +0 -19
package/CHANGELOG.md
CHANGED
|
@@ -11,7 +11,10 @@ export interface useAdapterParams {
|
|
|
11
11
|
*/
|
|
12
12
|
export declare const useAdapter: (params?: useAdapterParams) => {
|
|
13
13
|
dateAdapter: (date: string | number | Date | null | undefined, format?: string) => string;
|
|
14
|
-
distanceAdapter: (distance?: string | number | null | undefined,
|
|
14
|
+
distanceAdapter: (distance?: string | number | null | undefined, options?: {
|
|
15
|
+
fractionDigits?: number | undefined;
|
|
16
|
+
metric?: string | undefined;
|
|
17
|
+
} | undefined) => string;
|
|
15
18
|
filePathAdapter: (path?: string | null, size?: number | "full") => string;
|
|
16
19
|
worksiteNameAdapter: (name: unknown) => string;
|
|
17
20
|
};
|
package/dist/main.d.ts
CHANGED
|
@@ -10,8 +10,6 @@ export { default as InitializeSentryConfig } from './components/Utils/Initialize
|
|
|
10
10
|
export * from './components/Utils/InitializeSentryConfig';
|
|
11
11
|
export { default as MaskTextField } from './components/Inputs/MaskTextField';
|
|
12
12
|
export * from './components/Inputs/MaskTextField';
|
|
13
|
-
export { default as InitializeMapBoxConfig } from './components/Utils/InitializeMapBoxConfig';
|
|
14
|
-
export * from './components/Utils/InitializeMapBoxConfig';
|
|
15
13
|
export { default as InitializeDaysJSConfig } from './components/Utils/InitializeDaysJSConfig';
|
|
16
14
|
export * from './components/Utils/InitializeDaysJSConfig';
|
|
17
15
|
export { default as PreloadErrorHandler } from './components/Utils/PreloadErrorHandler';
|
package/dist/main.js
CHANGED
|
@@ -15,11 +15,11 @@ function Et() {
|
|
|
15
15
|
Ne = 1;
|
|
16
16
|
var t = Ve, n = Symbol.for("react.element"), o = Symbol.for("react.fragment"), i = Object.prototype.hasOwnProperty, a = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, l = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
17
17
|
function f(d, u, m) {
|
|
18
|
-
var g,
|
|
18
|
+
var g, C = {}, b = null, s = null;
|
|
19
19
|
m !== void 0 && (b = "" + m), u.key !== void 0 && (b = "" + u.key), u.ref !== void 0 && (s = u.ref);
|
|
20
|
-
for (g in u) i.call(u, g) && !l.hasOwnProperty(g) && (
|
|
21
|
-
if (d && d.defaultProps) for (g in u = d.defaultProps, u)
|
|
22
|
-
return { $$typeof: n, type: d, key: b, ref: s, props:
|
|
20
|
+
for (g in u) i.call(u, g) && !l.hasOwnProperty(g) && (C[g] = u[g]);
|
|
21
|
+
if (d && d.defaultProps) for (g in u = d.defaultProps, u) C[g] === void 0 && (C[g] = u[g]);
|
|
22
|
+
return { $$typeof: n, type: d, key: b, ref: s, props: C, _owner: a.current };
|
|
23
23
|
}
|
|
24
24
|
return K.Fragment = o, K.jsx = f, K.jsxs = f, K;
|
|
25
25
|
}
|
|
@@ -34,13 +34,13 @@ var q = {};
|
|
|
34
34
|
* LICENSE file in the root directory of this source tree.
|
|
35
35
|
*/
|
|
36
36
|
var Ye;
|
|
37
|
-
function
|
|
37
|
+
function Rt() {
|
|
38
38
|
return Ye || (Ye = 1, process.env.NODE_ENV !== "production" && function() {
|
|
39
|
-
var t = Ve, n = Symbol.for("react.element"), o = Symbol.for("react.portal"), i = Symbol.for("react.fragment"), a = Symbol.for("react.strict_mode"), l = Symbol.for("react.profiler"), f = Symbol.for("react.provider"), d = Symbol.for("react.context"), u = Symbol.for("react.forward_ref"), m = Symbol.for("react.suspense"), g = Symbol.for("react.suspense_list"),
|
|
39
|
+
var t = Ve, n = Symbol.for("react.element"), o = Symbol.for("react.portal"), i = Symbol.for("react.fragment"), a = Symbol.for("react.strict_mode"), l = Symbol.for("react.profiler"), f = Symbol.for("react.provider"), d = Symbol.for("react.context"), u = Symbol.for("react.forward_ref"), m = Symbol.for("react.suspense"), g = Symbol.for("react.suspense_list"), C = Symbol.for("react.memo"), b = Symbol.for("react.lazy"), s = Symbol.for("react.offscreen"), S = Symbol.iterator, w = "@@iterator";
|
|
40
40
|
function P(e) {
|
|
41
41
|
if (e === null || typeof e != "object")
|
|
42
42
|
return null;
|
|
43
|
-
var r =
|
|
43
|
+
var r = S && e[S] || e[w];
|
|
44
44
|
return typeof r == "function" ? r : null;
|
|
45
45
|
}
|
|
46
46
|
var h = t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
@@ -48,13 +48,13 @@ function wt() {
|
|
|
48
48
|
{
|
|
49
49
|
for (var r = arguments.length, c = new Array(r > 1 ? r - 1 : 0), v = 1; v < r; v++)
|
|
50
50
|
c[v - 1] = arguments[v];
|
|
51
|
-
|
|
51
|
+
x("error", e, c);
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
|
-
function
|
|
54
|
+
function x(e, r, c) {
|
|
55
55
|
{
|
|
56
|
-
var v = h.ReactDebugCurrentFrame,
|
|
57
|
-
|
|
56
|
+
var v = h.ReactDebugCurrentFrame, R = v.getStackAddendum();
|
|
57
|
+
R !== "" && (r += "%s", c = c.concat([R]));
|
|
58
58
|
var p = c.map(function(E) {
|
|
59
59
|
return String(E);
|
|
60
60
|
});
|
|
@@ -64,18 +64,18 @@ function wt() {
|
|
|
64
64
|
var F = !1, L = !1, $ = !1, T = !1, ge = !1, ne;
|
|
65
65
|
ne = Symbol.for("react.module.reference");
|
|
66
66
|
function B(e) {
|
|
67
|
-
return !!(typeof e == "string" || typeof e == "function" || e === i || e === l || ge || e === a || e === m || e === g || T || e === s || F || L || $ || typeof e == "object" && e !== null && (e.$$typeof === b || e.$$typeof ===
|
|
67
|
+
return !!(typeof e == "string" || typeof e == "function" || e === i || e === l || ge || e === a || e === m || e === g || T || e === s || F || L || $ || typeof e == "object" && e !== null && (e.$$typeof === b || e.$$typeof === C || e.$$typeof === f || e.$$typeof === d || e.$$typeof === u || // This needs to include all possible module reference object
|
|
68
68
|
// types supported by any Flight configuration anywhere since
|
|
69
69
|
// we don't know which Flight build this will end up being used
|
|
70
70
|
// with.
|
|
71
71
|
e.$$typeof === ne || e.getModuleId !== void 0));
|
|
72
72
|
}
|
|
73
|
-
function
|
|
73
|
+
function Ue(e, r, c) {
|
|
74
74
|
var v = e.displayName;
|
|
75
75
|
if (v)
|
|
76
76
|
return v;
|
|
77
|
-
var
|
|
78
|
-
return
|
|
77
|
+
var R = r.displayName || r.name || "";
|
|
78
|
+
return R !== "" ? c + "(" + R + ")" : c;
|
|
79
79
|
}
|
|
80
80
|
function he(e) {
|
|
81
81
|
return e.displayName || "Context";
|
|
@@ -110,12 +110,12 @@ function wt() {
|
|
|
110
110
|
var c = e;
|
|
111
111
|
return he(c._context) + ".Provider";
|
|
112
112
|
case u:
|
|
113
|
-
return
|
|
114
|
-
case
|
|
113
|
+
return Ue(e, e.render, "ForwardRef");
|
|
114
|
+
case C:
|
|
115
115
|
var v = e.displayName || null;
|
|
116
116
|
return v !== null ? v : N(e.type) || "Memo";
|
|
117
117
|
case b: {
|
|
118
|
-
var
|
|
118
|
+
var R = e, p = R._payload, E = R._init;
|
|
119
119
|
try {
|
|
120
120
|
return N(E(p));
|
|
121
121
|
} catch {
|
|
@@ -125,18 +125,18 @@ function wt() {
|
|
|
125
125
|
}
|
|
126
126
|
return null;
|
|
127
127
|
}
|
|
128
|
-
var V = Object.assign, G = 0, ye, me, Ee,
|
|
129
|
-
function
|
|
128
|
+
var V = Object.assign, G = 0, ye, me, Ee, Re, we, _e, pe;
|
|
129
|
+
function Se() {
|
|
130
130
|
}
|
|
131
|
-
|
|
132
|
-
function
|
|
131
|
+
Se.__reactDisabledLog = !0;
|
|
132
|
+
function Me() {
|
|
133
133
|
{
|
|
134
134
|
if (G === 0) {
|
|
135
|
-
ye = console.log, me = console.info, Ee = console.warn,
|
|
135
|
+
ye = console.log, me = console.info, Ee = console.warn, Re = console.error, we = console.group, _e = console.groupCollapsed, pe = console.groupEnd;
|
|
136
136
|
var e = {
|
|
137
137
|
configurable: !0,
|
|
138
138
|
enumerable: !0,
|
|
139
|
-
value:
|
|
139
|
+
value: Se,
|
|
140
140
|
writable: !0
|
|
141
141
|
};
|
|
142
142
|
Object.defineProperties(console, {
|
|
@@ -171,10 +171,10 @@ function wt() {
|
|
|
171
171
|
value: Ee
|
|
172
172
|
}),
|
|
173
173
|
error: V({}, e, {
|
|
174
|
-
value:
|
|
174
|
+
value: Re
|
|
175
175
|
}),
|
|
176
176
|
group: V({}, e, {
|
|
177
|
-
value:
|
|
177
|
+
value: we
|
|
178
178
|
}),
|
|
179
179
|
groupCollapsed: V({}, e, {
|
|
180
180
|
value: _e
|
|
@@ -193,8 +193,8 @@ function wt() {
|
|
|
193
193
|
if (ae === void 0)
|
|
194
194
|
try {
|
|
195
195
|
throw Error();
|
|
196
|
-
} catch (
|
|
197
|
-
var v =
|
|
196
|
+
} catch (R) {
|
|
197
|
+
var v = R.stack.trim().match(/\n( *(at )?)/);
|
|
198
198
|
ae = v && v[1] || "";
|
|
199
199
|
}
|
|
200
200
|
return `
|
|
@@ -206,7 +206,7 @@ function wt() {
|
|
|
206
206
|
var Je = typeof WeakMap == "function" ? WeakMap : Map;
|
|
207
207
|
X = new Je();
|
|
208
208
|
}
|
|
209
|
-
function
|
|
209
|
+
function Ce(e, r) {
|
|
210
210
|
if (!e || ie)
|
|
211
211
|
return "";
|
|
212
212
|
{
|
|
@@ -216,10 +216,10 @@ function wt() {
|
|
|
216
216
|
}
|
|
217
217
|
var v;
|
|
218
218
|
ie = !0;
|
|
219
|
-
var
|
|
219
|
+
var R = Error.prepareStackTrace;
|
|
220
220
|
Error.prepareStackTrace = void 0;
|
|
221
221
|
var p;
|
|
222
|
-
p = oe.current, oe.current = null,
|
|
222
|
+
p = oe.current, oe.current = null, Me();
|
|
223
223
|
try {
|
|
224
224
|
if (r) {
|
|
225
225
|
var E = function() {
|
|
@@ -255,30 +255,30 @@ function wt() {
|
|
|
255
255
|
} catch (Y) {
|
|
256
256
|
if (Y && v && typeof Y.stack == "string") {
|
|
257
257
|
for (var y = Y.stack.split(`
|
|
258
|
-
`),
|
|
259
|
-
`), j = y.length - 1, O =
|
|
258
|
+
`), A = v.stack.split(`
|
|
259
|
+
`), j = y.length - 1, O = A.length - 1; j >= 1 && O >= 0 && y[j] !== A[O]; )
|
|
260
260
|
O--;
|
|
261
261
|
for (; j >= 1 && O >= 0; j--, O--)
|
|
262
|
-
if (y[j] !==
|
|
262
|
+
if (y[j] !== A[O]) {
|
|
263
263
|
if (j !== 1 || O !== 1)
|
|
264
264
|
do
|
|
265
|
-
if (j--, O--, O < 0 || y[j] !==
|
|
266
|
-
var
|
|
265
|
+
if (j--, O--, O < 0 || y[j] !== A[O]) {
|
|
266
|
+
var I = `
|
|
267
267
|
` + y[j].replace(" at new ", " at ");
|
|
268
|
-
return e.displayName &&
|
|
268
|
+
return e.displayName && I.includes("<anonymous>") && (I = I.replace("<anonymous>", e.displayName)), typeof e == "function" && X.set(e, I), I;
|
|
269
269
|
}
|
|
270
270
|
while (j >= 1 && O >= 0);
|
|
271
271
|
break;
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
} finally {
|
|
275
|
-
ie = !1, oe.current = p, Ge(), Error.prepareStackTrace =
|
|
275
|
+
ie = !1, oe.current = p, Ge(), Error.prepareStackTrace = R;
|
|
276
276
|
}
|
|
277
|
-
var
|
|
277
|
+
var M = e ? e.displayName || e.name : "", $e = M ? Q(M) : "";
|
|
278
278
|
return typeof e == "function" && X.set(e, $e), $e;
|
|
279
279
|
}
|
|
280
280
|
function Ke(e, r, c) {
|
|
281
|
-
return
|
|
281
|
+
return Ce(e, !1);
|
|
282
282
|
}
|
|
283
283
|
function qe(e) {
|
|
284
284
|
var r = e.prototype;
|
|
@@ -288,7 +288,7 @@ function wt() {
|
|
|
288
288
|
if (e == null)
|
|
289
289
|
return "";
|
|
290
290
|
if (typeof e == "function")
|
|
291
|
-
return
|
|
291
|
+
return Ce(e, qe(e));
|
|
292
292
|
if (typeof e == "string")
|
|
293
293
|
return Q(e);
|
|
294
294
|
switch (e) {
|
|
@@ -301,12 +301,12 @@ function wt() {
|
|
|
301
301
|
switch (e.$$typeof) {
|
|
302
302
|
case u:
|
|
303
303
|
return Ke(e.render);
|
|
304
|
-
case
|
|
304
|
+
case C:
|
|
305
305
|
return H(e.type, r, c);
|
|
306
306
|
case b: {
|
|
307
|
-
var v = e,
|
|
307
|
+
var v = e, R = v._payload, p = v._init;
|
|
308
308
|
try {
|
|
309
|
-
return H(p(
|
|
309
|
+
return H(p(R), r, c);
|
|
310
310
|
} catch {
|
|
311
311
|
}
|
|
312
312
|
}
|
|
@@ -321,7 +321,7 @@ function wt() {
|
|
|
321
321
|
} else
|
|
322
322
|
Pe.setExtraStackFrame(null);
|
|
323
323
|
}
|
|
324
|
-
function Be(e, r, c, v,
|
|
324
|
+
function Be(e, r, c, v, R) {
|
|
325
325
|
{
|
|
326
326
|
var p = Function.call.bind(Z);
|
|
327
327
|
for (var E in e)
|
|
@@ -329,14 +329,14 @@ function wt() {
|
|
|
329
329
|
var y = void 0;
|
|
330
330
|
try {
|
|
331
331
|
if (typeof e[E] != "function") {
|
|
332
|
-
var
|
|
333
|
-
throw
|
|
332
|
+
var A = Error((v || "React class") + ": " + c + " type `" + E + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof e[E] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
333
|
+
throw A.name = "Invariant Violation", A;
|
|
334
334
|
}
|
|
335
335
|
y = e[E](r, E, v, c, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
336
336
|
} catch (j) {
|
|
337
337
|
y = j;
|
|
338
338
|
}
|
|
339
|
-
y && !(y instanceof Error) && (ee(
|
|
339
|
+
y && !(y instanceof Error) && (ee(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).", v || "React class", c, E, typeof y), ee(null)), y instanceof Error && !(y.message in be) && (be[y.message] = !0, ee(R), _("Failed %s type: %s", c, y.message), ee(null));
|
|
340
340
|
}
|
|
341
341
|
}
|
|
342
342
|
}
|
|
@@ -369,7 +369,7 @@ function wt() {
|
|
|
369
369
|
ref: !0,
|
|
370
370
|
__self: !0,
|
|
371
371
|
__source: !0
|
|
372
|
-
}, Te,
|
|
372
|
+
}, Te, Ae, se;
|
|
373
373
|
se = {};
|
|
374
374
|
function et(e) {
|
|
375
375
|
if (Z.call(e, "ref")) {
|
|
@@ -407,7 +407,7 @@ function wt() {
|
|
|
407
407
|
function ot(e, r) {
|
|
408
408
|
{
|
|
409
409
|
var c = function() {
|
|
410
|
-
|
|
410
|
+
Ae || (Ae = !0, _("%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));
|
|
411
411
|
};
|
|
412
412
|
c.isReactWarning = !0, Object.defineProperty(e, "ref", {
|
|
413
413
|
get: c,
|
|
@@ -415,7 +415,7 @@ function wt() {
|
|
|
415
415
|
});
|
|
416
416
|
}
|
|
417
417
|
}
|
|
418
|
-
var at = function(e, r, c, v,
|
|
418
|
+
var at = function(e, r, c, v, R, p, E) {
|
|
419
419
|
var y = {
|
|
420
420
|
// This tag allows us to uniquely identify this as a React Element
|
|
421
421
|
$$typeof: n,
|
|
@@ -441,13 +441,13 @@ function wt() {
|
|
|
441
441
|
configurable: !1,
|
|
442
442
|
enumerable: !1,
|
|
443
443
|
writable: !1,
|
|
444
|
-
value:
|
|
444
|
+
value: R
|
|
445
445
|
}), Object.freeze && (Object.freeze(y.props), Object.freeze(y)), y;
|
|
446
446
|
};
|
|
447
|
-
function it(e, r, c, v,
|
|
447
|
+
function it(e, r, c, v, R) {
|
|
448
448
|
{
|
|
449
|
-
var p, E = {}, y = null,
|
|
450
|
-
c !== void 0 && (Oe(c), y = "" + c), tt(r) && (Oe(r.key), y = "" + r.key), et(r) && (
|
|
449
|
+
var p, E = {}, y = null, A = null;
|
|
450
|
+
c !== void 0 && (Oe(c), y = "" + c), tt(r) && (Oe(r.key), y = "" + r.key), et(r) && (A = r.ref, rt(r, R));
|
|
451
451
|
for (p in r)
|
|
452
452
|
Z.call(r, p) && !Ze.hasOwnProperty(p) && (E[p] = r[p]);
|
|
453
453
|
if (e && e.defaultProps) {
|
|
@@ -455,20 +455,20 @@ function wt() {
|
|
|
455
455
|
for (p in j)
|
|
456
456
|
E[p] === void 0 && (E[p] = j[p]);
|
|
457
457
|
}
|
|
458
|
-
if (y ||
|
|
458
|
+
if (y || A) {
|
|
459
459
|
var O = typeof e == "function" ? e.displayName || e.name || "Unknown" : e;
|
|
460
|
-
y && nt(E, O),
|
|
460
|
+
y && nt(E, O), A && ot(E, O);
|
|
461
461
|
}
|
|
462
|
-
return at(e, y,
|
|
462
|
+
return at(e, y, A, R, v, J.current, E);
|
|
463
463
|
}
|
|
464
464
|
}
|
|
465
|
-
var ue = h.ReactCurrentOwner,
|
|
466
|
-
function
|
|
465
|
+
var ue = h.ReactCurrentOwner, xe = h.ReactDebugCurrentFrame;
|
|
466
|
+
function U(e) {
|
|
467
467
|
if (e) {
|
|
468
468
|
var r = e._owner, c = H(e.type, e._source, r ? r.type : null);
|
|
469
|
-
|
|
469
|
+
xe.setExtraStackFrame(c);
|
|
470
470
|
} else
|
|
471
|
-
|
|
471
|
+
xe.setExtraStackFrame(null);
|
|
472
472
|
}
|
|
473
473
|
var le;
|
|
474
474
|
le = !1;
|
|
@@ -513,7 +513,7 @@ Check the top-level render call using <` + c + ">.");
|
|
|
513
513
|
return;
|
|
514
514
|
ke[c] = !0;
|
|
515
515
|
var v = "";
|
|
516
|
-
e && e._owner && e._owner !== ue.current && (v = " It was passed a child from " + N(e._owner.type) + "."),
|
|
516
|
+
e && e._owner && e._owner !== ue.current && (v = " It was passed a child from " + N(e._owner.type) + "."), U(e), _('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', c, v), U(null);
|
|
517
517
|
}
|
|
518
518
|
}
|
|
519
519
|
function Fe(e, r) {
|
|
@@ -528,9 +528,9 @@ Check the top-level render call using <` + c + ">.");
|
|
|
528
528
|
else if (fe(e))
|
|
529
529
|
e._store && (e._store.validated = !0);
|
|
530
530
|
else if (e) {
|
|
531
|
-
var
|
|
532
|
-
if (typeof
|
|
533
|
-
for (var p =
|
|
531
|
+
var R = P(e);
|
|
532
|
+
if (typeof R == "function" && R !== e.entries)
|
|
533
|
+
for (var p = R.call(e), E; !(E = p.next()).done; )
|
|
534
534
|
fe(E.value) && De(E.value, r);
|
|
535
535
|
}
|
|
536
536
|
}
|
|
@@ -545,7 +545,7 @@ Check the top-level render call using <` + c + ">.");
|
|
|
545
545
|
c = r.propTypes;
|
|
546
546
|
else if (typeof r == "object" && (r.$$typeof === u || // Note: Memo only checks outer props here.
|
|
547
547
|
// Inner props are checked in the reconciler.
|
|
548
|
-
r.$$typeof ===
|
|
548
|
+
r.$$typeof === C))
|
|
549
549
|
c = r.propTypes;
|
|
550
550
|
else
|
|
551
551
|
return;
|
|
@@ -554,8 +554,8 @@ Check the top-level render call using <` + c + ">.");
|
|
|
554
554
|
Be(c, e.props, "prop", v, e);
|
|
555
555
|
} else if (r.PropTypes !== void 0 && !le) {
|
|
556
556
|
le = !0;
|
|
557
|
-
var
|
|
558
|
-
_("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",
|
|
557
|
+
var R = N(r);
|
|
558
|
+
_("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", R || "Unknown");
|
|
559
559
|
}
|
|
560
560
|
typeof r.getDefaultProps == "function" && !r.getDefaultProps.isReactClassApproved && _("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
561
561
|
}
|
|
@@ -565,39 +565,39 @@ Check the top-level render call using <` + c + ">.");
|
|
|
565
565
|
for (var r = Object.keys(e.props), c = 0; c < r.length; c++) {
|
|
566
566
|
var v = r[c];
|
|
567
567
|
if (v !== "children" && v !== "key") {
|
|
568
|
-
|
|
568
|
+
U(e), _("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", v), U(null);
|
|
569
569
|
break;
|
|
570
570
|
}
|
|
571
571
|
}
|
|
572
|
-
e.ref !== null && (
|
|
572
|
+
e.ref !== null && (U(e), _("Invalid attribute `ref` supplied to `React.Fragment`."), U(null));
|
|
573
573
|
}
|
|
574
574
|
}
|
|
575
|
-
function Le(e, r, c, v,
|
|
575
|
+
function Le(e, r, c, v, R, p) {
|
|
576
576
|
{
|
|
577
577
|
var E = B(e);
|
|
578
578
|
if (!E) {
|
|
579
579
|
var y = "";
|
|
580
580
|
(e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (y += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
581
|
-
var
|
|
582
|
-
|
|
581
|
+
var A = ct();
|
|
582
|
+
A ? y += A : y += Ie();
|
|
583
583
|
var j;
|
|
584
584
|
e === null ? j = "null" : ce(e) ? j = "array" : e !== void 0 && e.$$typeof === n ? (j = "<" + (N(e.type) || "Unknown") + " />", y = " Did you accidentally export a JSX literal instead of a component?") : j = typeof e, _("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", j, y);
|
|
585
585
|
}
|
|
586
|
-
var O = it(e, r, c,
|
|
586
|
+
var O = it(e, r, c, R, p);
|
|
587
587
|
if (O == null)
|
|
588
588
|
return O;
|
|
589
589
|
if (E) {
|
|
590
|
-
var
|
|
591
|
-
if (
|
|
590
|
+
var I = r.children;
|
|
591
|
+
if (I !== void 0)
|
|
592
592
|
if (v)
|
|
593
|
-
if (ce(
|
|
594
|
-
for (var
|
|
595
|
-
Fe(
|
|
596
|
-
Object.freeze && Object.freeze(
|
|
593
|
+
if (ce(I)) {
|
|
594
|
+
for (var M = 0; M < I.length; M++)
|
|
595
|
+
Fe(I[M], e);
|
|
596
|
+
Object.freeze && Object.freeze(I);
|
|
597
597
|
} else
|
|
598
598
|
_("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
599
599
|
else
|
|
600
|
-
Fe(
|
|
600
|
+
Fe(I, e);
|
|
601
601
|
}
|
|
602
602
|
return e === i ? lt(O) : ut(O), O;
|
|
603
603
|
}
|
|
@@ -612,9 +612,9 @@ Check the top-level render call using <` + c + ">.");
|
|
|
612
612
|
q.Fragment = i, q.jsx = vt, q.jsxs = gt;
|
|
613
613
|
}()), q;
|
|
614
614
|
}
|
|
615
|
-
process.env.NODE_ENV === "production" ? de.exports = Et() : de.exports =
|
|
615
|
+
process.env.NODE_ENV === "production" ? de.exports = Et() : de.exports = Rt();
|
|
616
616
|
var W = de.exports;
|
|
617
|
-
const
|
|
617
|
+
const k = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys: i }) => {
|
|
618
618
|
const a = ve(
|
|
619
619
|
() => ({
|
|
620
620
|
apiURL: n,
|
|
@@ -623,24 +623,24 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
623
623
|
}),
|
|
624
624
|
[n, o, i]
|
|
625
625
|
);
|
|
626
|
-
return /* @__PURE__ */ W.jsx(
|
|
627
|
-
},
|
|
628
|
-
var
|
|
629
|
-
const { libraries: l, localStorageKeys: f } = D(
|
|
626
|
+
return /* @__PURE__ */ W.jsx(k.Provider, { value: a, children: t });
|
|
627
|
+
}, wt = "user", $t = ({ Fallback: t, isLogged: n, loginPath: o = "/login", redirect401Path: i = "/login", ...a }) => {
|
|
628
|
+
var x, F, L, $;
|
|
629
|
+
const { libraries: l, localStorageKeys: f } = D(k), d = (a == null ? void 0 : a.reactRouter) || (l == null ? void 0 : l.reactRouter), u = (a == null ? void 0 : a.axios) || (l == null ? void 0 : l.axios), m = (a == null ? void 0 : a.localStorageKey) || (f == null ? void 0 : f.user) || wt;
|
|
630
630
|
if (!d)
|
|
631
631
|
throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
632
|
-
const [g,
|
|
632
|
+
const [g, C] = ze(null), { useLocation: b, Navigate: s, Outlet: S } = d, w = b(), P = yt(!1), h = typeof n == "function" ? n() : !!n, _ = typeof h == "boolean" ? h : h == null ? void 0 : h.isLogged;
|
|
633
633
|
return z(() => {
|
|
634
634
|
P.current || (P.current = !0, u.interceptors.response.use(
|
|
635
635
|
(T) => T,
|
|
636
636
|
async (T) => {
|
|
637
637
|
var B;
|
|
638
|
-
return typeof T == "object" && T && "response" in T && T.response && typeof T.response == "object" && "status" in T.response && T.response && typeof T.response == "object" && "status" in T.response && ((B = T == null ? void 0 : T.response) == null ? void 0 : B.status) === 401 && (u.defaults.headers.common.Authorization = null, typeof window < "u" && window.localStorage && localStorage.removeItem(m),
|
|
638
|
+
return typeof T == "object" && T && "response" in T && T.response && typeof T.response == "object" && "status" in T.response && T.response && typeof T.response == "object" && "status" in T.response && ((B = T == null ? void 0 : T.response) == null ? void 0 : B.status) === 401 && (u.defaults.headers.common.Authorization = null, typeof window < "u" && window.localStorage && localStorage.removeItem(m), C(i)), Promise.reject(T);
|
|
639
639
|
}
|
|
640
640
|
));
|
|
641
|
-
}, [u.defaults.headers.common, u.interceptors.response, m, i]), _ && !g ? /* @__PURE__ */ W.jsx(mt, { fallback: t, children: (F = (
|
|
641
|
+
}, [u.defaults.headers.common, u.interceptors.response, m, i]), _ && !g ? /* @__PURE__ */ W.jsx(mt, { fallback: t, children: (F = (x = w.state) == null ? void 0 : x.from) != null && F.state && (($ = (L = w.state) == null ? void 0 : L.from) == null ? void 0 : $.pathname) === o ? /* @__PURE__ */ W.jsx(s, { to: w.state.from.state.from.pathname + w.state.from.state.from.search, replace: !0 }) : /* @__PURE__ */ W.jsx(S, {}) }) : /* @__PURE__ */ W.jsx(s, { to: o + w.search, state: { from: w }, replace: !0 });
|
|
642
642
|
}, Nt = ({ data: t, ...n }) => {
|
|
643
|
-
const { libraries: o } = D(
|
|
643
|
+
const { libraries: o } = D(k), i = (n == null ? void 0 : n.reactRouter) || (o == null ? void 0 : o.reactRouter), a = (n == null ? void 0 : n.gtm) || (o == null ? void 0 : o.gtm);
|
|
644
644
|
if (!i)
|
|
645
645
|
throw new Error(
|
|
646
646
|
"React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView."
|
|
@@ -661,18 +661,18 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
661
661
|
postContentType: o = "application/json",
|
|
662
662
|
...i
|
|
663
663
|
}) => {
|
|
664
|
-
const { apiURL: a = i.apiURL, libraries: l, localStorageKeys: f } = D(
|
|
664
|
+
const { apiURL: a = i.apiURL, libraries: l, localStorageKeys: f } = D(k), d = (i == null ? void 0 : i.userLocalStorageKey) || (f == null ? void 0 : f.user) || _t, u = (i == null ? void 0 : i.axios) || (l == null ? void 0 : l.axios);
|
|
665
665
|
if (!u)
|
|
666
666
|
throw new Error("Axios is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
667
667
|
if (!(u != null && u.defaults))
|
|
668
668
|
return null;
|
|
669
669
|
if (typeof window < "u" && window.localStorage) {
|
|
670
|
-
const m = localStorage.getItem(d), g = m ? JSON.parse(m) : null,
|
|
670
|
+
const m = localStorage.getItem(d), g = m ? JSON.parse(m) : null, C = g != null && g[t] ? g[t] : null, b = g != null && g[n] ? g[n] : null, s = m ? `${C} ${b}` : null;
|
|
671
671
|
s && (u.defaults.headers.common.Authorization = s);
|
|
672
672
|
}
|
|
673
673
|
return u.defaults.baseURL = a, u.defaults.headers.post["Content-Type"] = o, null;
|
|
674
674
|
}, Wt = ({ debug: t, resources: n, ...o }) => {
|
|
675
|
-
const { libraries: i } = D(
|
|
675
|
+
const { libraries: i } = D(k), a = (o == null ? void 0 : o.i18) || (i == null ? void 0 : i.i18), { i18next: l, initReactI18next: f, languageDetector: d } = a || {};
|
|
676
676
|
if (!a)
|
|
677
677
|
throw new Error("i18 is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
678
678
|
return l != null && l.isInitialized || (l.use(d).use(f).init({
|
|
@@ -706,14 +706,14 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
706
706
|
release: m,
|
|
707
707
|
...g
|
|
708
708
|
}) => {
|
|
709
|
-
const { libraries:
|
|
709
|
+
const { libraries: C } = D(k), b = (g == null ? void 0 : g.sentry) || (C == null ? void 0 : C.sentry), s = (g == null ? void 0 : g.reactRouter) || (C == null ? void 0 : C.reactRouter);
|
|
710
710
|
if (!b)
|
|
711
711
|
throw new Error("Sentry is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
712
712
|
if (!s)
|
|
713
713
|
throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
714
714
|
if (b.isInitialized())
|
|
715
715
|
return null;
|
|
716
|
-
const { createRoutesFromChildren:
|
|
716
|
+
const { createRoutesFromChildren: S, matchRoutes: w, useLocation: P, useNavigationType: h } = s;
|
|
717
717
|
return (d || process.env.NODE_ENV === "prod" || process.env.NODE_ENV === "production") && b.init({
|
|
718
718
|
debug: d,
|
|
719
719
|
dsn: t,
|
|
@@ -729,8 +729,8 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
729
729
|
],
|
|
730
730
|
integrations: [
|
|
731
731
|
b.reactRouterV6BrowserTracingIntegration({
|
|
732
|
-
createRoutesFromChildren:
|
|
733
|
-
matchRoutes:
|
|
732
|
+
createRoutesFromChildren: S,
|
|
733
|
+
matchRoutes: w,
|
|
734
734
|
useEffect: z,
|
|
735
735
|
useLocation: P,
|
|
736
736
|
useNavigationType: h
|
|
@@ -750,13 +750,8 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
750
750
|
[t]
|
|
751
751
|
);
|
|
752
752
|
return /* @__PURE__ */ W.jsx(o, { ...n });
|
|
753
|
-
}, Mt = ({ accessToken: t, ...n }) => {
|
|
754
|
-
const { libraries: o } = D(I), i = (n == null ? void 0 : n.mapbox) || (o == null ? void 0 : o.mapbox);
|
|
755
|
-
if (!i)
|
|
756
|
-
throw new Error("Mapbox is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
757
|
-
return t && (i.accessToken = t), null;
|
|
758
753
|
}, Ut = ({ language: t, ...n }) => {
|
|
759
|
-
const { libraries: o } = D(
|
|
754
|
+
const { libraries: o } = D(k), i = (n == null ? void 0 : n.dayjs) || (o == null ? void 0 : o.dayjs), a = (n == null ? void 0 : n.plugin) || (o == null ? void 0 : o.dayjsPlugin);
|
|
760
755
|
if (!i)
|
|
761
756
|
throw new Error(
|
|
762
757
|
"Dayjs is not provided. You can provide it with InjectDependenciesProvider or directly in props of InitializeDaysJSConfig."
|
|
@@ -770,7 +765,7 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
770
765
|
}), await import("dayjs/locale/en"), await import("dayjs/locale/fr"), i.locale(f);
|
|
771
766
|
})().then();
|
|
772
767
|
}, [i, a, t]), null;
|
|
773
|
-
},
|
|
768
|
+
}, Mt = () => (z(() => {
|
|
774
769
|
const t = (n) => {
|
|
775
770
|
try {
|
|
776
771
|
n.preventDefault(), n.stopPropagation(), n.stopImmediatePropagation(), window.location.reload();
|
|
@@ -780,21 +775,21 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
780
775
|
return window.addEventListener("vite:preloadError", t), () => {
|
|
781
776
|
window.removeEventListener("vite:preloadError", t);
|
|
782
777
|
};
|
|
783
|
-
}, []), null), pt = (t) => t && typeof t == "function",
|
|
778
|
+
}, []), null), pt = (t) => t && typeof t == "function", St = (t) => t && typeof t == "function", Gt = ({
|
|
784
779
|
children: t,
|
|
785
780
|
defaultQueriesOptions: n,
|
|
786
781
|
defaultMutationsOptions: o,
|
|
787
782
|
...i
|
|
788
783
|
}) => {
|
|
789
784
|
var u, m;
|
|
790
|
-
const { libraries: a } = D(
|
|
785
|
+
const { libraries: a } = D(k), l = (i == null ? void 0 : i.QueryClient) || ((u = a == null ? void 0 : a.reactQuery) == null ? void 0 : u.QueryClient), f = (i == null ? void 0 : i.QueryClientProvider) || ((m = a == null ? void 0 : a.reactQuery) == null ? void 0 : m.QueryClientProvider);
|
|
791
786
|
if (!l)
|
|
792
787
|
throw new Error("QueryClient is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
793
788
|
if (!f)
|
|
794
789
|
throw new Error("QueryClientProvider is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
795
790
|
if (!pt(f))
|
|
796
791
|
throw new Error("Provided QueryClientProvider dependencies are not valid.");
|
|
797
|
-
if (!
|
|
792
|
+
if (!St(l))
|
|
798
793
|
throw new Error("Provided QueryClient dependencies are not valid.");
|
|
799
794
|
const d = new l({
|
|
800
795
|
defaultOptions: {
|
|
@@ -802,7 +797,7 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
802
797
|
...o
|
|
803
798
|
},
|
|
804
799
|
queries: {
|
|
805
|
-
getNextPageParam: (g,
|
|
800
|
+
getNextPageParam: (g, C, b) => g.length + (b || 0),
|
|
806
801
|
refetchOnWindowFocus: !1,
|
|
807
802
|
retry: 3,
|
|
808
803
|
...n
|
|
@@ -810,22 +805,22 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
810
805
|
}
|
|
811
806
|
});
|
|
812
807
|
return /* @__PURE__ */ W.jsx(f, { client: d, children: t });
|
|
813
|
-
},
|
|
814
|
-
var m, g,
|
|
815
|
-
const { libraries: n } = D(
|
|
808
|
+
}, Jt = (t) => {
|
|
809
|
+
var m, g, C;
|
|
810
|
+
const { libraries: n } = D(k), o = (t == null ? void 0 : t.i18) || (n == null ? void 0 : n.i18), i = ((m = t == null ? void 0 : t.i18) == null ? void 0 : m.translateFunction) || ((g = n == null ? void 0 : n.i18) == null ? void 0 : g.translateFunction), a = ((C = o == null ? void 0 : o.i18next) == null ? void 0 : C.t) || i || ((b) => b), { unknownErrorTranslationKey: l = "error.unknownError" } = t || {}, f = a(l), d = re(
|
|
816
811
|
(b) => {
|
|
817
|
-
var
|
|
812
|
+
var S, w, P, h, _, x, F, L, $;
|
|
818
813
|
const { response: s } = b || {};
|
|
819
|
-
return s != null && s.reason ? String(s.reason) : (
|
|
814
|
+
return s != null && s.reason ? String(s.reason) : (S = s == null ? void 0 : s.data) != null && S.reason ? String(s.data.reason) : (w = s == null ? void 0 : s.data) != null && w.message ? String(s.data.message) : (h = (P = s == null ? void 0 : s.data) == null ? void 0 : P.detail) != null && h.length && Array.isArray((_ = s == null ? void 0 : s.data) == null ? void 0 : _.detail) && ((F = (x = s == null ? void 0 : s.data) == null ? void 0 : x.detail[0]) != null && F.msg) && typeof (($ = (L = s == null ? void 0 : s.data) == null ? void 0 : L.detail[0]) == null ? void 0 : $.msg) == "string" ? String(s.data.detail[0].msg) : f;
|
|
820
815
|
},
|
|
821
816
|
[f]
|
|
822
817
|
);
|
|
823
818
|
return { getErrorCode: re((b) => {
|
|
824
|
-
var
|
|
819
|
+
var S, w, P;
|
|
825
820
|
const { response: s } = b || {};
|
|
826
|
-
return s != null && s.error_code ? String(s == null ? void 0 : s.error_code) : (
|
|
821
|
+
return s != null && s.error_code ? String(s == null ? void 0 : s.error_code) : (S = s == null ? void 0 : s.data) != null && S.error_code ? String((w = s == null ? void 0 : s.data) == null ? void 0 : w.error_code) : s != null && s.error_code ? String(s == null ? void 0 : s.error_code) : (P = s == null ? void 0 : s.data) != null && P.error_code ? String(s.data.error_code) : "unknown_error_code";
|
|
827
822
|
}, []), printError: d };
|
|
828
|
-
},
|
|
823
|
+
}, Kt = ({
|
|
829
824
|
data: t,
|
|
830
825
|
fetchNextPage: n,
|
|
831
826
|
isFetchingNextPage: o,
|
|
@@ -848,8 +843,8 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
848
843
|
loadingVariant: i ? "skeleton" : "linear",
|
|
849
844
|
rows: d
|
|
850
845
|
};
|
|
851
|
-
},
|
|
852
|
-
const { libraries: n } = D(
|
|
846
|
+
}, qt = (t) => {
|
|
847
|
+
const { libraries: n } = D(k), o = (t == null ? void 0 : t.axios) || (n == null ? void 0 : n.axios), i = (t == null ? void 0 : t.localStorageKey) || "user";
|
|
853
848
|
if (!o)
|
|
854
849
|
throw new Error("Axios is not provided. You can provide it with InjectDependenciesProvider or directly in params of useAuth.");
|
|
855
850
|
const a = re(
|
|
@@ -877,21 +872,21 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
877
872
|
clearAuthenticationToken: l,
|
|
878
873
|
setAuthenticationToken: a
|
|
879
874
|
};
|
|
880
|
-
},
|
|
881
|
-
const o = Number(t);
|
|
882
|
-
return Number.isNaN(
|
|
875
|
+
}, Ct = ({ library: t, date: n, format: o = "ll" }) => t(n).format(o), bt = (t, n) => {
|
|
876
|
+
const { fractionDigits: o = 0, metric: i = "km" } = n || {}, a = Number(t);
|
|
877
|
+
return Number.isNaN(a) ? `0 ${i}` : `${a.toFixed(o)} ${i}`;
|
|
883
878
|
}, Pt = (t) => !t || typeof t != "string" ? "" : t.replace(/_/g, " ").toLowerCase().split(" ").map((o) => o.length > 0 ? o.charAt(0).toUpperCase() + o.slice(1) : o).join(" "), jt = (t) => t != null && t.startsWith("/") ? t != null && t.startsWith("/files") ? t : `/files${t}` : t != null && t.startsWith("files") ? `/${t}` : `/files/${t}`, Ot = ({ path: t, size: n, apiURL: o }) => {
|
|
884
879
|
if (!t)
|
|
885
880
|
return "";
|
|
886
881
|
const i = jt(t), a = `${o}${i}`, l = a.match(/\.(jpeg|jpg|png|gif|bmp|webp|svg|avif)$/) !== null;
|
|
887
882
|
return typeof n == "number" && l ? `${a.replace("/files", `/thumbs/${n}`)}` : a;
|
|
888
|
-
},
|
|
889
|
-
const { apiURL: n, libraries: o } = D(
|
|
883
|
+
}, Bt = (t) => {
|
|
884
|
+
const { apiURL: n, libraries: o } = D(k), i = (t == null ? void 0 : t.dayjs) || (o == null ? void 0 : o.dayjs);
|
|
890
885
|
return {
|
|
891
886
|
dateAdapter: (f, d) => {
|
|
892
887
|
if (!i)
|
|
893
888
|
throw new Error("Dayjs is not provided. You can provide it with InjectDependenciesProvider or directly in props.");
|
|
894
|
-
return
|
|
889
|
+
return Ct({
|
|
895
890
|
date: f,
|
|
896
891
|
format: d,
|
|
897
892
|
library: i
|
|
@@ -911,7 +906,7 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
911
906
|
},
|
|
912
907
|
worksiteNameAdapter: Pt
|
|
913
908
|
};
|
|
914
|
-
}, te = (t, n) => n === "short" ? t.split("-")[0] : t,
|
|
909
|
+
}, te = (t, n) => n === "short" ? t.split("-")[0] : t, Qt = (t, n = "full") => {
|
|
915
910
|
const [o, i] = ze(() => {
|
|
916
911
|
const a = (t == null ? void 0 : t.language) || navigator.language;
|
|
917
912
|
return t && "isInitialized" in t && t.isInitialized, te(a, n);
|
|
@@ -927,69 +922,69 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
927
922
|
(f = t == null ? void 0 : t.off) == null || f.call(t, "languageChanged", a);
|
|
928
923
|
};
|
|
929
924
|
}, [t, n]), o;
|
|
930
|
-
}, Tt = "tracktor.filter", We = (t, n, o) => `${o}_${t}=>${n}`,
|
|
931
|
-
const { libraries: n, localStorageKeys: o } = D(
|
|
925
|
+
}, Tt = "tracktor.filter", We = (t, n, o) => `${o}_${t}=>${n}`, Xt = (t) => {
|
|
926
|
+
const { libraries: n, localStorageKeys: o } = D(k), i = (t == null ? void 0 : t.reactRouter) || (n == null ? void 0 : n.reactRouter), { useLocation: a, useSearchParams: l } = i, { pathname: f } = a(), [d, u] = l(), m = (o == null ? void 0 : o.filter) || Tt;
|
|
932
927
|
if (!i)
|
|
933
928
|
throw new Error(
|
|
934
929
|
"React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView."
|
|
935
930
|
);
|
|
936
|
-
const g = (
|
|
937
|
-
const h = We(
|
|
938
|
-
if (!
|
|
939
|
-
d.delete(
|
|
931
|
+
const g = (S, w, P = !0) => {
|
|
932
|
+
const h = We(S, (t == null ? void 0 : t.pathname) || f, m);
|
|
933
|
+
if (!w || Array.isArray(w) && !w.length) {
|
|
934
|
+
d.delete(S), u(d), localStorage.removeItem(h);
|
|
940
935
|
return;
|
|
941
936
|
}
|
|
942
|
-
P &&
|
|
937
|
+
P && w && localStorage.setItem(h, JSON.stringify({ ...d, [S]: w })), w && (d.set(S, JSON.stringify(w)), u(d));
|
|
943
938
|
};
|
|
944
939
|
return {
|
|
945
|
-
getFilter: (
|
|
946
|
-
const P = d.get(
|
|
940
|
+
getFilter: (S, w) => {
|
|
941
|
+
const P = d.get(S);
|
|
947
942
|
if (P)
|
|
948
943
|
try {
|
|
949
944
|
return JSON.parse(P);
|
|
950
945
|
} catch {
|
|
951
946
|
return P;
|
|
952
947
|
}
|
|
953
|
-
const h = We(
|
|
948
|
+
const h = We(S, (t == null ? void 0 : t.pathname) || f, m), _ = localStorage.getItem(h);
|
|
954
949
|
if (_)
|
|
955
950
|
try {
|
|
956
|
-
return JSON.parse(_)[
|
|
951
|
+
return JSON.parse(_)[S];
|
|
957
952
|
} catch {
|
|
958
953
|
}
|
|
959
|
-
return
|
|
954
|
+
return w;
|
|
960
955
|
},
|
|
961
956
|
getFilters: () => {
|
|
962
|
-
const
|
|
957
|
+
const S = Object.fromEntries(d.entries()), P = Object.keys(localStorage).filter(
|
|
963
958
|
(h) => h.startsWith(m) && h.endsWith((t == null ? void 0 : t.pathname) || f)
|
|
964
959
|
).reduce((h, _) => {
|
|
965
960
|
var F, L;
|
|
966
|
-
const
|
|
967
|
-
if (
|
|
968
|
-
const $ = JSON.parse(
|
|
961
|
+
const x = localStorage.getItem(_);
|
|
962
|
+
if (x) {
|
|
963
|
+
const $ = JSON.parse(x), T = (F = Object.keys($)) == null ? void 0 : F[0];
|
|
969
964
|
h[T] = (L = Object.values($)) == null ? void 0 : L[0];
|
|
970
965
|
}
|
|
971
966
|
return h;
|
|
972
967
|
}, {});
|
|
973
968
|
return {
|
|
974
|
-
...
|
|
969
|
+
...S,
|
|
975
970
|
...P
|
|
976
971
|
};
|
|
977
972
|
},
|
|
978
|
-
handleFilter: (
|
|
973
|
+
handleFilter: (S, w) => (P, h) => {
|
|
979
974
|
if (h || Array.isArray(h) && h.length === 0) {
|
|
980
|
-
const _ =
|
|
981
|
-
g(
|
|
975
|
+
const _ = w || "value", x = typeof h == "object" && _ in h ? h[_ || "value"] : h;
|
|
976
|
+
g(S, x);
|
|
982
977
|
return;
|
|
983
978
|
}
|
|
984
|
-
g(
|
|
979
|
+
g(S, void 0);
|
|
985
980
|
},
|
|
986
981
|
setFilter: g
|
|
987
982
|
};
|
|
988
|
-
},
|
|
983
|
+
}, At = (t) => t.charAt(0).toUpperCase() + t.slice(1).toLowerCase(), xt = (t) => {
|
|
989
984
|
const i = t.split("/").filter((a) => a.length > 0).map((a) => a.replace(/\${([^}]*)}/g, "$1").split(/[_-]/).map((u) => u.charAt(0).toUpperCase() + u.slice(1)).join("")).join("");
|
|
990
985
|
return i.charAt(0).toLowerCase() + i.slice(1);
|
|
991
986
|
}, It = (t) => (t.split("/").pop() || t).replace(/\.json$/, "").replace(/^openapi\./, ""), kt = (t, n, o) => {
|
|
992
|
-
const i =
|
|
987
|
+
const i = xt(n), a = At(o);
|
|
993
988
|
return `${i}${a}`;
|
|
994
989
|
}, Dt = (t) => {
|
|
995
990
|
if (t)
|
|
@@ -1000,7 +995,7 @@ const I = ht({}), Lt = ({ children: t, apiURL: n, libraries: o, localStorageKeys
|
|
|
1000
995
|
useQuery: !0
|
|
1001
996
|
}
|
|
1002
997
|
}, n), {})) || {};
|
|
1003
|
-
},
|
|
998
|
+
}, Ht = (t) => (Array.isArray(t) ? t : [t]).reduce((o, i) => {
|
|
1004
999
|
const { output: a, operationsToGenerateInfiniteQueryHook: l, input: f = "./openapi.json" } = i || {}, d = It(f);
|
|
1005
1000
|
return {
|
|
1006
1001
|
...o,
|
|
@@ -1041,22 +1036,21 @@ export {
|
|
|
1041
1036
|
Yt as InitializeAxiosConfig,
|
|
1042
1037
|
Ut as InitializeDaysJSConfig,
|
|
1043
1038
|
Wt as InitializeI18nConfig,
|
|
1044
|
-
Mt as InitializeMapBoxConfig,
|
|
1045
1039
|
Vt as InitializeSentryConfig,
|
|
1046
|
-
|
|
1040
|
+
k as InjectDependenciesContext,
|
|
1047
1041
|
Lt as InjectDependenciesProvider,
|
|
1048
1042
|
zt as MaskTextField,
|
|
1049
|
-
|
|
1050
|
-
|
|
1043
|
+
Mt as PreloadErrorHandler,
|
|
1044
|
+
Gt as QueryClientProviderWithConfig,
|
|
1051
1045
|
$t as RequireAuth,
|
|
1052
|
-
|
|
1046
|
+
Ct as dateAdapter,
|
|
1053
1047
|
bt as distanceAdapter,
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1048
|
+
Ht as getOrvalConfig,
|
|
1049
|
+
Bt as useAdapter,
|
|
1050
|
+
qt as useAuth,
|
|
1051
|
+
Qt as useCurrentLanguage,
|
|
1052
|
+
Xt as useFilters,
|
|
1053
|
+
Kt as useInfiniteDataGrid,
|
|
1054
|
+
Jt as useResponseError,
|
|
1061
1055
|
Pt as worksiteNameAdapter
|
|
1062
1056
|
};
|
package/dist/main.umd.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(p,h){typeof exports=="object"&&typeof module<"u"?h(exports,require("react")):typeof define=="function"&&define.amd?define(["exports","react"],h):(p=typeof globalThis<"u"?globalThis:p||self,h(p["@tracktor/shared-module"]={},p.React))})(this,function(p,h){"use strict";var re={exports:{}},J={};/**
|
|
2
2
|
* @license React
|
|
3
3
|
* react-jsx-runtime.production.min.js
|
|
4
4
|
*
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
|
9
|
-
*/var de;function
|
|
9
|
+
*/var de;function Me(){if(de)return J;de=1;var t=h,n=Symbol.for("react.element"),a=Symbol.for("react.fragment"),i=Object.prototype.hasOwnProperty,o=t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l={key:!0,ref:!0,__self:!0,__source:!0};function f(d,u,E){var g,P={},j=null,s=null;E!==void 0&&(j=""+E),u.key!==void 0&&(j=""+u.key),u.ref!==void 0&&(s=u.ref);for(g in u)i.call(u,g)&&!l.hasOwnProperty(g)&&(P[g]=u[g]);if(d&&d.defaultProps)for(g in u=d.defaultProps,u)P[g]===void 0&&(P[g]=u[g]);return{$$typeof:n,type:d,key:j,ref:s,props:P,_owner:o.current}}return J.Fragment=a,J.jsx=f,J.jsxs=f,J}var K={};/**
|
|
10
10
|
* @license React
|
|
11
11
|
* react-jsx-runtime.development.js
|
|
12
12
|
*
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
*
|
|
15
15
|
* This source code is licensed under the MIT license found in the
|
|
16
16
|
* LICENSE file in the root directory of this source tree.
|
|
17
|
-
*/var ve;function Ue(){return ve||(ve=1,process.env.NODE_ENV!=="production"&&function(){var t=h,n=Symbol.for("react.element"),a=Symbol.for("react.portal"),i=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),f=Symbol.for("react.provider"),d=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),E=Symbol.for("react.suspense"),g=Symbol.for("react.suspense_list"),P=Symbol.for("react.memo"),j=Symbol.for("react.lazy"),s=Symbol.for("react.offscreen"),b=Symbol.iterator,C="@@iterator";function T(e){if(e===null||typeof e!="object")return null;var r=b&&e[b]||e[C];return typeof r=="function"?r:null}var y=t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function
|
|
18
|
-
`+oe+e}}var ie=!1,$;{var
|
|
17
|
+
*/var ve;function Ue(){return ve||(ve=1,process.env.NODE_ENV!=="production"&&function(){var t=h,n=Symbol.for("react.element"),a=Symbol.for("react.portal"),i=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),l=Symbol.for("react.profiler"),f=Symbol.for("react.provider"),d=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),E=Symbol.for("react.suspense"),g=Symbol.for("react.suspense_list"),P=Symbol.for("react.memo"),j=Symbol.for("react.lazy"),s=Symbol.for("react.offscreen"),b=Symbol.iterator,C="@@iterator";function T(e){if(e===null||typeof e!="object")return null;var r=b&&e[b]||e[C];return typeof r=="function"?r:null}var y=t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function _(e){{for(var r=arguments.length,c=new Array(r>1?r-1:0),v=1;v<r;v++)c[v-1]=arguments[v];k("error",e,c)}}function k(e,r,c){{var v=y.ReactDebugCurrentFrame,w=v.getStackAddendum();w!==""&&(r+="%s",c=c.concat([w]));var S=c.map(function(R){return String(R)});S.unshift("Warning: "+r),Function.prototype.apply.call(console[e],console,S)}}var L=!1,N=!1,Y=!1,x=!1,Ee=!1,ne;ne=Symbol.for("react.module.reference");function X(e){return!!(typeof e=="string"||typeof e=="function"||e===i||e===l||Ee||e===o||e===E||e===g||x||e===s||L||N||Y||typeof e=="object"&&e!==null&&(e.$$typeof===j||e.$$typeof===P||e.$$typeof===f||e.$$typeof===d||e.$$typeof===u||e.$$typeof===ne||e.getModuleId!==void 0))}function Rt(e,r,c){var v=e.displayName;if(v)return v;var w=r.displayName||r.name||"";return w!==""?c+"("+w+")":c}function Re(e){return e.displayName||"Context"}function z(e){if(e==null)return null;if(typeof e.tag=="number"&&_("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case i:return"Fragment";case a:return"Portal";case l:return"Profiler";case o:return"StrictMode";case E:return"Suspense";case g:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case d:var r=e;return Re(r)+".Consumer";case f:var c=e;return Re(c._context)+".Provider";case u:return Rt(e,e.render,"ForwardRef");case P:var v=e.displayName||null;return v!==null?v:z(e.type)||"Memo";case j:{var w=e,S=w._payload,R=w._init;try{return z(R(S))}catch{return null}}}return null}var M=Object.assign,Q=0,we,Ce,_e,pe,Se,be,Pe;function je(){}je.__reactDisabledLog=!0;function wt(){{if(Q===0){we=console.log,Ce=console.info,_e=console.warn,pe=console.error,Se=console.group,be=console.groupCollapsed,Pe=console.groupEnd;var e={configurable:!0,enumerable:!0,value:je,writable:!0};Object.defineProperties(console,{info:e,log:e,warn:e,error:e,group:e,groupCollapsed:e,groupEnd:e})}Q++}}function Ct(){{if(Q--,Q===0){var e={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:M({},e,{value:we}),info:M({},e,{value:Ce}),warn:M({},e,{value:_e}),error:M({},e,{value:pe}),group:M({},e,{value:Se}),groupCollapsed:M({},e,{value:be}),groupEnd:M({},e,{value:Pe})})}Q<0&&_("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}}var ae=y.ReactCurrentDispatcher,oe;function Z(e,r,c){{if(oe===void 0)try{throw Error()}catch(w){var v=w.stack.trim().match(/\n( *(at )?)/);oe=v&&v[1]||""}return`
|
|
18
|
+
`+oe+e}}var ie=!1,$;{var _t=typeof WeakMap=="function"?WeakMap:Map;$=new _t}function Te(e,r){if(!e||ie)return"";{var c=$.get(e);if(c!==void 0)return c}var v;ie=!0;var w=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var S;S=ae.current,ae.current=null,wt();try{if(r){var R=function(){throw Error()};if(Object.defineProperty(R.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(R,[])}catch(V){v=V}Reflect.construct(e,[],R)}else{try{R.call()}catch(V){v=V}e.call(R.prototype)}}else{try{throw Error()}catch(V){v=V}e()}}catch(V){if(V&&v&&typeof V.stack=="string"){for(var m=V.stack.split(`
|
|
19
19
|
`),I=v.stack.split(`
|
|
20
20
|
`),O=m.length-1,A=I.length-1;O>=1&&A>=0&&m[O]!==I[A];)A--;for(;O>=1&&A>=0;O--,A--)if(m[O]!==I[A]){if(O!==1||A!==1)do if(O--,A--,A<0||m[O]!==I[A]){var F=`
|
|
21
|
-
`+m[O].replace(" at new "," at ");return e.displayName&&F.includes("<anonymous>")&&(F=F.replace("<anonymous>",e.displayName)),typeof e=="function"&&$.set(e,F),F}while(O>=1&&A>=0);break}}}finally{ie=!1,ae.current=S,
|
|
21
|
+
`+m[O].replace(" at new "," at ");return e.displayName&&F.includes("<anonymous>")&&(F=F.replace("<anonymous>",e.displayName)),typeof e=="function"&&$.set(e,F),F}while(O>=1&&A>=0);break}}}finally{ie=!1,ae.current=S,Ct(),Error.prepareStackTrace=w}var G=e?e.displayName||e.name:"",Ve=G?Z(G):"";return typeof e=="function"&&$.set(e,Ve),Ve}function pt(e,r,c){return Te(e,!1)}function St(e){var r=e.prototype;return!!(r&&r.isReactComponent)}function q(e,r,c){if(e==null)return"";if(typeof e=="function")return Te(e,St(e));if(typeof e=="string")return Z(e);switch(e){case E:return Z("Suspense");case g:return Z("SuspenseList")}if(typeof e=="object")switch(e.$$typeof){case u:return pt(e.render);case P:return q(e.type,r,c);case j:{var v=e,w=v._payload,S=v._init;try{return q(S(w),r,c)}catch{}}}return""}var ee=Object.prototype.hasOwnProperty,Oe={},Ae=y.ReactDebugCurrentFrame;function te(e){if(e){var r=e._owner,c=q(e.type,e._source,r?r.type:null);Ae.setExtraStackFrame(c)}else Ae.setExtraStackFrame(null)}function bt(e,r,c,v,w){{var S=Function.call.bind(ee);for(var R in e)if(S(e,R)){var m=void 0;try{if(typeof e[R]!="function"){var I=Error((v||"React class")+": "+c+" type `"+R+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof e[R]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw I.name="Invariant Violation",I}m=e[R](r,R,v,c,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(O){m=O}m&&!(m instanceof Error)&&(te(w),_("%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).",v||"React class",c,R,typeof m),te(null)),m instanceof Error&&!(m.message in Oe)&&(Oe[m.message]=!0,te(w),_("Failed %s type: %s",c,m.message),te(null))}}}var Pt=Array.isArray;function ce(e){return Pt(e)}function jt(e){{var r=typeof Symbol=="function"&&Symbol.toStringTag,c=r&&e[Symbol.toStringTag]||e.constructor.name||"Object";return c}}function Tt(e){try{return xe(e),!1}catch{return!0}}function xe(e){return""+e}function Ie(e){if(Tt(e))return _("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",jt(e)),xe(e)}var B=y.ReactCurrentOwner,Ot={key:!0,ref:!0,__self:!0,__source:!0},ke,De,se;se={};function At(e){if(ee.call(e,"ref")){var r=Object.getOwnPropertyDescriptor(e,"ref").get;if(r&&r.isReactWarning)return!1}return e.ref!==void 0}function xt(e){if(ee.call(e,"key")){var r=Object.getOwnPropertyDescriptor(e,"key").get;if(r&&r.isReactWarning)return!1}return e.key!==void 0}function It(e,r){if(typeof e.ref=="string"&&B.current&&r&&B.current.stateNode!==r){var c=z(B.current.type);se[c]||(_('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',z(B.current.type),e.ref),se[c]=!0)}}function kt(e,r){{var c=function(){ke||(ke=!0,_("%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))};c.isReactWarning=!0,Object.defineProperty(e,"key",{get:c,configurable:!0})}}function Dt(e,r){{var c=function(){De||(De=!0,_("%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))};c.isReactWarning=!0,Object.defineProperty(e,"ref",{get:c,configurable:!0})}}var Ft=function(e,r,c,v,w,S,R){var m={$$typeof:n,type:e,key:r,ref:c,props:R,_owner:S};return m._store={},Object.defineProperty(m._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(m,"_self",{configurable:!1,enumerable:!1,writable:!1,value:v}),Object.defineProperty(m,"_source",{configurable:!1,enumerable:!1,writable:!1,value:w}),Object.freeze&&(Object.freeze(m.props),Object.freeze(m)),m};function Lt(e,r,c,v,w){{var S,R={},m=null,I=null;c!==void 0&&(Ie(c),m=""+c),xt(r)&&(Ie(r.key),m=""+r.key),At(r)&&(I=r.ref,It(r,w));for(S in r)ee.call(r,S)&&!Ot.hasOwnProperty(S)&&(R[S]=r[S]);if(e&&e.defaultProps){var O=e.defaultProps;for(S in O)R[S]===void 0&&(R[S]=O[S])}if(m||I){var A=typeof e=="function"?e.displayName||e.name||"Unknown":e;m&&kt(R,A),I&&Dt(R,A)}return Ft(e,m,I,w,v,B.current,R)}}var ue=y.ReactCurrentOwner,Fe=y.ReactDebugCurrentFrame;function U(e){if(e){var r=e._owner,c=q(e.type,e._source,r?r.type:null);Fe.setExtraStackFrame(c)}else Fe.setExtraStackFrame(null)}var le;le=!1;function fe(e){return typeof e=="object"&&e!==null&&e.$$typeof===n}function Le(){{if(ue.current){var e=z(ue.current.type);if(e)return`
|
|
22
22
|
|
|
23
|
-
Check the render method of \``+e+"`."}return""}}function
|
|
23
|
+
Check the render method of \``+e+"`."}return""}}function Nt(e){return""}var Ne={};function Yt(e){{var r=Le();if(!r){var c=typeof e=="string"?e:e.displayName||e.name;c&&(r=`
|
|
24
24
|
|
|
25
|
-
Check the top-level render call using <`+c+">.")}return r}}function Ye(e,r){{if(!e._store||e._store.validated||e.key!=null)return;e._store.validated=!0;var c=Wt(r);if(Ne[c])return;Ne[c]=!0;var v="";e&&e._owner&&e._owner!==ue.current&&(v=" It was passed a child from "+z(e._owner.type)+"."),U(e),p('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',c,v),U(null)}}function We(e,r){{if(typeof e!="object")return;if(ce(e))for(var c=0;c<e.length;c++){var v=e[c];fe(v)&&Ye(v,r)}else if(fe(e))e._store&&(e._store.validated=!0);else if(e){var R=T(e);if(typeof R=="function"&&R!==e.entries)for(var S=R.call(e),w;!(w=S.next()).done;)fe(w.value)&&Ye(w.value,r)}}}function zt(e){{var r=e.type;if(r==null||typeof r=="string")return;var c;if(typeof r=="function")c=r.propTypes;else if(typeof r=="object"&&(r.$$typeof===u||r.$$typeof===P))c=r.propTypes;else return;if(c){var v=z(r);Pt(c,e.props,"prop",v,e)}else if(r.PropTypes!==void 0&&!le){le=!0;var R=z(r);p("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",R||"Unknown")}typeof r.getDefaultProps=="function"&&!r.getDefaultProps.isReactClassApproved&&p("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function Mt(e){{for(var r=Object.keys(e.props),c=0;c<r.length;c++){var v=r[c];if(v!=="children"&&v!=="key"){U(e),p("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",v),U(null);break}}e.ref!==null&&(U(e),p("Invalid attribute `ref` supplied to `React.Fragment`."),U(null))}}function ze(e,r,c,v,R,S){{var w=X(e);if(!w){var m="";(e===void 0||typeof e=="object"&&e!==null&&Object.keys(e).length===0)&&(m+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var I=Yt();I?m+=I:m+=Le();var O;e===null?O="null":ce(e)?O="array":e!==void 0&&e.$$typeof===n?(O="<"+(z(e.type)||"Unknown")+" />",m=" Did you accidentally export a JSX literal instead of a component?"):O=typeof e,p("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",O,m)}var A=Nt(e,r,c,R,S);if(A==null)return A;if(w){var F=r.children;if(F!==void 0)if(v)if(ce(F)){for(var G=0;G<F.length;G++)We(F[G],e);Object.freeze&&Object.freeze(F)}else p("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else We(F,e)}return e===i?Mt(A):zt(A),A}}function Vt(e,r,c){return ze(e,r,c,!0)}function Ut(e,r,c){return ze(e,r,c,!1)}var Gt=Ut,Jt=Vt;B.Fragment=i,B.jsx=Gt,B.jsxs=Jt}()),B}process.env.NODE_ENV==="production"?re.exports=Ve():re.exports=Ue();var W=re.exports;const k=h.createContext({}),Ge=({children:t,apiURL:n,libraries:a,localStorageKeys:i})=>{const o=h.useMemo(()=>({apiURL:n,libraries:a,localStorageKeys:i}),[n,a,i]);return W.jsx(k.Provider,{value:o,children:t})},Je="user",Be=({Fallback:t,isLogged:n,loginPath:a="/login",redirect401Path:i="/login",...o})=>{var D,L,N,Y;const{libraries:l,localStorageKeys:f}=h.useContext(k),d=(o==null?void 0:o.reactRouter)||(l==null?void 0:l.reactRouter),u=(o==null?void 0:o.axios)||(l==null?void 0:l.axios),E=(o==null?void 0:o.localStorageKey)||(f==null?void 0:f.user)||Je;if(!d)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props.");const[g,P]=h.useState(null),{useLocation:j,Navigate:s,Outlet:b}=d,C=j(),T=h.useRef(!1),y=typeof n=="function"?n():!!n,p=typeof y=="boolean"?y:y==null?void 0:y.isLogged;return h.useEffect(()=>{T.current||(T.current=!0,u.interceptors.response.use(x=>x,async x=>{var X;return typeof x=="object"&&x&&"response"in x&&x.response&&typeof x.response=="object"&&"status"in x.response&&x.response&&typeof x.response=="object"&&"status"in x.response&&((X=x==null?void 0:x.response)==null?void 0:X.status)===401&&(u.defaults.headers.common.Authorization=null,typeof window<"u"&&window.localStorage&&localStorage.removeItem(E),P(i)),Promise.reject(x)}))},[u.defaults.headers.common,u.interceptors.response,E,i]),p&&!g?W.jsx(h.Suspense,{fallback:t,children:(L=(D=C.state)==null?void 0:D.from)!=null&&L.state&&((Y=(N=C.state)==null?void 0:N.from)==null?void 0:Y.pathname)===a?W.jsx(s,{to:C.state.from.state.from.pathname+C.state.from.state.from.search,replace:!0}):W.jsx(b,{})}):W.jsx(s,{to:a+C.search,state:{from:C},replace:!0})},Ke=({data:t,...n})=>{const{libraries:a}=h.useContext(k),i=(n==null?void 0:n.reactRouter)||(a==null?void 0:a.reactRouter),o=(n==null?void 0:n.gtm)||(a==null?void 0:a.gtm);if(!i)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView.");if(!o)throw new Error("GTM is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView.");const{useGoogleTagManager:l}=o,{useLocation:f,Outlet:d}=i,{pathname:u}=f(),{sendEvent:E}=l();return h.useEffect(()=>{E({event:"pageView",pathname:u,...t})},[t,u,E]),W.jsx(d,{})},Qe="user",He=({tokenTypeKey:t="tokenType",tokenKey:n="accessToken",postContentType:a="application/json",...i})=>{const{apiURL:o=i.apiURL,libraries:l,localStorageKeys:f}=h.useContext(k),d=(i==null?void 0:i.userLocalStorageKey)||(f==null?void 0:f.user)||Qe,u=(i==null?void 0:i.axios)||(l==null?void 0:l.axios);if(!u)throw new Error("Axios is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!(u!=null&&u.defaults))return null;if(typeof window<"u"&&window.localStorage){const E=localStorage.getItem(d),g=E?JSON.parse(E):null,P=g!=null&&g[t]?g[t]:null,j=g!=null&&g[n]?g[n]:null,s=E?`${P} ${j}`:null;s&&(u.defaults.headers.common.Authorization=s)}return u.defaults.baseURL=o,u.defaults.headers.post["Content-Type"]=a,null},Xe=({debug:t,resources:n,...a})=>{const{libraries:i}=h.useContext(k),o=(a==null?void 0:a.i18)||(i==null?void 0:i.i18),{i18next:l,initReactI18next:f,languageDetector:d}=o||{};if(!o)throw new Error("i18 is not provided. You can provide it with InjectDependenciesProvider or directly in props.");return l!=null&&l.isInitialized||(l.use(d).use(f).init({debug:t,fallbackLng:"en",interpolation:{escapeValue:!1},load:"languageOnly",react:{bindI18n:"languageChanged loaded",useSuspense:!0},resources:n,returnNull:!1}).then(()=>{document.documentElement.lang!==l.resolvedLanguage&&l.resolvedLanguage&&document.documentElement.setAttribute("lang",l.resolvedLanguage)}),l.on("languageChanged",u=>{document.documentElement.setAttribute("lang",u)})),null},Ze=({dsn:t,integrations:n,tracesSampleRate:a,replaysSessionSampleRate:i,replaysOnErrorSampleRate:o,tracePropagationTargets:l,ignoreErrors:f,debug:d,environment:u,release:E,...g})=>{const{libraries:P}=h.useContext(k),j=(g==null?void 0:g.sentry)||(P==null?void 0:P.sentry),s=(g==null?void 0:g.reactRouter)||(P==null?void 0:P.reactRouter);if(!j)throw new Error("Sentry is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!s)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(j.isInitialized())return null;const{createRoutesFromChildren:b,matchRoutes:C,useLocation:T,useNavigationType:y}=s;return(d||process.env.NODE_ENV==="prod"||process.env.NODE_ENV==="production")&&j.init({debug:d,dsn:t,environment:u||"production",ignoreErrors:[...f||[],/dynamically imported module/,/Cannot read properties of undefined \(reading 'default'\)/,/Loading chunk \d+ failed/,/ChunkLoadError/,/Failed to fetch dynamically imported module/,/vite:preloadError/],integrations:[j.reactRouterV6BrowserTracingIntegration({createRoutesFromChildren:b,matchRoutes:C,useEffect:h.useEffect,useLocation:T,useNavigationType:y}),...n||[]],release:E,replaysOnErrorSampleRate:o||1,replaysSessionSampleRate:i||.1,tracePropagationTargets:l,tracesSampleRate:a||1}),null},$e=({IMaskMixin:t,...n})=>{const a=h.useMemo(()=>t(({TextField:i,...o})=>W.jsx(i,{...o})),[t]);return W.jsx(a,{...n})},qe=({accessToken:t,...n})=>{const{libraries:a}=h.useContext(k),i=(n==null?void 0:n.mapbox)||(a==null?void 0:a.mapbox);if(!i)throw new Error("Mapbox is not provided. You can provide it with InjectDependenciesProvider or directly in props.");return t&&(i.accessToken=t),null},et=({language:t,...n})=>{const{libraries:a}=h.useContext(k),i=(n==null?void 0:n.dayjs)||(a==null?void 0:a.dayjs),o=(n==null?void 0:n.plugin)||(a==null?void 0:a.dayjsPlugin);if(!i)throw new Error("Dayjs is not provided. You can provide it with InjectDependenciesProvider or directly in props of InitializeDaysJSConfig.");return h.useEffect(()=>{(async()=>{var d;const f=t||((d=navigator.language)==null?void 0:d.slice(0,2))||"en";o&&o.forEach(u=>{u&&i.extend(u)}),await import("dayjs/locale/en"),await import("dayjs/locale/fr"),i.locale(f)})().then()},[i,o,t]),null},tt=()=>(h.useEffect(()=>{const t=n=>{try{n.preventDefault(),n.stopPropagation(),n.stopImmediatePropagation(),window.location.reload()}catch{}};return window.addEventListener("vite:preloadError",t),()=>{window.removeEventListener("vite:preloadError",t)}},[]),null),rt=t=>t&&typeof t=="function",nt=t=>t&&typeof t=="function",at=({children:t,defaultQueriesOptions:n,defaultMutationsOptions:a,...i})=>{var u,E;const{libraries:o}=h.useContext(k),l=(i==null?void 0:i.QueryClient)||((u=o==null?void 0:o.reactQuery)==null?void 0:u.QueryClient),f=(i==null?void 0:i.QueryClientProvider)||((E=o==null?void 0:o.reactQuery)==null?void 0:E.QueryClientProvider);if(!l)throw new Error("QueryClient is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!f)throw new Error("QueryClientProvider is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!rt(f))throw new Error("Provided QueryClientProvider dependencies are not valid.");if(!nt(l))throw new Error("Provided QueryClient dependencies are not valid.");const d=new l({defaultOptions:{mutations:{...a},queries:{getNextPageParam:(g,P,j)=>g.length+(j||0),refetchOnWindowFocus:!1,retry:3,...n}}});return W.jsx(f,{client:d,children:t})},ot=t=>{var E,g,P;const{libraries:n}=h.useContext(k),a=(t==null?void 0:t.i18)||(n==null?void 0:n.i18),i=((E=t==null?void 0:t.i18)==null?void 0:E.translateFunction)||((g=n==null?void 0:n.i18)==null?void 0:g.translateFunction),o=((P=a==null?void 0:a.i18next)==null?void 0:P.t)||i||(j=>j),{unknownErrorTranslationKey:l="error.unknownError"}=t||{},f=o(l),d=h.useCallback(j=>{var b,C,T,y,p,D,L,N,Y;const{response:s}=j||{};return s!=null&&s.reason?String(s.reason):(b=s==null?void 0:s.data)!=null&&b.reason?String(s.data.reason):(C=s==null?void 0:s.data)!=null&&C.message?String(s.data.message):(y=(T=s==null?void 0:s.data)==null?void 0:T.detail)!=null&&y.length&&Array.isArray((p=s==null?void 0:s.data)==null?void 0:p.detail)&&((L=(D=s==null?void 0:s.data)==null?void 0:D.detail[0])!=null&&L.msg)&&typeof((Y=(N=s==null?void 0:s.data)==null?void 0:N.detail[0])==null?void 0:Y.msg)=="string"?String(s.data.detail[0].msg):f},[f]);return{getErrorCode:h.useCallback(j=>{var b,C,T;const{response:s}=j||{};return s!=null&&s.error_code?String(s==null?void 0:s.error_code):(b=s==null?void 0:s.data)!=null&&b.error_code?String((C=s==null?void 0:s.data)==null?void 0:C.error_code):s!=null&&s.error_code?String(s==null?void 0:s.error_code):(T=s==null?void 0:s.data)!=null&&T.error_code?String(s.data.error_code):"unknown_error_code"},[]),printError:d}},it=({data:t,fetchNextPage:n,isFetchingNextPage:a,isInitialLoading:i,isLoading:o,enabled:l=!0})=>{const f=h.useCallback(async u=>{a||!l||await n({pageParam:(u==null?void 0:u.pageParam)||u.visibleRowsCount})},[l,n,a]),d=h.useMemo(()=>{if(t)return t.pages.reduce((u,E)=>[...u,...E],[])},[t]);return{fetchNextPageOnRowsScrollEnd:f,isLoading:a||o,loadingVariant:i?"skeleton":"linear",rows:d}},ct=t=>{const{libraries:n}=h.useContext(k),a=(t==null?void 0:t.axios)||(n==null?void 0:n.axios),i=(t==null?void 0:t.localStorageKey)||"user";if(!a)throw new Error("Axios is not provided. You can provide it with InjectDependenciesProvider or directly in params of useAuth.");const o=h.useCallback(({tokenType:f,accessToken:d})=>{a.defaults.headers.common.Authorization=`${f} ${d}`},[a.defaults.headers.common]),l=()=>{a.defaults.headers.common.Authorization=null};return h.useEffect(()=>{const f=({newValue:d,key:u})=>{if(u===i&&d)try{const{accessToken:E,tokenType:g}=JSON.parse(d);o({accessToken:E,tokenType:g})}catch(E){console.error("Failed to parse newValue from localStorage:",E)}};return window.addEventListener("storage",f),()=>{window.removeEventListener("storage",f)}},[i,o]),{clearAuthenticationToken:l,setAuthenticationToken:o}},ge=({library:t,date:n,format:a="ll"})=>t(n).format(a),he=(t,n="km")=>{const a=Number(t);return Number.isNaN(a)?`0 ${n}`:`${a.toFixed(2)} ${n}`},ye=t=>!t||typeof t!="string"?"":t.replace(/_/g," ").toLowerCase().split(" ").map(a=>a.length>0?a.charAt(0).toUpperCase()+a.slice(1):a).join(" "),st=t=>t!=null&&t.startsWith("/")?t!=null&&t.startsWith("/files")?t:`/files${t}`:t!=null&&t.startsWith("files")?`/${t}`:`/files/${t}`,ut=({path:t,size:n,apiURL:a})=>{if(!t)return"";const i=st(t),o=`${a}${i}`,l=o.match(/\.(jpeg|jpg|png|gif|bmp|webp|svg|avif)$/)!==null;return typeof n=="number"&&l?`${o.replace("/files",`/thumbs/${n}`)}`:o},lt=t=>{const{apiURL:n,libraries:a}=h.useContext(k),i=(t==null?void 0:t.dayjs)||(a==null?void 0:a.dayjs);return{dateAdapter:(f,d)=>{if(!i)throw new Error("Dayjs is not provided. You can provide it with InjectDependenciesProvider or directly in props.");return ge({date:f,format:d,library:i})},distanceAdapter:he,filePathAdapter:(f,d)=>{if(!n)throw new Error("API URL is not provided. You can provide it with InjectDependenciesProvider or directly in props to filePathAdapter.");return ut({apiURL:n,path:f,size:d})},worksiteNameAdapter:ye}},H=(t,n)=>n==="short"?t.split("-")[0]:t,ft=(t,n="full")=>{const[a,i]=h.useState(()=>{const o=(t==null?void 0:t.language)||navigator.language;return t&&"isInitialized"in t&&t.isInitialized,H(o,n)});return h.useEffect(()=>{var l;t&&"isInitialized"in t&&t.isInitialized&&t.language&&i(H(t.language,n));const o=f=>{i(H(f,n))};return(l=t==null?void 0:t.on)==null||l.call(t,"languageChanged",o),()=>{var f;(f=t==null?void 0:t.off)==null||f.call(t,"languageChanged",o)}},[t,n]),a},dt="tracktor.filter",me=(t,n,a)=>`${a}_${t}=>${n}`,vt=t=>{const{libraries:n,localStorageKeys:a}=h.useContext(k),i=(t==null?void 0:t.reactRouter)||(n==null?void 0:n.reactRouter),{useLocation:o,useSearchParams:l}=i,{pathname:f}=o(),[d,u]=l(),E=(a==null?void 0:a.filter)||dt;if(!i)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView.");const g=(b,C,T=!0)=>{const y=me(b,(t==null?void 0:t.pathname)||f,E);if(!C||Array.isArray(C)&&!C.length){d.delete(b),u(d),localStorage.removeItem(y);return}T&&C&&localStorage.setItem(y,JSON.stringify({...d,[b]:C})),C&&(d.set(b,JSON.stringify(C)),u(d))};return{getFilter:(b,C)=>{const T=d.get(b);if(T)try{return JSON.parse(T)}catch{return T}const y=me(b,(t==null?void 0:t.pathname)||f,E),p=localStorage.getItem(y);if(p)try{return JSON.parse(p)[b]}catch{}return C},getFilters:()=>{const b=Object.fromEntries(d.entries()),T=Object.keys(localStorage).filter(y=>y.startsWith(E)&&y.endsWith((t==null?void 0:t.pathname)||f)).reduce((y,p)=>{var L,N;const D=localStorage.getItem(p);if(D){const Y=JSON.parse(D),x=(L=Object.keys(Y))==null?void 0:L[0];y[x]=(N=Object.values(Y))==null?void 0:N[0]}return y},{});return{...b,...T}},handleFilter:(b,C)=>(T,y)=>{if(y||Array.isArray(y)&&y.length===0){const p=C||"value",D=typeof y=="object"&&p in y?y[p||"value"]:y;g(b,D);return}g(b,void 0)},setFilter:g}},gt=t=>t.charAt(0).toUpperCase()+t.slice(1).toLowerCase(),ht=t=>{const i=t.split("/").filter(o=>o.length>0).map(o=>o.replace(/\${([^}]*)}/g,"$1").split(/[_-]/).map(u=>u.charAt(0).toUpperCase()+u.slice(1)).join("")).join("");return i.charAt(0).toLowerCase()+i.slice(1)},yt=t=>(t.split("/").pop()||t).replace(/\.json$/,"").replace(/^openapi\./,""),mt=(t,n,a)=>{const i=ht(n),o=gt(a);return`${i}${o}`},Et=t=>{if(t)return(t==null?void 0:t.reduce((n,a)=>(n[a]={query:{useInfinite:!0,useInfiniteQueryParam:"offset",useQuery:!0}},n),{}))||{}},wt=t=>(Array.isArray(t)?t:[t]).reduce((a,i)=>{const{output:o,operationsToGenerateInfiniteQueryHook:l,input:f="./openapi.json"}=i||{},d=yt(f);return{...a,[d]:{hooks:{afterAllFilesWrite:"prettier src/api/ --write"},input:f,output:{baseUrl:o==null?void 0:o.baseUrl,client:"react-query",mode:"tags-split",override:{...(l==null?void 0:l.length)&&{operations:Et(l)},header:u=>["Generated by orval 🍺",...u.title?[u.title]:[],...u.description?[u.description]:[]],mutator:{name:"axiosCustomInstance",path:`${__dirname}/axiosCustomInstance.ts`},operationName:mt,query:{useQuery:!0}},schemas:(o==null?void 0:o.schemas)||`src/api/${d}/model`,target:(o==null?void 0:o.target)||`src/api/${d}/services/api.ts`,...o}}}},{});_.GTMSendPageView=Ke,_.InitializeAxiosConfig=He,_.InitializeDaysJSConfig=et,_.InitializeI18nConfig=Xe,_.InitializeMapBoxConfig=qe,_.InitializeSentryConfig=Ze,_.InjectDependenciesContext=k,_.InjectDependenciesProvider=Ge,_.MaskTextField=$e,_.PreloadErrorHandler=tt,_.QueryClientProviderWithConfig=at,_.RequireAuth=Be,_.dateAdapter=ge,_.distanceAdapter=he,_.getOrvalConfig=wt,_.useAdapter=lt,_.useAuth=ct,_.useCurrentLanguage=ft,_.useFilters=vt,_.useInfiniteDataGrid=it,_.useResponseError=ot,_.worksiteNameAdapter=ye,Object.defineProperty(_,Symbol.toStringTag,{value:"Module"})});
|
|
25
|
+
Check the top-level render call using <`+c+">.")}return r}}function Ye(e,r){{if(!e._store||e._store.validated||e.key!=null)return;e._store.validated=!0;var c=Yt(r);if(Ne[c])return;Ne[c]=!0;var v="";e&&e._owner&&e._owner!==ue.current&&(v=" It was passed a child from "+z(e._owner.type)+"."),U(e),_('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',c,v),U(null)}}function We(e,r){{if(typeof e!="object")return;if(ce(e))for(var c=0;c<e.length;c++){var v=e[c];fe(v)&&Ye(v,r)}else if(fe(e))e._store&&(e._store.validated=!0);else if(e){var w=T(e);if(typeof w=="function"&&w!==e.entries)for(var S=w.call(e),R;!(R=S.next()).done;)fe(R.value)&&Ye(R.value,r)}}}function Wt(e){{var r=e.type;if(r==null||typeof r=="string")return;var c;if(typeof r=="function")c=r.propTypes;else if(typeof r=="object"&&(r.$$typeof===u||r.$$typeof===P))c=r.propTypes;else return;if(c){var v=z(r);bt(c,e.props,"prop",v,e)}else if(r.PropTypes!==void 0&&!le){le=!0;var w=z(r);_("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",w||"Unknown")}typeof r.getDefaultProps=="function"&&!r.getDefaultProps.isReactClassApproved&&_("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function zt(e){{for(var r=Object.keys(e.props),c=0;c<r.length;c++){var v=r[c];if(v!=="children"&&v!=="key"){U(e),_("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",v),U(null);break}}e.ref!==null&&(U(e),_("Invalid attribute `ref` supplied to `React.Fragment`."),U(null))}}function ze(e,r,c,v,w,S){{var R=X(e);if(!R){var m="";(e===void 0||typeof e=="object"&&e!==null&&Object.keys(e).length===0)&&(m+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var I=Nt();I?m+=I:m+=Le();var O;e===null?O="null":ce(e)?O="array":e!==void 0&&e.$$typeof===n?(O="<"+(z(e.type)||"Unknown")+" />",m=" Did you accidentally export a JSX literal instead of a component?"):O=typeof e,_("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",O,m)}var A=Lt(e,r,c,w,S);if(A==null)return A;if(R){var F=r.children;if(F!==void 0)if(v)if(ce(F)){for(var G=0;G<F.length;G++)We(F[G],e);Object.freeze&&Object.freeze(F)}else _("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else We(F,e)}return e===i?zt(A):Wt(A),A}}function Vt(e,r,c){return ze(e,r,c,!0)}function Mt(e,r,c){return ze(e,r,c,!1)}var Ut=Mt,Gt=Vt;K.Fragment=i,K.jsx=Ut,K.jsxs=Gt}()),K}process.env.NODE_ENV==="production"?re.exports=Me():re.exports=Ue();var W=re.exports;const D=h.createContext({}),Ge=({children:t,apiURL:n,libraries:a,localStorageKeys:i})=>{const o=h.useMemo(()=>({apiURL:n,libraries:a,localStorageKeys:i}),[n,a,i]);return W.jsx(D.Provider,{value:o,children:t})},Je="user",Ke=({Fallback:t,isLogged:n,loginPath:a="/login",redirect401Path:i="/login",...o})=>{var k,L,N,Y;const{libraries:l,localStorageKeys:f}=h.useContext(D),d=(o==null?void 0:o.reactRouter)||(l==null?void 0:l.reactRouter),u=(o==null?void 0:o.axios)||(l==null?void 0:l.axios),E=(o==null?void 0:o.localStorageKey)||(f==null?void 0:f.user)||Je;if(!d)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props.");const[g,P]=h.useState(null),{useLocation:j,Navigate:s,Outlet:b}=d,C=j(),T=h.useRef(!1),y=typeof n=="function"?n():!!n,_=typeof y=="boolean"?y:y==null?void 0:y.isLogged;return h.useEffect(()=>{T.current||(T.current=!0,u.interceptors.response.use(x=>x,async x=>{var X;return typeof x=="object"&&x&&"response"in x&&x.response&&typeof x.response=="object"&&"status"in x.response&&x.response&&typeof x.response=="object"&&"status"in x.response&&((X=x==null?void 0:x.response)==null?void 0:X.status)===401&&(u.defaults.headers.common.Authorization=null,typeof window<"u"&&window.localStorage&&localStorage.removeItem(E),P(i)),Promise.reject(x)}))},[u.defaults.headers.common,u.interceptors.response,E,i]),_&&!g?W.jsx(h.Suspense,{fallback:t,children:(L=(k=C.state)==null?void 0:k.from)!=null&&L.state&&((Y=(N=C.state)==null?void 0:N.from)==null?void 0:Y.pathname)===a?W.jsx(s,{to:C.state.from.state.from.pathname+C.state.from.state.from.search,replace:!0}):W.jsx(b,{})}):W.jsx(s,{to:a+C.search,state:{from:C},replace:!0})},Qe=({data:t,...n})=>{const{libraries:a}=h.useContext(D),i=(n==null?void 0:n.reactRouter)||(a==null?void 0:a.reactRouter),o=(n==null?void 0:n.gtm)||(a==null?void 0:a.gtm);if(!i)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView.");if(!o)throw new Error("GTM is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView.");const{useGoogleTagManager:l}=o,{useLocation:f,Outlet:d}=i,{pathname:u}=f(),{sendEvent:E}=l();return h.useEffect(()=>{E({event:"pageView",pathname:u,...t})},[t,u,E]),W.jsx(d,{})},Be="user",He=({tokenTypeKey:t="tokenType",tokenKey:n="accessToken",postContentType:a="application/json",...i})=>{const{apiURL:o=i.apiURL,libraries:l,localStorageKeys:f}=h.useContext(D),d=(i==null?void 0:i.userLocalStorageKey)||(f==null?void 0:f.user)||Be,u=(i==null?void 0:i.axios)||(l==null?void 0:l.axios);if(!u)throw new Error("Axios is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!(u!=null&&u.defaults))return null;if(typeof window<"u"&&window.localStorage){const E=localStorage.getItem(d),g=E?JSON.parse(E):null,P=g!=null&&g[t]?g[t]:null,j=g!=null&&g[n]?g[n]:null,s=E?`${P} ${j}`:null;s&&(u.defaults.headers.common.Authorization=s)}return u.defaults.baseURL=o,u.defaults.headers.post["Content-Type"]=a,null},Xe=({debug:t,resources:n,...a})=>{const{libraries:i}=h.useContext(D),o=(a==null?void 0:a.i18)||(i==null?void 0:i.i18),{i18next:l,initReactI18next:f,languageDetector:d}=o||{};if(!o)throw new Error("i18 is not provided. You can provide it with InjectDependenciesProvider or directly in props.");return l!=null&&l.isInitialized||(l.use(d).use(f).init({debug:t,fallbackLng:"en",interpolation:{escapeValue:!1},load:"languageOnly",react:{bindI18n:"languageChanged loaded",useSuspense:!0},resources:n,returnNull:!1}).then(()=>{document.documentElement.lang!==l.resolvedLanguage&&l.resolvedLanguage&&document.documentElement.setAttribute("lang",l.resolvedLanguage)}),l.on("languageChanged",u=>{document.documentElement.setAttribute("lang",u)})),null},Ze=({dsn:t,integrations:n,tracesSampleRate:a,replaysSessionSampleRate:i,replaysOnErrorSampleRate:o,tracePropagationTargets:l,ignoreErrors:f,debug:d,environment:u,release:E,...g})=>{const{libraries:P}=h.useContext(D),j=(g==null?void 0:g.sentry)||(P==null?void 0:P.sentry),s=(g==null?void 0:g.reactRouter)||(P==null?void 0:P.reactRouter);if(!j)throw new Error("Sentry is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!s)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(j.isInitialized())return null;const{createRoutesFromChildren:b,matchRoutes:C,useLocation:T,useNavigationType:y}=s;return(d||process.env.NODE_ENV==="prod"||process.env.NODE_ENV==="production")&&j.init({debug:d,dsn:t,environment:u||"production",ignoreErrors:[...f||[],/dynamically imported module/,/Cannot read properties of undefined \(reading 'default'\)/,/Loading chunk \d+ failed/,/ChunkLoadError/,/Failed to fetch dynamically imported module/,/vite:preloadError/],integrations:[j.reactRouterV6BrowserTracingIntegration({createRoutesFromChildren:b,matchRoutes:C,useEffect:h.useEffect,useLocation:T,useNavigationType:y}),...n||[]],release:E,replaysOnErrorSampleRate:o||1,replaysSessionSampleRate:i||.1,tracePropagationTargets:l,tracesSampleRate:a||1}),null},$e=({IMaskMixin:t,...n})=>{const a=h.useMemo(()=>t(({TextField:i,...o})=>W.jsx(i,{...o})),[t]);return W.jsx(a,{...n})},qe=({language:t,...n})=>{const{libraries:a}=h.useContext(D),i=(n==null?void 0:n.dayjs)||(a==null?void 0:a.dayjs),o=(n==null?void 0:n.plugin)||(a==null?void 0:a.dayjsPlugin);if(!i)throw new Error("Dayjs is not provided. You can provide it with InjectDependenciesProvider or directly in props of InitializeDaysJSConfig.");return h.useEffect(()=>{(async()=>{var d;const f=t||((d=navigator.language)==null?void 0:d.slice(0,2))||"en";o&&o.forEach(u=>{u&&i.extend(u)}),await import("dayjs/locale/en"),await import("dayjs/locale/fr"),i.locale(f)})().then()},[i,o,t]),null},et=()=>(h.useEffect(()=>{const t=n=>{try{n.preventDefault(),n.stopPropagation(),n.stopImmediatePropagation(),window.location.reload()}catch{}};return window.addEventListener("vite:preloadError",t),()=>{window.removeEventListener("vite:preloadError",t)}},[]),null),tt=t=>t&&typeof t=="function",rt=t=>t&&typeof t=="function",nt=({children:t,defaultQueriesOptions:n,defaultMutationsOptions:a,...i})=>{var u,E;const{libraries:o}=h.useContext(D),l=(i==null?void 0:i.QueryClient)||((u=o==null?void 0:o.reactQuery)==null?void 0:u.QueryClient),f=(i==null?void 0:i.QueryClientProvider)||((E=o==null?void 0:o.reactQuery)==null?void 0:E.QueryClientProvider);if(!l)throw new Error("QueryClient is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!f)throw new Error("QueryClientProvider is not provided. You can provide it with InjectDependenciesProvider or directly in props.");if(!tt(f))throw new Error("Provided QueryClientProvider dependencies are not valid.");if(!rt(l))throw new Error("Provided QueryClient dependencies are not valid.");const d=new l({defaultOptions:{mutations:{...a},queries:{getNextPageParam:(g,P,j)=>g.length+(j||0),refetchOnWindowFocus:!1,retry:3,...n}}});return W.jsx(f,{client:d,children:t})},at=t=>{var E,g,P;const{libraries:n}=h.useContext(D),a=(t==null?void 0:t.i18)||(n==null?void 0:n.i18),i=((E=t==null?void 0:t.i18)==null?void 0:E.translateFunction)||((g=n==null?void 0:n.i18)==null?void 0:g.translateFunction),o=((P=a==null?void 0:a.i18next)==null?void 0:P.t)||i||(j=>j),{unknownErrorTranslationKey:l="error.unknownError"}=t||{},f=o(l),d=h.useCallback(j=>{var b,C,T,y,_,k,L,N,Y;const{response:s}=j||{};return s!=null&&s.reason?String(s.reason):(b=s==null?void 0:s.data)!=null&&b.reason?String(s.data.reason):(C=s==null?void 0:s.data)!=null&&C.message?String(s.data.message):(y=(T=s==null?void 0:s.data)==null?void 0:T.detail)!=null&&y.length&&Array.isArray((_=s==null?void 0:s.data)==null?void 0:_.detail)&&((L=(k=s==null?void 0:s.data)==null?void 0:k.detail[0])!=null&&L.msg)&&typeof((Y=(N=s==null?void 0:s.data)==null?void 0:N.detail[0])==null?void 0:Y.msg)=="string"?String(s.data.detail[0].msg):f},[f]);return{getErrorCode:h.useCallback(j=>{var b,C,T;const{response:s}=j||{};return s!=null&&s.error_code?String(s==null?void 0:s.error_code):(b=s==null?void 0:s.data)!=null&&b.error_code?String((C=s==null?void 0:s.data)==null?void 0:C.error_code):s!=null&&s.error_code?String(s==null?void 0:s.error_code):(T=s==null?void 0:s.data)!=null&&T.error_code?String(s.data.error_code):"unknown_error_code"},[]),printError:d}},ot=({data:t,fetchNextPage:n,isFetchingNextPage:a,isInitialLoading:i,isLoading:o,enabled:l=!0})=>{const f=h.useCallback(async u=>{a||!l||await n({pageParam:(u==null?void 0:u.pageParam)||u.visibleRowsCount})},[l,n,a]),d=h.useMemo(()=>{if(t)return t.pages.reduce((u,E)=>[...u,...E],[])},[t]);return{fetchNextPageOnRowsScrollEnd:f,isLoading:a||o,loadingVariant:i?"skeleton":"linear",rows:d}},it=t=>{const{libraries:n}=h.useContext(D),a=(t==null?void 0:t.axios)||(n==null?void 0:n.axios),i=(t==null?void 0:t.localStorageKey)||"user";if(!a)throw new Error("Axios is not provided. You can provide it with InjectDependenciesProvider or directly in params of useAuth.");const o=h.useCallback(({tokenType:f,accessToken:d})=>{a.defaults.headers.common.Authorization=`${f} ${d}`},[a.defaults.headers.common]),l=()=>{a.defaults.headers.common.Authorization=null};return h.useEffect(()=>{const f=({newValue:d,key:u})=>{if(u===i&&d)try{const{accessToken:E,tokenType:g}=JSON.parse(d);o({accessToken:E,tokenType:g})}catch(E){console.error("Failed to parse newValue from localStorage:",E)}};return window.addEventListener("storage",f),()=>{window.removeEventListener("storage",f)}},[i,o]),{clearAuthenticationToken:l,setAuthenticationToken:o}},ge=({library:t,date:n,format:a="ll"})=>t(n).format(a),he=(t,n)=>{const{fractionDigits:a=0,metric:i="km"}=n||{},o=Number(t);return Number.isNaN(o)?`0 ${i}`:`${o.toFixed(a)} ${i}`},ye=t=>!t||typeof t!="string"?"":t.replace(/_/g," ").toLowerCase().split(" ").map(a=>a.length>0?a.charAt(0).toUpperCase()+a.slice(1):a).join(" "),ct=t=>t!=null&&t.startsWith("/")?t!=null&&t.startsWith("/files")?t:`/files${t}`:t!=null&&t.startsWith("files")?`/${t}`:`/files/${t}`,st=({path:t,size:n,apiURL:a})=>{if(!t)return"";const i=ct(t),o=`${a}${i}`,l=o.match(/\.(jpeg|jpg|png|gif|bmp|webp|svg|avif)$/)!==null;return typeof n=="number"&&l?`${o.replace("/files",`/thumbs/${n}`)}`:o},ut=t=>{const{apiURL:n,libraries:a}=h.useContext(D),i=(t==null?void 0:t.dayjs)||(a==null?void 0:a.dayjs);return{dateAdapter:(f,d)=>{if(!i)throw new Error("Dayjs is not provided. You can provide it with InjectDependenciesProvider or directly in props.");return ge({date:f,format:d,library:i})},distanceAdapter:he,filePathAdapter:(f,d)=>{if(!n)throw new Error("API URL is not provided. You can provide it with InjectDependenciesProvider or directly in props to filePathAdapter.");return st({apiURL:n,path:f,size:d})},worksiteNameAdapter:ye}},H=(t,n)=>n==="short"?t.split("-")[0]:t,lt=(t,n="full")=>{const[a,i]=h.useState(()=>{const o=(t==null?void 0:t.language)||navigator.language;return t&&"isInitialized"in t&&t.isInitialized,H(o,n)});return h.useEffect(()=>{var l;t&&"isInitialized"in t&&t.isInitialized&&t.language&&i(H(t.language,n));const o=f=>{i(H(f,n))};return(l=t==null?void 0:t.on)==null||l.call(t,"languageChanged",o),()=>{var f;(f=t==null?void 0:t.off)==null||f.call(t,"languageChanged",o)}},[t,n]),a},ft="tracktor.filter",me=(t,n,a)=>`${a}_${t}=>${n}`,dt=t=>{const{libraries:n,localStorageKeys:a}=h.useContext(D),i=(t==null?void 0:t.reactRouter)||(n==null?void 0:n.reactRouter),{useLocation:o,useSearchParams:l}=i,{pathname:f}=o(),[d,u]=l(),E=(a==null?void 0:a.filter)||ft;if(!i)throw new Error("React Router is not provided. You can provide it with InjectDependenciesProvider or directly in props of GTMSendPageView.");const g=(b,C,T=!0)=>{const y=me(b,(t==null?void 0:t.pathname)||f,E);if(!C||Array.isArray(C)&&!C.length){d.delete(b),u(d),localStorage.removeItem(y);return}T&&C&&localStorage.setItem(y,JSON.stringify({...d,[b]:C})),C&&(d.set(b,JSON.stringify(C)),u(d))};return{getFilter:(b,C)=>{const T=d.get(b);if(T)try{return JSON.parse(T)}catch{return T}const y=me(b,(t==null?void 0:t.pathname)||f,E),_=localStorage.getItem(y);if(_)try{return JSON.parse(_)[b]}catch{}return C},getFilters:()=>{const b=Object.fromEntries(d.entries()),T=Object.keys(localStorage).filter(y=>y.startsWith(E)&&y.endsWith((t==null?void 0:t.pathname)||f)).reduce((y,_)=>{var L,N;const k=localStorage.getItem(_);if(k){const Y=JSON.parse(k),x=(L=Object.keys(Y))==null?void 0:L[0];y[x]=(N=Object.values(Y))==null?void 0:N[0]}return y},{});return{...b,...T}},handleFilter:(b,C)=>(T,y)=>{if(y||Array.isArray(y)&&y.length===0){const _=C||"value",k=typeof y=="object"&&_ in y?y[_||"value"]:y;g(b,k);return}g(b,void 0)},setFilter:g}},vt=t=>t.charAt(0).toUpperCase()+t.slice(1).toLowerCase(),gt=t=>{const i=t.split("/").filter(o=>o.length>0).map(o=>o.replace(/\${([^}]*)}/g,"$1").split(/[_-]/).map(u=>u.charAt(0).toUpperCase()+u.slice(1)).join("")).join("");return i.charAt(0).toLowerCase()+i.slice(1)},ht=t=>(t.split("/").pop()||t).replace(/\.json$/,"").replace(/^openapi\./,""),yt=(t,n,a)=>{const i=gt(n),o=vt(a);return`${i}${o}`},mt=t=>{if(t)return(t==null?void 0:t.reduce((n,a)=>(n[a]={query:{useInfinite:!0,useInfiniteQueryParam:"offset",useQuery:!0}},n),{}))||{}},Et=t=>(Array.isArray(t)?t:[t]).reduce((a,i)=>{const{output:o,operationsToGenerateInfiniteQueryHook:l,input:f="./openapi.json"}=i||{},d=ht(f);return{...a,[d]:{hooks:{afterAllFilesWrite:"prettier src/api/ --write"},input:f,output:{baseUrl:o==null?void 0:o.baseUrl,client:"react-query",mode:"tags-split",override:{...(l==null?void 0:l.length)&&{operations:mt(l)},header:u=>["Generated by orval 🍺",...u.title?[u.title]:[],...u.description?[u.description]:[]],mutator:{name:"axiosCustomInstance",path:`${__dirname}/axiosCustomInstance.ts`},operationName:yt,query:{useQuery:!0}},schemas:(o==null?void 0:o.schemas)||`src/api/${d}/model`,target:(o==null?void 0:o.target)||`src/api/${d}/services/api.ts`,...o}}}},{});p.GTMSendPageView=Qe,p.InitializeAxiosConfig=He,p.InitializeDaysJSConfig=qe,p.InitializeI18nConfig=Xe,p.InitializeSentryConfig=Ze,p.InjectDependenciesContext=D,p.InjectDependenciesProvider=Ge,p.MaskTextField=$e,p.PreloadErrorHandler=et,p.QueryClientProviderWithConfig=nt,p.RequireAuth=Ke,p.dateAdapter=ge,p.distanceAdapter=he,p.getOrvalConfig=Et,p.useAdapter=ut,p.useAuth=it,p.useCurrentLanguage=lt,p.useFilters=dt,p.useInfiniteDataGrid=ot,p.useResponseError=at,p.worksiteNameAdapter=ye,Object.defineProperty(p,Symbol.toStringTag,{value:"Module"})});
|
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
* Adapter for distance
|
|
3
3
|
* Get distance and metric and return formatted distance
|
|
4
4
|
* @param distance
|
|
5
|
-
* @param
|
|
5
|
+
* @param options
|
|
6
6
|
*/
|
|
7
|
-
declare const distanceAdapter: (distance?: string | number | null,
|
|
7
|
+
declare const distanceAdapter: (distance?: string | number | null, options?: {
|
|
8
|
+
fractionDigits?: number;
|
|
9
|
+
metric?: string;
|
|
10
|
+
}) => string;
|
|
8
11
|
export default distanceAdapter;
|
package/package.json
CHANGED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { InjectDependenciesContextProps } from '../../context/InjectDependenciesProvider';
|
|
2
|
-
interface InitializeMapBoxConfigProps {
|
|
3
|
-
/**
|
|
4
|
-
* MapBox library
|
|
5
|
-
*/
|
|
6
|
-
mapbox?: NonNullable<InjectDependenciesContextProps["libraries"]>["mapbox"];
|
|
7
|
-
/**
|
|
8
|
-
* MapBox access token
|
|
9
|
-
*/
|
|
10
|
-
accessToken?: string;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* This component is used to initialize MapBox
|
|
14
|
-
* @param mapbox
|
|
15
|
-
* @param accessToken
|
|
16
|
-
* @constructor
|
|
17
|
-
*/
|
|
18
|
-
declare const InitializeMapBoxConfig: ({ accessToken, ...props }: InitializeMapBoxConfigProps) => null;
|
|
19
|
-
export default InitializeMapBoxConfig;
|