eco-vue-js 0.10.30 → 0.10.31
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/components/Button/WButtonSelectionAction.vue.js +1 -1
- package/dist/components/Expansion/WExpansion.vue.js +2 -2
- package/dist/components/HeaderBar/WHeaderBar.vue.js +4 -4
- package/dist/components/InfoCard/WInfoCard.vue.d.ts +4 -0
- package/dist/components/InfoCard/WInfoCard.vue.d.ts.map +1 -1
- package/dist/components/InfoCard/WInfoCard.vue.js +21 -10
- package/dist/components/InfoCard/models/utils.d.ts +4 -0
- package/dist/components/InfoCard/models/utils.d.ts.map +1 -0
- package/dist/components/InfoCard/models/utils.js +20 -0
- package/dist/components/List/components/ListCardAction.vue.js +1 -1
- package/dist/components/Tabs/WTabs.vue.d.ts.map +1 -1
- package/dist/components/Tabs/WTabs.vue.js +1 -1
- package/dist/utils/useDefaultQuery.d.ts +1 -1
- package/dist/utils/useDefaultQuery.d.ts.map +1 -1
- package/dist/utils/useDefaultQuery.js +19 -15
- package/package.json +2 -2
@@ -2,7 +2,7 @@ import { defineComponent, createElementBlock, openBlock, normalizeClass, createE
|
|
2
2
|
import _sfc_main$1 from '../Tooltip/WTooltip.vue.js';
|
3
3
|
|
4
4
|
const _hoisted_1 = ["disabled"];
|
5
|
-
const _hoisted_2 = { class: "-h--w-input-height flex items-center gap-2 px-[--w-list-padding,1rem]" };
|
5
|
+
const _hoisted_2 = { class: "-h--w-input-height sm-not:-px--inner-margin flex items-center gap-2 px-[--w-list-padding,1rem]" };
|
6
6
|
const _hoisted_3 = {
|
7
7
|
key: 0,
|
8
8
|
class: "sm-not:hidden whitespace-nowrap font-normal"
|
@@ -15,10 +15,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
15
15
|
setup(__props) {
|
16
16
|
return (_ctx, _cache) => {
|
17
17
|
return openBlock(), createBlock(Transition, {
|
18
|
-
"enter-active-class": "transition-[grid-template-rows] overflow-hidden grid",
|
18
|
+
"enter-active-class": "transition-[grid-template-rows] overflow-y-hidden grid",
|
19
19
|
"enter-from-class": "grid-rows-[0fr]",
|
20
20
|
"enter-to-class": "grid-rows-[1fr]",
|
21
|
-
"leave-active-class": "transition-[grid-template-rows] overflow-hidden grid",
|
21
|
+
"leave-active-class": "transition-[grid-template-rows] overflow-y-hidden grid",
|
22
22
|
"leave-from-class": "grid-rows-[1fr]",
|
23
23
|
"leave-to-class": "grid-rows-[0fr]",
|
24
24
|
onBeforeEnter: _cache[0] || (_cache[0] = ($event) => _ctx.$emit("update:visible", true)),
|
@@ -10,10 +10,10 @@ const _hoisted_1 = {
|
|
10
10
|
class: "-h--header-height fixed inset-x-0 top-0 z-10 flex print:hidden"
|
11
11
|
};
|
12
12
|
const _hoisted_2 = { class: "text-accent sm:text-2.5xl flex-1 truncate text-xl font-semibold" };
|
13
|
-
const _hoisted_3 = { class: "w-ripple w-ripple-hover relative flex h-full items-center px-[--w-list-padding,1rem]" };
|
13
|
+
const _hoisted_3 = { class: "w-ripple w-ripple-hover sm-not:-px--inner-margin relative flex h-full items-center px-[--w-list-padding,1rem]" };
|
14
14
|
const _hoisted_4 = {
|
15
15
|
key: 0,
|
16
|
-
class: "
|
16
|
+
class: "xl-not:pl-[3.75rem] -px--inner-margin relative flex w-full flex-1 items-center gap-2"
|
17
17
|
};
|
18
18
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
19
19
|
__name: "WHeaderBar",
|
@@ -65,7 +65,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
65
65
|
style: normalizeStyle({ "--header-height-padding": unref(headerPadding) + "px" })
|
66
66
|
}, null, 6)),
|
67
67
|
withDirectives(createElementVNode("div", {
|
68
|
-
class: normalizeClass(["-pl--inner-margin xl-not
|
68
|
+
class: normalizeClass(["-pl--inner-margin xl-not:-pl--header-height relative flex max-w-full flex-1 items-center", {
|
69
69
|
"-pr--inner-margin": !_ctx.searchEnabled
|
70
70
|
}])
|
71
71
|
}, [
|
@@ -76,7 +76,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
76
76
|
]),
|
77
77
|
_ctx.searchEnabled ? (openBlock(), createElementBlock("button", {
|
78
78
|
key: 0,
|
79
|
-
class: "w-ripple-trigger
|
79
|
+
class: "w-ripple-trigger sm:-pr--inner-margin h-full select-none",
|
80
80
|
onClick: openSearch
|
81
81
|
}, [
|
82
82
|
createElementVNode("div", _hoisted_3, [
|
@@ -1,10 +1,14 @@
|
|
1
|
+
import { SemanticType } from '../../utils/SemanticType';
|
1
2
|
type __VLS_Props = {
|
2
3
|
noBg?: boolean;
|
3
4
|
noIcon?: boolean;
|
5
|
+
icon?: SVGComponent;
|
6
|
+
semanticType?: SemanticType;
|
4
7
|
};
|
5
8
|
declare function __VLS_template(): {
|
6
9
|
attrs: Partial<{}>;
|
7
10
|
slots: {
|
11
|
+
top?(_: {}): any;
|
8
12
|
default?(_: {}): any;
|
9
13
|
};
|
10
14
|
refs: {};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WInfoCard.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/InfoCard/WInfoCard.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"WInfoCard.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/InfoCard/WInfoCard.vue"],"names":[],"mappings":"AA0BA;AA4CA,OAAO,EAAC,YAAY,EAAC,MAAM,sBAAsB,CAAA;AAIjD,KAAK,WAAW,GAAG;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,YAAY,CAAA;IACnB,YAAY,CAAC,EAAE,YAAY,CAAA;CAC5B,CAAC;AAKF,iBAAS,cAAc;WAsDT,OAAO,IAA6B;;qBAXzB,GAAG;yBACC,GAAG;;;;EAe/B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
@@ -1,26 +1,37 @@
|
|
1
|
-
import { defineComponent, createElementBlock, openBlock, normalizeClass,
|
1
|
+
import { defineComponent, createElementBlock, openBlock, normalizeClass, unref, renderSlot, createElementVNode, createBlock, createCommentVNode, resolveDynamicComponent } from 'vue';
|
2
2
|
import IconNegativeInfo from '../../assets/icons/sax/IconNegativeInfo.svg.js';
|
3
|
+
import { SemanticType } from '../../utils/SemanticType.js';
|
4
|
+
import { infoCardSemanticTypeMap, infoCardIconSemanticTypeMap } from './models/utils.js';
|
3
5
|
|
4
|
-
const _hoisted_1 = { class: "
|
6
|
+
const _hoisted_1 = { class: "-gap--inner-margin grid grid-cols-[auto,1fr]" };
|
7
|
+
const _hoisted_2 = { class: "text-pretty py-1 leading-relaxed" };
|
5
8
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
6
9
|
__name: "WInfoCard",
|
7
10
|
props: {
|
8
11
|
noBg: { type: Boolean },
|
9
|
-
noIcon: { type: Boolean }
|
12
|
+
noIcon: { type: Boolean },
|
13
|
+
icon: {},
|
14
|
+
semanticType: {}
|
10
15
|
},
|
11
16
|
setup(__props) {
|
12
17
|
return (_ctx, _cache) => {
|
13
18
|
return openBlock(), createElementBlock("div", {
|
14
|
-
class: normalizeClass(["sm-not:-px--inner-margin
|
15
|
-
|
19
|
+
class: normalizeClass(["sm-not:-px--inner-margin sm-not:-mx---inner-margin p-4 sm:rounded-3xl", {
|
20
|
+
[unref(infoCardSemanticTypeMap)[_ctx.semanticType ?? unref(SemanticType).SECONDARY]]: !_ctx.noBg
|
16
21
|
}])
|
17
22
|
}, [
|
18
|
-
|
19
|
-
key: 0,
|
20
|
-
class: "square-8 sm-not:square-7 sm-not:-ml-1 text-description inline-block rotate-180"
|
21
|
-
})) : createCommentVNode("", true),
|
23
|
+
renderSlot(_ctx.$slots, "top"),
|
22
24
|
createElementVNode("div", _hoisted_1, [
|
23
|
-
|
25
|
+
!_ctx.noIcon ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.icon ?? unref(IconNegativeInfo)), {
|
26
|
+
key: 0,
|
27
|
+
class: normalizeClass(["square-6 sm-not:-mx-1 inline-block", {
|
28
|
+
[unref(infoCardIconSemanticTypeMap)[_ctx.semanticType ?? unref(SemanticType).SECONDARY]]: true,
|
29
|
+
"rotate-180": !_ctx.icon
|
30
|
+
}])
|
31
|
+
}, null, 8, ["class"])) : createCommentVNode("", true),
|
32
|
+
createElementVNode("div", _hoisted_2, [
|
33
|
+
renderSlot(_ctx.$slots, "default")
|
34
|
+
])
|
24
35
|
])
|
25
36
|
], 2);
|
26
37
|
};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/components/InfoCard/models/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,sBAAsB,CAAA;AAEjD,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAOhE,CAAA;AAED,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,YAAY,EAAE,MAAM,CAOpE,CAAA"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { SemanticType } from '../../../utils/SemanticType.js';
|
2
|
+
|
3
|
+
const infoCardSemanticTypeMap = {
|
4
|
+
[SemanticType.PRIMARY]: "bg-primary-default/10 dark:bg-primary-dark/10",
|
5
|
+
[SemanticType.SECONDARY]: "bg-gray-100 dark:bg-gray-800",
|
6
|
+
[SemanticType.POSITIVE]: "bg-positive/10 dark:bg-positive-dark/10",
|
7
|
+
[SemanticType.NEGARIVE]: "bg-negative/10 dark:bg-negative-dark/10",
|
8
|
+
[SemanticType.WARNING]: "bg-warning/10 dark:bg-warning-dark/10",
|
9
|
+
[SemanticType.INFO]: "bg-info/10 dark:bg-info-dark/10"
|
10
|
+
};
|
11
|
+
const infoCardIconSemanticTypeMap = {
|
12
|
+
[SemanticType.PRIMARY]: "text-primary-default dark:text-primary-dark",
|
13
|
+
[SemanticType.SECONDARY]: "text-description",
|
14
|
+
[SemanticType.POSITIVE]: "text-positive dark:text-positive-dark",
|
15
|
+
[SemanticType.NEGARIVE]: "text-negative dark:text-negative-dark",
|
16
|
+
[SemanticType.WARNING]: "text-warning dark:text-warning-dark",
|
17
|
+
[SemanticType.INFO]: "text-info dark:text-info-dark"
|
18
|
+
};
|
19
|
+
|
20
|
+
export { infoCardIconSemanticTypeMap, infoCardSemanticTypeMap };
|
@@ -12,7 +12,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
12
12
|
return (_ctx, _cache) => {
|
13
13
|
return openBlock(), createBlock(resolveDynamicComponent(_ctx.tag), mergeProps(_ctx.props, {
|
14
14
|
class: ["w-ripple w-ripple-hover w-ripple-has w-ripple-opacity-[0.04] absolute inset-0 cursor-pointer select-none", {
|
15
|
-
"w-ripple-rounded-[--w-list-rounded,unset] rounded-[--w-list-rounded,unset]": _ctx.card
|
15
|
+
"sm:w-ripple-rounded-[--w-list-rounded,unset] sm:rounded-[--w-list-rounded,unset]": _ctx.card
|
16
16
|
}],
|
17
17
|
onClick: _cache[0] || (_cache[0] = ($event) => _ctx.$emit("click", $event))
|
18
18
|
}), null, 16, ["class"]);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"WTabs.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Tabs/WTabs.vue"],"names":[],"mappings":"AAgIA;AAAA,OAiZO,KAAK,EAAgB,SAAS,EAAC,MAAM,SAAS,CAAA;AAErD,OAAO,EAAC,KAAK,aAAa,EAAsJ,MAAM,KAAK,CAAA;AAE3L,OAAO,KAAK,MAAM,6BAA6B,CAAA;AAwR/C,iBAAS,cAAc;WAyRT,OAAO,IAA6B;;iBA9RvC,MAAM,IAAI;;iBAAV,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"WTabs.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Tabs/WTabs.vue"],"names":[],"mappings":"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"}
|
@@ -210,7 +210,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
210
210
|
ref: "buttonContainer",
|
211
211
|
class: normalizeClass(["relative", {
|
212
212
|
"sm-not:snap-start grid grid-cols-[1fr,auto]": _ctx.side,
|
213
|
-
"no-scrollbar sm-not:-pl--inner-margin flex snap-x snap-mandatory snap-always overflow-x-auto overscroll-x-contain pr-[50%]": !_ctx.side
|
213
|
+
"no-scrollbar sm-not:-pl--inner-margin sm-not:-mx---inner-margin flex snap-x snap-mandatory snap-always overflow-x-auto overscroll-x-contain pr-[50%]": !_ctx.side
|
214
214
|
}])
|
215
215
|
}, [
|
216
216
|
(openBlock(true), createElementBlock(Fragment, null, renderList(defaultSlotsAll.value, (slot, index) => {
|
@@ -9,7 +9,7 @@ export declare const useDefaultQuery: <TQueryFnData = unknown, TData = TQueryFnD
|
|
9
9
|
export declare const PAGE_LENGTH = 24;
|
10
10
|
export declare const makeQueryPaginated: <Data, QueryParams extends {
|
11
11
|
page?: number;
|
12
|
-
}>(key: string, getter: (queryParams: QueryParams) => Data[], setter?: (data: Data[]) => void, pageLength?: number) => UseQueryPaginated<Data, QueryParams>;
|
12
|
+
}>(key: string, getter: (queryParams: QueryParams) => Data[] | undefined, setter?: (data: Data[]) => void, pageLength?: number) => UseQueryPaginated<Data, QueryParams>;
|
13
13
|
export declare const wrapUseQueryPaginated: <Data, QueryParams extends {
|
14
14
|
page?: number;
|
15
15
|
}>(key: string, queryFn: UseQueryDefault<Data[]>) => UseQueryPaginated<Data, QueryParams>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"useDefaultQuery.d.ts","sourceRoot":"","sources":["../../../src/utils/useDefaultQuery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,WAAW,EAAE,KAAK,QAAQ,EAAE,KAAK,kBAAkB,EAAE,QAAQ,EAAiB,MAAM,qBAAqB,CAAA;AAGtH,OAAO,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAA;AAE9B,KAAK,MAAM,GAAG,UAAU,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC,CAAA;AAEvD,KAAK,OAAO,CAAC,YAAY,GAAG,OAAO,IAAI,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,UAAU,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC,CAAA;AAEhI,KAAK,yBAAyB,CAAC,YAAY,GAAG,OAAO,EAAE,KAAK,GAAG,YAAY,IAAI,kBAAkB,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG;IACnH,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;CAC/B,CAAA;AAED,eAAO,MAAM,eAAe,GAC1B,YAAY,GAAG,OAAO,EACtB,KAAK,GAAG,YAAY,EACpB,SAAS,SAAS,QAAQ,GAAG,QAAQ,EACrC,GAAG,MAAM,UAAU,CAAC,OAAO,QAAQ,CAAC,YAAY,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC,KAAG,yBAAyB,CAAC,YAAY,EAAE,KAAK,CAO/H,CAAA;AAED,eAAO,MAAM,WAAW,KAAK,CAAA;AAE7B,eAAO,MAAM,kBAAkB,GAAI,IAAI,EAAE,WAAW,SAAS;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE,KAAK,MAAM,EAAE,QAAQ,CAAC,WAAW,EAAE,WAAW,KAAK,IAAI,EAAE,EAAE,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,EAAE,mBAAwB,KAAG,iBAAiB,CAAC,IAAI,EAAE,WAAW,
|
1
|
+
{"version":3,"file":"useDefaultQuery.d.ts","sourceRoot":"","sources":["../../../src/utils/useDefaultQuery.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,WAAW,EAAE,KAAK,QAAQ,EAAE,KAAK,kBAAkB,EAAE,QAAQ,EAAiB,MAAM,qBAAqB,CAAA;AAGtH,OAAO,EAAC,QAAQ,EAAC,MAAM,OAAO,CAAA;AAE9B,KAAK,MAAM,GAAG,UAAU,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC,CAAA;AAEvD,KAAK,OAAO,CAAC,YAAY,GAAG,OAAO,IAAI,CAAC,OAAO,EAAE,YAAY,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,KAAK,UAAU,CAAC,WAAW,CAAC,gBAAgB,CAAC,CAAC,CAAA;AAEhI,KAAK,yBAAyB,CAAC,YAAY,GAAG,OAAO,EAAE,KAAK,GAAG,YAAY,IAAI,kBAAkB,CAAC,KAAK,EAAE,QAAQ,CAAC,GAAG;IACnH,OAAO,EAAE,OAAO,CAAC,YAAY,CAAC,CAAA;CAC/B,CAAA;AAED,eAAO,MAAM,eAAe,GAC1B,YAAY,GAAG,OAAO,EACtB,KAAK,GAAG,YAAY,EACpB,SAAS,SAAS,QAAQ,GAAG,QAAQ,EACrC,GAAG,MAAM,UAAU,CAAC,OAAO,QAAQ,CAAC,YAAY,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,CAAC,CAAC,KAAG,yBAAyB,CAAC,YAAY,EAAE,KAAK,CAO/H,CAAA;AAED,eAAO,MAAM,WAAW,KAAK,CAAA;AAE7B,eAAO,MAAM,kBAAkB,GAAI,IAAI,EAAE,WAAW,SAAS;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE,KAAK,MAAM,EAAE,QAAQ,CAAC,WAAW,EAAE,WAAW,KAAK,IAAI,EAAE,GAAG,SAAS,EAAE,SAAS,CAAC,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,EAAE,mBAAwB,KAAG,iBAAiB,CAAC,IAAI,EAAE,WAAW,CAyDnP,CAAA;AAED,eAAO,MAAM,qBAAqB,GAAI,IAAI,EAAE,WAAW,SAAS;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAC,EAAE,KAAK,MAAM,EAAE,SAAS,eAAe,CAAC,IAAI,EAAE,CAAC,KAAG,iBAAiB,CAAC,IAAI,EAAE,WAAW,CAanK,CAAA"}
|
@@ -13,20 +13,23 @@ const makeQueryPaginated = (key, getter, setter, pageLength = PAGE_LENGTH) => {
|
|
13
13
|
return (queryParams, options = {}) => {
|
14
14
|
const query = useDefaultQuery({
|
15
15
|
queryKey: [key, queryParams],
|
16
|
-
queryFn: () =>
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
16
|
+
queryFn: () => {
|
17
|
+
return new Promise((resolve, reject) => {
|
18
|
+
const currentList = getter(unref(queryParams));
|
19
|
+
if (!currentList) return resolve(null);
|
20
|
+
const current = Math.max(unref(queryParams).page ?? 1, 1);
|
21
|
+
const pages_count = Math.max(Math.ceil(currentList.length / pageLength), 1);
|
22
|
+
if (current > pages_count) reject(new ApiError({ status: 404 }));
|
23
|
+
else resolve({
|
24
|
+
count: currentList.length,
|
25
|
+
pages_count,
|
26
|
+
current,
|
27
|
+
next: pages_count > current ? current + 1 : null,
|
28
|
+
previous: current !== 1 ? current - 1 : null,
|
29
|
+
results: currentList.slice(pageLength * (current - 1), pageLength * current)
|
30
|
+
});
|
28
31
|
});
|
29
|
-
}
|
32
|
+
},
|
30
33
|
...options
|
31
34
|
});
|
32
35
|
const setDataOld = query.setData;
|
@@ -34,7 +37,7 @@ const makeQueryPaginated = (key, getter, setter, pageLength = PAGE_LENGTH) => {
|
|
34
37
|
if (setter && unref(options2)?.index !== void 0) {
|
35
38
|
const index = unref(unref(options2)?.index);
|
36
39
|
if (index !== void 0) {
|
37
|
-
const newList = getter({})
|
40
|
+
const newList = getter({})?.slice() ?? [];
|
38
41
|
const oldItem = query.data.value?.results[index];
|
39
42
|
if (oldItem !== void 0) {
|
40
43
|
const itemIndex = newList.findIndex((item) => item.id === oldItem.id);
|
@@ -55,8 +58,9 @@ const makeQueryPaginated = (key, getter, setter, pageLength = PAGE_LENGTH) => {
|
|
55
58
|
const wrapUseQueryPaginated = (key, queryFn) => {
|
56
59
|
return (queryParams, options = {}) => {
|
57
60
|
const query = queryFn(options);
|
58
|
-
const newQuery = makeQueryPaginated(key, () => query.data.value
|
61
|
+
const newQuery = makeQueryPaginated(key, () => query.data.value, query.setData)(queryParams, options);
|
59
62
|
watch(query.data, () => {
|
63
|
+
console.log("refetch");
|
60
64
|
newQuery.refetch();
|
61
65
|
});
|
62
66
|
return newQuery;
|
package/package.json
CHANGED
@@ -4,10 +4,10 @@
|
|
4
4
|
"type": "git",
|
5
5
|
"url": "https://github.com/rsmple/eco-vue-js.git"
|
6
6
|
},
|
7
|
-
"version": "0.10.
|
7
|
+
"version": "0.10.31",
|
8
8
|
"scripts": {
|
9
9
|
"build": "run-p type-check \"build-only {@}\" --",
|
10
|
-
"dev": "vite build --watch",
|
10
|
+
"dev": "vite build --mode development --watch",
|
11
11
|
"build-only": "vite build",
|
12
12
|
"type-check": "vue-tsc --build --force",
|
13
13
|
"lint": "eslint . --fix",
|