quasar-ui-danx 0.4.17 → 0.4.18

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-danx",
3
- "version": "0.4.17",
3
+ "version": "0.4.18",
4
4
  "author": "Dan <dan@flytedesk.com>",
5
5
  "description": "DanX Vue / Quasar component library",
6
6
  "license": "MIT",
@@ -363,6 +363,8 @@ export function useListControls(name: string, options: ListControlsOptions): Act
363
363
  const nextIndex = index + offset;
364
364
 
365
365
  const latestNextIndex = latestCallOnly("getNextItem", async () => {
366
+ if (!pagedItems.value?.data) return -1;
367
+
366
368
  // Load the previous page if the offset is before index 0
367
369
  if (nextIndex < 0) {
368
370
  if (pagination.value.page > 1) {
@@ -18,6 +18,10 @@ export function useActionRoutes(baseUrl: string): ListControlsRoutes {
18
18
  const item = await request.get(`${baseUrl}/${target.id}/details`);
19
19
  return storeObject(item);
20
20
  },
21
+ async relation(target, relation) {
22
+ const item = await request.get(`${baseUrl}/${target.id}/relation/${relation}`);
23
+ return storeObject(item);
24
+ },
21
25
  fieldOptions() {
22
26
  return request.get(`${baseUrl}/field-options`);
23
27
  },
@@ -30,6 +30,8 @@ export interface ListControlsRoutes {
30
30
 
31
31
  detailsAndStore?(target: ActionTargetItem): Promise<ActionTargetItem>;
32
32
 
33
+ relation?(target: ActionTargetItem, relation: string): Promise<ActionTargetItem>;
34
+
33
35
  more?(pager: ListControlsPagination): Promise<ActionTargetItem[]>;
34
36
 
35
37
  fieldOptions?(filter?: AnyObject): Promise<AnyObject>;