mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 10:10:47 +01:00
54 lines
2.3 KiB
Vue
54 lines
2.3 KiB
Vue
<template>
|
|
<div class="d-flex flex-column gap-2">
|
|
<h1>Summoner Icons</h1>
|
|
|
|
<Pagination :pages="pages" :count="count" :index="index" :on-prev="prev" :on-next="next"
|
|
:on-first="first" :on-last="last"/>
|
|
|
|
<div class="overflow-hidden rounded border border-light border-opacity-25 p-4">
|
|
<table class="sortable table table-borderless">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Id</th>
|
|
<th scope="col">Icon</th>
|
|
<th scope="col">Title</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="icon in pages[index]" :key="icon.id">
|
|
<th scope="row">
|
|
<NuxtLink class="text-decoration-none text-light" :to="`/summoner-icons/overview/${icon.id}`">
|
|
{{ icon.id }}
|
|
</NuxtLink>
|
|
</th>
|
|
<td>
|
|
<NuxtLink class="text-decoration-none text-light" :to="`/summoner-icons/overview/${icon.id}`">
|
|
<img :src="icon.getImage('latest')" width="32" height="32" loading="lazy" onerror="this.onerror = null; this.src='/clean-cuts/img/error.png'"/>
|
|
</NuxtLink>
|
|
</td>
|
|
<td>
|
|
<NuxtLink class="text-decoration-none text-light" :to="`/summoner-icons/overview/${icon.id}`">
|
|
{{ icon.title }}
|
|
</NuxtLink>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<Pagination :pages="pages" :count="count" :index="index" :on-prev="prev" :on-next="next"
|
|
:on-first="first" :on-last="last"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Pagination from '~/components/Pagination.vue';
|
|
import useClient from '../../composables/useClient';
|
|
import usePagination from '../../composables/usePagination';
|
|
|
|
const { client } = useClient();
|
|
|
|
const icons = (await client.summonerIcons.listAsync({locale: "default", version: "latest"}))
|
|
.sort((a, b) => a.id - b.id);
|
|
const { count, pages, index, prev, next, first, last } = usePagination(icons, 100);
|
|
</script> |