- Aujourd'hui (Fil 13 sections + capture sticky) + Le chemin (tunnel 2 gestes, Q0 inline, 3 chips, dérogation asymétrique, alternatives réglage/consignation) - Registre + fiche décision (timeline, périmètre premier/second lieu auditable, affluence non-ignorable, S'instruire condensé, éléments + cartographie de clôture, épreuve du réel, Remettre en question, PV A4, gravure) - Salle de vote 5 modalités (consentement, nuancé+histogramme, binaire hérité avec jauge inertielle, Réglage collectif complet — faisceau, médiane basse, Pour moi, Explorer, cristallisation-geste —, élection à départage humain) - Textes (Pacte en clair, document vivant, diff, vue projetée, Atelier des formules porté du v1 sur le moteur unique) + Mandats (faits comptés, feux de la rampe, wizard 3 étapes) + Observatoire (consigner→observer→protocoliser) - Onboarding 7 gabarits + Données locales (export/import, attributs, atelier) - voting→framing gardé (Reformuler d'un réglage figé non cristallisé) - Pages v1 supprimées (login, documents, mandates, protocols, sanctuary, tools, decisions/new) — 342 tests verts, build zéro erreur Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
108 lines
3.0 KiB
Vue
108 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
// Q0 « déjà décidé ? » — inline results while typing, from the ONE search
|
|
// index (same as Cmd+K). Max 3: standing clauses first, then close decisions.
|
|
import type { Id } from '~/types/domain'
|
|
import { useCollectiveStore } from '~/stores/collective'
|
|
import { useSearch } from '~/composables/useSearch'
|
|
|
|
const props = defineProps<{ title: string; linkedClauseId?: Id }>()
|
|
const emit = defineEmits<{ (e: 'contest', clauseId: Id): void }>()
|
|
|
|
const col = useCollectiveStore()
|
|
const { search } = useSearch()
|
|
|
|
interface Q0Hit {
|
|
kind: 'clause' | 'decision'
|
|
id: Id
|
|
label: string
|
|
to: string
|
|
}
|
|
|
|
const hits = computed<Q0Hit[]>(() => {
|
|
const needle = props.title.trim()
|
|
if (needle.length < 3) return []
|
|
const out: Q0Hit[] = []
|
|
for (const hit of search(needle)) {
|
|
if (out.length >= 3) break
|
|
if (hit.kind === 'clause') {
|
|
const clause = col.clauses.find(c => c.id === hit.id)
|
|
const doc = col.docs.find(d => d.id === clause?.docId)
|
|
out.push({
|
|
kind: 'clause',
|
|
id: hit.id,
|
|
label: hit.label,
|
|
to: doc ? `/textes/${doc.slug}` : '/textes',
|
|
})
|
|
} else if (hit.kind === 'decision') {
|
|
out.push({ kind: 'decision', id: hit.id, label: hit.label, to: `/decisions/${hit.id}` })
|
|
}
|
|
}
|
|
return out
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<!-- ld-v2 -->
|
|
<div v-if="hits.length > 0" class="q0">
|
|
<div v-for="hit in hits" :key="hit.id" class="q0__row">
|
|
<template v-if="hit.kind === 'clause'">
|
|
<UIcon name="i-lucide-book-open-check" class="q0__icon" />
|
|
<NuxtLink :to="hit.to" class="q0__link">
|
|
C'est déjà décidé ({{ hit.label }}) — agis
|
|
</NuxtLink>
|
|
<button
|
|
class="q0__contest"
|
|
type="button"
|
|
:class="{ 'q0__contest--active': linkedClauseId === hit.id }"
|
|
@click="emit('contest', hit.id)"
|
|
>
|
|
Conteste la règle
|
|
</button>
|
|
</template>
|
|
<template v-else>
|
|
<UIcon name="i-lucide-history" class="q0__icon q0__icon--decision" />
|
|
<NuxtLink :to="hit.to" class="q0__link">
|
|
Décision proche : {{ hit.label }}
|
|
</NuxtLink>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.q0 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
padding: 0.25rem 0.25rem 0;
|
|
}
|
|
.q0__row {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
.q0__icon { color: var(--mood-accent); flex-shrink: 0; }
|
|
.q0__icon--decision { color: var(--mood-text-muted); }
|
|
.q0__link {
|
|
color: var(--mood-text);
|
|
font-weight: 600;
|
|
text-decoration: underline;
|
|
text-decoration-color: color-mix(in srgb, var(--mood-accent) 45%, transparent);
|
|
text-underline-offset: 3px;
|
|
}
|
|
.q0__link:hover { color: var(--mood-accent); }
|
|
.q0__contest {
|
|
background: none;
|
|
padding: 2px 10px;
|
|
border-radius: var(--r-pill);
|
|
font-size: 0.8125rem;
|
|
font-weight: 700;
|
|
color: var(--mood-accent);
|
|
background: var(--mood-accent-soft);
|
|
cursor: pointer;
|
|
}
|
|
.q0__contest--active { box-shadow: 0 0 0 2px var(--mood-accent); }
|
|
</style>
|