- 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>
319 lines
6.4 KiB
Vue
319 lines
6.4 KiB
Vue
<script setup lang="ts">
|
|
/**
|
|
* SectionLayout — Mise en page pour sections.
|
|
*
|
|
* Status pills inside the content block (not header).
|
|
* Toolbox sidebar with condensed content.
|
|
*/
|
|
|
|
export interface StatusFilter {
|
|
id: string
|
|
label: string
|
|
count: number
|
|
cssClass?: string
|
|
}
|
|
|
|
export interface ToolboxItem {
|
|
title: string
|
|
description: string
|
|
actions: Array<{
|
|
label: string
|
|
to?: string
|
|
onClick?: () => void
|
|
}>
|
|
}
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
title: string
|
|
subtitle?: string
|
|
statuses: StatusFilter[]
|
|
toolboxItems?: ToolboxItem[]
|
|
activeStatus?: string | null
|
|
}>(),
|
|
{
|
|
subtitle: undefined,
|
|
toolboxItems: undefined,
|
|
activeStatus: null,
|
|
},
|
|
)
|
|
|
|
const emit = defineEmits<{
|
|
'update:activeStatus': [status: string | null]
|
|
}>()
|
|
|
|
const toolboxOpen = ref(false)
|
|
|
|
const statusCssMap: Record<string, string> = {
|
|
draft: 'status-prepa',
|
|
qualification: 'status-prepa',
|
|
candidacy: 'status-prepa',
|
|
voting: 'status-vote',
|
|
review: 'status-vote',
|
|
active: 'status-vigueur',
|
|
executed: 'status-vigueur',
|
|
completed: 'status-vigueur',
|
|
closed: 'status-clos',
|
|
archived: 'status-clos',
|
|
revoked: 'status-clos',
|
|
reporting: 'status-vote',
|
|
}
|
|
|
|
function getStatusClass(status: StatusFilter): string {
|
|
return status.cssClass || statusCssMap[status.id] || 'status-prepa'
|
|
}
|
|
|
|
function toggleStatus(statusId: string) {
|
|
if (props.activeStatus === statusId) {
|
|
emit('update:activeStatus', null)
|
|
}
|
|
else {
|
|
emit('update:activeStatus', statusId)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="section">
|
|
<!-- Header: just title -->
|
|
<div class="section__header">
|
|
<h1 class="section__title">{{ title }}</h1>
|
|
<p v-if="subtitle" class="section__subtitle">{{ subtitle }}</p>
|
|
</div>
|
|
|
|
<!-- Body: content + toolbox -->
|
|
<div class="section__body">
|
|
<div class="section__main">
|
|
<!-- Status pills INSIDE the list block -->
|
|
<div v-if="statuses.length > 0" class="section__pills">
|
|
<button
|
|
v-for="status in statuses"
|
|
:key="status.id"
|
|
type="button"
|
|
class="status-pill"
|
|
:class="[getStatusClass(status), { active: activeStatus === status.id }]"
|
|
@click="toggleStatus(status.id)"
|
|
>
|
|
{{ status.label }}
|
|
<span v-if="status.count > 0" class="section__pill-count">{{ status.count }}</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div v-if="$slots.search" class="section__search">
|
|
<slot name="search" />
|
|
</div>
|
|
<div class="section__content">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
|
|
<aside class="section__toolbox">
|
|
<button class="section__toolbox-head" @click="toolboxOpen = !toolboxOpen">
|
|
<div class="section__toolbox-head-left">
|
|
<UIcon name="i-lucide-wrench" />
|
|
<span>Boite a outils</span>
|
|
</div>
|
|
<UIcon
|
|
:name="toolboxOpen ? 'i-lucide-chevron-up' : 'i-lucide-chevron-down'"
|
|
class="section__toolbox-toggle"
|
|
/>
|
|
</button>
|
|
<div class="section__toolbox-content" :class="{ 'section__toolbox-content--open': toolboxOpen }">
|
|
<div v-if="$slots.toolbox" class="section__toolbox-body">
|
|
<slot name="toolbox" />
|
|
</div>
|
|
<div v-else-if="toolboxItems && toolboxItems.length > 0" class="section__toolbox-body">
|
|
<ToolboxVignette
|
|
v-for="(item, idx) in toolboxItems"
|
|
:key="idx"
|
|
:title="item.title"
|
|
/>
|
|
</div>
|
|
<div v-else class="section__toolbox-empty">
|
|
Aucun outil disponible
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.section__header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.section__title {
|
|
font-size: 1.375rem;
|
|
font-weight: 800;
|
|
color: var(--mood-text);
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.section__title {
|
|
font-size: 1.75rem;
|
|
}
|
|
}
|
|
|
|
.section__subtitle {
|
|
font-size: 0.875rem;
|
|
color: var(--mood-text-muted);
|
|
font-weight: 500;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.section__subtitle {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
.section__body {
|
|
display: grid;
|
|
grid-template-columns: 1fr 16rem;
|
|
gap: 1.5rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.section__main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
.section__pills {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
scrollbar-width: none;
|
|
padding-bottom: 2px;
|
|
}
|
|
|
|
.section__pills::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 640px) {
|
|
.section__pills {
|
|
flex-wrap: wrap;
|
|
overflow-x: visible;
|
|
}
|
|
}
|
|
|
|
.section__pill-count {
|
|
margin-left: 0.25rem;
|
|
font-size: 0.6875rem;
|
|
font-weight: 800;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.section__search {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
align-items: stretch;
|
|
}
|
|
|
|
@media (max-width: 639px) {
|
|
.section__search {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.section__content {
|
|
min-height: 12rem;
|
|
}
|
|
|
|
.section__toolbox {
|
|
position: sticky;
|
|
top: 4.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--mood-surface);
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.section__toolbox-head {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: 1rem;
|
|
cursor: pointer;
|
|
background: none;
|
|
}
|
|
|
|
.section__toolbox-head-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 800;
|
|
color: var(--mood-accent);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.section__toolbox-toggle {
|
|
color: var(--mood-text-muted);
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.section__toolbox-content {
|
|
display: none;
|
|
padding: 0 1rem 1rem;
|
|
}
|
|
|
|
.section__toolbox-content--open {
|
|
display: block;
|
|
}
|
|
|
|
.section__toolbox-body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.625rem;
|
|
}
|
|
|
|
.section__toolbox-empty {
|
|
font-size: 0.875rem;
|
|
color: var(--mood-text-muted);
|
|
text-align: center;
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
/* Desktop: toolbox always open, no toggle */
|
|
@media (min-width: 1024px) {
|
|
.section__toolbox-head {
|
|
cursor: default;
|
|
}
|
|
.section__toolbox-toggle {
|
|
display: none;
|
|
}
|
|
.section__toolbox-content {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 1023px) {
|
|
.section__body {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
.section__toolbox {
|
|
position: static;
|
|
order: 2;
|
|
}
|
|
}
|
|
</style>
|