44 lines
1.3 KiB
Vue
44 lines
1.3 KiB
Vue
<script setup lang="ts">
|
|
import dayjs from "dayjs";
|
|
import utc from "dayjs/plugin/utc.js";
|
|
import tz from "dayjs/plugin/timezone.js";
|
|
import type { GithubCommit, GithubPushEvent } from "@/shared/github";
|
|
import type { Ref } from "vue";
|
|
|
|
const FEED_URL = "https://api.github.com/users/potatoeggy/events";
|
|
const imgUrl = ref("");
|
|
const href = ref("");
|
|
|
|
onMounted(async () => {
|
|
const results = (await useFetch(FEED_URL, { initialCache: false }))
|
|
.data as Ref<GithubPushEvent[]>;
|
|
const latestEvent = results.value.find(
|
|
(event) => event.type === "PushEvent"
|
|
) as GithubPushEvent;
|
|
const latestCommit = latestEvent.payload.commits[0];
|
|
imgUrl.value = `https://opengraph.githubassets.com/hash/${latestEvent.repo.name}/commit/${latestCommit.sha}`;
|
|
href.value = `https://github.com/${latestEvent.repo.name}/commit/${latestCommit.sha}`;
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="prose dark:prose-invert">
|
|
<HomeStatBox
|
|
:href="href"
|
|
color="lightgray"
|
|
darkcolor="slategray"
|
|
title="Latest commit"
|
|
:clearstyles="true"
|
|
>
|
|
<img class="m-0 w-full h-full" :src="imgUrl" />
|
|
<!--
|
|
<div>
|
|
<h2>{{ title }}</h2>
|
|
<p v-if="description">{{ description }}</p>
|
|
</div>
|
|
-->
|
|
<noscript> Enable JavaScript to see the latest commit! </noscript>
|
|
</HomeStatBox>
|
|
</div>
|
|
</template>
|