feat: refactor play area into sidebar layout with buttplug, recordings, and leaderboard sub-pages
- Add /play sidebar layout (mobile nav + desktop sidebar) with SexyBackground - Move buttplug device control to /play/buttplug with Empty component and scan button - Move recordings from /me/recordings to /play/recordings - Move leaderboard to /play/leaderboard; redirect /leaderboard → /play/leaderboard - Redirect /me/recordings → /play/recordings and /play → /play/buttplug - Remove recordings entry from /me sidebar nav - Rename "SexyPlay" → "Play", swap bluetooth icon for rocket, remove subtitle - Add play.nav i18n keys (play, recordings, leaderboard, back_to_site, back_mobile) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
188
packages/frontend/src/routes/play/leaderboard/+page.svelte
Normal file
188
packages/frontend/src/routes/play/leaderboard/+page.svelte
Normal file
@@ -0,0 +1,188 @@
|
||||
<script lang="ts">
|
||||
import { _, locale } from "svelte-i18n";
|
||||
import { Button } from "$lib/components/ui/button";
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "$lib/components/ui/card";
|
||||
import { Avatar, AvatarImage, AvatarFallback } from "$lib/components/ui/avatar";
|
||||
import { getAssetUrl } from "$lib/api";
|
||||
import Meta from "$lib/components/meta/meta.svelte";
|
||||
|
||||
const { data } = $props();
|
||||
|
||||
function formatPoints(points: number | null | undefined): string {
|
||||
return Math.round(points ?? 0).toLocaleString($locale || "en");
|
||||
}
|
||||
|
||||
function getMedalEmoji(rank: number): string {
|
||||
switch (rank) {
|
||||
case 1:
|
||||
return "🥇";
|
||||
case 2:
|
||||
return "🥈";
|
||||
case 3:
|
||||
return "🥉";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
function getUserInitials(name: string | null | undefined): string {
|
||||
if (!name) return "?";
|
||||
const parts = name.split(" ");
|
||||
if (parts.length >= 2) {
|
||||
return `${parts[0][0]}${parts[1][0]}`.toUpperCase();
|
||||
}
|
||||
return name.substring(0, 2).toUpperCase();
|
||||
}
|
||||
</script>
|
||||
|
||||
<Meta
|
||||
title={$_("gamification.leaderboard")}
|
||||
description={$_("gamification.leaderboard_description")}
|
||||
/>
|
||||
|
||||
<div class="py-3 sm:py-6 lg:pl-6">
|
||||
<div class="flex items-center justify-between mb-6">
|
||||
<div>
|
||||
<h1 class="text-2xl font-bold">{$_("gamification.leaderboard")}</h1>
|
||||
<p class="text-sm text-muted-foreground mt-0.5">{$_("gamification.leaderboard_subtitle")}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Card class="bg-card/50 border-border/50">
|
||||
<CardHeader>
|
||||
<CardTitle class="flex items-center gap-2">
|
||||
<span class="icon-[ri--trophy-line] w-5 h-5 text-primary"></span>
|
||||
{$_("gamification.top_players")}
|
||||
</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
{#if data.leaderboard.length === 0}
|
||||
<div class="text-center py-12 text-muted-foreground">
|
||||
<span class="icon-[ri--trophy-line] w-12 h-12 mx-auto mb-4 opacity-50 block"></span>
|
||||
<p>{$_("gamification.no_rankings_yet")}</p>
|
||||
</div>
|
||||
{:else}
|
||||
<div class="space-y-2">
|
||||
{#each data.leaderboard as entry (entry.user_id)}
|
||||
<a
|
||||
href="/users/{entry.user_id}"
|
||||
class="flex items-center gap-4 p-4 rounded-lg hover:bg-accent/10 transition-colors group"
|
||||
>
|
||||
<!-- Rank Badge -->
|
||||
<div class="flex-shrink-0 w-14 text-center">
|
||||
{#if entry.rank <= 3}
|
||||
<span class="text-3xl">{getMedalEmoji(entry.rank)}</span>
|
||||
{:else}
|
||||
<span
|
||||
class="text-xl font-bold text-muted-foreground group-hover:text-foreground transition-colors"
|
||||
>
|
||||
#{entry.rank}
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- Avatar -->
|
||||
<Avatar
|
||||
class="h-12 w-12 ring-2 ring-accent/20 group-hover:ring-primary/40 transition-all"
|
||||
>
|
||||
{#if entry.avatar}
|
||||
<AvatarImage src={getAssetUrl(entry.avatar, "mini")} alt={entry.display_name} />
|
||||
{/if}
|
||||
<AvatarFallback
|
||||
class="bg-gradient-to-br from-primary to-accent text-primary-foreground font-semibold"
|
||||
>
|
||||
{getUserInitials(entry.display_name)}
|
||||
</AvatarFallback>
|
||||
</Avatar>
|
||||
|
||||
<!-- User Info -->
|
||||
<div class="flex-1 min-w-0">
|
||||
<div class="font-semibold truncate group-hover:text-primary transition-colors">
|
||||
{entry.display_name || $_("common.anonymous")}
|
||||
</div>
|
||||
<div class="text-sm text-muted-foreground flex items-center gap-3">
|
||||
<span title={$_("gamification.recordings")}>
|
||||
<span class="icon-[ri--video-line] w-3.5 h-3.5 inline mr-1"></span>
|
||||
{entry.recordings_count}
|
||||
</span>
|
||||
<span title={$_("gamification.plays")}>
|
||||
<span class="icon-[ri--play-line] w-3.5 h-3.5 inline mr-1"></span>
|
||||
{entry.playbacks_count}
|
||||
</span>
|
||||
<span title={$_("gamification.achievements")}>
|
||||
<span class="icon-[ri--trophy-line] w-3.5 h-3.5 inline mr-1"></span>
|
||||
{entry.achievements_count}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Score -->
|
||||
<div class="text-right flex-shrink-0">
|
||||
<div class="text-2xl font-bold text-primary">
|
||||
{formatPoints(entry.total_weighted_points)}
|
||||
</div>
|
||||
<div class="text-xs text-muted-foreground">
|
||||
{$_("gamification.points")}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Arrow indicator -->
|
||||
<div class="flex-shrink-0 opacity-0 group-hover:opacity-100 transition-opacity">
|
||||
<span class="icon-[ri--arrow-right-s-line] w-5 h-5 text-muted-foreground"></span>
|
||||
</div>
|
||||
</a>
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
{#if data.pagination.hasMore}
|
||||
<div class="mt-6 text-center">
|
||||
<Button
|
||||
variant="outline"
|
||||
href="/play/leaderboard?offset={data.pagination.offset +
|
||||
data.pagination.limit}&limit={data.pagination.limit}"
|
||||
>
|
||||
{$_("common.load_more")}
|
||||
</Button>
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
<!-- Info Card -->
|
||||
<Card class="mt-6 bg-card/50 border-border/50">
|
||||
<CardContent class="p-6">
|
||||
<h3 class="font-semibold mb-2 flex items-center gap-2">
|
||||
<span class="icon-[ri--information-line] w-4 h-4 text-primary"></span>
|
||||
{$_("gamification.how_it_works")}
|
||||
</h3>
|
||||
<p class="text-sm text-muted-foreground mb-4">
|
||||
{$_("gamification.how_it_works_description")}
|
||||
</p>
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 text-sm">
|
||||
<div class="flex items-start gap-2">
|
||||
<span class="icon-[ri--video-add-line] w-5 h-5 text-primary flex-shrink-0 mt-0.5"></span>
|
||||
<div>
|
||||
<div class="font-medium">{$_("gamification.earn_by_creating")}</div>
|
||||
<div class="text-muted-foreground">{$_("gamification.earn_by_creating_desc")}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start gap-2">
|
||||
<span class="icon-[ri--play-circle-line] w-5 h-5 text-primary flex-shrink-0 mt-0.5"
|
||||
></span>
|
||||
<div>
|
||||
<div class="font-medium">{$_("gamification.earn_by_playing")}</div>
|
||||
<div class="text-muted-foreground">{$_("gamification.earn_by_playing_desc")}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-start gap-2">
|
||||
<span class="icon-[ri--time-line] w-5 h-5 text-primary flex-shrink-0 mt-0.5"></span>
|
||||
<div>
|
||||
<div class="font-medium">{$_("gamification.stay_active")}</div>
|
||||
<div class="text-muted-foreground">{$_("gamification.stay_active_desc")}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
Reference in New Issue
Block a user