@lobb-js/studio 0.23.0 → 0.24.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.
- package/dist/components/dataTable/fieldCell.svelte +64 -51
- package/dist/components/dataTable/table.svelte +1 -1
- package/dist/components/importButton.svelte +25 -17
- package/package.json +1 -1
- package/src/lib/components/dataTable/fieldCell.svelte +64 -51
- package/src/lib/components/dataTable/table.svelte +1 -1
- package/src/lib/components/importButton.svelte +25 -17
|
@@ -6,8 +6,10 @@
|
|
|
6
6
|
import EnumBadge from "./enumBadge.svelte";
|
|
7
7
|
import PolymorphicFieldCell from "./polymorphicFieldCell.svelte";
|
|
8
8
|
import { getStudioContext } from "../../context";
|
|
9
|
+
import ExtensionsComponents from "../extensionsComponents.svelte";
|
|
10
|
+
import { getExtensionUtils } from "../../extensions/extensionUtils";
|
|
9
11
|
|
|
10
|
-
const { ctx } = getStudioContext();
|
|
12
|
+
const { ctx, lobb } = getStudioContext();
|
|
11
13
|
|
|
12
14
|
interface Props {
|
|
13
15
|
collectionName: string;
|
|
@@ -32,55 +34,66 @@
|
|
|
32
34
|
const isPasswordField = ctx.meta.collections[collectionName].fields[fieldName]?.ui?.input?.type === "password";
|
|
33
35
|
</script>
|
|
34
36
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
{#
|
|
44
|
-
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
37
|
+
<ExtensionsComponents
|
|
38
|
+
name="dataTable.cell"
|
|
39
|
+
utils={getExtensionUtils(lobb, ctx)}
|
|
40
|
+
{collectionName}
|
|
41
|
+
{fieldName}
|
|
42
|
+
{value}
|
|
43
|
+
{entry}
|
|
44
|
+
>
|
|
45
|
+
{#snippet children()}
|
|
46
|
+
{#if polymorphicRelation}
|
|
47
|
+
<PolymorphicFieldCell
|
|
48
|
+
collectionField={polymorphicRelation.from.collection_field}
|
|
49
|
+
idField={polymorphicRelation.from.id_field}
|
|
50
|
+
{entry}
|
|
51
|
+
bind:tableParams
|
|
52
|
+
/>
|
|
53
|
+
{:else if isRefrenceField}
|
|
54
|
+
{#if value?.id && value.id !== 0}
|
|
55
|
+
<div class="flex items-center gap-2">
|
|
56
|
+
<div>{value.id}</div>
|
|
57
|
+
{#if Object.values(value)[1]}
|
|
58
|
+
<div class="border bg-muted px-3 py-1 rounded-full">
|
|
59
|
+
{Object.values(value)[1]}
|
|
60
|
+
</div>
|
|
61
|
+
{/if}
|
|
62
|
+
<UpdateDetailViewButton
|
|
63
|
+
collectionName={relationTarget!}
|
|
64
|
+
recordId={value.id}
|
|
65
|
+
variant="ghost"
|
|
66
|
+
class="h-5 w-5 px-0 py-0 text-muted-foreground hover:bg-transparent"
|
|
67
|
+
Icon={ExternalLink}
|
|
68
|
+
onSuccessfullSave={async () => {
|
|
69
|
+
tableParams = { ...tableParams };
|
|
70
|
+
}}
|
|
71
|
+
/>
|
|
49
72
|
</div>
|
|
73
|
+
{:else if value?.id === 0}
|
|
74
|
+
<div class="text-muted-foreground">PARENT ID</div>
|
|
75
|
+
{:else}
|
|
76
|
+
<div class="text-muted-foreground">NULL</div>
|
|
50
77
|
{/if}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
{
|
|
68
|
-
|
|
69
|
-
{
|
|
70
|
-
|
|
71
|
-
{
|
|
72
|
-
|
|
73
|
-
{:else if field?.enum}
|
|
74
|
-
<EnumBadge {value} enum={field.enum} />
|
|
75
|
-
{:else if field.type === "datetime"}
|
|
76
|
-
{@const date = new Date(value).toLocaleDateString()}
|
|
77
|
-
{@const time = new Date(value).toLocaleTimeString()}
|
|
78
|
-
<div>{date}, {time}</div>
|
|
79
|
-
{:else if field.type === "date"}
|
|
80
|
-
{@const date = new Date(value).toLocaleDateString()}
|
|
81
|
-
<div>{date}</div>
|
|
82
|
-
{:else if field.type === "time"}
|
|
83
|
-
<div>{value}</div>
|
|
84
|
-
{:else}
|
|
85
|
-
{value}
|
|
86
|
-
{/if}
|
|
78
|
+
{:else if isPasswordField}
|
|
79
|
+
<div class="text-muted-foreground tracking-widest">••••••</div>
|
|
80
|
+
{:else if value === ""}
|
|
81
|
+
<div class="text-muted-foreground">EMPTY STRING</div>
|
|
82
|
+
{:else if value === null || value === undefined}
|
|
83
|
+
<div class="text-muted-foreground">NULL</div>
|
|
84
|
+
{:else if field?.enum}
|
|
85
|
+
<EnumBadge {value} enum={field.enum} />
|
|
86
|
+
{:else if field.type === "datetime"}
|
|
87
|
+
{@const date = new Date(value).toLocaleDateString()}
|
|
88
|
+
{@const time = new Date(value).toLocaleTimeString()}
|
|
89
|
+
<div>{date}, {time}</div>
|
|
90
|
+
{:else if field.type === "date"}
|
|
91
|
+
{@const date = new Date(value).toLocaleDateString()}
|
|
92
|
+
<div>{date}</div>
|
|
93
|
+
{:else if field.type === "time"}
|
|
94
|
+
<div>{value}</div>
|
|
95
|
+
{:else}
|
|
96
|
+
{value}
|
|
97
|
+
{/if}
|
|
98
|
+
{/snippet}
|
|
99
|
+
</ExtensionsComponents>
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
class="
|
|
210
210
|
sticky top-0 z-10
|
|
211
211
|
flex items-center p-2.5 text-xs h-10
|
|
212
|
-
{unifiedBgColor ? unifiedBgColor : 'bg-muted
|
|
212
|
+
{unifiedBgColor ? unifiedBgColor : 'bg-muted'}
|
|
213
213
|
{lastColumn && !showLastColumnBorder ? '' : 'border-r'}
|
|
214
214
|
border-b gap-2
|
|
215
215
|
{headerBorderTop ? 'border-t' : ''}
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
import Table from "./dataTable/table.svelte";
|
|
9
9
|
import Fuse from "fuse.js";
|
|
10
10
|
import { emitEvent } from "../eventSystem";
|
|
11
|
+
import ExtensionsComponents from "./extensionsComponents.svelte";
|
|
12
|
+
import { getExtensionUtils } from "../extensions/extensionUtils";
|
|
11
13
|
|
|
12
14
|
const { lobb, ctx } = getStudioContext();
|
|
13
15
|
|
|
@@ -127,24 +129,24 @@
|
|
|
127
129
|
});
|
|
128
130
|
const finalRows = eventResult.rows ?? transformedRows;
|
|
129
131
|
|
|
130
|
-
const
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
results.push({ row, error: null });
|
|
135
|
-
} else {
|
|
136
|
-
const body = await response.json().catch(() => null);
|
|
137
|
-
const message = body?.details
|
|
138
|
-
? Object.entries(body.details).map(([f, msgs]) => `${f}: ${(msgs as string[]).join(", ")}`).join(" | ")
|
|
139
|
-
: (body?.message ?? `HTTP ${response.status}`);
|
|
140
|
-
results.push({ row, error: message });
|
|
141
|
-
}
|
|
142
|
-
}
|
|
132
|
+
const txBody = finalRows.map((row: any) => ({
|
|
133
|
+
method: "createOne",
|
|
134
|
+
props: { collectionName, data: row },
|
|
135
|
+
}));
|
|
143
136
|
|
|
144
|
-
|
|
145
|
-
|
|
137
|
+
const response = await lobb.transactions(txBody);
|
|
138
|
+
|
|
139
|
+
if (response.ok) {
|
|
140
|
+
importResults = finalRows.map((row: any) => ({ row, error: null }));
|
|
141
|
+
if (onSuccessfullSave) await onSuccessfullSave();
|
|
142
|
+
} else {
|
|
143
|
+
const body = await response.json().catch(() => null);
|
|
144
|
+
const message = body?.details
|
|
145
|
+
? Object.entries(body.details).map(([f, msgs]) => `${f}: ${(msgs as string[]).join(", ")}`).join(" | ")
|
|
146
|
+
: (body?.message ?? `HTTP ${response.status}`);
|
|
147
|
+
importResults = finalRows.map((row: any) => ({ row, error: message }));
|
|
148
|
+
}
|
|
146
149
|
|
|
147
|
-
if (succeeded.length > 0 && onSuccessfullSave) await onSuccessfullSave();
|
|
148
150
|
step = "results";
|
|
149
151
|
} catch (e: any) {
|
|
150
152
|
step = "preview";
|
|
@@ -180,7 +182,7 @@
|
|
|
180
182
|
onOpenChange={(open) => { if (!open) hideDrawer(); }}
|
|
181
183
|
>
|
|
182
184
|
<Dialog.Content
|
|
183
|
-
class="flex flex-col gap-0 p-0 overflow-clip {step === 'preview' || (step === 'results' && importResults.some((r) => r.error !== null)) ? 'max-w-
|
|
185
|
+
class="flex flex-col gap-0 p-0 overflow-clip {step === 'preview' || (step === 'results' && importResults.some((r) => r.error !== null)) ? 'max-w-7xl h-[80vh]' : 'max-w-lg'}"
|
|
184
186
|
>
|
|
185
187
|
<!-- Header -->
|
|
186
188
|
<div class="flex h-12 shrink-0 items-center justify-between border-b px-4">
|
|
@@ -212,6 +214,12 @@
|
|
|
212
214
|
</button>
|
|
213
215
|
</div>
|
|
214
216
|
|
|
217
|
+
<ExtensionsComponents
|
|
218
|
+
name="collections.import.info"
|
|
219
|
+
utils={getExtensionUtils(lobb, ctx)}
|
|
220
|
+
{collectionName}
|
|
221
|
+
/>
|
|
222
|
+
|
|
215
223
|
<div class="p-4">
|
|
216
224
|
{#if activeTab === "upload"}
|
|
217
225
|
<div
|
package/package.json
CHANGED
|
@@ -6,8 +6,10 @@
|
|
|
6
6
|
import EnumBadge from "./enumBadge.svelte";
|
|
7
7
|
import PolymorphicFieldCell from "./polymorphicFieldCell.svelte";
|
|
8
8
|
import { getStudioContext } from "../../context";
|
|
9
|
+
import ExtensionsComponents from "../extensionsComponents.svelte";
|
|
10
|
+
import { getExtensionUtils } from "../../extensions/extensionUtils";
|
|
9
11
|
|
|
10
|
-
const { ctx } = getStudioContext();
|
|
12
|
+
const { ctx, lobb } = getStudioContext();
|
|
11
13
|
|
|
12
14
|
interface Props {
|
|
13
15
|
collectionName: string;
|
|
@@ -32,55 +34,66 @@
|
|
|
32
34
|
const isPasswordField = ctx.meta.collections[collectionName].fields[fieldName]?.ui?.input?.type === "password";
|
|
33
35
|
</script>
|
|
34
36
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
{#
|
|
44
|
-
|
|
45
|
-
<
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
37
|
+
<ExtensionsComponents
|
|
38
|
+
name="dataTable.cell"
|
|
39
|
+
utils={getExtensionUtils(lobb, ctx)}
|
|
40
|
+
{collectionName}
|
|
41
|
+
{fieldName}
|
|
42
|
+
{value}
|
|
43
|
+
{entry}
|
|
44
|
+
>
|
|
45
|
+
{#snippet children()}
|
|
46
|
+
{#if polymorphicRelation}
|
|
47
|
+
<PolymorphicFieldCell
|
|
48
|
+
collectionField={polymorphicRelation.from.collection_field}
|
|
49
|
+
idField={polymorphicRelation.from.id_field}
|
|
50
|
+
{entry}
|
|
51
|
+
bind:tableParams
|
|
52
|
+
/>
|
|
53
|
+
{:else if isRefrenceField}
|
|
54
|
+
{#if value?.id && value.id !== 0}
|
|
55
|
+
<div class="flex items-center gap-2">
|
|
56
|
+
<div>{value.id}</div>
|
|
57
|
+
{#if Object.values(value)[1]}
|
|
58
|
+
<div class="border bg-muted px-3 py-1 rounded-full">
|
|
59
|
+
{Object.values(value)[1]}
|
|
60
|
+
</div>
|
|
61
|
+
{/if}
|
|
62
|
+
<UpdateDetailViewButton
|
|
63
|
+
collectionName={relationTarget!}
|
|
64
|
+
recordId={value.id}
|
|
65
|
+
variant="ghost"
|
|
66
|
+
class="h-5 w-5 px-0 py-0 text-muted-foreground hover:bg-transparent"
|
|
67
|
+
Icon={ExternalLink}
|
|
68
|
+
onSuccessfullSave={async () => {
|
|
69
|
+
tableParams = { ...tableParams };
|
|
70
|
+
}}
|
|
71
|
+
/>
|
|
49
72
|
</div>
|
|
73
|
+
{:else if value?.id === 0}
|
|
74
|
+
<div class="text-muted-foreground">PARENT ID</div>
|
|
75
|
+
{:else}
|
|
76
|
+
<div class="text-muted-foreground">NULL</div>
|
|
50
77
|
{/if}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
{
|
|
68
|
-
|
|
69
|
-
{
|
|
70
|
-
|
|
71
|
-
{
|
|
72
|
-
|
|
73
|
-
{:else if field?.enum}
|
|
74
|
-
<EnumBadge {value} enum={field.enum} />
|
|
75
|
-
{:else if field.type === "datetime"}
|
|
76
|
-
{@const date = new Date(value).toLocaleDateString()}
|
|
77
|
-
{@const time = new Date(value).toLocaleTimeString()}
|
|
78
|
-
<div>{date}, {time}</div>
|
|
79
|
-
{:else if field.type === "date"}
|
|
80
|
-
{@const date = new Date(value).toLocaleDateString()}
|
|
81
|
-
<div>{date}</div>
|
|
82
|
-
{:else if field.type === "time"}
|
|
83
|
-
<div>{value}</div>
|
|
84
|
-
{:else}
|
|
85
|
-
{value}
|
|
86
|
-
{/if}
|
|
78
|
+
{:else if isPasswordField}
|
|
79
|
+
<div class="text-muted-foreground tracking-widest">••••••</div>
|
|
80
|
+
{:else if value === ""}
|
|
81
|
+
<div class="text-muted-foreground">EMPTY STRING</div>
|
|
82
|
+
{:else if value === null || value === undefined}
|
|
83
|
+
<div class="text-muted-foreground">NULL</div>
|
|
84
|
+
{:else if field?.enum}
|
|
85
|
+
<EnumBadge {value} enum={field.enum} />
|
|
86
|
+
{:else if field.type === "datetime"}
|
|
87
|
+
{@const date = new Date(value).toLocaleDateString()}
|
|
88
|
+
{@const time = new Date(value).toLocaleTimeString()}
|
|
89
|
+
<div>{date}, {time}</div>
|
|
90
|
+
{:else if field.type === "date"}
|
|
91
|
+
{@const date = new Date(value).toLocaleDateString()}
|
|
92
|
+
<div>{date}</div>
|
|
93
|
+
{:else if field.type === "time"}
|
|
94
|
+
<div>{value}</div>
|
|
95
|
+
{:else}
|
|
96
|
+
{value}
|
|
97
|
+
{/if}
|
|
98
|
+
{/snippet}
|
|
99
|
+
</ExtensionsComponents>
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
class="
|
|
210
210
|
sticky top-0 z-10
|
|
211
211
|
flex items-center p-2.5 text-xs h-10
|
|
212
|
-
{unifiedBgColor ? unifiedBgColor : 'bg-muted
|
|
212
|
+
{unifiedBgColor ? unifiedBgColor : 'bg-muted'}
|
|
213
213
|
{lastColumn && !showLastColumnBorder ? '' : 'border-r'}
|
|
214
214
|
border-b gap-2
|
|
215
215
|
{headerBorderTop ? 'border-t' : ''}
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
import Table from "./dataTable/table.svelte";
|
|
9
9
|
import Fuse from "fuse.js";
|
|
10
10
|
import { emitEvent } from "../eventSystem";
|
|
11
|
+
import ExtensionsComponents from "./extensionsComponents.svelte";
|
|
12
|
+
import { getExtensionUtils } from "../extensions/extensionUtils";
|
|
11
13
|
|
|
12
14
|
const { lobb, ctx } = getStudioContext();
|
|
13
15
|
|
|
@@ -127,24 +129,24 @@
|
|
|
127
129
|
});
|
|
128
130
|
const finalRows = eventResult.rows ?? transformedRows;
|
|
129
131
|
|
|
130
|
-
const
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
results.push({ row, error: null });
|
|
135
|
-
} else {
|
|
136
|
-
const body = await response.json().catch(() => null);
|
|
137
|
-
const message = body?.details
|
|
138
|
-
? Object.entries(body.details).map(([f, msgs]) => `${f}: ${(msgs as string[]).join(", ")}`).join(" | ")
|
|
139
|
-
: (body?.message ?? `HTTP ${response.status}`);
|
|
140
|
-
results.push({ row, error: message });
|
|
141
|
-
}
|
|
142
|
-
}
|
|
132
|
+
const txBody = finalRows.map((row: any) => ({
|
|
133
|
+
method: "createOne",
|
|
134
|
+
props: { collectionName, data: row },
|
|
135
|
+
}));
|
|
143
136
|
|
|
144
|
-
|
|
145
|
-
|
|
137
|
+
const response = await lobb.transactions(txBody);
|
|
138
|
+
|
|
139
|
+
if (response.ok) {
|
|
140
|
+
importResults = finalRows.map((row: any) => ({ row, error: null }));
|
|
141
|
+
if (onSuccessfullSave) await onSuccessfullSave();
|
|
142
|
+
} else {
|
|
143
|
+
const body = await response.json().catch(() => null);
|
|
144
|
+
const message = body?.details
|
|
145
|
+
? Object.entries(body.details).map(([f, msgs]) => `${f}: ${(msgs as string[]).join(", ")}`).join(" | ")
|
|
146
|
+
: (body?.message ?? `HTTP ${response.status}`);
|
|
147
|
+
importResults = finalRows.map((row: any) => ({ row, error: message }));
|
|
148
|
+
}
|
|
146
149
|
|
|
147
|
-
if (succeeded.length > 0 && onSuccessfullSave) await onSuccessfullSave();
|
|
148
150
|
step = "results";
|
|
149
151
|
} catch (e: any) {
|
|
150
152
|
step = "preview";
|
|
@@ -180,7 +182,7 @@
|
|
|
180
182
|
onOpenChange={(open) => { if (!open) hideDrawer(); }}
|
|
181
183
|
>
|
|
182
184
|
<Dialog.Content
|
|
183
|
-
class="flex flex-col gap-0 p-0 overflow-clip {step === 'preview' || (step === 'results' && importResults.some((r) => r.error !== null)) ? 'max-w-
|
|
185
|
+
class="flex flex-col gap-0 p-0 overflow-clip {step === 'preview' || (step === 'results' && importResults.some((r) => r.error !== null)) ? 'max-w-7xl h-[80vh]' : 'max-w-lg'}"
|
|
184
186
|
>
|
|
185
187
|
<!-- Header -->
|
|
186
188
|
<div class="flex h-12 shrink-0 items-center justify-between border-b px-4">
|
|
@@ -212,6 +214,12 @@
|
|
|
212
214
|
</button>
|
|
213
215
|
</div>
|
|
214
216
|
|
|
217
|
+
<ExtensionsComponents
|
|
218
|
+
name="collections.import.info"
|
|
219
|
+
utils={getExtensionUtils(lobb, ctx)}
|
|
220
|
+
{collectionName}
|
|
221
|
+
/>
|
|
222
|
+
|
|
215
223
|
<div class="p-4">
|
|
216
224
|
{#if activeTab === "upload"}
|
|
217
225
|
<div
|