2025-09-06 15:31:40 +02:00
|
|
|
<template>
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="glass-dashboard">
|
2025-09-06 15:31:40 +02:00
|
|
|
<!-- Dashboard Content -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="dashboard-container">
|
2025-09-06 15:31:40 +02:00
|
|
|
<!-- Welcome Section -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="welcome-card">
|
|
|
|
|
<h2 class="welcome-title">Welcome back!</h2>
|
|
|
|
|
<p class="welcome-subtitle">
|
2025-09-06 15:31:40 +02:00
|
|
|
Here's an overview of MonacoUSA's current status and activities.
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Statistics Grid -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="stats-grid">
|
|
|
|
|
<div v-for="stat in stats" :key="stat.label" class="stat-card">
|
|
|
|
|
<div class="stat-icon-wrapper">
|
|
|
|
|
<div class="stat-icon">{{ stat.icon }}</div>
|
2025-09-06 15:31:40 +02:00
|
|
|
</div>
|
2025-09-06 15:52:33 +02:00
|
|
|
<p class="stat-label">
|
2025-09-06 15:31:40 +02:00
|
|
|
{{ stat.label }}
|
|
|
|
|
</p>
|
2025-09-06 15:52:33 +02:00
|
|
|
<p class="stat-value">
|
2025-09-06 15:31:40 +02:00
|
|
|
{{ stat.prefix }}{{ stat.value }}{{ stat.suffix }}
|
|
|
|
|
</p>
|
2025-09-06 15:52:33 +02:00
|
|
|
<p v-if="stat.change" class="stat-change">
|
2025-09-06 15:31:40 +02:00
|
|
|
{{ stat.change }}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Dues Management Section -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="dues-section">
|
|
|
|
|
<div class="dues-header">
|
|
|
|
|
<h3 class="dues-title">Member Dues Overview</h3>
|
2025-09-06 15:31:40 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Dues Cards Grid - MAX 4 VISIBLE -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="dues-grid">
|
|
|
|
|
<div v-for="member in visibleDuesMembers" :key="member.id" class="dues-card">
|
2025-09-06 15:31:40 +02:00
|
|
|
<!-- Member Info -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="member-info">
|
|
|
|
|
<div class="member-avatar"></div>
|
2025-09-06 15:31:40 +02:00
|
|
|
<div>
|
2025-09-06 15:52:33 +02:00
|
|
|
<h4 class="member-name">{{ member.name }}</h4>
|
|
|
|
|
<p class="member-id">Member #{{ member.id }}</p>
|
2025-09-06 15:31:40 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Amount -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="amount-row">
|
|
|
|
|
<span class="amount-label">Amount Due</span>
|
|
|
|
|
<span class="amount-value">${{ member.dueAmount }}</span>
|
2025-09-06 15:31:40 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- Actions -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<button class="btn-mark-paid">
|
2025-09-06 15:31:40 +02:00
|
|
|
Mark Paid
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- View All Button -->
|
2025-09-06 15:52:33 +02:00
|
|
|
<div class="view-all-container">
|
|
|
|
|
<button class="btn-view-all">
|
2025-09-06 15:31:40 +02:00
|
|
|
View All Members →
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
layout: 'board',
|
|
|
|
|
middleware: 'board-auth'
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
|
|
|
|
// Statistics data
|
|
|
|
|
const stats = ref([
|
|
|
|
|
{
|
|
|
|
|
icon: '👥',
|
|
|
|
|
label: 'Total Members',
|
|
|
|
|
value: 1234,
|
|
|
|
|
change: '+12%',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: '💰',
|
|
|
|
|
label: 'Dues Collected',
|
|
|
|
|
value: 45678,
|
|
|
|
|
prefix: '$',
|
|
|
|
|
change: '+8%',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: '📅',
|
|
|
|
|
label: 'Upcoming Events',
|
|
|
|
|
value: 5,
|
|
|
|
|
change: '2 this week',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: '📈',
|
|
|
|
|
label: 'Growth Rate',
|
|
|
|
|
value: 23,
|
|
|
|
|
suffix: '%',
|
|
|
|
|
change: '+3%',
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
// Sample dues members data - LIMITED TO 4
|
|
|
|
|
const visibleDuesMembers = ref([
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
name: 'John Smith',
|
|
|
|
|
dueAmount: 250,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
name: 'Marie Dubois',
|
|
|
|
|
dueAmount: 250,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
name: 'Alessandro Rossi',
|
|
|
|
|
dueAmount: 250,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
name: 'Emma Wilson',
|
|
|
|
|
dueAmount: 250,
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2025-09-06 15:52:33 +02:00
|
|
|
.glass-dashboard {
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard-container {
|
|
|
|
|
max-width: 1280px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Welcome Section */
|
|
|
|
|
.welcome-card {
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
border-radius: 1.5rem;
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.welcome-title {
|
|
|
|
|
font-size: 1.875rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.welcome-subtitle {
|
|
|
|
|
color: #4b5563;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Statistics Grid */
|
|
|
|
|
.stats-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-card {
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-card:hover {
|
|
|
|
|
transform: translateY(-4px);
|
|
|
|
|
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-icon-wrapper {
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-icon {
|
|
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
background: rgba(239, 68, 68, 0.1);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-label {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-value {
|
|
|
|
|
font-size: 1.875rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.stat-change {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: #10b981;
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Dues Section */
|
|
|
|
|
.dues-section {
|
|
|
|
|
margin-top: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dues-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dues-title {
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dues-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dues-card {
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
padding: 1.25rem;
|
|
|
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dues-card:hover {
|
|
|
|
|
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.member-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.member-avatar {
|
|
|
|
|
width: 3rem;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: #e5e7eb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.member-name {
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.member-id {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.amount-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.amount-label {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: #4b5563;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.amount-value {
|
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-mark-paid {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background: rgba(255, 255, 255, 0.5);
|
|
|
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-mark-paid:hover {
|
|
|
|
|
background: rgba(254, 226, 226, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-all-container {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-view-all {
|
|
|
|
|
padding: 0.625rem 1.5rem;
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
background: rgba(255, 255, 255, 0.7);
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-view-all:hover {
|
|
|
|
|
background: rgba(254, 226, 226, 0.5);
|
|
|
|
|
}
|
2025-09-06 15:31:40 +02:00
|
|
|
</style>
|