@m4l/core 0.1.38 → 0.1.40
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/contexts/BaseContext/index.d.ts +1 -1
- package/contexts/DomainContext/{index.d34b500f.js → index.8d81b39c.js} +8 -7
- package/contexts/DomainContext/index.d.ts +1 -1
- package/contexts/DomainContext/types.d.ts +1 -0
- package/contexts/DomainCountryContext/{index.5f46a11a.js → index.85791bcb.js} +4 -4
- package/contexts/DomainCountryContext/index.d.ts +1 -1
- package/contexts/EnvironmentContext/index.d.ts +1 -1
- package/contexts/FlagsContext/index.d.ts +1 -1
- package/contexts/HostToolsContext/index.d.ts +1 -1
- package/contexts/ModuleDictionaryContext/{index.8ba9981b.js → index.b7c026b1.js} +4 -4
- package/contexts/ModuleDictionaryContext/index.d.ts +1 -1
- package/contexts/ModulePrivilegesContext/{index.d1286210.js → index.7abed4dc.js} +4 -4
- package/contexts/ModulePrivilegesContext/index.d.ts +1 -1
- package/contexts/ModuleSkeletonContext/{index.f3fbaa68.js → index.18801a35.js} +4 -4
- package/contexts/ModuleSkeletonContext/index.d.ts +1 -1
- package/contexts/NetworkContext/index.d.ts +1 -1
- package/hooks/useDomain/{index.af32231a.js → index.9e5dc4a4.js} +2 -2
- package/hooks/useModuleDictionary/{index.a3bb2d5e.js → index.93177cf8.js} +1 -1
- package/hooks/useModulePrivileges/{index.5a1a1a1e.js → index.4b22874b.js} +1 -1
- package/hooks/useModuleSkeleton/{index.8e948037.js → index.0429108c.js} +1 -1
- package/hooks/usePaginate/index.d4437ef6.js +62 -0
- package/hooks/usePaginate/types.d.ts +2 -1
- package/index.js +11 -11
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/utils/axiosOperation/types.d.ts +4 -0
- package/utils/{axiosOperation.5a823aca.js → axiosOperation.e428c3b5.js} +22 -22
- package/hooks/usePaginate/index.7cb17527.js +0 -58
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { BaseProviderProps } from './types';
|
|
3
3
|
declare const BaseContext: import("react").Context<unknown>;
|
|
4
|
-
declare function BaseProvider<T>(props: BaseProviderProps<T>): JSX.Element;
|
|
4
|
+
declare function BaseProvider<T>(props: BaseProviderProps<T>): import("react").JSX.Element;
|
|
5
5
|
export { BaseProvider, BaseContext };
|
|
@@ -11,30 +11,31 @@ function A(e) {
|
|
|
11
11
|
} = e, {
|
|
12
12
|
domain_token: r,
|
|
13
13
|
host_static_assets: n,
|
|
14
|
-
environment_assets:
|
|
14
|
+
environment_assets: a
|
|
15
15
|
} = D(), {
|
|
16
16
|
addFlag: l
|
|
17
17
|
} = g(), [i, c] = s(!1), [_, u] = s({
|
|
18
18
|
company_logo_small_url: "",
|
|
19
19
|
company_logo_normal_url: "",
|
|
20
|
-
name: ""
|
|
20
|
+
name: "",
|
|
21
|
+
slogan: ""
|
|
21
22
|
}), {
|
|
22
23
|
networkOperation: d
|
|
23
24
|
} = v();
|
|
24
25
|
return p(() => {
|
|
25
|
-
let
|
|
26
|
+
let t = !0;
|
|
26
27
|
return d({
|
|
27
28
|
method: "GET",
|
|
28
29
|
endPoint: `na/info/${r}`
|
|
29
30
|
}).then((o) => {
|
|
30
|
-
|
|
31
|
+
t && (u({
|
|
31
32
|
...o.data,
|
|
32
|
-
company_logo_normal_url: o.data.company_logo_normal_url ?? `${n}/${
|
|
33
|
-
company_logo_small_url: o.data.company_logo_small_url ?? `${n}/${
|
|
33
|
+
company_logo_normal_url: o.data.company_logo_normal_url ?? `${n}/${a}/frontend/commons/assets/icons/isologo.svg`,
|
|
34
|
+
company_logo_small_url: o.data.company_logo_small_url ?? `${n}/${a}/frontend/commons/assets/icons/isotipo_m4l.svg`
|
|
34
35
|
}), l(y.FLAG_DOMAIN_LOADED), c(!0));
|
|
35
36
|
}).finally(() => {
|
|
36
37
|
}), function() {
|
|
37
|
-
|
|
38
|
+
t = !1;
|
|
38
39
|
};
|
|
39
40
|
}, []), /* @__PURE__ */ h($.Provider, {
|
|
40
41
|
value: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { DomainProviderProps, Domain } from './types';
|
|
3
3
|
declare const DomainContext: import("react").Context<Domain | null>;
|
|
4
|
-
declare function DomainProvider(props: DomainProviderProps): JSX.Element;
|
|
4
|
+
declare function DomainProvider(props: DomainProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { DomainProvider, DomainContext };
|
|
@@ -3,10 +3,10 @@ import "../BaseContext/index.f9cdc955.js";
|
|
|
3
3
|
import "../EnvironmentContext/index.7045c64f.js";
|
|
4
4
|
import "../FlagsContext/index.5f795859.js";
|
|
5
5
|
import { u as T } from "../../hooks/useHostTools/index.66d9a667.js";
|
|
6
|
-
import "../DomainContext/index.
|
|
7
|
-
import "../ModuleDictionaryContext/index.
|
|
8
|
-
import "../ModulePrivilegesContext/index.
|
|
9
|
-
import "../ModuleSkeletonContext/index.
|
|
6
|
+
import "../DomainContext/index.8d81b39c.js";
|
|
7
|
+
import "../ModuleDictionaryContext/index.b7c026b1.js";
|
|
8
|
+
import "../ModulePrivilegesContext/index.7abed4dc.js";
|
|
9
|
+
import "../ModuleSkeletonContext/index.18801a35.js";
|
|
10
10
|
import "../NetworkContext/index.d1dfbc3a.js";
|
|
11
11
|
import { u as f } from "../../hooks/usePropageteMF/index.c440b829.js";
|
|
12
12
|
import { E as i } from "../../types/index.42c24946.js";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { DomainCountryContextType, DomainCountryProviderProps } from './types';
|
|
3
3
|
declare const DomainCountryContext: import("react").Context<DomainCountryContextType | null>;
|
|
4
|
-
declare function DomainCountryProvider(props: DomainCountryProviderProps): JSX.Element;
|
|
4
|
+
declare function DomainCountryProvider(props: DomainCountryProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { DomainCountryProvider, DomainCountryContext };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { EnvironmentProviderProps } from './types';
|
|
3
3
|
declare const EnvironmentContext: import("react").Context<import("../..").EnvironmentType | null>;
|
|
4
|
-
declare function EnvironmentProvider(props: EnvironmentProviderProps): JSX.Element;
|
|
4
|
+
declare function EnvironmentProvider(props: EnvironmentProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { EnvironmentProvider, EnvironmentContext };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { FlagsContextProps, FlagsProviderProps } from './types';
|
|
3
3
|
declare const FlagsContext: import("react").Context<FlagsContextProps | null>;
|
|
4
|
-
declare function FlagsProvider({ children }: FlagsProviderProps): JSX.Element;
|
|
4
|
+
declare function FlagsProvider({ children }: FlagsProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { FlagsProvider, FlagsContext };
|
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
import { HostToolsType } from '../../types';
|
|
3
3
|
import type { HostToolsProviderProps } from './types';
|
|
4
4
|
declare const HostToolsContext: import("react").Context<HostToolsType | null>;
|
|
5
|
-
declare function HostToolsProvider(props: HostToolsProviderProps): JSX.Element;
|
|
5
|
+
declare function HostToolsProvider(props: HostToolsProviderProps): import("react").JSX.Element;
|
|
6
6
|
export { HostToolsProvider, HostToolsContext };
|
|
@@ -3,11 +3,11 @@ import "../BaseContext/index.f9cdc955.js";
|
|
|
3
3
|
import { u as M } from "../../hooks/useEnvironment/index.04dca988.js";
|
|
4
4
|
import { u as N } from "../../hooks/useFlags/index.a986729d.js";
|
|
5
5
|
import { u as P } from "../../hooks/useHostTools/index.66d9a667.js";
|
|
6
|
-
import "../DomainContext/index.
|
|
7
|
-
import "../ModulePrivilegesContext/index.
|
|
8
|
-
import "../ModuleSkeletonContext/index.
|
|
6
|
+
import "../DomainContext/index.8d81b39c.js";
|
|
7
|
+
import "../ModulePrivilegesContext/index.7abed4dc.js";
|
|
8
|
+
import "../ModuleSkeletonContext/index.18801a35.js";
|
|
9
9
|
import { u as _ } from "../../hooks/useNetwork/index.acbf28d5.js";
|
|
10
|
-
import "../DomainCountryContext/index.
|
|
10
|
+
import "../DomainCountryContext/index.85791bcb.js";
|
|
11
11
|
import { C as x } from "../../types/index.42c24946.js";
|
|
12
12
|
import { jsx as A } from "react/jsx-runtime";
|
|
13
13
|
const E = y(null);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ModuleDictionaryContextProps, ModuleDictionaryProviderProps } from './types';
|
|
3
3
|
declare const ModuleDictionaryContext: import("react").Context<ModuleDictionaryContextProps | null>;
|
|
4
|
-
declare function ModuleDictionaryProvider(props: ModuleDictionaryProviderProps): JSX.Element;
|
|
4
|
+
declare function ModuleDictionaryProvider(props: ModuleDictionaryProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { ModuleDictionaryProvider, ModuleDictionaryContext };
|
|
@@ -3,11 +3,11 @@ import "../BaseContext/index.f9cdc955.js";
|
|
|
3
3
|
import "../EnvironmentContext/index.7045c64f.js";
|
|
4
4
|
import { u as v } from "../../hooks/useFlags/index.a986729d.js";
|
|
5
5
|
import { u as E } from "../../hooks/useHostTools/index.66d9a667.js";
|
|
6
|
-
import "../DomainContext/index.
|
|
7
|
-
import "../ModuleDictionaryContext/index.
|
|
8
|
-
import "../ModuleSkeletonContext/index.
|
|
6
|
+
import "../DomainContext/index.8d81b39c.js";
|
|
7
|
+
import "../ModuleDictionaryContext/index.b7c026b1.js";
|
|
8
|
+
import "../ModuleSkeletonContext/index.18801a35.js";
|
|
9
9
|
import { u as h } from "../../hooks/useNetwork/index.acbf28d5.js";
|
|
10
|
-
import "../DomainCountryContext/index.
|
|
10
|
+
import "../DomainCountryContext/index.85791bcb.js";
|
|
11
11
|
import { C as i } from "../../types/index.42c24946.js";
|
|
12
12
|
import { jsx as L } from "react/jsx-runtime";
|
|
13
13
|
const C = f(null);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ModulePrivilegesContextProps, ModulePrivilegesProviderProps } from './types';
|
|
3
3
|
declare const ModulePrivilegesContext: import("react").Context<ModulePrivilegesContextProps | null>;
|
|
4
|
-
declare function ModulePrivilegesProvider(props: ModulePrivilegesProviderProps): JSX.Element;
|
|
4
|
+
declare function ModulePrivilegesProvider(props: ModulePrivilegesProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { ModulePrivilegesProvider, ModulePrivilegesContext };
|
|
@@ -3,11 +3,11 @@ import "../BaseContext/index.f9cdc955.js";
|
|
|
3
3
|
import "../EnvironmentContext/index.7045c64f.js";
|
|
4
4
|
import { a as m } from "../../hooks/useFlags/index.a986729d.js";
|
|
5
5
|
import "../HostToolsContext/index.499db832.js";
|
|
6
|
-
import "../DomainContext/index.
|
|
7
|
-
import "../ModuleDictionaryContext/index.
|
|
8
|
-
import "../ModulePrivilegesContext/index.
|
|
6
|
+
import "../DomainContext/index.8d81b39c.js";
|
|
7
|
+
import "../ModuleDictionaryContext/index.b7c026b1.js";
|
|
8
|
+
import "../ModulePrivilegesContext/index.7abed4dc.js";
|
|
9
9
|
import "../NetworkContext/index.d1dfbc3a.js";
|
|
10
|
-
import "../DomainCountryContext/index.
|
|
10
|
+
import "../DomainCountryContext/index.85791bcb.js";
|
|
11
11
|
import { jsx as n } from "react/jsx-runtime";
|
|
12
12
|
const p = i(null);
|
|
13
13
|
function P(o) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ModuleSkeletonContextProps, ModuleSkeletonProviderProps } from './types';
|
|
3
3
|
declare const ModuleSkeletonContext: import("react").Context<ModuleSkeletonContextProps | null>;
|
|
4
|
-
declare function ModuleSkeletonProvider(props: ModuleSkeletonProviderProps): JSX.Element;
|
|
4
|
+
declare function ModuleSkeletonProvider(props: ModuleSkeletonProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { ModuleSkeletonProvider, ModuleSkeletonContext };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { NetworkProviderProps } from './types';
|
|
3
3
|
declare const NetworkContext: import("react").Context<import("./types").NetworkType | null>;
|
|
4
|
-
declare function NetworkProvider(props: NetworkProviderProps): JSX.Element;
|
|
4
|
+
declare function NetworkProvider(props: NetworkProviderProps): import("react").JSX.Element;
|
|
5
5
|
export { NetworkProvider, NetworkContext };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { useContext as t } from "react";
|
|
2
|
-
import { D as n } from "../../contexts/DomainContext/index.
|
|
3
|
-
import { D as e } from "../../contexts/DomainCountryContext/index.
|
|
2
|
+
import { D as n } from "../../contexts/DomainContext/index.8d81b39c.js";
|
|
3
|
+
import { D as e } from "../../contexts/DomainCountryContext/index.85791bcb.js";
|
|
4
4
|
const m = () => {
|
|
5
5
|
const o = t(n);
|
|
6
6
|
if (!o)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { useState as n, useContext as s, useEffect as u } from "react";
|
|
2
|
-
import { M as r } from "../../contexts/ModuleSkeletonContext/index.
|
|
2
|
+
import { M as r } from "../../contexts/ModuleSkeletonContext/index.18801a35.js";
|
|
3
3
|
const S = () => {
|
|
4
4
|
const [t, o] = n(!0), e = s(r);
|
|
5
5
|
if (!e)
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { useState as s, useRef as T, useCallback as b, useEffect as f } from "react";
|
|
2
|
+
import { u as q } from "../useHostTools/index.66d9a667.js";
|
|
3
|
+
import { u as x } from "../useNetwork/index.acbf28d5.js";
|
|
4
|
+
const a = {
|
|
5
|
+
page: 0,
|
|
6
|
+
rowsPerPage: 25,
|
|
7
|
+
totalRecords: 0
|
|
8
|
+
}, v = (m) => {
|
|
9
|
+
const {
|
|
10
|
+
endPoint: l,
|
|
11
|
+
timeout: h = 5e3,
|
|
12
|
+
queryParams: g,
|
|
13
|
+
fireOnChangeParms: P,
|
|
14
|
+
rowsPerPage: c = a.rowsPerPage,
|
|
15
|
+
startProgress: w,
|
|
16
|
+
stopProgress: R
|
|
17
|
+
} = m, [u, o] = s(P ? 1 : 0), [S, i] = s([]), [d, n] = s({ ...a, rowsPerPage: c }), t = T({ ...a, rowsPerPage: c }), [C, k] = s(!0), { startProgress: y, stopProgress: E } = q(), { networkOperation: O } = x(), p = b(() => {
|
|
18
|
+
o((r) => r + 1);
|
|
19
|
+
}, []);
|
|
20
|
+
return f(() => {
|
|
21
|
+
if (C) {
|
|
22
|
+
k(!1);
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
P && p();
|
|
26
|
+
}, [g]), f(() => {
|
|
27
|
+
let r = !0;
|
|
28
|
+
if (u !== 0)
|
|
29
|
+
return O({
|
|
30
|
+
method: "GET",
|
|
31
|
+
endPoint: l,
|
|
32
|
+
timeout: h,
|
|
33
|
+
parms: {
|
|
34
|
+
...g,
|
|
35
|
+
page: t.current.page,
|
|
36
|
+
limit: t.current.rowsPerPage
|
|
37
|
+
},
|
|
38
|
+
options: {
|
|
39
|
+
startProgress: w || y,
|
|
40
|
+
stopProgress: R || E
|
|
41
|
+
}
|
|
42
|
+
}).then((e) => {
|
|
43
|
+
r && (i(e.data), t.current.page = e.pager.page, n((Q) => ({
|
|
44
|
+
...Q,
|
|
45
|
+
page: e.pager.page,
|
|
46
|
+
totalRecords: e.pager.total
|
|
47
|
+
})));
|
|
48
|
+
}), function() {
|
|
49
|
+
r = !1;
|
|
50
|
+
};
|
|
51
|
+
}, [u]), { onPageChange: (r) => {
|
|
52
|
+
t.current.page = r, o((e) => e + 1);
|
|
53
|
+
}, onRowsPerPageChange: (r) => {
|
|
54
|
+
t.current.rowsPerPage = r, n((e) => ({ ...e, rowsPerPage: r })), o((e) => e + 1);
|
|
55
|
+
}, pagerState: d, rows: S, clearRows: () => {
|
|
56
|
+
i([]), n(a);
|
|
57
|
+
}, Refresh: p };
|
|
58
|
+
};
|
|
59
|
+
export {
|
|
60
|
+
a as i,
|
|
61
|
+
v as u
|
|
62
|
+
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
+
import { AxiosOptions } from '../../utils/axiosOperation/types';
|
|
1
2
|
export declare interface PagerState {
|
|
2
3
|
page: number;
|
|
3
4
|
rowsPerPage: number;
|
|
4
5
|
totalRecords: number;
|
|
5
6
|
}
|
|
6
7
|
export declare const initialPagerState: PagerState;
|
|
7
|
-
export interface UsePaginateProps {
|
|
8
|
+
export interface UsePaginateProps extends AxiosOptions {
|
|
8
9
|
endPoint: string;
|
|
9
10
|
timeout?: number;
|
|
10
11
|
fireOnChangeParms?: boolean;
|
package/index.js
CHANGED
|
@@ -3,27 +3,27 @@ import { B as i, a as n } from "./contexts/BaseContext/index.f9cdc955.js";
|
|
|
3
3
|
import { E as u, a as x } from "./contexts/EnvironmentContext/index.7045c64f.js";
|
|
4
4
|
import { F as l, a as f } from "./contexts/FlagsContext/index.5f795859.js";
|
|
5
5
|
import { H as g, a as v } from "./contexts/HostToolsContext/index.499db832.js";
|
|
6
|
-
import { D as C, a as M } from "./contexts/DomainContext/index.
|
|
7
|
-
import { M as S, a as c } from "./contexts/ModuleDictionaryContext/index.
|
|
8
|
-
import { M as F, a as E } from "./contexts/ModulePrivilegesContext/index.
|
|
9
|
-
import { M as B, a as L } from "./contexts/ModuleSkeletonContext/index.
|
|
6
|
+
import { D as C, a as M } from "./contexts/DomainContext/index.8d81b39c.js";
|
|
7
|
+
import { M as S, a as c } from "./contexts/ModuleDictionaryContext/index.b7c026b1.js";
|
|
8
|
+
import { M as F, a as E } from "./contexts/ModulePrivilegesContext/index.7abed4dc.js";
|
|
9
|
+
import { M as B, a as L } from "./contexts/ModuleSkeletonContext/index.18801a35.js";
|
|
10
10
|
import { N, a as w } from "./contexts/NetworkContext/index.d1dfbc3a.js";
|
|
11
|
-
import { D as h, a as O } from "./contexts/DomainCountryContext/index.
|
|
11
|
+
import { D as h, a as O } from "./contexts/DomainCountryContext/index.85791bcb.js";
|
|
12
12
|
import { u as b } from "./hooks/useBase/index.4375dcef.js";
|
|
13
13
|
import { u as q } from "./hooks/useEnvironment/index.04dca988.js";
|
|
14
14
|
import { u as A, a as G } from "./hooks/useFlags/index.a986729d.js";
|
|
15
15
|
import { u as J } from "./hooks/useHostTools/index.66d9a667.js";
|
|
16
|
-
import { u as Q, a as R } from "./hooks/useDomain/index.
|
|
16
|
+
import { u as Q, a as R } from "./hooks/useDomain/index.9e5dc4a4.js";
|
|
17
17
|
import { u as V, a as X } from "./hooks/useLocalStorage/index.48b47dca.js";
|
|
18
|
-
import { u as Z } from "./hooks/useModuleDictionary/index.
|
|
19
|
-
import { u as $ } from "./hooks/useModulePrivileges/index.
|
|
20
|
-
import { u as eo } from "./hooks/useModuleSkeleton/index.
|
|
18
|
+
import { u as Z } from "./hooks/useModuleDictionary/index.93177cf8.js";
|
|
19
|
+
import { u as $ } from "./hooks/useModulePrivileges/index.4b22874b.js";
|
|
20
|
+
import { u as eo } from "./hooks/useModuleSkeleton/index.0429108c.js";
|
|
21
21
|
import { u as ao } from "./hooks/useNetwork/index.acbf28d5.js";
|
|
22
|
-
import { i as so, u as io } from "./hooks/usePaginate/index.
|
|
22
|
+
import { i as so, u as io } from "./hooks/usePaginate/index.d4437ef6.js";
|
|
23
23
|
import { u as mo } from "./hooks/usePropageteMF/index.c440b829.js";
|
|
24
24
|
import { C as xo, E as po } from "./types/index.42c24946.js";
|
|
25
25
|
import { a as fo, g as go, s as vo, v as Po } from "./utils/index.8c4b528d.js";
|
|
26
|
-
import { a as Mo } from "./utils/axiosOperation.
|
|
26
|
+
import { a as Mo } from "./utils/axiosOperation.e428c3b5.js";
|
|
27
27
|
import "react/jsx-runtime";
|
|
28
28
|
import "axios";
|
|
29
29
|
import "qs";
|
package/package.json
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { Id, ToastContent, ToastOptions } from 'react-toastify';
|
|
|
2
2
|
import type { BrowserHistory } from 'history';
|
|
3
3
|
import { ResponseType } from 'axios';
|
|
4
4
|
import { DomainCountry } from '../contexts';
|
|
5
|
+
import { AxiosOptions } from '../utils/axiosOperation/types';
|
|
5
6
|
export declare type Maybe<T> = T | undefined | null;
|
|
6
7
|
export declare interface EnvironmentType {
|
|
7
8
|
isLocalhost: boolean;
|
|
@@ -27,6 +28,7 @@ export declare type NetworkProps = {
|
|
|
27
28
|
isExternalUrl?: boolean;
|
|
28
29
|
responseType?: ResponseType;
|
|
29
30
|
signal?: AbortSignal;
|
|
31
|
+
options?: AxiosOptions;
|
|
30
32
|
};
|
|
31
33
|
export declare type ToastFunction = (content: ToastContent, options?: ToastOptions) => Id;
|
|
32
34
|
export declare enum EmmitEvents {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import { E as
|
|
4
|
-
function
|
|
1
|
+
import $ from "axios";
|
|
2
|
+
import y from "qs";
|
|
3
|
+
import { E as R } from "../types/index.42c24946.js";
|
|
4
|
+
function j(e, s, a, i, o) {
|
|
5
5
|
const { toast: t } = a;
|
|
6
6
|
return i === "json" ? s && s.data && typeof s.data == "object" ? s.data.error && s.data.error?.code && s.data.error?.msg !== void 0 ? Promise.reject({ ...s.data.error, status: s.status }) : (s.data.messagen && o && t(s.data.message, { type: "success", autoClose: 1e4 }), s.data) : Promise.reject({
|
|
7
7
|
code: 1,
|
|
@@ -9,54 +9,54 @@ function v(e, s, a, i, o) {
|
|
|
9
9
|
status: s.status
|
|
10
10
|
}) : s.data;
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function v(e, s, a = !0, i = !0) {
|
|
13
13
|
const { toast: o } = s;
|
|
14
14
|
let t = {
|
|
15
15
|
message: "",
|
|
16
16
|
status: 1,
|
|
17
17
|
code: 0
|
|
18
18
|
};
|
|
19
|
-
return e?.code !== void 0 && t.status !== void 0 && e.message !== void 0 && (t = { ...t, ...e }), e?.response ? e.response.data && typeof e.response.data == "object" && e.response.data.error && e.response.data.error?.code && e.response.data.error?.message !== void 0 ? t = { ...e.response.data.error, status: e.response.status } : (t.message = e.message, t.status = e.response.status, t.code = 0) : e?.request ? (t.message = `${e?.code} ${e.message}`, t.code = -1) : (t.message = `${e?.code} ${e.message}`, t.status = 0, t.code = -2), a && e?.response?.status === 401 && s.events_emit(
|
|
19
|
+
return e?.code !== void 0 && t.status !== void 0 && e.message !== void 0 && (t = { ...t, ...e }), e?.response ? e.response.data && typeof e.response.data == "object" && e.response.data.error && e.response.data.error?.code && e.response.data.error?.message !== void 0 ? t = { ...e.response.data.error, status: e.response.status } : (t.message = e.message, t.status = e.response.status, t.code = 0) : e?.request ? (t.message = `${e?.code} ${e.message}`, t.code = -1) : (t.message = `${e?.code} ${e.message}`, t.status = 0, t.code = -2), a && e?.response?.status === 401 && s.events_emit(R.EMMIT_EVENT_NET_SERVICE_UNAUTHORIZED, {}), e?.response?.data?.error?.message && (t.message = e?.response?.data?.error.message), a && (t.message.indexOf("ERR_CANCELED") > -1 || i && o(`${t.message} - status: ${t.status} - code: ${t.code}`, {
|
|
20
20
|
type: "error"
|
|
21
21
|
})), t;
|
|
22
22
|
}
|
|
23
|
-
const
|
|
23
|
+
const U = async (e, s, a) => {
|
|
24
24
|
const {
|
|
25
25
|
method: i,
|
|
26
26
|
endPoint: o,
|
|
27
27
|
timeout: t = 6e4,
|
|
28
28
|
parms: c = {},
|
|
29
29
|
data: g = {},
|
|
30
|
-
isRemote:
|
|
30
|
+
isRemote: r = !0,
|
|
31
31
|
checkUnAuthorized: f = !0,
|
|
32
|
-
headers:
|
|
33
|
-
onDownloadProgress:
|
|
32
|
+
headers: l,
|
|
33
|
+
onDownloadProgress: p,
|
|
34
34
|
isExternalUrl: u,
|
|
35
35
|
responseType: m = "json",
|
|
36
|
-
signal:
|
|
36
|
+
signal: E,
|
|
37
37
|
toastSuccess: _ = !0,
|
|
38
|
-
toastError:
|
|
38
|
+
toastError: P = !0
|
|
39
39
|
} = e;
|
|
40
40
|
let d;
|
|
41
|
-
return
|
|
41
|
+
return r ? d = s.host_api_remote : d = s.host_api_local, e?.options?.startProgress && e?.options?.startProgress(), $({
|
|
42
42
|
baseURL: u ? void 0 : d,
|
|
43
|
-
withCredentials:
|
|
43
|
+
withCredentials: r,
|
|
44
44
|
method: i,
|
|
45
45
|
url: u ? o : `/${o}`,
|
|
46
46
|
data: g,
|
|
47
47
|
params: {},
|
|
48
|
-
paramsSerializer: () =>
|
|
49
|
-
headers:
|
|
48
|
+
paramsSerializer: () => y.stringify(c, { encode: !0 }),
|
|
49
|
+
headers: l,
|
|
50
50
|
timeout: t,
|
|
51
|
-
onDownloadProgress:
|
|
51
|
+
onDownloadProgress: p,
|
|
52
52
|
responseType: m,
|
|
53
|
-
signal:
|
|
54
|
-
}).then((
|
|
55
|
-
(
|
|
53
|
+
signal: E
|
|
54
|
+
}).then((n) => j(o, n, a, m, _)).catch(
|
|
55
|
+
(n) => Promise.reject(v(n, a, f, P))
|
|
56
56
|
).finally(() => {
|
|
57
|
-
|
|
57
|
+
e?.options?.stopProgress && e?.options?.stopProgress();
|
|
58
58
|
});
|
|
59
59
|
};
|
|
60
60
|
export {
|
|
61
|
-
|
|
61
|
+
U as a
|
|
62
62
|
};
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { useState as a, useRef as O, useCallback as Q, useEffect as l } from "react";
|
|
2
|
-
import { u as T } from "../useHostTools/index.66d9a667.js";
|
|
3
|
-
import { u as b } from "../useNetwork/index.acbf28d5.js";
|
|
4
|
-
const s = {
|
|
5
|
-
page: 0,
|
|
6
|
-
rowsPerPage: 25,
|
|
7
|
-
totalRecords: 0
|
|
8
|
-
}, U = (m) => {
|
|
9
|
-
const {
|
|
10
|
-
endPoint: w,
|
|
11
|
-
timeout: h = 5e3,
|
|
12
|
-
queryParams: g,
|
|
13
|
-
fireOnChangeParms: c,
|
|
14
|
-
rowsPerPage: u = s.rowsPerPage
|
|
15
|
-
} = m, [P, o] = a(c ? 1 : 0), [R, i] = a([]), [d, n] = a({ ...s, rowsPerPage: u }), t = O({ ...s, rowsPerPage: u }), [C, S] = a(!0), { startProgress: y, stopProgress: f } = T(), { networkOperation: k } = b(), p = Q(() => {
|
|
16
|
-
o((r) => r + 1);
|
|
17
|
-
}, []);
|
|
18
|
-
return l(() => {
|
|
19
|
-
if (C) {
|
|
20
|
-
S(!1);
|
|
21
|
-
return;
|
|
22
|
-
}
|
|
23
|
-
c && p();
|
|
24
|
-
}, [g]), l(() => {
|
|
25
|
-
let r = !0;
|
|
26
|
-
if (P !== 0)
|
|
27
|
-
return y(), k({
|
|
28
|
-
method: "GET",
|
|
29
|
-
endPoint: w,
|
|
30
|
-
timeout: h,
|
|
31
|
-
parms: {
|
|
32
|
-
...g,
|
|
33
|
-
page: t.current.page,
|
|
34
|
-
limit: t.current.rowsPerPage
|
|
35
|
-
}
|
|
36
|
-
}).then((e) => {
|
|
37
|
-
r && (i(e.data), t.current.page = e.pager.page, n((E) => ({
|
|
38
|
-
...E,
|
|
39
|
-
page: e.pager.page,
|
|
40
|
-
totalRecords: e.pager.total
|
|
41
|
-
})));
|
|
42
|
-
}).finally(() => {
|
|
43
|
-
r && f();
|
|
44
|
-
}), function() {
|
|
45
|
-
f(), r = !1;
|
|
46
|
-
};
|
|
47
|
-
}, [P]), { onPageChange: (r) => {
|
|
48
|
-
t.current.page = r, o((e) => e + 1);
|
|
49
|
-
}, onRowsPerPageChange: (r) => {
|
|
50
|
-
t.current.rowsPerPage = r, n((e) => ({ ...e, rowsPerPage: r })), o((e) => e + 1);
|
|
51
|
-
}, pagerState: d, rows: R, clearRows: () => {
|
|
52
|
-
i([]), n(s);
|
|
53
|
-
}, Refresh: p };
|
|
54
|
-
};
|
|
55
|
-
export {
|
|
56
|
-
s as i,
|
|
57
|
-
U as u
|
|
58
|
-
};
|