Merge branch 'lista_de_favoritos'
This commit is contained in:
208
app/pages/(protected)/favoritos/index.vue
Normal file
208
app/pages/(protected)/favoritos/index.vue
Normal file
@@ -0,0 +1,208 @@
|
||||
<template>
|
||||
<div class="relative min-h-screen overflow-hidden bg-[#f5f5f5] px-4 py-10 font-sans text-[#0c0a09] md:px-8 md: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(232,184,196,0.6),transparent_28%),radial-gradient(circle_at_72%_24%,rgba(244,197,168,0.5),transparent_30%),radial-gradient(circle_at_52%_78%,rgba(168,200,232,0.56),transparent_34%)] blur-2xl"
|
||||
aria-hidden="true"></div>
|
||||
|
||||
<main class="relative mx-auto grid w-full max-w-[1120px] gap-8" aria-labelledby="favoritos-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(232,184,196,0.5)] px-3 py-1 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#0c0a09]">
|
||||
Favoritos
|
||||
</p>
|
||||
<h1 id="favoritos-title"
|
||||
class="my-5 max-w-[720px] font-serif text-[40px] font-light leading-[1.08] tracking-[-0.96px] text-[#0c0a09] md:text-[48px]">
|
||||
Meus favoritos
|
||||
</h1>
|
||||
<p class="m-0 max-w-[560px] text-base font-normal leading-6 tracking-[0.16px] text-[#4e4e4e]">
|
||||
Jogos que você salvou como favoritos. Gerencie sua lista aqui.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="flex gap-3">
|
||||
<NuxtLink to="/ranking-jogos"
|
||||
class="inline-flex h-10 items-center justify-center rounded-full border border-[#d6d3d1] bg-transparent px-5 text-[15px] font-medium leading-none text-[#0c0a09] transition hover:border-[#0c0a09]">
|
||||
Ver rankings
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/home"
|
||||
class="inline-flex h-10 items-center justify-center rounded-full border border-[#d6d3d1] bg-transparent px-5 text-[15px] font-medium leading-none text-[#0c0a09] transition hover:border-[#0c0a09]">
|
||||
Voltar
|
||||
</NuxtLink>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section
|
||||
class="grid gap-6 rounded-2xl border border-[#e7e5e4] bg-white p-6 shadow-[0_4px_16px_rgba(0,0,0,0.04)] md:p-8"
|
||||
aria-label="Lista de jogos favoritos">
|
||||
<div>
|
||||
<span
|
||||
class="inline-flex min-h-6 items-center rounded-full bg-[rgba(232,184,196,0.5)] px-2.5 py-1 text-xs font-semibold uppercase leading-none tracking-[0.96px] text-[#0c0a09]">
|
||||
Salvos
|
||||
</span>
|
||||
<h2 class="mt-4 font-serif text-3xl font-light leading-[1.13] tracking-[-0.32px] text-[#0c0a09]">
|
||||
Jogos favoritos
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div v-if="isLoading" class="grid gap-3" role="status" aria-live="polite">
|
||||
<div v-for="item in 4" :key="item" class="h-16 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="!favorites.length" class="rounded-xl border border-[#e7e5e4] bg-[#fafafa] px-4 py-8 text-center"
|
||||
role="status">
|
||||
<Icon name="mdi:heart-outline" class="mb-3 text-4xl text-[#d6d3d1]" />
|
||||
<p class="text-[15px] leading-[1.47] tracking-[0.15px] text-[#777169]">
|
||||
Nenhum jogo favorito ainda.<br />
|
||||
<NuxtLink to="/ranking-jogos" class="underline hover:text-[#0c0a09]">Vá ao ranking</NuxtLink>
|
||||
e adicione seus favoritos!
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div v-else class="overflow-hidden rounded-xl border border-[#e7e5e4]">
|
||||
<div
|
||||
class="hidden bg-[#fafafa] px-4 py-3 text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#777169] md:grid md:grid-cols-[minmax(0,1fr)_160px] md:gap-4">
|
||||
<span>Jogo</span>
|
||||
<span>Ação</span>
|
||||
</div>
|
||||
|
||||
<ul class="grid divide-y divide-[#e7e5e4]">
|
||||
<li v-for="game in favorites" :key="game.id"
|
||||
class="grid items-center gap-4 bg-white p-4 md:grid-cols-[minmax(0,1fr)_160px] md:gap-4">
|
||||
<div class="flex items-center gap-3">
|
||||
<Icon name="mdi:heart" class="shrink-0 text-rose-500" />
|
||||
<span class="text-base font-medium leading-6 tracking-[0.16px] text-[#0c0a09]">
|
||||
{{ game.game_id }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<button type="button" :disabled="removingId === game.game_id"
|
||||
:aria-label="`Remover ${game.game_id} dos favoritos`" @click="removeFavorite(game)"
|
||||
class="inline-flex h-9 items-center justify-center gap-2 rounded-full border border-[#e7e5e4] px-4 text-[13px] font-medium leading-none text-[#777169] transition hover:border-red-300 hover:text-red-600 disabled:cursor-not-allowed disabled:opacity-50">
|
||||
<Icon :name="removingId === game.game_id ? 'mdi:loading' : 'mdi:heart-remove-outline'"
|
||||
:class="['text-sm', removingId === game.game_id && 'animate-spin']" />
|
||||
<span class="hidden sm:inline">{{ removingId === game.game_id ? 'Removendo...' : 'Remover' }}</span>
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</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://gameverse-wishlist-production.up.railway.app</span>
|
||||
· Feito por Edson
|
||||
</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'
|
||||
})
|
||||
|
||||
const WISHLIST_API_BASE_URL = 'https://gameverse-wishlist-production.up.railway.app'
|
||||
|
||||
const { $toast } = useNuxtApp()
|
||||
|
||||
const token = useCookie('token', {
|
||||
secure: true,
|
||||
sameSite: 'lax',
|
||||
maxAge: 900
|
||||
})
|
||||
|
||||
const favorites = ref([])
|
||||
const isLoading = ref(false)
|
||||
const errorMessage = ref('')
|
||||
const removingId = ref(null)
|
||||
|
||||
const clearToken = () => {
|
||||
token.value = null
|
||||
}
|
||||
|
||||
async function fetchFavorites() {
|
||||
if (!token.value) {
|
||||
await navigateTo('/login')
|
||||
return
|
||||
}
|
||||
|
||||
isLoading.value = true
|
||||
errorMessage.value = ''
|
||||
|
||||
try {
|
||||
const data = await $fetch(`${WISHLIST_API_BASE_URL}/api/wishlist`, {
|
||||
headers: {
|
||||
Authorization: `Bearer ${token.value}`
|
||||
}
|
||||
})
|
||||
|
||||
favorites.value = (data?.data ?? []).filter(
|
||||
(item) => item.is_favorite === 1 || item.is_favorite === true
|
||||
)
|
||||
} 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
|
||||
}
|
||||
|
||||
errorMessage.value = error?.data?.message ?? 'Erro ao carregar os favoritos. Tente novamente.'
|
||||
$toast.error(errorMessage.value, { duration: 8000 })
|
||||
} finally {
|
||||
isLoading.value = false
|
||||
}
|
||||
}
|
||||
|
||||
async function removeFavorite(game) {
|
||||
if (!token.value) {
|
||||
await navigateTo('/login')
|
||||
return
|
||||
}
|
||||
|
||||
removingId.value = game.game_id
|
||||
|
||||
try {
|
||||
await $fetch(`${WISHLIST_API_BASE_URL}/api/wishlist/${encodeURIComponent(game.game_id)}`, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Authorization: `Bearer ${token.value}`
|
||||
}
|
||||
})
|
||||
|
||||
favorites.value = favorites.value.filter((f) => f.game_id !== game.game_id)
|
||||
$toast.success(`${game.game_id} removido dos 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 remover o favorito. Tente novamente.', { duration: 6000 })
|
||||
} finally {
|
||||
removingId.value = null
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
fetchFavorites()
|
||||
})
|
||||
</script>
|
||||
@@ -16,7 +16,8 @@
|
||||
class="my-4 max-w-[680px] break-words font-serif text-[34px] font-light leading-[1.08] tracking-[-0.96px] text-[#0c0a09] sm:my-5 sm:text-[40px] md:text-[48px]">
|
||||
Olá, você está autenticado!
|
||||
</h1>
|
||||
<p class="m-0 max-w-[540px] text-[15px] font-normal leading-[1.47] tracking-[0.15px] text-[#4e4e4e] sm:text-base sm:leading-6 sm:tracking-[0.16px]">
|
||||
<p
|
||||
class="m-0 max-w-[540px] text-[15px] font-normal leading-[1.47] tracking-[0.15px] text-[#4e4e4e] sm:text-base sm:leading-6 sm:tracking-[0.16px]">
|
||||
Estes são os dados retornados pelo perfil da sua sessão atual.
|
||||
</p>
|
||||
</div>
|
||||
@@ -26,6 +27,10 @@
|
||||
class="inline-flex h-10 w-fit items-center justify-center rounded-full border border-[#d6d3d1] bg-transparent px-5 text-[15px] font-medium leading-none text-[#0c0a09] transition hover:border-[#0c0a09]">
|
||||
Ver rankings
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/favoritos"
|
||||
class="inline-flex h-10 w-fit items-center justify-center rounded-full border border-[#d6d3d1] bg-transparent px-5 text-[15px] font-medium leading-none text-[#0c0a09] transition hover:border-[#0c0a09]">
|
||||
Meus favoritos
|
||||
</NuxtLink>
|
||||
<button type="button" :disabled="isLeaving" @click="sair"
|
||||
class="inline-flex h-10 w-fit items-center justify-center gap-2 rounded-full bg-[#292524] px-5 text-[15px] font-medium leading-none text-white transition hover:bg-[#0c0a09] active:bg-[#0c0a09] disabled:cursor-not-allowed disabled:opacity-70">
|
||||
<Icon v-if="isLeaving" name="mdi:loading" class="animate-spin text-base" />
|
||||
@@ -42,7 +47,8 @@
|
||||
class="inline-flex min-h-6 items-center rounded-full bg-[rgba(167,229,211,0.62)] px-2.5 py-1 text-xs font-semibold uppercase leading-none tracking-[0.96px] text-[#0c0a09]">
|
||||
Perfil
|
||||
</span>
|
||||
<h2 class="mt-4 font-serif text-[26px] font-light leading-[1.13] tracking-[-0.32px] text-[#0c0a09] sm:text-3xl">
|
||||
<h2
|
||||
class="mt-4 font-serif text-[26px] font-light leading-[1.13] tracking-[-0.32px] text-[#0c0a09] sm:text-3xl">
|
||||
Dados da conta
|
||||
</h2>
|
||||
</div>
|
||||
@@ -53,7 +59,8 @@
|
||||
<dt class="text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#777169]">
|
||||
{{ item.label }}
|
||||
</dt>
|
||||
<dd class="m-0 min-w-0 text-[15px] leading-[1.47] tracking-[0.15px] text-[#0c0a09] sm:text-base sm:leading-6 sm:tracking-[0.16px]"
|
||||
<dd
|
||||
class="m-0 min-w-0 text-[15px] leading-[1.47] tracking-[0.15px] text-[#0c0a09] sm:text-base sm:leading-6 sm:tracking-[0.16px]"
|
||||
:class="item.isLong ? 'break-all' : 'break-words'">
|
||||
{{ item.value }}
|
||||
</dd>
|
||||
|
||||
@@ -88,9 +88,19 @@
|
||||
<span class="text-xs font-semibold uppercase leading-[1.4] tracking-[0.96px] text-[#777169] md:hidden">
|
||||
Jogo
|
||||
</span>
|
||||
<strong class="text-base font-medium leading-6 tracking-[0.16px] text-[#0c0a09]">
|
||||
{{ game.name }}
|
||||
</strong>
|
||||
<div class="flex items-center gap-2">
|
||||
<strong class="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>
|
||||
</div>
|
||||
|
||||
<div v-for="stat in getGameStats(game)" :key="stat.label"
|
||||
@@ -106,6 +116,18 @@
|
||||
</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://api-ranking-jogos-production.up.railway.app/api/v1</span>
|
||||
· Feito por Gabriel e Kaiky
|
||||
</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>
|
||||
@@ -116,6 +138,7 @@ definePageMeta({
|
||||
})
|
||||
|
||||
const RANKINGS_API_BASE_URL = 'https://api-ranking-jogos-production.up.railway.app/api/v1'
|
||||
const WISHLIST_API_BASE_URL = 'https://gameverse-wishlist-production.up.railway.app'
|
||||
|
||||
const rankingOptions = [
|
||||
{
|
||||
@@ -195,6 +218,8 @@ const selectedRanking = ref('weekly')
|
||||
const rankings = ref([])
|
||||
const isLoading = ref(false)
|
||||
const errorMessage = ref('')
|
||||
const favoriteIds = ref(new Set())
|
||||
const togglingId = ref(null)
|
||||
|
||||
const selectedRankingMeta = computed(() => {
|
||||
return rankingOptions.find((option) => option.value === selectedRanking.value) ?? rankingOptions[0]
|
||||
@@ -266,8 +291,81 @@ async function fetchRankings() {
|
||||
}
|
||||
}
|
||||
|
||||
async function fetchFavorites() {
|
||||
if (!token.value) return
|
||||
|
||||
try {
|
||||
const data = await $fetch(`${WISHLIST_API_BASE_URL}/api/wishlist`, {
|
||||
headers: {
|
||||
Authorization: `Bearer ${token.value}`
|
||||
}
|
||||
})
|
||||
|
||||
const ids = new Set(
|
||||
(data?.data ?? [])
|
||||
.filter((item) => item.is_favorite === 1 || item.is_favorite === true)
|
||||
.map((item) => item.game_id)
|
||||
)
|
||||
favoriteIds.value = ids
|
||||
} catch {
|
||||
// falha silenciosa — favoritos são secundários ao ranking
|
||||
}
|
||||
}
|
||||
|
||||
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(() => {
|
||||
fetchRankings()
|
||||
fetchFavorites()
|
||||
})
|
||||
|
||||
watch(selectedRanking, () => {
|
||||
|
||||
Reference in New Issue
Block a user