diff --git a/assets/images/main.png b/assets/images/main.png new file mode 100644 index 0000000..23909c9 Binary files /dev/null and b/assets/images/main.png differ diff --git a/src/lib/api/git.ts b/src/lib/api/git.ts index cdef558..57627a1 100644 --- a/src/lib/api/git.ts +++ b/src/lib/api/git.ts @@ -1,6 +1,7 @@ import type { GitRepo } from "../types"; const API_BASE_URL = "https://git.luke-else.co.uk/api/v1"; +export const IMAGE_URL_SUFFIX = "/raw/branch/main/assets/images/main.png"; export async function fetchRepos(): Promise { @@ -46,4 +47,21 @@ export function timeSince(inputDate: Date | string): string { if (diffInDays < 30) return `${Math.floor(diffInDays / 7)} week${diffInDays >= 14 ? 's' : ''} ago`; if (diffInMonths < 12) return `${diffInMonths} month${diffInMonths > 1 ? 's' : ''} ago`; return `${diffInYears} year${diffInYears > 1 ? 's' : ''} ago`; +} + +export async function checkImage(repo: GitRepo): Promise { + try { + const URL = repo.html_url + IMAGE_URL_SUFFIX; + console.log("Checking image:", URL); + const response = await fetch(URL); + if (response.ok) { + console.log("Image found!"); + return true; + } else { + console.log("Image not found!"); + return false; + } + } catch (error) { + return false; + } } \ No newline at end of file diff --git a/src/routes/repos/+page.svelte b/src/routes/repos/+page.svelte index 2986124..10b9d09 100644 --- a/src/routes/repos/+page.svelte +++ b/src/routes/repos/+page.svelte @@ -2,8 +2,9 @@ import { onMount } from "svelte"; import { Toast, ToastType } from "$lib/toast"; import { repos, loadRepos, addToast } from "$lib/stores"; - import { timeSince } from "$lib/api/git"; + import { timeSince, checkImage, IMAGE_URL_SUFFIX } from "$lib/api/git"; import Card from "$lib/components/Cards/Card.svelte"; + import SlidingCard from "$lib/components/Cards/SlidingCard.svelte"; import Loading from "$lib/components/Loading.svelte"; onMount(loadRepos); @@ -17,20 +18,44 @@
{addToast(new Toast("See a snapshot of my latest work.", ToastType.Info, true, 8_000))}
{#each $repos as repo} - -
-

{repo.name}

- {repo.language} -
-
-

{@html repo.description}

-
-
- - {repo.name} - {timeSince(repo.updated_at)} -
-
+ {#await checkImage(repo)} + + {:then hasImage} + {#if hasImage} + +
+

{repo.name}

+ {repo.language} +
+
+

{@html repo.description}

+
+
+ {repo.name} +
+
+ + {repo.name} + {timeSince(repo.updated_at)} +
+
+ {:else} + +
+

{repo.name}

+ {repo.language} +
+
+

{@html repo.description}

+
+
+ + {repo.name} + {timeSince(repo.updated_at)} +
+
+ {/if} + {/await} {/each}
{:else}