mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-05 11:42:40 +00:00
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
<div id="statuscafe" class="text-box">
|
|
<h3>My Lastest Status</h3>
|
|
<div id="statuscafe-userinfo"></div>
|
|
<div id="statuscafe-content">
|
|
<p>Fetching data from status.cafe...</p>
|
|
</div>
|
|
|
|
<p><a href="https://status.cafe/users/leilukin">View my statuses on status.cafe</a></p>
|
|
</div>
|
|
|
|
<style>
|
|
#statuscafe-content {
|
|
margin: 0 0 0.5em 1em;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
const fetchStatusCafe = async () => {
|
|
try {
|
|
const res = await fetch('https://status.cafe/users/leilukin/status.json');
|
|
const data = await res.json();
|
|
|
|
if (!data.content.length) {
|
|
document.getElementById("statuscafe-content").innerHTML = "No status yet."
|
|
return;
|
|
}
|
|
|
|
document.getElementById("statuscafe-userinfo").innerHTML = data.author + ' ' + data.face + ' ' + data.timeAgo;
|
|
document.getElementById("statuscafe-content").innerHTML = data.content;
|
|
} catch (error) {
|
|
console.error(error);
|
|
document.getElementById("statuscafe-content").textContent = `[ERROR] ${error}`;
|
|
}
|
|
};
|
|
fetchStatusCafe();
|
|
</script> |