@lobb-js/studio 0.21.0 → 0.23.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.
@@ -15,53 +15,36 @@
15
15
 
16
16
  let { collectionName, entry = $bindable(), values = {} }: LocalProp = $props();
17
17
 
18
- const childrenRelations = ctx.meta.relations.filter(
19
- (relation) => relation.to.collection === collectionName,
20
- );
18
+ const fkChildren = (ctx.meta.collections[collectionName]?.children ?? [])
19
+ .filter((c) => c.type === "fk") as { type: "fk"; collection: string; field: string }[];
21
20
 
22
- // filling the children properties
23
- for (let index = 0; index < childrenRelations.length; index++) {
24
- const relation = childrenRelations[index];
25
- const childCollection = relation.from.collection;
26
- entry[childCollection] = [];
27
- if (values[childCollection]) {
28
- entry[childCollection] = [
29
- ...entry[childCollection],
30
- ...values[childCollection],
31
- ];
32
- }
21
+ for (const child of fkChildren) {
22
+ entry[child.collection] = values[child.collection] ? [...values[child.collection]] : [];
33
23
  }
34
24
  </script>
35
25
 
36
- {#if childrenRelations.length}
26
+ {#if fkChildren.length}
37
27
  <div class="flex flex-col gap-4 border-t p-4">
38
28
  <div class="flex items-center gap-2">
39
29
  <Link size="17.5" />
40
30
  <div>Sub Records</div>
41
31
  </div>
42
32
  <div class="flex flex-col gap-4">
43
- {#each childrenRelations as relation}
44
- {@const childCollection = relation.from.collection}
33
+ {#each fkChildren as child}
45
34
  <ExtensionsComponents
46
- name="detailView.create.subRecords.{childCollection}"
35
+ name="detailView.create.subRecords.{child.collection}"
47
36
  utils={getExtensionUtils(lobb, ctx)}
48
37
  parentCollectionName={collectionName}
49
- collectionName={childCollection}
50
- parentRecord={{
51
- id: entry.id,
52
- collectionName: collectionName,
53
- }}
38
+ collectionName={child.collection}
39
+ parentRecord={{ id: entry.id, collectionName }}
54
40
  class="bg-muted/30 border rounded-md overflow-hidden"
55
- bind:value={entry[childCollection]}
41
+ bind:value={entry[child.collection]}
56
42
  >
57
43
  <CreateManyView
58
44
  parentCollectionName={collectionName}
59
- collectionName={childCollection}
60
- parentRecord={{
61
- id: entry.id,
62
- collectionName: collectionName,
63
- }}
64
- bind:entries={entry[childCollection]}
45
+ collectionName={child.collection}
46
+ parentRecord={{ id: entry.id, collectionName }}
47
+ bind:entries={entry[child.collection]}
65
48
  />
66
49
  </ExtensionsComponents>
67
50
  {/each}
@@ -5,12 +5,25 @@ interface CollectionTab {
5
5
  filter?: Record<string, any>;
6
6
  default?: boolean;
7
7
  }
8
+ type CollectionChild = {
9
+ type: "fk";
10
+ collection: string;
11
+ field: string;
12
+ } | {
13
+ type: "m2m";
14
+ collection: string;
15
+ } | {
16
+ type: "polymorphic";
17
+ collection: string;
18
+ };
8
19
  interface Collection {
9
20
  category: string;
10
21
  owner: string;
11
22
  fields: Record<string, any>;
12
23
  singleton: boolean;
13
24
  virtual?: boolean;
25
+ junction?: boolean;
26
+ children?: CollectionChild[];
14
27
  ui?: {
15
28
  icon?: string;
16
29
  tabs?: CollectionTab[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lobb-js/studio",
3
3
  "license": "UNLICENSED",
4
- "version": "0.21.0",
4
+ "version": "0.23.0",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -42,7 +42,7 @@
42
42
  "postpublish": "./scripts/postpublish.sh"
43
43
  },
44
44
  "devDependencies": {
45
- "@lobb-js/core": "^0.25.0",
45
+ "@lobb-js/core": "^0.26.0",
46
46
  "@chromatic-com/storybook": "^4.1.2",
47
47
  "@storybook/addon-a11y": "^10.0.1",
48
48
  "@storybook/addon-docs": "^10.0.1",
@@ -15,53 +15,36 @@
15
15
 
16
16
  let { collectionName, entry = $bindable(), values = {} }: LocalProp = $props();
17
17
 
18
- const childrenRelations = ctx.meta.relations.filter(
19
- (relation) => relation.to.collection === collectionName,
20
- );
18
+ const fkChildren = (ctx.meta.collections[collectionName]?.children ?? [])
19
+ .filter((c) => c.type === "fk") as { type: "fk"; collection: string; field: string }[];
21
20
 
22
- // filling the children properties
23
- for (let index = 0; index < childrenRelations.length; index++) {
24
- const relation = childrenRelations[index];
25
- const childCollection = relation.from.collection;
26
- entry[childCollection] = [];
27
- if (values[childCollection]) {
28
- entry[childCollection] = [
29
- ...entry[childCollection],
30
- ...values[childCollection],
31
- ];
32
- }
21
+ for (const child of fkChildren) {
22
+ entry[child.collection] = values[child.collection] ? [...values[child.collection]] : [];
33
23
  }
34
24
  </script>
35
25
 
36
- {#if childrenRelations.length}
26
+ {#if fkChildren.length}
37
27
  <div class="flex flex-col gap-4 border-t p-4">
38
28
  <div class="flex items-center gap-2">
39
29
  <Link size="17.5" />
40
30
  <div>Sub Records</div>
41
31
  </div>
42
32
  <div class="flex flex-col gap-4">
43
- {#each childrenRelations as relation}
44
- {@const childCollection = relation.from.collection}
33
+ {#each fkChildren as child}
45
34
  <ExtensionsComponents
46
- name="detailView.create.subRecords.{childCollection}"
35
+ name="detailView.create.subRecords.{child.collection}"
47
36
  utils={getExtensionUtils(lobb, ctx)}
48
37
  parentCollectionName={collectionName}
49
- collectionName={childCollection}
50
- parentRecord={{
51
- id: entry.id,
52
- collectionName: collectionName,
53
- }}
38
+ collectionName={child.collection}
39
+ parentRecord={{ id: entry.id, collectionName }}
54
40
  class="bg-muted/30 border rounded-md overflow-hidden"
55
- bind:value={entry[childCollection]}
41
+ bind:value={entry[child.collection]}
56
42
  >
57
43
  <CreateManyView
58
44
  parentCollectionName={collectionName}
59
- collectionName={childCollection}
60
- parentRecord={{
61
- id: entry.id,
62
- collectionName: collectionName,
63
- }}
64
- bind:entries={entry[childCollection]}
45
+ collectionName={child.collection}
46
+ parentRecord={{ id: entry.id, collectionName }}
47
+ bind:entries={entry[child.collection]}
65
48
  />
66
49
  </ExtensionsComponents>
67
50
  {/each}
@@ -7,12 +7,19 @@ interface CollectionTab {
7
7
  default?: boolean;
8
8
  }
9
9
 
10
+ type CollectionChild =
11
+ | { type: "fk"; collection: string; field: string }
12
+ | { type: "m2m"; collection: string }
13
+ | { type: "polymorphic"; collection: string };
14
+
10
15
  interface Collection {
11
16
  category: string;
12
17
  owner: string;
13
18
  fields: Record<string, any>;
14
19
  singleton: boolean;
15
20
  virtual?: boolean;
21
+ junction?: boolean;
22
+ children?: CollectionChild[];
16
23
  ui?: {
17
24
  icon?: string;
18
25
  tabs?: CollectionTab[];