Add summoner emotes feat

This commit is contained in:
Blossomi Shymae
2024-05-02 09:38:22 -05:00
parent 6a9c89f92a
commit 4cec226e1d
3 changed files with 48 additions and 13 deletions

View File

@@ -0,0 +1,35 @@
<template>
<div class="d-flex flex-column gap-2">
<h1 class="mb-3">Summoner Emotes</h1>
<Pagination :pages="pages" :count="count" :index="index" :on-prev="prev" :on-next="next"
:on-first="first" :on-last="last"/>
<div class="d-flex flex-wrap justify-content-around gap-2">
<div class="card bg-transparent bg-screen border-light border-opacity-25" style="max-width: 140px; width: 140px;"
v-for="emote in pages[index]" :key="emote.id">
<img :src="emote.getInventoryIcon('latest')" loading="lazy" onerror="this.onerror = null; this.src='/img/error.png';" />
<div class="card-body">
<h5 class="card-title">{{ emote.name }}</h5>
<Badge name="identifier">{{ emote.id }}</Badge>
</div>
</div>
</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 Badge from '~/components/Badge.vue';
import useClient from '../../composables/useClient';
import usePagination from '../../composables/usePagination';
const { client } = useClient();;
const emotes = await client.summonerEmotes.listAsync({locale: "default", version: "latest"});
const { count, pages, index, prev, next, first, last } = usePagination(emotes, 24);
</script>