93a3beb5d6
Replaces every hand-inlined SVG in the chrome (60 across 15 files) with Lucide components. Snaps icon sizes to the doc's 16/24 scale — all icons in this pass land at 16. AppLogo wordmark stays as the legitimate "custom app icon" exception per the doc; GraphView's <svg> mount point for D3 stays as well. Replaces emoji-as-icons in clear button-affordance cases with their Lucide equivalents: ✕ → X (close/dismiss buttons across 8 files), ✓ → Check (ProjectView task-advance button), 🎤 → Mic (ChatPanel voice CTA), 📎 → Paperclip (ChatView context toggle), ↑ → ArrowUp (ChatInputBar Send), × → X (ChatPanel context-note remove), ☀/☾ → Sun/Moon (AppHeader theme toggle). Inline emoji punctuation in textual confirmation copy ("Saved ✓", "Created ✓", `done: "✓"` status maps, `'✓' : '📄'` interpolations) is left for surface-phase voice/tone touchups — replacing requires structural template changes and is best done per-component. Stroke weight stays at Lucide's default 2px; tightening to the doc's 1.5/1 is deferred per the surface-phase spec (option ii: drop-in + scale enforcement). Adds lucide-vue-next ^0.469.0 to frontend/package.json. Docker rebuild handles the install. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
99 lines
2.3 KiB
Vue
99 lines
2.3 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted, onUnmounted } from 'vue'
|
|
import { useNotificationsStore } from '@/stores/notifications'
|
|
import NotificationsPanel from './NotificationsPanel.vue'
|
|
import { Bell } from 'lucide-vue-next'
|
|
|
|
const store = useNotificationsStore()
|
|
const open = ref(false)
|
|
const wrapRef = ref<HTMLElement | null>(null)
|
|
|
|
let pollInterval: ReturnType<typeof setInterval> | null = null
|
|
|
|
function toggle() {
|
|
open.value = !open.value
|
|
if (open.value) store.fetchAll()
|
|
}
|
|
|
|
function close() {
|
|
open.value = false
|
|
}
|
|
|
|
function onDocClick(e: MouseEvent) {
|
|
if (open.value && wrapRef.value && !wrapRef.value.contains(e.target as Node)) {
|
|
close()
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
store.fetchCount()
|
|
pollInterval = setInterval(() => store.fetchCount(), 60_000)
|
|
document.addEventListener('click', onDocClick, true)
|
|
})
|
|
|
|
onUnmounted(() => {
|
|
if (pollInterval) clearInterval(pollInterval)
|
|
document.removeEventListener('click', onDocClick, true)
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="bell-wrap" ref="wrapRef">
|
|
<button
|
|
class="btn-bell"
|
|
:class="{ active: open }"
|
|
@click="toggle"
|
|
aria-label="Notifications"
|
|
:title="`${store.count} unread notification${store.count !== 1 ? 's' : ''}`"
|
|
>
|
|
<Bell :size="16" aria-hidden="true" />
|
|
<span v-if="store.count > 0" class="bell-badge" aria-live="polite">{{ store.count > 99 ? '99+' : store.count }}</span>
|
|
</button>
|
|
<NotificationsPanel v-if="open" @close="close" />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.bell-wrap {
|
|
position: relative;
|
|
}
|
|
|
|
.btn-bell {
|
|
background: none;
|
|
border: 1px solid var(--color-border);
|
|
border-radius: var(--radius-sm);
|
|
padding: 0.25rem 0.45rem;
|
|
cursor: pointer;
|
|
color: var(--color-text-muted);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
}
|
|
.btn-bell:hover,
|
|
.btn-bell.active {
|
|
background: var(--color-bg-card);
|
|
color: var(--color-text);
|
|
border-color: var(--color-primary);
|
|
}
|
|
|
|
.bell-badge {
|
|
position: absolute;
|
|
top: -5px;
|
|
right: -5px;
|
|
background: var(--color-danger, #ef4444);
|
|
color: #fff;
|
|
font-size: 0.6rem;
|
|
font-weight: 700;
|
|
min-width: 16px;
|
|
height: 16px;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 3px;
|
|
line-height: 1;
|
|
pointer-events: none;
|
|
}
|
|
</style>
|