Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Luchador page Versus relocation and Reactive Layout #1248

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/components/BoxerCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { id, name, versus, class: extraClass } = Astro.props
interface Props {
id: string
name: string
versus: string
versus?: string
class: string
}
---
Expand Down Expand Up @@ -141,7 +141,9 @@ interface Props {
// Quitar la clase también de su par si existe
const versus = singleBoxerCard.getAttribute('data-versus')
if (versus) {
document.querySelector(`[data-id=${versus}]`)?.classList.remove('grayscale-100', 'opacity-40')
document
.querySelector(`[data-id=${versus}]`)
?.classList.remove('grayscale-100', 'opacity-40')
}
})

Expand Down
132 changes: 66 additions & 66 deletions src/pages/luchador/[id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,85 +22,85 @@ const opponent = FIGHTERS.find((f) => f.id === fighter.versus)

<Layout title={`${fighter.name} | ${fixedTitle}`}>
<section class="pt relative flex min-h-screen w-full lowercase">
<div
class="relative z-10 flex min-h-screen w-full max-w-xl flex-col items-center justify-center gap-y-32 px-4 pt-24 text-right text-balance lg:pt-32"
>
<BoxerClip clips={fighter.clips} />

{
opponent && (
<div class="flex w-full items-center gap-4 justify-center">
<img src="/images/versus.png" alt="Versus" class="h-12 w-auto" />
<BoxerCard id={opponent.id} name={opponent.name} class="group-hover:scale-110" />
</div>
)
}
</div>

<div
class="mask-fade-bottom absolute inset-0 w-full bg-[url('/images/hero.avif')] bg-cover bg-center opacity-50"
>
</div>

<div
class="relative z-10 mr-7 flex w-full flex-col items-center justify-center px-4 pt-24 lg:flex-row lg:items-start lg:pt-32"
>
<div class="relative flex h-auto w-full flex-col justify-center lg:flex-row-reverse">
<div
class="relative mt-8 flex h-[60vh] w-full items-center justify-center lg:mt-0 lg:h-[80vh] lg:w-1/2"
class="relative z-10 mr-7 flex w-full flex-col items-center justify-center px-4 pt-24 lg:flex-row lg:items-start lg:pt-32"
>
<img
src={`/images/fighters/big/${id}.webp`}
alt={fighter.name}
class="animate-fade-in mask-image-fade-bottom h-full w-full object-contain transition-all duration-700 hover:scale-105"
transition:name={`image-${id}`}
/>
<img
src={`/images/fighters/text/${id}.png`}
alt={fighter.name}
class="animate-scale-in absolute bottom-24 h-16 w-auto"
transition:name={`text-${id}`}
/>
</div>

<div class="mt-5 ml-7 w-full max-w-xl text-white lg:w-1/2">
<div class="space-y-6 rounded-xl bg-black/40 p-6 backdrop-blur-sm">
<div class="mb-8 flex flex-col items-center space-x-4">
<h1 class="animate-fade-in-up inline-block text-center text-2xl font-bold">
{fighter.realName}
</h1>
</div>
<div
class="relative mt-8 flex h-[60vh] w-full items-center justify-center lg:mt-0 lg:h-[80vh] lg:w-1/2"
>
<img
src={`/images/fighters/big/${id}.webp`}
alt={fighter.name}
class="animate-fade-in mask-image-fade-bottom h-full w-full object-contain transition-all duration-700 hover:scale-105"
transition:name={`image-${id}`}
/>
<img
src={`/images/fighters/text/${id}.png`}
alt={fighter.name}
class="animate-scale-in absolute bottom-24 h-16 w-auto"
transition:name={`text-${id}`}
/>
</div>

<div class="grid grid-cols-2 gap-4 pt-7 pr-6 text-center">
<div class="stat-item">
<div class="text-sm text-gray-400">Edad</div>
<div class="text-lg">{fighter.age} años</div>
</div>
<div class="stat-item">
<div class="text-sm text-gray-400">Altura</div>
<div class="text-lg">{fighter.height}m</div>
<div class="mt-5 ml-7 w-full max-w-xl text-white lg:w-1/2">
<div class="space-y-6 rounded-xl bg-black/40 p-6 backdrop-blur-sm">
<div class="mb-8 flex flex-col items-center space-x-4">
<h1 class="animate-fade-in-up inline-block text-center text-2xl font-bold">
{fighter.realName}
</h1>
</div>
<div class="stat-item">
<div class="text-sm text-gray-400">Peso</div>
<div class="text-lg">{fighter.weight}kg</div>
</div>
<div class="stat-item">
<div class="text-sm text-gray-400">Ciudad</div>
<div class="text-lg">{fighter.city}</div>

<div class="grid grid-cols-2 gap-4 pt-7 pr-6 text-center">
<div class="stat-item">
<div class="text-sm text-gray-400">Edad</div>
<div class="text-lg">{fighter.age} años</div>
</div>
<div class="stat-item">
<div class="text-sm text-gray-400">Altura</div>
<div class="text-lg">{fighter.height}m</div>
</div>
<div class="stat-item">
<div class="text-sm text-gray-400">Peso</div>
<div class="text-lg">{fighter.weight}kg</div>
</div>
<div class="stat-item">
<div class="text-sm text-gray-400">Ciudad</div>
<div class="text-lg">{fighter.city}</div>
</div>
</div>
</div>

<!-- Birth Date -->
<div class="animate-fade-in-up animate-delay-400 text-center">
<div class="text-sm text-gray-400">Fecha de nacimiento</div>
<div class="text-lg">{birthDate}</div>
<!-- Birth Date -->
<div class="animate-fade-in-up animate-delay-400 text-center">
<div class="text-sm text-gray-400">Fecha de nacimiento</div>
<div class="text-lg">{birthDate}</div>
</div>
</div>
{
opponent && (
<div class="mt-14 flex w-full items-center justify-center gap-4">
<img src="/images/versus.png" alt="Versus" class="h-12 w-auto" />
<BoxerCard id={opponent.id} name={opponent.name} class="group-hover:scale-110" />
</div>
)
}
</div>
</div>
<div
class="lg:pt- relative z-10 flex w-full flex-col items-center justify-center gap-y-32 px-4 pt-10 text-right text-balance lg:min-h-screen lg:max-w-xl lg:justify-normal lg:pt-32"
>
<BoxerClip clips={fighter.clips} />
</div>
</div>

<div
class="mask-fade-bottom absolute inset-0 w-full bg-[url('/images/hero.avif')] bg-cover bg-center opacity-50"
>
</div>
</section>

<section>
<div class="flex flex-wrap justify-center gap-3 space-x-2">
<div class="mt-10 flex flex-wrap justify-center gap-3 space-x-2">
{
(fighter.socials || [])?.map(({ url, image, name, label, followers }) => (
<a
Expand Down