Compare commits

...

6 Commits

6 changed files with 408 additions and 77 deletions

View File

@@ -59,10 +59,15 @@ const navigationItems = [
icon: 'mdi:account-circle-outline' icon: 'mdi:account-circle-outline'
}, },
{ {
label: 'Rankings', label: 'Rankings por Período',
to: '/ranking-jogos', to: '/ranking-jogos',
icon: 'mdi:trophy-outline' icon: 'mdi:trophy-outline'
}, },
{
label: 'Ranking por Plataforma',
to: '/ranking-plataforma',
icon: 'mdi:layers-outline'
},
{ {
label: 'Perfil gamer', label: 'Perfil gamer',
to: '/perfil-gamer', to: '/perfil-gamer',

View File

@@ -221,7 +221,7 @@
</aside> </aside>
</section> </section>
<section class="grid min-w-0 gap-4 xl:grid-cols-3" aria-label="Prévia dos serviços"> <section class="grid min-w-0 gap-4 sm:grid-cols-2 xl:grid-cols-4" aria-label="Prévia dos serviços">
<article v-for="service in servicePreviews" :key="service.title" <article v-for="service in servicePreviews" :key="service.title"
class="grid min-w-0 gap-4 rounded-2xl border border-[#e7e5e4] bg-white p-4 shadow-[0_4px_16px_rgba(0,0,0,0.04)] sm:p-5 md:p-6"> class="grid min-w-0 gap-4 rounded-2xl border border-[#e7e5e4] bg-white p-4 shadow-[0_4px_16px_rgba(0,0,0,0.04)] sm:p-5 md:p-6">
<div class="flex items-start justify-between gap-3"> <div class="flex items-start justify-between gap-3">
@@ -286,6 +286,7 @@ useHead({
}) })
const RANKINGS_API_BASE_URL = 'https://api-ranking-jogos-production.up.railway.app/api/v1' const RANKINGS_API_BASE_URL = 'https://api-ranking-jogos-production.up.railway.app/api/v1'
const COMPARE_API_BASE_URL = 'https://ranking-plataforma.onrender.com'
const WISHLIST_API_BASE_URL = 'https://gameverse-wishlist-production.up.railway.app' const WISHLIST_API_BASE_URL = 'https://gameverse-wishlist-production.up.railway.app'
const CATALOG_API_BASE_URL = 'https://catalogo-jogos-sd-production.up.railway.app' const CATALOG_API_BASE_URL = 'https://catalogo-jogos-sd-production.up.railway.app'
const GIFT_CARD_API_BASE_URL = 'https://giftcardapipedro-production.up.railway.app/api' const GIFT_CARD_API_BASE_URL = 'https://giftcardapipedro-production.up.railway.app/api'
@@ -353,6 +354,12 @@ const gamerProfile = reactive({
data: null data: null
}) })
const rankingPlataforma = reactive({
isLoading: true,
error: '',
items: []
})
const isRedirecting = ref(false) const isRedirecting = ref(false)
const userName = computed( const userName = computed(
@@ -382,6 +389,9 @@ const totalGiftBalance = computed(() =>
giftCards.items.reduce((sum, card) => sum + Number(card.balance ?? 0), 0) giftCards.items.reduce((sum, card) => sum + Number(card.balance ?? 0), 0)
) )
const favoriteNames = computed(() => favorites.items.map((item) => item.game_id).filter(Boolean)) const favoriteNames = computed(() => favorites.items.map((item) => item.game_id).filter(Boolean))
const rankingPlataformaItems = computed(() =>
rankingPlataforma.items.slice(0, 3).map((g) => `${g.name} · ${g.platform} · ${g.score}`)
)
const catalogNames = computed(() => catalog.items.map((item) => item.title).filter(Boolean)) const catalogNames = computed(() => catalog.items.map((item) => item.title).filter(Boolean))
const giftCardCodes = computed(() => const giftCardCodes = computed(() =>
giftCards.items.map((item) => `${item.code} · ${formatCurrency(item.balance)}`).filter(Boolean) giftCards.items.map((item) => `${item.code} · ${formatCurrency(item.balance)}`).filter(Boolean)
@@ -448,6 +458,11 @@ const shortcuts = [
to: '/ranking-jogos', to: '/ranking-jogos',
icon: 'mdi:trophy-outline' icon: 'mdi:trophy-outline'
}, },
{
label: 'Ranking por plataforma',
to: '/ranking-plataforma',
icon: 'mdi:layers-outline'
},
{ {
label: 'Novo jogo no catálogo', label: 'Novo jogo no catálogo',
to: '/catalogo/criar', to: '/catalogo/criar',
@@ -496,6 +511,18 @@ const servicePreviews = computed(() => [
empty: 'Nenhum gift card emitido.', empty: 'Nenhum gift card emitido.',
to: '/gift-card', to: '/gift-card',
action: 'Gerenciar gift cards' action: 'Gerenciar gift cards'
},
{
badge: 'Plataformas',
badgeClass: 'bg-[rgba(196,184,232,0.56)]',
title: 'Ranking por plataforma',
icon: 'mdi:layers-outline',
loading: rankingPlataforma.isLoading,
error: rankingPlataforma.error,
items: rankingPlataformaItems.value,
empty: 'Nenhum dado disponível.',
to: '/ranking-plataforma',
action: 'Ver ranking completo'
} }
]) ])
@@ -619,6 +646,24 @@ async function fetchGiftCards() {
} }
} }
async function fetchRankingPlataforma() {
rankingPlataforma.isLoading = true
rankingPlataforma.error = ''
try {
const data = await $fetch(`${COMPARE_API_BASE_URL}/compare`, {
headers: authHeaders()
})
rankingPlataforma.items = Array.isArray(data?.data) ? data.data : []
} catch (error) {
if (await tratarErroAuth(error)) return
rankingPlataforma.items = []
rankingPlataforma.error = error?.data?.message ?? 'Erro ao carregar ranking por plataforma.'
} finally {
rankingPlataforma.isLoading = false
}
}
async function fetchGamerProfile() { async function fetchGamerProfile() {
gamerProfile.isLoading = true gamerProfile.isLoading = true
gamerProfile.error = '' gamerProfile.error = ''
@@ -648,7 +693,8 @@ onMounted(() => {
fetchFavorites(), fetchFavorites(),
fetchCatalog(), fetchCatalog(),
fetchGiftCards(), fetchGiftCards(),
fetchGamerProfile() fetchGamerProfile(),
fetchRankingPlataforma()
]) ])
}) })
</script> </script>

View File

@@ -17,7 +17,7 @@
Ranking de jogos Ranking de jogos
</h1> </h1>
<p class="m-0 max-w-[560px] text-base font-normal leading-6 tracking-[0.16px] text-[#4e4e4e]"> <p class="m-0 max-w-[560px] text-base font-normal leading-6 tracking-[0.16px] text-[#4e4e4e]">
Acompanhe os jogos por período, plataforma e volume de jogadores ativos. Acompanhe os jogos por período e volume de jogadores ativos.
</p> </p>
</div> </div>
</header> </header>
@@ -181,41 +181,6 @@ const rankingOptions = [
badge: 'Ano', badge: 'Ano',
title: 'Ranking anual' title: 'Ranking anual'
}, },
{
label: 'Steam',
value: 'steam',
endpoint: '/rankings/platforms/Steam',
badge: 'Steam',
title: 'Ranking da Steam'
},
{
label: 'Epic Games',
value: 'epic-games',
endpoint: '/rankings/platforms/Epic Games',
badge: 'Epic Games',
title: 'Ranking da Epic Games'
},
{
label: 'Riot Launcher',
value: 'riot-launcher',
endpoint: '/rankings/platforms/Riot Launcher',
badge: 'Riot Launcher',
title: 'Ranking da Riot Launcher'
},
{
label: 'Multiplataforma',
value: 'multi-platform',
endpoint: '/rankings/platforms/Multiplataforma',
badge: 'Multiplataforma',
title: 'Ranking multiplataforma'
},
{
label: 'Battle.net',
value: 'battle-net',
endpoint: '/rankings/platforms/Battle.net',
badge: 'Battle.net',
title: 'Ranking da Battle.net'
},
{ {
label: 'Mais jogados', label: 'Mais jogados',
value: 'most-played', value: 'most-played',

View File

@@ -0,0 +1,318 @@
<template>
<div
class="relative min-h-screen overflow-x-hidden bg-[#f5f5f5] px-3 py-8 font-sans text-[#0c0a09] sm:px-4 md:px-6 md:py-12 xl:px-8 xl:py-16">
<div
class="pointer-events-none absolute left-1/2 top-8 h-[460px] w-[min(92vw,820px)] -translate-x-1/2 rounded-[48px] bg-[radial-gradient(circle_at_20%_30%,rgba(196,184,232,0.5),transparent_28%),radial-gradient(circle_at_72%_24%,rgba(168,200,232,0.5),transparent_30%),radial-gradient(circle_at_52%_78%,rgba(167,229,211,0.56),transparent_34%)] blur-2xl"
aria-hidden="true"></div>
<main class="relative mx-auto grid w-full min-w-0 max-w-[1120px] gap-6 md:gap-8"
aria-labelledby="ranking-plataforma-title">
<header class="flex flex-col gap-5 sm:flex-row sm:items-end sm:justify-between">
<div>
<p
class="m-0 inline-flex rounded-full bg-[rgba(196,184,232,0.56)] px-3 py-1 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#0c0a09]">
Rankings
</p>
<h1 id="ranking-plataforma-title"
class="my-5 max-w-[720px] break-words font-serif text-[34px] font-light leading-[1.08] tracking-[-0.96px] text-[#0c0a09] sm:text-[40px] md:text-[48px]">
Ranking por plataforma
</h1>
<p class="m-0 max-w-[560px] text-base font-normal leading-6 tracking-[0.16px] text-[#4e4e4e]">
Compare os jogos mais bem avaliados de cada plataforma em um ranking unificado por pontuação.
</p>
</div>
</header>
<section
class="grid min-w-0 gap-6 rounded-2xl border border-[#e7e5e4] bg-white p-4 shadow-[0_4px_16px_rgba(0,0,0,0.04)] sm:p-5 md:p-6 xl:p-8"
aria-label="Lista de ranking por plataforma">
<div class="grid min-w-0 gap-5 xl:grid-cols-[minmax(0,1fr)_minmax(240px,320px)] xl:items-end">
<div>
<span
class="inline-flex min-h-6 items-center rounded-full bg-[rgba(196,184,232,0.56)] px-2.5 py-1 text-xs font-semibold uppercase leading-none tracking-[0.96px] text-[#0c0a09]">
{{ selectedPlatform === 'all' ? 'Todas as plataformas' : selectedPlatform }}
</span>
<h2 class="mt-4 font-serif text-3xl font-light leading-[1.13] tracking-[-0.32px] text-[#0c0a09]">
{{ selectedPlatform === 'all' ? 'Ranking geral por plataforma' : `Ranking — ${selectedPlatform}` }}
</h2>
</div>
<AppSelect id="platform-filter" v-model="selectedPlatform" label="Filtrar por plataforma"
:options="platformOptions" :disabled="isLoading" />
</div>
<div v-if="isLoading" class="grid gap-3" role="status" aria-live="polite">
<div v-for="item in 4" :key="item" class="h-20 animate-pulse rounded-xl bg-[#f0efed]"></div>
</div>
<div v-else-if="errorMessage"
class="rounded-xl border border-red-200 bg-red-50 px-4 py-3 text-[15px] leading-[1.47] tracking-[0.15px] text-red-700"
role="alert">
{{ errorMessage }}
</div>
<div v-else-if="!filteredRankings.length"
class="rounded-xl border border-[#e7e5e4] bg-[#fafafa] px-4 py-6 text-center text-[15px] leading-[1.47] tracking-[0.15px] text-[#777169]">
Nenhum jogo encontrado para esta plataforma.
</div>
<!-- Mobile: cards horizontais -->
<ol class="grid gap-2.5 xl:hidden">
<li v-for="game in filteredRankings" :key="game.rank"
class="flex items-center gap-3 rounded-xl border border-[#e7e5e4] bg-white p-3">
<span
class="flex h-8 w-8 shrink-0 items-center justify-center rounded-full bg-[#292524] text-[13px] font-semibold leading-none text-white">
{{ game.rank }}
</span>
<img v-if="game.image" :src="game.image" :alt="game.name" class="w-24 shrink-0 rounded-lg" loading="lazy" />
<div v-else class="h-14 w-24 shrink-0 rounded-lg bg-[#f0efed]"></div>
<div class="flex min-w-0 flex-1 flex-col gap-2">
<strong
class="min-w-0 line-clamp-2 text-[13px] font-medium leading-[1.35] tracking-[0.1px] text-[#0c0a09]">
{{ game.name }}
</strong>
<div class="flex items-center gap-1.5">
<span
:class="['inline-flex items-center rounded-full px-2 py-0.5 text-[10px] font-semibold uppercase leading-none tracking-[0.6px] text-[#0c0a09]', platformBadgeClass(game.platform)]">
{{ game.platform }}
</span>
<span
class="inline-flex items-center justify-center rounded-full bg-[#292524] px-2 py-0.5 text-[12px] font-semibold leading-none text-white">
{{ game.score }}
</span>
<button type="button" :disabled="togglingId === game.name"
:aria-label="favoriteIds.has(game.name) ? 'Remover dos favoritos' : 'Adicionar aos favoritos'"
@click="toggleFavorite(game)"
class="inline-flex h-7 w-7 shrink-0 items-center justify-center rounded-full transition hover:bg-[#f0efed] disabled:cursor-not-allowed disabled:opacity-50">
<Icon
:name="togglingId === game.name ? 'mdi:loading' : favoriteIds.has(game.name) ? 'mdi:heart' : 'mdi:heart-outline'"
:class="['text-sm', togglingId === game.name ? 'animate-spin text-[#777169]' : favoriteIds.has(game.name) ? 'text-rose-500' : 'text-[#777169]']" />
</button>
</div>
</div>
</li>
</ol>
<!-- Desktop: tabela -->
<div class="hidden overflow-hidden rounded-xl border border-[#e7e5e4] xl:block">
<div
class="bg-[#fafafa] px-4 py-3 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#777169] xl:grid xl:grid-cols-[72px_minmax(220px,2fr)_minmax(140px,1fr)_120px] xl:gap-4">
<span>Posição</span>
<span>Jogo</span>
<span>Plataforma</span>
<span>Pontuação</span>
</div>
<ol class="grid divide-y divide-[#e7e5e4]">
<li v-for="game in filteredRankings" :key="game.rank"
class="grid grid-cols-[72px_minmax(220px,2fr)_minmax(140px,1fr)_120px] items-center gap-4 bg-white p-4">
<span
class="inline-flex h-9 min-w-9 items-center justify-center rounded-full bg-[#292524] px-3 text-[15px] font-medium leading-none text-white">
{{ game.rank }}
</span>
<div class="flex min-w-0 items-center gap-3">
<img v-if="game.image" :src="game.image" :alt="game.name"
class="h-16 w-28 shrink-0 rounded-lg object-cover shadow-sm" loading="lazy" />
<div v-else class="h-16 w-28 shrink-0 rounded-lg bg-[#f0efed]"></div>
<strong class="min-w-0 break-words text-base font-medium leading-6 tracking-[0.16px] text-[#0c0a09]">
{{ game.name }}
</strong>
<button type="button" :disabled="togglingId === game.name"
:aria-label="favoriteIds.has(game.name) ? 'Remover dos favoritos' : 'Adicionar aos favoritos'"
@click="toggleFavorite(game)"
class="inline-flex h-8 w-8 shrink-0 items-center justify-center rounded-full transition hover:bg-[#f0efed] disabled:cursor-not-allowed disabled:opacity-50">
<Icon
:name="togglingId === game.name ? 'mdi:loading' : favoriteIds.has(game.name) ? 'mdi:heart' : 'mdi:heart-outline'"
:class="['text-base', togglingId === game.name ? 'animate-spin text-[#777169]' : favoriteIds.has(game.name) ? 'text-rose-500' : 'text-[#777169]']" />
</button>
</div>
<span
:class="['inline-flex items-center rounded-full px-2.5 py-1 text-[12px] font-semibold uppercase leading-none tracking-[0.8px] text-[#0c0a09]', platformBadgeClass(game.platform)]">
{{ game.platform }}
</span>
<span
class="inline-flex items-center justify-center rounded-full bg-[#292524] px-3 py-1 text-[13px] font-semibold leading-none text-white">
{{ game.score }}
</span>
</li>
</ol>
</div>
</section>
<div class="flex flex-col items-center gap-2 text-center text-xs leading-[1.4] tracking-[0.16px] text-[#777169]">
<p>
Microsserviço consumido:
<span class="font-medium text-[#4e4e4e]">https://ranking-plataforma.onrender.com</span>
&nbsp;·&nbsp; Feito por Ingrid e Marcelo
</p>
<span class="inline-flex items-center gap-1.5">
<span class="h-1.5 w-1.5 rounded-full bg-emerald-500"></span>
Sistema de validação de token funcional
</span>
</div>
</main>
</div>
</template>
<script setup>
definePageMeta({
middleware: 'auth',
layout: 'protected'
})
useHead({
title: 'Ranking por plataforma | GameVerse',
meta: [
{
name: 'description',
content: 'Compare os jogos mais bem avaliados de cada plataforma em um ranking unificado por pontuação.'
}
]
})
const COMPARE_API_BASE_URL = 'https://ranking-plataforma.onrender.com'
const WISHLIST_API_BASE_URL = 'https://gameverse-wishlist-production.up.railway.app'
const platformOptions = [
{ label: 'Todas as plataformas', value: 'all' },
{ label: 'Steam', value: 'Steam' },
{ label: 'PlayStation', value: 'PlayStation' },
{ label: 'Xbox', value: 'Xbox' },
{ label: 'Epic', value: 'Epic' }
]
const platformBadgeClasses = {
Steam: 'bg-[rgba(167,229,211,0.56)]',
PlayStation: 'bg-[rgba(168,200,232,0.56)]',
Xbox: 'bg-[rgba(167,229,211,0.4)]',
Epic: 'bg-[rgba(196,184,232,0.4)]'
}
const { $toast } = useNuxtApp()
const token = useCookie('token', {
secure: true,
sameSite: 'lax',
maxAge: 900
})
const selectedPlatform = ref('all')
const rankings = ref([])
const isLoading = ref(false)
const errorMessage = ref('')
const favoriteIds = ref(new Set())
const togglingId = ref(null)
const filteredRankings = computed(() => {
if (selectedPlatform.value === 'all') return rankings.value
return rankings.value.filter((game) => game.platform === selectedPlatform.value)
})
const platformBadgeClass = (platform) => {
return platformBadgeClasses[platform] ?? 'bg-[rgba(167,229,211,0.4)]'
}
const clearToken = () => {
token.value = null
}
async function fetchRanking() {
if (!token.value) {
await navigateTo('/login')
return
}
isLoading.value = true
errorMessage.value = ''
try {
const data = await $fetch(`${COMPARE_API_BASE_URL}/compare`, {
headers: {
Authorization: `Bearer ${token.value}`
}
})
rankings.value = Array.isArray(data?.data) ? data.data : []
} catch (error) {
const statusCode = error?.statusCode ?? error?.response?.status ?? error?.data?.statusCode
if (statusCode === 401) {
clearToken()
$toast.error('Sua sessão expirou. Faça login novamente.', { duration: 8000 })
await navigateTo('/login')
return
}
rankings.value = []
errorMessage.value =
error?.data?.message ?? 'Erro ao carregar o ranking por plataforma. Tente novamente.'
$toast.error(errorMessage.value, { duration: 8000 })
} finally {
isLoading.value = false
}
}
async function fetchFavorites() {
if (!token.value) return
try {
const data = await $fetch(`${WISHLIST_API_BASE_URL}/api/wishlist`, {
headers: { Authorization: `Bearer ${token.value}` }
})
favoriteIds.value = new Set(
(data?.data ?? [])
.filter((item) => item.is_favorite === 1 || item.is_favorite === true)
.map((item) => item.game_id)
)
} catch (error) {
console.warn('Erro ao carregar os favoritos. Tente novamente.', error)
}
}
async function toggleFavorite(game) {
if (!token.value) {
await navigateTo('/login')
return
}
const gameId = game.name
togglingId.value = gameId
try {
if (favoriteIds.value.has(gameId)) {
await $fetch(`${WISHLIST_API_BASE_URL}/api/wishlist/${encodeURIComponent(gameId)}`, {
method: 'DELETE',
headers: { Authorization: `Bearer ${token.value}` }
})
favoriteIds.value = new Set([...favoriteIds.value].filter((id) => id !== gameId))
$toast.success(`${gameId} removido dos favoritos.`, { duration: 4000 })
} else {
await $fetch(`${WISHLIST_API_BASE_URL}/api/wishlist`, {
method: 'POST',
headers: { Authorization: `Bearer ${token.value}` },
body: { game_id: gameId, is_wishlist: false, is_favorite: true, price_alert: false }
})
favoriteIds.value = new Set([...favoriteIds.value, gameId])
$toast.success(`${gameId} adicionado aos favoritos!`, { duration: 4000 })
}
} catch (error) {
const statusCode = error?.statusCode ?? error?.response?.status ?? error?.data?.statusCode
if (statusCode === 401) {
clearToken()
$toast.error('Sua sessão expirou. Faça login novamente.', { duration: 8000 })
await navigateTo('/login')
return
}
$toast.error('Erro ao atualizar favoritos. Tente novamente.', { duration: 6000 })
} finally {
togglingId.value = null
}
}
onMounted(() => {
fetchRanking()
fetchFavorites()
})
</script>

72
package-lock.json generated
View File

@@ -24,6 +24,7 @@
"zod": "^3.25.76" "zod": "^3.25.76"
}, },
"devDependencies": { "devDependencies": {
"@iconify-json/mdi": "^1.2.3",
"@types/node": "^25.6.0", "@types/node": "^25.6.0",
"prettier": "^3.8.3", "prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0" "prettier-plugin-tailwindcss": "^0.8.0"
@@ -82,6 +83,7 @@
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@babel/code-frame": "^7.29.0", "@babel/code-frame": "^7.29.0",
"@babel/generator": "^7.29.0", "@babel/generator": "^7.29.0",
@@ -579,36 +581,12 @@
"integrity": "sha512-/B8YJGPzaYq1NbsQmwgP8EZqg40NpTw4ZB3suuI0TplbxKHeK94jeaawLmVhCv+YwUnOpiWEz9U6SeThku/8JQ==", "integrity": "sha512-/B8YJGPzaYq1NbsQmwgP8EZqg40NpTw4ZB3suuI0TplbxKHeK94jeaawLmVhCv+YwUnOpiWEz9U6SeThku/8JQ==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/@emnapi/core": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
"integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
"license": "MIT",
"optional": true,
"peer": true,
"dependencies": {
"@emnapi/wasi-threads": "1.2.1",
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/runtime": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
"license": "MIT",
"optional": true,
"peer": true,
"dependencies": {
"tslib": "^2.4.0"
}
},
"node_modules/@emnapi/wasi-threads": { "node_modules/@emnapi/wasi-threads": {
"version": "1.2.1", "version": "1.2.1",
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
"integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
"license": "MIT", "license": "MIT",
"optional": true, "optional": true,
"peer": true,
"dependencies": { "dependencies": {
"tslib": "^2.4.0" "tslib": "^2.4.0"
} }
@@ -1029,6 +1007,16 @@
"node": ">=18" "node": ">=18"
} }
}, },
"node_modules/@iconify-json/mdi": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@iconify-json/mdi/-/mdi-1.2.3.tgz",
"integrity": "sha512-O3cLwbDOK7NNDf2ihaQOH5F9JglnulNDFV7WprU2dSoZu3h3cWH//h74uQAB87brHmvFVxIOkuBX2sZSzYhScg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@iconify/types": "*"
}
},
"node_modules/@iconify/collections": { "node_modules/@iconify/collections": {
"version": "1.0.677", "version": "1.0.677",
"resolved": "https://registry.npmjs.org/@iconify/collections/-/collections-1.0.677.tgz", "resolved": "https://registry.npmjs.org/@iconify/collections/-/collections-1.0.677.tgz",
@@ -1488,6 +1476,7 @@
"resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-4.4.2.tgz", "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-4.4.2.tgz",
"integrity": "sha512-5+IPRNX2CjkBhuWUwz0hBuLqiaJPRoKzQ+SvcdrQDbAyE+VDeFt74VpSFr5/R0ujrK4b+XnSHUJWdS72w6hsog==", "integrity": "sha512-5+IPRNX2CjkBhuWUwz0hBuLqiaJPRoKzQ+SvcdrQDbAyE+VDeFt74VpSFr5/R0ujrK4b+XnSHUJWdS72w6hsog==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"c12": "^3.3.3", "c12": "^3.3.3",
"consola": "^3.4.2", "consola": "^3.4.2",
@@ -1572,6 +1561,7 @@
"resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-4.4.2.tgz", "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-4.4.2.tgz",
"integrity": "sha512-/q6C7Qhiricgi+PKR7ovBnJlKTL0memCbA1CzRT+itCW/oeYzUfeMdQ35mGntlBoyRPNrMXbzuSUhfDbSCU57w==", "integrity": "sha512-/q6C7Qhiricgi+PKR7ovBnJlKTL0memCbA1CzRT+itCW/oeYzUfeMdQ35mGntlBoyRPNrMXbzuSUhfDbSCU57w==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@vue/shared": "^3.5.30", "@vue/shared": "^3.5.30",
"defu": "^6.1.4", "defu": "^6.1.4",
@@ -3190,19 +3180,6 @@
"giget": "dist/cli.mjs" "giget": "dist/cli.mjs"
} }
}, },
"node_modules/@prisma/config/node_modules/magicast": {
"version": "0.3.5",
"resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.5.tgz",
"integrity": "sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==",
"license": "MIT",
"optional": true,
"peer": true,
"dependencies": {
"@babel/parser": "^7.25.4",
"@babel/types": "^7.25.4",
"source-map-js": "^1.2.0"
}
},
"node_modules/@prisma/config/node_modules/perfect-debounce": { "node_modules/@prisma/config/node_modules/perfect-debounce": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz",
@@ -4008,6 +3985,7 @@
"integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==", "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==",
"devOptional": true, "devOptional": true,
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"undici-types": "~7.19.0" "undici-types": "~7.19.0"
} }
@@ -4500,6 +4478,7 @@
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz",
"integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
"license": "MIT", "license": "MIT",
"peer": true,
"bin": { "bin": {
"acorn": "bin/acorn" "acorn": "bin/acorn"
}, },
@@ -4833,6 +4812,7 @@
"resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz", "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.8.2.tgz",
"integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==", "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
"license": "Apache-2.0", "license": "Apache-2.0",
"peer": true,
"peerDependencies": { "peerDependencies": {
"bare-abort-controller": "*" "bare-abort-controller": "*"
}, },
@@ -5030,6 +5010,7 @@
} }
], ],
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"baseline-browser-mapping": "^2.10.12", "baseline-browser-mapping": "^2.10.12",
"caniuse-lite": "^1.0.30001782", "caniuse-lite": "^1.0.30001782",
@@ -5131,6 +5112,7 @@
"resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz",
"integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==",
"license": "MIT", "license": "MIT",
"peer": true,
"engines": { "engines": {
"node": ">=8" "node": ">=8"
} }
@@ -5310,7 +5292,8 @@
"version": "0.2.2", "version": "0.2.2",
"resolved": "https://registry.npmjs.org/citty/-/citty-0.2.2.tgz", "resolved": "https://registry.npmjs.org/citty/-/citty-0.2.2.tgz",
"integrity": "sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w==", "integrity": "sha512-+6vJA3L98yv+IdfKGZHBNiGW5KHn22e/JwID0Strsz8h4S/csAu/OuICwxrg44k5MRiZHWIo8XXuJgQTriRP4w==",
"license": "MIT" "license": "MIT",
"peer": true
}, },
"node_modules/cliui": { "node_modules/cliui": {
"version": "9.0.1", "version": "9.0.1",
@@ -8297,6 +8280,7 @@
"resolved": "https://registry.npmjs.org/nuxt/-/nuxt-4.4.2.tgz", "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-4.4.2.tgz",
"integrity": "sha512-iWVFpr/YEqVU/CenqIHMnIkvb2HE/9f+q8oxZ+pj2et+60NljGRClCgnmbvGPdmNFE0F1bEhoBCYfqbDOCim3Q==", "integrity": "sha512-iWVFpr/YEqVU/CenqIHMnIkvb2HE/9f+q8oxZ+pj2et+60NljGRClCgnmbvGPdmNFE0F1bEhoBCYfqbDOCim3Q==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@dxup/nuxt": "^0.4.0", "@dxup/nuxt": "^0.4.0",
"@nuxt/cli": "^3.34.0", "@nuxt/cli": "^3.34.0",
@@ -8549,6 +8533,7 @@
"resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.117.0.tgz", "resolved": "https://registry.npmjs.org/oxc-parser/-/oxc-parser-0.117.0.tgz",
"integrity": "sha512-l3cbgK5wUvWDVNWM/JFU77qDdGZK1wudnLsFcrRyNo/bL1CyU8pC25vDhMHikVY29lbK2InTWsX42RxVSutUdQ==", "integrity": "sha512-l3cbgK5wUvWDVNWM/JFU77qDdGZK1wudnLsFcrRyNo/bL1CyU8pC25vDhMHikVY29lbK2InTWsX42RxVSutUdQ==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@oxc-project/types": "^0.117.0" "@oxc-project/types": "^0.117.0"
}, },
@@ -8747,6 +8732,7 @@
"resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.4.tgz", "resolved": "https://registry.npmjs.org/pinia/-/pinia-3.0.4.tgz",
"integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==", "integrity": "sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@vue/devtools-api": "^7.7.7" "@vue/devtools-api": "^7.7.7"
}, },
@@ -8869,6 +8855,7 @@
} }
], ],
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"nanoid": "^3.3.11", "nanoid": "^3.3.11",
"picocolors": "^1.1.1", "picocolors": "^1.1.1",
@@ -9412,6 +9399,7 @@
"resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz",
"integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==", "integrity": "sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"cssesc": "^3.0.0", "cssesc": "^3.0.0",
"util-deprecate": "^1.0.2" "util-deprecate": "^1.0.2"
@@ -9475,6 +9463,7 @@
"integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==", "integrity": "sha512-7igPTM53cGHMW8xWuVTydi2KO233VFiTNyF5hLJqpilHfmn8C8gPf+PS7dUT64YcXFbiMGZxS9pCSxL/Dxm/Jw==",
"dev": true, "dev": true,
"license": "MIT", "license": "MIT",
"peer": true,
"bin": { "bin": {
"prettier": "bin/prettier.cjs" "prettier": "bin/prettier.cjs"
}, },
@@ -9582,6 +9571,7 @@
"integrity": "sha512-aRvldGE5UUJTtVmFiH3WfNFNiqFlAtePUxcI0UEGlnXCX7DqhiMT5TRYwncHFeA/Reca5W6ToXXyCMTeFPdSXA==", "integrity": "sha512-aRvldGE5UUJTtVmFiH3WfNFNiqFlAtePUxcI0UEGlnXCX7DqhiMT5TRYwncHFeA/Reca5W6ToXXyCMTeFPdSXA==",
"hasInstallScript": true, "hasInstallScript": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"peer": true,
"dependencies": { "dependencies": {
"@prisma/config": "6.16.2", "@prisma/config": "6.16.2",
"@prisma/engines": "6.16.2" "@prisma/engines": "6.16.2"
@@ -10095,6 +10085,7 @@
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz", "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz",
"integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==", "integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@types/estree": "1.0.8" "@types/estree": "1.0.8"
}, },
@@ -10893,6 +10884,7 @@
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.19.tgz",
"integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==", "integrity": "sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@alloc/quick-lru": "^5.2.0", "@alloc/quick-lru": "^5.2.0",
"arg": "^5.0.2", "arg": "^5.0.2",
@@ -11780,6 +11772,7 @@
"resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz", "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.2.tgz",
"integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==", "integrity": "sha512-Bby3NOsna2jsjfLVOHKes8sGwgl4TT0E6vvpYgnAYDIF/tie7MRaFthmKuHx1NSXjiTueXH3do80FMQgvEktRg==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"esbuild": "^0.27.0", "esbuild": "^0.27.0",
"fdir": "^6.5.0", "fdir": "^6.5.0",
@@ -12144,6 +12137,7 @@
"resolved": "https://registry.npmjs.org/vue/-/vue-3.5.32.tgz", "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.32.tgz",
"integrity": "sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==", "integrity": "sha512-vM4z4Q9tTafVfMAK7IVzmxg34rSzTFMyIe0UUEijUCkn9+23lj0WRfA83dg7eQZIUlgOSGrkViIaCfqSAUXsMw==",
"license": "MIT", "license": "MIT",
"peer": true,
"dependencies": { "dependencies": {
"@vue/compiler-dom": "3.5.32", "@vue/compiler-dom": "3.5.32",
"@vue/compiler-sfc": "3.5.32", "@vue/compiler-sfc": "3.5.32",
@@ -12433,6 +12427,7 @@
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.3.tgz",
"integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==", "integrity": "sha512-AvbaCLOO2Otw/lW5bmh9d/WEdcDFdQp2Z2ZUH3pX9U2ihyUY0nvLv7J6TrWowklRGPYbB/IuIMfYgxaCPg5Bpg==",
"license": "ISC", "license": "ISC",
"peer": true,
"bin": { "bin": {
"yaml": "bin.mjs" "yaml": "bin.mjs"
}, },
@@ -12526,6 +12521,7 @@
"resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz",
"integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==",
"license": "MIT", "license": "MIT",
"peer": true,
"funding": { "funding": {
"url": "https://github.com/sponsors/colinhacks" "url": "https://github.com/sponsors/colinhacks"
} }

View File

@@ -36,6 +36,7 @@
"zod": "^3.25.76" "zod": "^3.25.76"
}, },
"devDependencies": { "devDependencies": {
"@iconify-json/mdi": "^1.2.3",
"@types/node": "^25.6.0", "@types/node": "^25.6.0",
"prettier": "^3.8.3", "prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0" "prettier-plugin-tailwindcss": "^0.8.0"