mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
62 lines
1.2 KiB
Svelte
62 lines
1.2 KiB
Svelte
<script>
|
|
import { onMount } from 'svelte';
|
|
|
|
let error = false;
|
|
let loading = true;
|
|
let stargazersCount = 0;
|
|
let forksCount = 0;
|
|
|
|
|
|
async function fetchStats() {
|
|
try {
|
|
const response = await fetch(`https://api.github.com/repos/tomalaforge/angular-challenges`);
|
|
if (!response.ok) {
|
|
throw new Error('Network response was not ok');
|
|
}
|
|
const { stargazers_count, forks } = await response.json();
|
|
stargazersCount = stargazers_count;
|
|
forksCount = forks;
|
|
|
|
} catch (e) {
|
|
error = true;
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}
|
|
|
|
onMount(() => {
|
|
fetchStats();
|
|
});
|
|
</script>
|
|
|
|
{#if !error && !loading}
|
|
<div class="github">
|
|
<a class="category" href="https://github.com/tomalaforge/angular-challenges">
|
|
<slot name="star"/>
|
|
<div>{stargazersCount}</div>
|
|
</a>
|
|
|
|
<div class="category fork">
|
|
<slot name="fork"/>
|
|
<div>{forksCount}</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<style>
|
|
.github {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
margin-left: var(--sl-nav-gap)
|
|
}
|
|
|
|
.category {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
</style>
|