Skip to content

Commit afdd97e

Browse files
authored
Merge pull request #1764 from appwrite/chore-fix-backend-breaking-changes
Chore fix backend breaking changes
2 parents d77b57a + f57df31 commit afdd97e

File tree

11 files changed

+142
-87
lines changed

11 files changed

+142
-87
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"e2e:ui": "playwright test tests/e2e --ui"
2020
},
2121
"dependencies": {
22-
"@appwrite.io/console": "https://pkg.pr.new/appwrite/appwrite/@appwrite.io/console@74f9464",
22+
"@appwrite.io/console": "https://pkg.pr.new/appwrite/appwrite/@appwrite.io/console@08b7400",
2323
"@appwrite.io/pink-icons": "0.25.0",
2424
"@appwrite.io/pink-icons-svelte": "https://pkg.pr.new/appwrite/pink/@appwrite.io/pink-icons-svelte@64948b6 ",
2525
"@appwrite.io/pink-legacy": "^1.0.3",

pnpm-lock.yaml

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/helpers/timeConversion.ts

+26
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,29 @@ export function formatTimeDetailed(time: number): string {
114114

115115
return parts.join(' ');
116116
}
117+
118+
/**
119+
* Calculates the time difference between a starting date/time and the current time.
120+
* Returns the difference formatted in seconds, minutes, or hours depending on the magnitude.
121+
*
122+
* @export
123+
* @param {Date | number | string} startTime - The starting date/time, timestamp in milliseconds, or ISO date string (e.g., '2025-03-20T15:50:43.495+00:00')
124+
* @returns {string} The formatted time difference
125+
*/
126+
export function timer(startTime: Date | number | string): string {
127+
let start: number;
128+
129+
if (startTime instanceof Date) {
130+
start = startTime.getTime();
131+
} else if (typeof startTime === 'number') {
132+
start = startTime;
133+
} else {
134+
// Handle ISO date string format
135+
start = new Date(startTime).getTime();
136+
}
137+
138+
const now = new Date().getTime();
139+
const diffInSeconds = (now - start) / 1000;
140+
141+
return calculateTime(diffInSeconds);
142+
}

src/routes/(console)/project-[project]/sites/+page.svelte

+13-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
import { columns } from './store';
2323
import { View } from '$lib/helpers/load';
2424
import Table from './table.svelte';
25+
import { onMount } from 'svelte';
26+
import { invalidate } from '$app/navigation';
27+
import { Dependencies } from '$lib/constants';
28+
import { sdk } from '$lib/stores/sdk';
2529
export let data;
2630
let show = false;
2731
@@ -41,6 +45,14 @@
4145
]);
4246
4347
$updateCommandGroupRanks({ sites: 1000 });
48+
49+
onMount(() => {
50+
return sdk.forConsole.client.subscribe('console', (response) => {
51+
if (response.events.includes(`sites.*`)) {
52+
invalidate(Dependencies.SITES);
53+
}
54+
});
55+
});
4456
</script>
4557

4658
<Container>
@@ -60,7 +72,7 @@
6072
</Layout.Stack>
6173
{#if data.siteList.total}
6274
{#if data.view === View.Grid}
63-
<Grid deployments={data.deployments} siteList={data.siteList} />
75+
<Grid siteList={data.siteList} />
6476
{:else}
6577
<Table siteList={data.siteList} />
6678
{/if}

src/routes/(console)/project-[project]/sites/+page.ts

-24
Original file line numberDiff line numberDiff line change
@@ -17,35 +17,11 @@ export const load = async ({ url, depends, route }) => {
1717
search || undefined
1818
);
1919

20-
// TODO: @Meldiron Discuss better solution for getting screnshot IDs
21-
const deployments: Models.Deployment[] = [];
22-
await Promise.all(
23-
siteList.sites.map(async (site) => {
24-
if (!site.deploymentId) {
25-
return;
26-
}
27-
28-
// TODO: @Meldiron Tripple-check if this can ever happened
29-
// It happened to me but on QA that might have corrupted data
30-
try {
31-
const deployment = await sdk.forProject.sites.getDeployment(
32-
site.$id,
33-
site.deploymentId
34-
);
35-
deployments.push(deployment);
36-
} catch (err) {
37-
// Active deployment no longer available (deleted?)
38-
console.warn(err);
39-
}
40-
})
41-
);
42-
4320
return {
4421
offset,
4522
limit,
4623
search,
4724
siteList,
48-
deployments,
4925
view
5026
};
5127
};

src/routes/(console)/project-[project]/sites/create-site/configuration.svelte

+13-20
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
export let frameworks: Models.Framework[];
3838
export let selectedFramework: Models.Framework;
3939
$: frameworkData = frameworks.find((framework) => framework.key === selectedFramework?.key);
40+
$: ssr = frameworkData?.adapters.find((adapter) => adapter.key === 'ssr');
4041
4142
export let variables: Partial<Models.Variable>[] = [];
4243
export let installCommand = '';
@@ -54,9 +55,9 @@
5455
let frameworkId = selectedFramework.key;
5556
5657
$: if (!installCommand || !buildCommand || !outputDirectory) {
57-
installCommand ||= frameworkData?.adapters?.ssr?.installCommand;
58-
buildCommand ||= frameworkData?.adapters?.ssr?.buildCommand;
59-
outputDirectory ||= frameworkData?.adapters?.ssr?.outputDirectory;
58+
installCommand ||= ssr?.installCommand;
59+
buildCommand ||= ssr?.buildCommand;
60+
outputDirectory ||= ssr?.outputDirectory;
6061
}
6162
</script>
6263

@@ -86,15 +87,12 @@
8687
id="installCommand"
8788
label="Install command"
8889
bind:value={installCommand}
89-
placeholder={frameworkData?.adapters?.ssr?.installCommand} />
90+
placeholder={ssr?.installCommand} />
9091
<Button
9192
secondary
9293
size="s"
93-
disabled={frameworkData?.adapters?.ssr?.installCommand ===
94-
installCommand}
95-
on:click={() =>
96-
(installCommand =
97-
frameworkData?.adapters?.ssr?.installCommand)}>
94+
disabled={ssr?.installCommand === installCommand}
95+
on:click={() => (installCommand = ssr?.installCommand)}>
9896
Reset
9997
</Button>
10098
</Layout.Stack>
@@ -103,14 +101,12 @@
103101
id="buildCommand"
104102
label="Build command"
105103
bind:value={buildCommand}
106-
placeholder={frameworkData?.adapters?.ssr?.buildCommand} />
104+
placeholder={ssr?.buildCommand} />
107105
<Button
108106
secondary
109107
size="s"
110-
disabled={frameworkData?.adapters?.ssr?.buildCommand ===
111-
buildCommand}
112-
on:click={() =>
113-
(buildCommand = frameworkData?.adapters?.ssr?.buildCommand)}>
108+
disabled={ssr?.buildCommand === buildCommand}
109+
on:click={() => (buildCommand = ssr?.buildCommand)}>
114110
Reset
115111
</Button>
116112
</Layout.Stack>
@@ -119,15 +115,12 @@
119115
id="outputDirectory"
120116
label="Output directory"
121117
bind:value={outputDirectory}
122-
placeholder={frameworkData?.adapters?.ssr?.outputDirectory} />
118+
placeholder={ssr?.outputDirectory} />
123119
<Button
124120
secondary
125121
size="s"
126-
disabled={frameworkData?.adapters?.ssr?.outputDirectory ===
127-
outputDirectory}
128-
on:click={() =>
129-
(outputDirectory =
130-
frameworkData?.adapters?.ssr?.outputDirectory)}>
122+
disabled={ssr?.outputDirectory === outputDirectory}
123+
on:click={() => (outputDirectory = ssr?.outputDirectory)}>
131124
Reset
132125
</Button>
133126
</Layout.Stack>

src/routes/(console)/project-[project]/sites/grid.svelte

+42-10
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,32 @@
33
import { page } from '$app/stores';
44
import { timeFromNow } from '$lib/helpers/date';
55
import type { Models } from '@appwrite.io/console';
6-
import { Card, Layout, Tooltip } from '@appwrite.io/pink-svelte';
6+
import { Card, Icon, Layout, Popover, Tooltip, Typography } from '@appwrite.io/pink-svelte';
77
import { getFrameworkIcon } from './store';
88
import { SvgIcon } from '$lib/components';
99
import { app } from '$lib/stores/app';
1010
import { getApiEndpoint } from '$lib/stores/sdk';
1111
import AddCollaboratorModal from './(components)/addCollaboratorModal.svelte';
1212
import SitesActionMenu from './sitesActionMenu.svelte';
1313
import { capitalize } from '$lib/helpers/string';
14+
import { timer } from '$lib/helpers/timeConversion';
15+
import { IconExclamation } from '@appwrite.io/pink-icons-svelte';
16+
import { Link } from '$lib/elements';
1417
1518
export let siteList: Models.SiteList;
16-
export let deployments: Models.Deployment[];
1719
1820
let showAddCollaborator = false;
1921
let selectedSite: Models.Site = null;
2022
2123
function getScreenshot(theme: string, site: Models.Site) {
22-
const deployment =
23-
deployments.find((d) => site.deploymentId && d.$id === site.deploymentId) ?? null;
24-
2524
if (theme === 'dark') {
26-
return deployment?.screenshotDark
27-
? getFilePreview(deployment.screenshotDark)
25+
return site?.deploymentScreenshotDark
26+
? getFilePreview(site?.deploymentScreenshotDark)
2827
: `${base}/images/sites/screenshot-placeholder-dark.svg`;
2928
}
3029
31-
return deployment?.screenshotLight
32-
? getFilePreview(deployment.screenshotLight)
30+
return site?.deploymentScreenshotLight
31+
? getFilePreview(site?.deploymentScreenshotLight)
3332
: `${base}/images/sites/screenshot-placeholder-light.svg`;
3433
}
3534
@@ -38,6 +37,14 @@
3837
const endpoint = getApiEndpoint();
3938
return endpoint + `/storage/buckets/screenshots/files/${fileId}/view?project=console`;
4039
}
40+
41+
function generateDesc(site: Models.Site) {
42+
if (site.latestDeploymentStatus === 'building') {
43+
return `Deployment building ${timer(site.latestDeploymentCreatedAt)}`;
44+
} else {
45+
return `Deployed ${timeFromNow(site.deploymentCreatedAt)}`;
46+
}
47+
}
4148
</script>
4249

4350
<Layout.Grid columns={3} columnsXS={1} columnsXXS={1}>
@@ -47,7 +54,7 @@
4754
padding="xxs">
4855
<Card.Media
4956
title={site.name}
50-
description={`Updated ${timeFromNow(site.$updatedAt)}`}
57+
description={generateDesc(site)}
5158
src={getScreenshot($app.themeInUse, site)}
5259
alt={site.name}
5360
avatar>
@@ -60,6 +67,31 @@
6067
</Tooltip>
6168
</svelte:fragment>
6269
<SitesActionMenu {site} bind:showAddCollaborator bind:selectedSite />
70+
71+
<svelte:fragment slot="description-end">
72+
{#if site.latestDeploymentStatus === 'failed'}
73+
<Popover let:toggle portal>
74+
<button on:mouseenter={(e) => toggle(e)}>
75+
<Layout.Stack alignItems="center">
76+
<Icon
77+
icon={IconExclamation}
78+
size="s"
79+
color="--bgcolor-warning" />
80+
</Layout.Stack>
81+
</button>
82+
<svelte:fragment slot="tooltip">
83+
<Typography.Text variant="m-400">
84+
Last deployment failed {timeFromNow(
85+
site.latestDeploymentCreatedAt
86+
)}. <Link
87+
href={`${base}/project-${$page.params.project}/sites/site-${site.$id}/deployments/deployment-${site.latestDeploymentId}`}>
88+
View logs
89+
</Link>
90+
</Typography.Text>
91+
</svelte:fragment>
92+
</Popover>
93+
{/if}
94+
</svelte:fragment>
6395
</Card.Media>
6496
</Card.Link>
6597
{/each}

src/routes/(console)/project-[project]/sites/site-[site]/deployments/+layout.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
}
2626
if (message.events.includes('sites.*.deployments.*.update')) {
2727
invalidate(Dependencies.DEPLOYMENTS);
28-
invalidate(Dependencies.FUNCTION);
29-
28+
invalidate(Dependencies.SITE);
29+
console.log(message);
3030
return;
3131
}
3232
if (message.events.includes('sites.*.deployments.*.delete')) {

src/routes/(console)/project-[project]/sites/site-[site]/deployments/store.ts

+25-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const columns = writable<Column[]>([
1919
id: 'buildDuration',
2020
title: 'Build duration',
2121
type: 'integer',
22-
width: { min: 110, max: 170 },
22+
width: { min: 110, max: 190 },
2323

2424
elements: [
2525
{
@@ -37,12 +37,32 @@ export const columns = writable<Column[]>([
3737
],
3838
filter: false
3939
},
40+
{
41+
id: 'totalSize',
42+
title: 'Total size',
43+
type: 'integer',
44+
width: { min: 110, max: 190 },
45+
elements: [
46+
{
47+
value: 2 * 1000 * 1000,
48+
label: 'more than 2MB'
49+
},
50+
{
51+
value: 10 * 1000 * 1000,
52+
label: 'more than 10MB'
53+
},
54+
{
55+
value: 50 * 1000 * 1000,
56+
label: 'more than 50MB'
57+
}
58+
]
59+
},
4060
{
4161
id: 'sourceSize',
4262
title: 'Source size',
4363
type: 'integer',
4464
hide: true,
45-
width: { min: 110, max: 170 },
65+
width: { min: 110, max: 190 },
4666
elements: [
4767
{
4868
value: 2 * 1000 * 1000,
@@ -62,14 +82,15 @@ export const columns = writable<Column[]>([
6282
id: 'buildSize',
6383
title: 'Build size',
6484
type: 'integer',
85+
hide: true,
6586
filter: false,
66-
width: { min: 90, max: 140 }
87+
width: { min: 90, max: 190 }
6788
},
6889
{
6990
id: 'type',
7091
title: 'Source',
7192
type: 'string',
72-
width: { min: 90, max: 140 },
93+
width: { min: 90, max: 160 },
7394
array: true,
7495
format: 'enum',
7596
elements: [

src/routes/(console)/project-[project]/sites/site-[site]/deployments/table.svelte

+2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@
6868
{:else}
6969
{formatTimeDetailed(deployment.buildDuration)}
7070
{/if}
71+
{:else if column.id === 'totalSize'}
72+
{calculateSize(deployment.totalSize)}
7173
{:else if column.id === 'sourceSize'}
7274
{calculateSize(deployment.sourceSize)}
7375
{:else if column.id === 'buildSize'}

0 commit comments

Comments
 (0)