|
3 | 3 | import { page } from '$app/stores';
|
4 | 4 | import { timeFromNow } from '$lib/helpers/date';
|
5 | 5 | 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'; |
7 | 7 | import { getFrameworkIcon } from './store';
|
8 | 8 | import { SvgIcon } from '$lib/components';
|
9 | 9 | import { app } from '$lib/stores/app';
|
10 | 10 | import { getApiEndpoint } from '$lib/stores/sdk';
|
11 | 11 | import AddCollaboratorModal from './(components)/addCollaboratorModal.svelte';
|
12 | 12 | import SitesActionMenu from './sitesActionMenu.svelte';
|
13 | 13 | 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'; |
14 | 17 |
|
15 | 18 | export let siteList: Models.SiteList;
|
16 |
| - export let deployments: Models.Deployment[]; |
17 | 19 |
|
18 | 20 | let showAddCollaborator = false;
|
19 | 21 | let selectedSite: Models.Site = null;
|
20 | 22 |
|
21 | 23 | function getScreenshot(theme: string, site: Models.Site) {
|
22 |
| - const deployment = |
23 |
| - deployments.find((d) => site.deploymentId && d.$id === site.deploymentId) ?? null; |
24 |
| -
|
25 | 24 | if (theme === 'dark') {
|
26 |
| - return deployment?.screenshotDark |
27 |
| - ? getFilePreview(deployment.screenshotDark) |
| 25 | + return site?.deploymentScreenshotDark |
| 26 | + ? getFilePreview(site?.deploymentScreenshotDark) |
28 | 27 | : `${base}/images/sites/screenshot-placeholder-dark.svg`;
|
29 | 28 | }
|
30 | 29 |
|
31 |
| - return deployment?.screenshotLight |
32 |
| - ? getFilePreview(deployment.screenshotLight) |
| 30 | + return site?.deploymentScreenshotLight |
| 31 | + ? getFilePreview(site?.deploymentScreenshotLight) |
33 | 32 | : `${base}/images/sites/screenshot-placeholder-light.svg`;
|
34 | 33 | }
|
35 | 34 |
|
|
38 | 37 | const endpoint = getApiEndpoint();
|
39 | 38 | return endpoint + `/storage/buckets/screenshots/files/${fileId}/view?project=console`;
|
40 | 39 | }
|
| 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 | + } |
41 | 48 | </script>
|
42 | 49 |
|
43 | 50 | <Layout.Grid columns={3} columnsXS={1} columnsXXS={1}>
|
|
47 | 54 | padding="xxs">
|
48 | 55 | <Card.Media
|
49 | 56 | title={site.name}
|
50 |
| - description={`Updated ${timeFromNow(site.$updatedAt)}`} |
| 57 | + description={generateDesc(site)} |
51 | 58 | src={getScreenshot($app.themeInUse, site)}
|
52 | 59 | alt={site.name}
|
53 | 60 | avatar>
|
|
60 | 67 | </Tooltip>
|
61 | 68 | </svelte:fragment>
|
62 | 69 | <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> |
63 | 95 | </Card.Media>
|
64 | 96 | </Card.Link>
|
65 | 97 | {/each}
|
|
0 commit comments