-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy path+page.svelte
More file actions
451 lines (410 loc) · 18.1 KB
/
+page.svelte
File metadata and controls
451 lines (410 loc) · 18.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
<script lang="ts">
import { Filters, hasPageQueries, queries } from '$lib/components/filters';
import ViewSelector from '$lib/components/viewSelector.svelte';
import { Button } from '$lib/elements/forms';
import { goto } from '$app/navigation';
import { resolve } from '$app/paths';
import type { Column, ColumnType } from '$lib/helpers/types';
import { Container } from '$lib/layout';
import { preferences } from '$lib/stores/preferences';
import { canWriteTables, canWriteRows } from '$lib/stores/roles';
import { Icon, Layout, Divider, Tooltip, Typography, Link } from '@appwrite.io/pink-svelte';
import type { PageData } from './$types';
import {
tableColumns,
isCsvImportInProgress,
showRowCreateSheet,
showCreateColumnSheet,
randomDataModalState,
expandTabs
} from './store';
import SpreadSheet from './spreadsheet.svelte';
import { writable } from 'svelte/store';
import FilePicker from '$lib/components/filePicker.svelte';
import { page } from '$app/state';
import { sdk } from '$lib/stores/sdk';
import { addNotification } from '$lib/stores/notifications';
import { Click, Submit, trackError, trackEvent } from '$lib/actions/analytics';
import { isSmallViewport } from '$lib/stores/viewport';
import {
IconBookOpen,
IconChevronDown,
IconChevronUp,
IconPlus,
IconViewBoards,
IconRefresh,
IconUpload,
IconDownload
} from '@appwrite.io/pink-icons-svelte';
import type { Models } from '@appwrite.io/console';
import CreateRow from './rows/create.svelte';
import { onDestroy } from 'svelte';
import { isCloud } from '$lib/system';
import { columnOptions } from './columns/store';
import { EmptySheet, EmptySheetCards, type Field } from '$database/(entity)';
import { invalidate } from '$app/navigation';
import { Dependencies } from '$lib/constants';
import {
Empty as SuggestionsEmptySheet,
tableColumnSuggestions,
showColumnsSuggestionsModal
} from '../(suggestions)';
import IconAI from '../(suggestions)/icon/aiForButton.svelte';
export let data: PageData;
$: table = data.table;
let isRefreshing = false;
let showImportCSV = false;
// todo: might need a type fix here.
const filterColumns = writable<Column[]>([]);
function createTableColumns(fields: Field[], selected: string[] = []): Column[] {
return fields.map((field) => {
return {
id: field.key,
title: field.key,
type: field.type as ColumnType,
hide: !!selected?.includes(field.key),
array: field?.array,
format: 'format' in field && field?.format === 'enum' ? field.format : null,
elements: 'elements' in field ? field.elements : null,
icon: columnOptions.find((option) => option.type === field.type)?.icon
};
});
}
function createFilterableColumns(columns: Column[], selected: string[] = []): Column[] {
const idColumn = [{ id: '$id', title: '$id', type: 'string' as ColumnType }].filter(
(col) => !selected.includes(col.id)
);
const systemColumns = [
{ id: '$createdAt', title: '$createdAt', type: 'datetime' as ColumnType },
{ id: '$updatedAt', title: '$updatedAt', type: 'datetime' as ColumnType }
].filter((col) => !!selected.includes(col.id));
return [...idColumn, ...columns.filter((column) => !column.isAction), ...systemColumns];
}
$: selected = preferences.getCustomTableColumns(page.params.table);
$: if (table.fields) {
const freshColumns = createTableColumns(table.fields, selected);
tableColumns.set(freshColumns);
filterColumns.set(createFilterableColumns(freshColumns, selected));
}
$: hasColumns = !!table.fields.length;
$: hasValidColumns = table?.fields?.some((field: Field) => field.status === 'available');
$: canShowSuggestionsSheet =
// enabled, has table details
// and it matches current table
$tableColumnSuggestions.enabled &&
$tableColumnSuggestions.table &&
$tableColumnSuggestions.table.id === page.params.table;
$: disableButton = canShowSuggestionsSheet;
async function onSelect(file: Models.File, localFile = false) {
$isCsvImportInProgress = true;
try {
await sdk
.forProject(page.params.region, page.params.project)
.migrations.createCSVImport({
bucketId: file.bucketId,
fileId: file.$id,
resourceId: `${page.params.database}:${page.params.table}`,
internalFile: localFile
});
addNotification({
type: 'success',
message: 'Rows import from csv has started'
});
trackEvent(Submit.DatabaseImportCsv);
} catch (e) {
trackError(e, Submit.DatabaseImportCsv);
addNotification({
type: 'error',
message: e.message
});
} finally {
$isCsvImportInProgress = false;
}
}
function getTableExportUrl() {
const queryParam = page.url.searchParams.get('query');
const url = resolve(
'/(console)/project-[region]-[project]/databases/database-[database]/table-[table]/export',
{
region: page.params.region,
project: page.params.project,
database: page.params.database,
table: page.params.table
}
);
return queryParam ? `${url}?query=${encodeURIComponent(queryParam)}` : url;
}
onDestroy(() => ($showCreateColumnSheet.show = false));
</script>
{#key page.params.table}
<Container expanded expandHeightButton style="background: var(--bgcolor-neutral-primary)">
<Layout.Stack direction="column" gap="xl">
<Layout.Stack direction="row" justifyContent="space-between">
<Layout.Stack direction="row" gap="s">
<Tooltip>
<div>
<ViewSelector
onlyIcon
ui="new"
view={data.view}
columns={tableColumns}
hideView
showAnyway
isCustomTable
{disableButton} />
</div>
<svelte:fragment slot="tooltip">Columns</svelte:fragment>
</Tooltip>
<Tooltip>
<Filters
onlyIcon
query={data.query}
columns={filterColumns}
disabled={!(hasColumns && hasValidColumns) || disableButton}
analyticsSource="database_tables" />
<svelte:fragment slot="tooltip">Filters</svelte:fragment>
</Tooltip>
</Layout.Stack>
<Layout.Stack
direction="row"
alignItems="center"
justifyContent="flex-end"
style="padding-right: 40px;">
<Layout.Stack
direction="row"
alignItems="center"
justifyContent="flex-end"
gap="s">
{#if !$isSmallViewport}
<Button
secondary
event="create_row"
disabled={!(hasColumns && hasValidColumns) || disableButton}
on:click={() => ($showRowCreateSheet.show = true)}>
<Icon icon={IconPlus} slot="start" size="s" />
Create row
</Button>
<Tooltip placement="top">
<Button
icon
size="s"
secondary
class="small-button-dimensions"
disabled={!(hasColumns && hasValidColumns) || disableButton}
on:click={() => (showImportCSV = true)}>
<Icon icon={IconUpload} size="s" />
</Button>
<svelte:fragment slot="tooltip">Import CSV</svelte:fragment>
</Tooltip>
<Tooltip placement="top">
<Button
icon
size="s"
secondary
class="small-button-dimensions"
disabled={!(
hasColumns &&
hasValidColumns &&
data.rows?.total
) || disableButton}
on:click={() => {
trackEvent(Click.DatabaseExportCsv);
goto(getTableExportUrl());
}}>
<Icon icon={IconDownload} size="s" />
</Button>
<svelte:fragment slot="tooltip">Export</svelte:fragment>
</Tooltip>
<Tooltip disabled={isRefreshing || !data.rows?.total} placement="top">
<Button
icon
size="s"
secondary
disabled={isRefreshing ||
!data.rows?.total ||
!(hasColumns && hasValidColumns) ||
disableButton}
class="small-button-dimensions"
on:click={async () => {
isRefreshing = true;
await invalidate(Dependencies.TABLE);
isRefreshing = false;
}}>
<div style:line-height="0px" class:rotating={isRefreshing}>
<Icon icon={IconRefresh} size="s" />
</div>
</Button>
<svelte:fragment slot="tooltip">Refresh</svelte:fragment>
</Tooltip>
<Tooltip placement="top">
<Button
icon
size="s"
secondary
class="small-button-dimensions"
on:click={() => {
$expandTabs = !$expandTabs;
preferences.setKey('tableHeaderExpanded', $expandTabs);
}}>
<Icon
icon={!$expandTabs ? IconChevronDown : IconChevronUp}
size="s" />
</Button>
<svelte:fragment slot="tooltip"
>{!$expandTabs ? 'Expand' : 'Collapse'}</svelte:fragment>
</Tooltip>
{/if}
</Layout.Stack>
</Layout.Stack>
</Layout.Stack>
{#if $isSmallViewport}
<Button
secondary
event="create_row"
disabled={!(hasColumns && hasValidColumns) || disableButton}
on:click={() => ($showRowCreateSheet.show = true)}>
<Icon icon={IconPlus} slot="start" size="s" />
Create row
</Button>
{/if}
</Layout.Stack>
</Container>
<div class="databases-spreadsheet">
{#if hasColumns && hasValidColumns && $tableColumnSuggestions.force !== true}
{#if data.rows?.total}
<Divider />
<SpreadSheet {data} bind:showRowCreateSheet={$showRowCreateSheet} />
{:else if $hasPageQueries}
<EmptySheet
mode="rows-filtered"
title="There are no rows that match your filters"
customColumns={createTableColumns(table.fields, selected)}>
{#snippet actions()}
<Button
size="s"
secondary
on:click={() => {
queries.clearAll();
queries.apply();
trackEvent(Submit.FilterClear, {
source: 'database_tables'
});
}}>
Clear filters
</Button>
{/snippet}
</EmptySheet>
{:else}
<EmptySheet
mode="rows"
showActions={$canWriteRows}
customColumns={createTableColumns(table.fields, selected)}>
{#snippet actions()}
<EmptySheetCards
icon={IconPlus}
title="Create rows"
subtitle="Create rows manually"
onClick={() => {
$showRowCreateSheet.show = true;
}} />
<EmptySheetCards
icon={IconViewBoards}
title="Generate sample data"
subtitle="Generate data for testing"
onClick={() => {
$randomDataModalState.show = true;
}} />
{/snippet}
</EmptySheet>
{/if}
{:else if isCloud && canShowSuggestionsSheet}
<SuggestionsEmptySheet userColumns={$tableColumns} userDataRows={data.rows?.rows} />
{:else}
<EmptySheet mode="rows" showActions={$canWriteTables} title="You have no columns yet">
{#snippet subtitle()}
{#if !isCloud}
<!-- shown on self-hosted -->
<Typography.Text align="center">
Need a hand? Learn more in the
<Link.Anchor
target="_blank"
href="https://appwrite.io/docs/products/databases">
docs.
</Link.Anchor>
</Typography.Text>
{/if}
{/snippet}
{#snippet actions()}
{#if isCloud}
<!-- shown on cloud -->
<EmptySheetCards
icon={IconAI}
title="Suggest columns"
subtitle="Use AI to generate columns"
onClick={() => {
$showColumnsSuggestionsModal = true;
}} />
{/if}
<EmptySheetCards
icon={IconPlus}
title="Create column"
subtitle="Create columns manually"
onClick={() => {
$showCreateColumnSheet.show = true;
}} />
<EmptySheetCards
icon={IconViewBoards}
title="Generate sample data"
subtitle="Generate data for testing"
onClick={() => {
$randomDataModalState.show = true;
}} />
{#if isCloud}
<!-- shown on cloud because self-hosted shows a link above -->
<EmptySheetCards
icon={IconBookOpen}
title="Documentation"
subtitle="Read the Appwrite docs"
href="https://appwrite.io/docs/products/databases" />
{/if}
{/snippet}
</EmptySheet>
{/if}
</div>
{/key}
{#if showImportCSV}
<!-- CSVs can be text/plain or text/csv sometimes! -->
<FilePicker
{onSelect}
showLocalFileBucket
localFileBucketTitle="Upload CSV file"
mimeTypeQuery="text/"
allowedExtension="csv"
bind:show={showImportCSV}
gridImageDimensions={{
imageHeight: 32,
imageWidth: 32
}} />
{/if}
<CreateRow
{table}
bind:showSheet={$showRowCreateSheet.show}
bind:existingData={$showRowCreateSheet.row} />
<style>
:global(.small-button-dimensions) {
width: 32px !important;
height: 32px !important;
}
:global(.rotating) {
animation: rotate 1s linear infinite;
animation-direction: reverse;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>