- ToolboxVignette: prop bullets[] remplace description, touch targets agrandis - Design arrondi: border-radius 16px cards, 20px pills, 12px inputs, no borders - Hover animations: translateY(-3px) + shadow, active states pour touch - SectionLayout: toolbox accordion mobile, pills scroll horizontal, responsive title/subtitle - app.vue: MoodSwitcher dans drawer mobile, header responsive, nav touch-friendly - Dashboard: grille 2-colonnes mobile, connect banner column layout, formula code scroll - Documents/decisions/mandates/protocols: cards responsive (padding, font-size, gap) - Login: touch targets 3rem min, iOS zoom prevention, responsive sizing - Modals: padding responsive sm:p-6 - Protocols: table compact mobile, proto items responsive - nuxt.config: host 0.0.0.0 pour fix IPv4/IPv6 binding Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
691 lines
16 KiB
Vue
691 lines
16 KiB
Vue
<script setup lang="ts">
|
|
const documents = useDocumentsStore()
|
|
const decisions = useDecisionsStore()
|
|
const protocols = useProtocolsStore()
|
|
const auth = useAuthStore()
|
|
|
|
const loading = ref(true)
|
|
const formulaOpen = ref(false)
|
|
|
|
onMounted(async () => {
|
|
try {
|
|
await Promise.all([
|
|
documents.fetchAll(),
|
|
decisions.fetchAll(),
|
|
protocols.fetchProtocols(),
|
|
])
|
|
}
|
|
finally {
|
|
loading.value = false
|
|
}
|
|
})
|
|
|
|
const entryCards = computed(() => [
|
|
{
|
|
key: 'documents',
|
|
title: 'Documents',
|
|
icon: 'i-lucide-book-open',
|
|
to: '/documents',
|
|
count: documents.activeDocuments.length,
|
|
countLabel: `${documents.activeDocuments.length} actif${documents.activeDocuments.length > 1 ? 's' : ''}`,
|
|
totalLabel: `${documents.list.length} au total`,
|
|
description: 'Textes fondateurs sous vote permanent',
|
|
color: 'var(--mood-accent)',
|
|
},
|
|
{
|
|
key: 'decisions',
|
|
title: 'Decisions',
|
|
icon: 'i-lucide-scale',
|
|
to: '/decisions',
|
|
count: decisions.activeDecisions.length,
|
|
countLabel: `${decisions.activeDecisions.length} en cours`,
|
|
totalLabel: `${decisions.list.length} au total`,
|
|
description: 'Processus de decision collectifs',
|
|
color: 'var(--mood-secondary, var(--mood-accent))',
|
|
},
|
|
{
|
|
key: 'protocoles',
|
|
title: 'Protocoles',
|
|
icon: 'i-lucide-settings',
|
|
to: '/protocols',
|
|
count: protocols.protocols.length,
|
|
countLabel: `${protocols.protocols.length} modalite${protocols.protocols.length > 1 ? 's' : ''}`,
|
|
totalLabel: 'Boite a outils de vote + workflows',
|
|
description: 'Modalites de vote, formules, workflows n8n',
|
|
color: 'var(--mood-tertiary, var(--mood-accent))',
|
|
},
|
|
{
|
|
key: 'mandats',
|
|
title: 'Mandats',
|
|
icon: 'i-lucide-user-check',
|
|
to: '/mandates',
|
|
count: null,
|
|
countLabel: null,
|
|
totalLabel: null,
|
|
description: 'Missions deleguees avec nomination en binome',
|
|
color: 'var(--mood-success)',
|
|
},
|
|
])
|
|
|
|
const recentDecisions = computed(() => {
|
|
return [...decisions.list]
|
|
.sort((a, b) => new Date(b.updated_at).getTime() - new Date(a.updated_at).getTime())
|
|
.slice(0, 5)
|
|
})
|
|
|
|
function formatDate(dateStr: string): string {
|
|
const date = new Date(dateStr)
|
|
const now = new Date()
|
|
const diffMs = now.getTime() - date.getTime()
|
|
const diffHours = diffMs / (1000 * 60 * 60)
|
|
|
|
if (diffHours < 1) {
|
|
const diffMinutes = Math.floor(diffMs / (1000 * 60))
|
|
return diffMinutes <= 1 ? 'A l\'instant' : `Il y a ${diffMinutes} min`
|
|
}
|
|
if (diffHours < 24) {
|
|
return `Il y a ${Math.floor(diffHours)}h`
|
|
}
|
|
if (diffHours < 48) {
|
|
return 'Hier'
|
|
}
|
|
return date.toLocaleDateString('fr-FR', { day: 'numeric', month: 'short' })
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="dash">
|
|
<!-- Welcome -->
|
|
<div class="dash__welcome">
|
|
<h1 class="dash__title">
|
|
<span class="dash__title-g">ğ</span><span class="dash__title-paren">(</span>Decision<span class="dash__title-paren">)</span>
|
|
</h1>
|
|
<p class="dash__subtitle">
|
|
Decisions collectives pour la communaute Duniter / G1
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Entry cards -->
|
|
<div class="dash__entries">
|
|
<template v-if="loading">
|
|
<LoadingSkeleton v-for="i in 4" :key="i" :lines="3" card />
|
|
</template>
|
|
<template v-else>
|
|
<NuxtLink
|
|
v-for="card in entryCards"
|
|
:key="card.key"
|
|
:to="card.to"
|
|
class="entry-card"
|
|
:style="{ '--card-color': card.color }"
|
|
>
|
|
<div class="entry-card__icon">
|
|
<UIcon :name="card.icon" class="text-2xl" />
|
|
</div>
|
|
<h2 class="entry-card__title">{{ card.title }}</h2>
|
|
<template v-if="card.count !== null">
|
|
<span class="entry-card__count">{{ card.countLabel }}</span>
|
|
<span class="entry-card__total">{{ card.totalLabel }}</span>
|
|
</template>
|
|
<template v-else>
|
|
<span class="entry-card__desc">{{ card.description }}</span>
|
|
</template>
|
|
<span class="entry-card__arrow">
|
|
<UIcon name="i-lucide-arrow-right" />
|
|
</span>
|
|
</NuxtLink>
|
|
</template>
|
|
</div>
|
|
|
|
<!-- Connect banner -->
|
|
<div v-if="!auth.isAuthenticated" class="dash__connect">
|
|
<div class="dash__connect-left">
|
|
<UIcon name="i-lucide-key-round" class="text-lg" />
|
|
<div>
|
|
<p class="dash__connect-text">Connectez-vous avec votre identite Duniter pour participer.</p>
|
|
<p class="dash__connect-hint">Signature Ed25519 · aucun mot de passe</p>
|
|
</div>
|
|
</div>
|
|
<NuxtLink to="/login" class="dash__connect-btn">
|
|
<UIcon name="i-lucide-log-in" />
|
|
<span>Connexion</span>
|
|
</NuxtLink>
|
|
</div>
|
|
|
|
<!-- Toolbox teaser -->
|
|
<div class="dash__toolbox">
|
|
<div class="dash__toolbox-head">
|
|
<UIcon name="i-lucide-wrench" class="text-lg" />
|
|
<h3>Boite a outils</h3>
|
|
<span class="dash__toolbox-count">{{ protocols.protocols.length }}</span>
|
|
</div>
|
|
<div class="dash__toolbox-tags">
|
|
<template v-if="protocols.protocols.length > 0">
|
|
<NuxtLink
|
|
v-for="protocol in protocols.protocols"
|
|
:key="protocol.id"
|
|
:to="`/protocols/${protocol.id}`"
|
|
class="dash__tag"
|
|
>
|
|
{{ protocol.name }}
|
|
</NuxtLink>
|
|
</template>
|
|
<template v-else>
|
|
<span class="dash__tag">Vote WoT</span>
|
|
<span class="dash__tag">Vote nuance</span>
|
|
<span class="dash__tag">Vote permanent</span>
|
|
</template>
|
|
</div>
|
|
<NuxtLink to="/protocols" class="dash__toolbox-link">
|
|
Voir la boite a outils
|
|
<UIcon name="i-lucide-chevron-right" />
|
|
</NuxtLink>
|
|
</div>
|
|
|
|
<!-- Recent activity -->
|
|
<div v-if="recentDecisions.length > 0" class="dash__activity">
|
|
<div class="dash__activity-head">
|
|
<UIcon name="i-lucide-activity" class="text-lg" />
|
|
<h3>Activite recente</h3>
|
|
</div>
|
|
<div class="dash__activity-list">
|
|
<NuxtLink
|
|
v-for="decision in recentDecisions"
|
|
:key="decision.id"
|
|
:to="`/decisions/${decision.id}`"
|
|
class="dash__activity-item"
|
|
>
|
|
<div class="dash__activity-main">
|
|
<span class="dash__activity-title">{{ decision.title }}</span>
|
|
<span class="dash__activity-date">{{ formatDate(decision.updated_at) }}</span>
|
|
</div>
|
|
<StatusBadge :status="decision.status" type="decision" :clickable="false" />
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Formula explainer -->
|
|
<UCollapsible v-model:open="formulaOpen">
|
|
<button class="dash__formula-trigger" @click="formulaOpen = !formulaOpen">
|
|
<div class="dash__formula-trigger-left">
|
|
<UIcon name="i-lucide-calculator" />
|
|
<span>Formule de seuil WoT</span>
|
|
</div>
|
|
<UIcon :name="formulaOpen ? 'i-lucide-chevron-up' : 'i-lucide-chevron-down'" />
|
|
</button>
|
|
<template #content>
|
|
<div class="dash__formula-body">
|
|
<p class="dash__formula-desc">
|
|
Le seuil s'adapte a la participation : faible = quasi-unanimite ; forte = majorite simple.
|
|
</p>
|
|
<code class="dash__formula-code">
|
|
Seuil = C + B^W + (M + (1-M) * (1 - (T/W)^G)) * max(0, T-C)
|
|
</code>
|
|
<div class="dash__formula-params">
|
|
<span>C = constante</span>
|
|
<span>B = base</span>
|
|
<span>W = taille WoT</span>
|
|
<span>T = votes</span>
|
|
<span>M = majorite</span>
|
|
<span>G = gradient</span>
|
|
</div>
|
|
<NuxtLink to="/protocols/formulas" class="dash__formula-link">
|
|
Ouvrir le simulateur
|
|
<UIcon name="i-lucide-chevron-right" />
|
|
</NuxtLink>
|
|
</div>
|
|
</template>
|
|
</UCollapsible>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.dash {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
max-width: 56rem;
|
|
}
|
|
|
|
/* --- Welcome --- */
|
|
.dash__welcome {
|
|
padding: 0.5rem 0;
|
|
}
|
|
.dash__title {
|
|
font-size: 1.75rem;
|
|
font-weight: 800;
|
|
color: var(--mood-accent);
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__title {
|
|
font-size: 2.25rem;
|
|
}
|
|
}
|
|
.dash__title-g {
|
|
font-style: italic;
|
|
}
|
|
.dash__title-paren {
|
|
font-weight: 300;
|
|
color: var(--mood-text-muted);
|
|
opacity: 0.4;
|
|
}
|
|
.dash__subtitle {
|
|
margin-top: 0.375rem;
|
|
font-size: 0.9375rem;
|
|
color: var(--mood-text-muted);
|
|
font-weight: 500;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__subtitle {
|
|
font-size: 1.0625rem;
|
|
}
|
|
}
|
|
|
|
/* --- Entry cards --- */
|
|
.dash__entries {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__entries {
|
|
grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
|
|
gap: 1rem;
|
|
}
|
|
}
|
|
|
|
.entry-card {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.375rem;
|
|
padding: 1rem;
|
|
background: var(--mood-surface);
|
|
border-radius: 16px;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.entry-card {
|
|
gap: 0.5rem;
|
|
padding: 1.5rem 1.25rem;
|
|
}
|
|
}
|
|
|
|
.entry-card:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 8px 24px var(--mood-shadow);
|
|
}
|
|
|
|
.entry-card:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.entry-card__icon {
|
|
width: 2.75rem;
|
|
height: 2.75rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 14px;
|
|
background: color-mix(in srgb, var(--card-color, var(--mood-accent)) 12%, transparent);
|
|
color: var(--card-color, var(--mood-accent));
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.entry-card__title {
|
|
font-size: 1.25rem;
|
|
font-weight: 800;
|
|
color: var(--mood-text);
|
|
margin: 0;
|
|
}
|
|
|
|
.entry-card__count {
|
|
font-size: 1.5rem;
|
|
font-weight: 800;
|
|
color: var(--card-color, var(--mood-accent));
|
|
line-height: 1;
|
|
}
|
|
|
|
.entry-card__total {
|
|
font-size: 0.8125rem;
|
|
color: var(--mood-text-muted);
|
|
}
|
|
|
|
.entry-card__desc {
|
|
font-size: 0.875rem;
|
|
color: var(--mood-text-muted);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.entry-card__arrow {
|
|
position: absolute;
|
|
top: 1.25rem;
|
|
right: 1.25rem;
|
|
color: var(--mood-text-muted);
|
|
opacity: 0.3;
|
|
transition: all 0.15s;
|
|
}
|
|
.entry-card:hover .entry-card__arrow {
|
|
opacity: 1;
|
|
color: var(--card-color, var(--mood-accent));
|
|
transform: translateX(3px);
|
|
}
|
|
|
|
/* --- Connect banner --- */
|
|
.dash__connect {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
padding: 1rem;
|
|
background: var(--mood-accent-soft);
|
|
border-radius: 16px;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__connect {
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
padding: 1rem 1.25rem;
|
|
}
|
|
}
|
|
|
|
.dash__connect-left {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 0.75rem;
|
|
color: var(--mood-accent);
|
|
}
|
|
|
|
.dash__connect-text {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
color: var(--mood-text);
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__connect-text {
|
|
font-size: 0.9375rem;
|
|
}
|
|
}
|
|
|
|
.dash__connect-hint {
|
|
font-size: 0.75rem;
|
|
color: var(--mood-text-muted);
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__connect-hint {
|
|
font-size: 0.8125rem;
|
|
}
|
|
}
|
|
|
|
.dash__connect-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
padding: 0.625rem 1.25rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 700;
|
|
color: var(--mood-accent-text);
|
|
background: var(--mood-accent);
|
|
border-radius: 24px;
|
|
text-decoration: none;
|
|
transition: transform 0.12s ease, box-shadow 0.12s ease;
|
|
min-height: 2.75rem;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__connect-btn {
|
|
font-size: 0.9375rem;
|
|
padding: 0.5rem 1.25rem;
|
|
}
|
|
}
|
|
|
|
.dash__connect-btn:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px var(--mood-shadow);
|
|
}
|
|
|
|
.dash__connect-btn:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* --- Toolbox teaser --- */
|
|
.dash__toolbox {
|
|
background: var(--mood-surface);
|
|
border-radius: 16px;
|
|
padding: 1rem;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__toolbox {
|
|
padding: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.dash__toolbox-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: var(--mood-accent);
|
|
font-weight: 800;
|
|
font-size: 1.0625rem;
|
|
}
|
|
.dash__toolbox-head h3 { margin: 0; }
|
|
|
|
.dash__toolbox-count {
|
|
font-size: 0.75rem;
|
|
font-weight: 800;
|
|
background: var(--mood-accent-soft);
|
|
color: var(--mood-accent);
|
|
padding: 2px 8px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.dash__toolbox-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
.dash__tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 0.375rem 0.875rem;
|
|
font-size: 0.8125rem;
|
|
font-weight: 600;
|
|
color: var(--mood-accent);
|
|
background: var(--mood-accent-soft);
|
|
border-radius: 20px;
|
|
text-decoration: none;
|
|
transition: transform 0.1s ease;
|
|
}
|
|
.dash__tag:hover {
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.dash__toolbox-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
margin-top: 0.75rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 700;
|
|
color: var(--mood-accent);
|
|
text-decoration: none;
|
|
}
|
|
.dash__toolbox-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* --- Activity --- */
|
|
.dash__activity {
|
|
background: var(--mood-surface);
|
|
border-radius: 16px;
|
|
padding: 1rem;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__activity {
|
|
padding: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.dash__activity-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
color: var(--mood-text);
|
|
font-weight: 800;
|
|
font-size: 1.0625rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
.dash__activity-head h3 { margin: 0; }
|
|
|
|
.dash__activity-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.dash__activity-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.75rem;
|
|
padding: 0.625rem 0.5rem;
|
|
text-decoration: none;
|
|
transition: background 0.1s;
|
|
border-radius: 12px;
|
|
}
|
|
.dash__activity-item:hover {
|
|
background: var(--mood-surface-hover);
|
|
}
|
|
|
|
.dash__activity-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
flex: 1;
|
|
}
|
|
|
|
.dash__activity-title {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
color: var(--mood-text);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__activity-title {
|
|
font-size: 0.9375rem;
|
|
}
|
|
}
|
|
|
|
.dash__activity-date {
|
|
font-size: 0.75rem;
|
|
color: var(--mood-text-muted);
|
|
}
|
|
|
|
/* --- Formula --- */
|
|
.dash__formula-trigger {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: 1rem 1.25rem;
|
|
background: var(--mood-surface);
|
|
border-radius: 16px;
|
|
color: var(--mood-text-muted);
|
|
font-size: 0.9375rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: box-shadow 0.15s;
|
|
}
|
|
.dash__formula-trigger:hover {
|
|
box-shadow: 0 4px 12px var(--mood-shadow);
|
|
}
|
|
|
|
.dash__formula-trigger-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
}
|
|
|
|
.dash__formula-body {
|
|
padding: 0 1.25rem 1.25rem;
|
|
background: var(--mood-surface);
|
|
border-radius: 0 0 16px 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.dash__formula-desc {
|
|
font-size: 0.875rem;
|
|
color: var(--mood-text-muted);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.dash__formula-code {
|
|
display: block;
|
|
padding: 0.625rem 0.75rem;
|
|
background: var(--mood-accent-soft);
|
|
border-radius: 12px;
|
|
font-size: 0.75rem;
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
color: var(--mood-text);
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__formula-code {
|
|
padding: 0.75rem 1rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
}
|
|
|
|
.dash__formula-params {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
font-size: 0.75rem;
|
|
color: var(--mood-text-muted);
|
|
font-family: ui-monospace, SFMono-Regular, monospace;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.dash__formula-params {
|
|
gap: 0.75rem;
|
|
font-size: 0.8125rem;
|
|
}
|
|
}
|
|
|
|
.dash__formula-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 700;
|
|
color: var(--mood-accent);
|
|
text-decoration: none;
|
|
}
|
|
.dash__formula-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|