Update runes page

This commit is contained in:
Blossomi Shymae
2024-10-12 19:03:16 -05:00
parent 655927591c
commit d377134e3b

View File

@@ -1,47 +1,62 @@
<template>
<div class="d-flex flex-column gap-2">
<div class="overflow-hidden rounded border border-light border-opacity-25 p-4 app-background-solid">
<table class="sortable table table-borderless">
<thead>
<tr>
<th scope="col">Id</th>
<th scope="col">Icon</th>
<th scope="col">Name</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr v-for="rune in runes" :key="rune.id">
<th scope="row">
{{ rune.id }}
</th>
<td>
<img :src="rune.getIcon('latest')" width="32" height="32" loading="lazy" onerror="this.onerror = null; this.src = '/clean-cuts/img/error.png';"/>
</td>
<td>
{{ rune.name }}
</td>
<td>
<span v-html="rune.shortDesc"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</template>
<script setup lang="ts">
import useClient from '../../composables/useClient';
import useLocale from '~/composables/useLocale';
const { client } = useClient();
const { currentLocale } = useLocale();
const getRunes = async () => (await client.perks.listAsync({locale: currentLocale.value, version: "latest"}))
.sort((a, b) => a.id - b.id)
const query = ref("");
const runes = ref(await getRunes());
watch(currentLocale, async() => {
runes.value = await getRunes();
});
</script>
const { isNumeric } = useIsNumeric();
const filteredRunes = computed(() => {
let filtered = [];
if (isNumeric(query.value))
filtered = runes.value.filter((x) => x.id == parseInt(query.value, 10));
else
filtered = runes.value.filter((x) => x.name.toLocaleLowerCase().includes(query.value.toLocaleLowerCase()));
return filtered;
})
</script>
<template>
<div class="d-flex flex-column gap-4">
<div class="d-flex flex-column gap-3">
<div class="d-flex justify-content-end gap-2">
<Card class="d-flex justify-content-center align-items-center me-auto">
<span>{{ runes.length }} runes</span>
</Card>
<div class="input-group" style="max-width: 400px;">
<input type="text" class="form-control border-light border-opacity-25" placeholder="Search" name="Search"
v-model="query"/>
</div>
</div>
<div class="d-flex flex-column align-items-center gap-2">
<Card class="d-flex w-50 flex-column" v-for="rune in filteredRunes" :key="rune.id"
data-aos="zoom-out"
data-aos-duration="500"
style="height: fit-content;">
<div class="d-flex gap-2 border-bottom pb-1">
<div style="width: 32px;" class="d-flex justify-content-center align-items-center">
<div class="ratio ratio-1x1">
<LLazyImg :src="rune.getIcon('latest')" />
</div>
</div>
<div class="d-flex flex-column flex-grow-1 ">
<span class="fw-light">{{ rune.name }}</span>
<span class="fw-bold">{{ rune.id }}</span>
</div>
</div>
<div style="color: #ccc;" v-html="rune.longDesc"></div>
</Card>
</div>
</div>
<div class="d-flex justify-content-center w-100">
<BackToTopButton/>
</div>
</div>
</template>