aq-fe-framework 0.1.218 → 0.1.220
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{chunk-OPXN7KYV.mjs → chunk-3M42242C.mjs} +1 -1
- package/dist/{chunk-JZNIYVST.mjs → chunk-CUPVVJAX.mjs} +27 -27
- package/dist/components/index.mjs +2 -2
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/modules-features/index.mjs +2 -2
- package/package.json +1 -1
@@ -2,47 +2,23 @@ import {
|
|
2
2
|
__spreadValues
|
3
3
|
} from "./chunk-FWCSY2DS.mjs";
|
4
4
|
|
5
|
-
// src/api/config/baseAxios.ts
|
6
|
-
import axios from "axios";
|
7
|
-
var baseAxios = axios.create({
|
8
|
-
baseURL: process.env.NEXT_PUBLIC_API
|
9
|
-
// server
|
10
|
-
// baseURL: process.env.NEXT_PUBLIC_API_LOCAL, // local debug
|
11
|
-
});
|
12
|
-
baseAxios.interceptors.request.use(
|
13
|
-
(config) => {
|
14
|
-
var _a, _b;
|
15
|
-
const tokenData = localStorage.getItem("useS_authenticate");
|
16
|
-
const state = JSON.parse(tokenData);
|
17
|
-
const token = (_b = (_a = state == null ? void 0 : state.state) == null ? void 0 : _a.state) == null ? void 0 : _b.token;
|
18
|
-
if (token) {
|
19
|
-
config.headers.Authorization = `Bearer ${token}`;
|
20
|
-
}
|
21
|
-
return config;
|
22
|
-
},
|
23
|
-
(error) => {
|
24
|
-
return Promise.reject(error);
|
25
|
-
}
|
26
|
-
);
|
27
|
-
var baseAxios_default = baseAxios;
|
28
|
-
|
29
5
|
// src/hooks/useLoadConfig.ts
|
30
6
|
import { useEffect } from "react";
|
31
|
-
var useLoadConfig = () => {
|
7
|
+
var useLoadConfig = (axiosInstance) => {
|
32
8
|
useEffect(() => {
|
33
9
|
(async () => {
|
34
10
|
try {
|
35
11
|
const res = await fetch("/config.json");
|
36
12
|
const config = await res.json();
|
37
13
|
if (config.baseURL) {
|
38
|
-
|
14
|
+
axiosInstance.defaults.baseURL = config.baseURL;
|
39
15
|
console.log("\u2705 baseURL set to", config.baseURL);
|
40
16
|
}
|
41
17
|
} catch (err) {
|
42
18
|
console.error("\u274C L\u1ED7i khi load config.json:", err);
|
43
19
|
}
|
44
20
|
})();
|
45
|
-
}, []);
|
21
|
+
}, [axiosInstance]);
|
46
22
|
};
|
47
23
|
|
48
24
|
// src/hooks/custom-hooks/createBaseApi.ts
|
@@ -102,6 +78,30 @@ function useMyReactQuery({
|
|
102
78
|
}, options));
|
103
79
|
}
|
104
80
|
|
81
|
+
// src/api/config/baseAxios.ts
|
82
|
+
import axios from "axios";
|
83
|
+
var baseAxios = axios.create({
|
84
|
+
baseURL: process.env.NEXT_PUBLIC_API
|
85
|
+
// server
|
86
|
+
// baseURL: process.env.NEXT_PUBLIC_API_LOCAL, // local debug
|
87
|
+
});
|
88
|
+
baseAxios.interceptors.request.use(
|
89
|
+
(config) => {
|
90
|
+
var _a, _b;
|
91
|
+
const tokenData = localStorage.getItem("useS_authenticate");
|
92
|
+
const state = JSON.parse(tokenData);
|
93
|
+
const token = (_b = (_a = state == null ? void 0 : state.state) == null ? void 0 : _a.state) == null ? void 0 : _b.token;
|
94
|
+
if (token) {
|
95
|
+
config.headers.Authorization = `Bearer ${token}`;
|
96
|
+
}
|
97
|
+
return config;
|
98
|
+
},
|
99
|
+
(error) => {
|
100
|
+
return Promise.reject(error);
|
101
|
+
}
|
102
|
+
);
|
103
|
+
var baseAxios_default = baseAxios;
|
104
|
+
|
105
105
|
// src/hooks/query/AQ/useQ_AQ_GetAQModule.ts
|
106
106
|
import { useQuery as useQuery2 } from "@tanstack/react-query";
|
107
107
|
function useQ_AQ_GetAQModule() {
|
@@ -65,8 +65,8 @@ import {
|
|
65
65
|
useS_BasicAppShell,
|
66
66
|
useS_ButtonImport,
|
67
67
|
utils_layout_getItemsWithoutLinks
|
68
|
-
} from "../chunk-
|
69
|
-
import "../chunk-
|
68
|
+
} from "../chunk-3M42242C.mjs";
|
69
|
+
import "../chunk-CUPVVJAX.mjs";
|
70
70
|
import "../chunk-Y3YGC5IH.mjs";
|
71
71
|
import "../chunk-5U2JSHSJ.mjs";
|
72
72
|
import "../chunk-7ZCOFATU.mjs";
|
package/dist/hooks/index.d.mts
CHANGED
@@ -4,7 +4,7 @@ import * as _tanstack_react_query from '@tanstack/react-query';
|
|
4
4
|
import { UseMutationOptions, QueryKey, UseQueryOptions } from '@tanstack/react-query';
|
5
5
|
import { I as IAQModule } from '../IAQModule-XZYlbivW.mjs';
|
6
6
|
|
7
|
-
declare const useLoadConfig: () => void;
|
7
|
+
declare const useLoadConfig: (axiosInstance: AxiosInstance) => void;
|
8
8
|
|
9
9
|
interface MyApiResponse<IRes> {
|
10
10
|
isSuccess: 1 | 0;
|
package/dist/hooks/index.mjs
CHANGED
@@ -25,12 +25,12 @@ import {
|
|
25
25
|
useS_BasicAppShell,
|
26
26
|
useS_authenticate,
|
27
27
|
utils_layout_getItemsWithoutLinks
|
28
|
-
} from "../chunk-
|
28
|
+
} from "../chunk-3M42242C.mjs";
|
29
29
|
import {
|
30
30
|
baseAxios_default,
|
31
31
|
useQ_AQ_GetAQModule,
|
32
32
|
useQ_SkillCenter_GetAll
|
33
|
-
} from "../chunk-
|
33
|
+
} from "../chunk-CUPVVJAX.mjs";
|
34
34
|
import {
|
35
35
|
createGenericStore
|
36
36
|
} from "../chunk-Y3YGC5IH.mjs";
|