mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:21:10 +02:00
Both QuickInputBar (InputBar.svelte), CommandBar.svelte, and GlobalSpotlight were duplicating syntax highlighting and the 150ms search debounce. Pull these into a new `packages/shared-ui/src/search-core/` module so the two input surfaces stay in sync on feel and matching rules. - search-core/highlight.ts — HighlightPattern type, locale-aware getHighlightPatterns(), and the shared highlightText() (HTML-escape + span wrap). Patterns were previously in quick-input/highlightPatterns.ts + inline in CommandBar.svelte. - search-core/config.ts — SEARCH_DEBOUNCE_MS = 150. Used from InputBar, CommandBar, GlobalSpotlight, and apps/mana web SearchEngine. - quick-input/highlightPatterns.ts + types.ts become thin back-compat re-exports. - Public surface: @mana/shared-ui now exports getHighlightPatterns, highlightText, SEARCH_DEBOUNCE_MS, and the HighlightPattern type. No UX change. UIs still live in their own files (per earlier split recommendation: shared backend, separate surfaces). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
697 lines
16 KiB
Svelte
697 lines
16 KiB
Svelte
<script lang="ts">
|
|
import { goto } from '$app/navigation';
|
|
import type { CommandBarItem, QuickAction, CreatePreview } from './CommandBar.types';
|
|
import { Heart, MagnifyingGlass, Plus } from '@mana/shared-icons';
|
|
import { getHighlightPatterns, highlightText, SEARCH_DEBOUNCE_MS } from '../search-core';
|
|
|
|
const HIGHLIGHT_PATTERNS = getHighlightPatterns('de');
|
|
|
|
interface Props {
|
|
open: boolean;
|
|
onClose: () => void;
|
|
onSearch: (query: string) => Promise<CommandBarItem[]>;
|
|
onSelect: (item: CommandBarItem) => void;
|
|
quickActions?: QuickAction[];
|
|
placeholder?: string;
|
|
emptyText?: string;
|
|
searchingText?: string;
|
|
// New: Task creation support
|
|
onCreate?: (query: string) => Promise<void>;
|
|
onParseCreate?: (query: string) => CreatePreview | null;
|
|
createText?: string;
|
|
createShortcut?: string;
|
|
}
|
|
|
|
let {
|
|
open = $bindable(),
|
|
onClose,
|
|
onSearch,
|
|
onSelect,
|
|
quickActions = [],
|
|
placeholder = 'Suchen...',
|
|
emptyText = 'Keine Ergebnisse gefunden',
|
|
searchingText = 'Suche...',
|
|
onCreate,
|
|
onParseCreate,
|
|
createText = 'Als Eintrag erstellen',
|
|
createShortcut = '⌘↵',
|
|
}: Props = $props();
|
|
|
|
let searchQuery = $state('');
|
|
let results = $state<CommandBarItem[]>([]);
|
|
let loading = $state(false);
|
|
let creating = $state(false);
|
|
let selectedIndex = $state(0);
|
|
let searchTimeout: ReturnType<typeof setTimeout>;
|
|
let inputElement = $state<HTMLInputElement | null>(null);
|
|
|
|
// Computed create preview
|
|
let createPreview = $derived(
|
|
searchQuery.trim() && onParseCreate ? onParseCreate(searchQuery) : null
|
|
);
|
|
|
|
// Highlighted text for overlay
|
|
let highlightedQuery = $derived(highlightText(searchQuery, HIGHLIGHT_PATTERNS));
|
|
|
|
// Check if create option is selected (it's always first when available)
|
|
let isCreateSelected = $derived(selectedIndex === 0 && createPreview !== null);
|
|
|
|
// Reset state when modal opens
|
|
$effect(() => {
|
|
if (open) {
|
|
searchQuery = '';
|
|
results = [];
|
|
selectedIndex = 0;
|
|
creating = false;
|
|
setTimeout(() => inputElement?.focus(), 50);
|
|
}
|
|
});
|
|
|
|
async function handleSearch() {
|
|
clearTimeout(searchTimeout);
|
|
|
|
if (!searchQuery.trim()) {
|
|
results = [];
|
|
loading = false;
|
|
return;
|
|
}
|
|
|
|
loading = true;
|
|
|
|
searchTimeout = setTimeout(async () => {
|
|
try {
|
|
results = await onSearch(searchQuery);
|
|
selectedIndex = 0;
|
|
} catch (e) {
|
|
console.error('Search error:', e);
|
|
results = [];
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
}, SEARCH_DEBOUNCE_MS);
|
|
}
|
|
|
|
async function handleCreate() {
|
|
if (!onCreate || !searchQuery.trim() || creating) return;
|
|
|
|
creating = true;
|
|
try {
|
|
await onCreate(searchQuery);
|
|
onClose();
|
|
} catch (error) {
|
|
console.error('Create error:', error);
|
|
} finally {
|
|
creating = false;
|
|
}
|
|
}
|
|
|
|
function handleKeydown(event: KeyboardEvent) {
|
|
if (event.key === 'Escape') {
|
|
event.preventDefault();
|
|
onClose();
|
|
return;
|
|
}
|
|
|
|
// Cmd/Ctrl+Enter to create directly
|
|
if (event.key === 'Enter' && (event.metaKey || event.ctrlKey)) {
|
|
event.preventDefault();
|
|
if (onCreate && searchQuery.trim()) {
|
|
handleCreate();
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (event.key === 'ArrowDown') {
|
|
event.preventDefault();
|
|
// Calculate max index including create option
|
|
const hasCreate = createPreview !== null;
|
|
const maxIndex = searchQuery.trim()
|
|
? (hasCreate ? 1 : 0) + results.length - 1
|
|
: quickActions.length - 1;
|
|
selectedIndex = Math.min(selectedIndex + 1, Math.max(0, maxIndex));
|
|
return;
|
|
}
|
|
|
|
if (event.key === 'ArrowUp') {
|
|
event.preventDefault();
|
|
selectedIndex = Math.max(selectedIndex - 1, 0);
|
|
return;
|
|
}
|
|
|
|
if (event.key === 'Enter') {
|
|
event.preventDefault();
|
|
if (searchQuery.trim()) {
|
|
// If create option is selected
|
|
if (isCreateSelected && onCreate) {
|
|
handleCreate();
|
|
} else if (results.length > 0) {
|
|
// Adjust index for results (subtract 1 if create option exists)
|
|
const resultIndex = createPreview !== null ? selectedIndex - 1 : selectedIndex;
|
|
if (resultIndex >= 0 && resultIndex < results.length) {
|
|
selectItem(results[resultIndex]);
|
|
}
|
|
}
|
|
} else if (!searchQuery.trim() && quickActions.length > 0) {
|
|
const action = quickActions[selectedIndex];
|
|
if (action.href) {
|
|
goto(action.href);
|
|
onClose();
|
|
} else if (action.onclick) {
|
|
action.onclick();
|
|
onClose();
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
function selectItem(item: CommandBarItem) {
|
|
onSelect(item);
|
|
onClose();
|
|
}
|
|
|
|
function getInitials(item: CommandBarItem): string {
|
|
const parts = item.title.split(' ');
|
|
if (parts.length >= 2) {
|
|
return (parts[0][0] + parts[1][0]).toUpperCase();
|
|
}
|
|
return item.title.substring(0, 2).toUpperCase();
|
|
}
|
|
|
|
function handleBackdropClick(e: MouseEvent) {
|
|
if (e.target === e.currentTarget) {
|
|
onClose();
|
|
}
|
|
}
|
|
|
|
function handleQuickAction(action: QuickAction) {
|
|
if (action.href) {
|
|
goto(action.href);
|
|
} else if (action.onclick) {
|
|
action.onclick();
|
|
}
|
|
onClose();
|
|
}
|
|
</script>
|
|
|
|
{#if open}
|
|
<!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
|
|
<div
|
|
class="command-backdrop"
|
|
role="dialog"
|
|
aria-modal="true"
|
|
aria-label="Suchen"
|
|
tabindex="-1"
|
|
onclick={handleBackdropClick}
|
|
onkeydown={handleKeydown}
|
|
>
|
|
<div class="command-modal">
|
|
<!-- Search Input with Syntax Highlighting -->
|
|
<div class="command-input-wrapper">
|
|
<MagnifyingGlass size={20} class="command-icon" />
|
|
<div class="input-highlight-container">
|
|
<!-- Highlight backdrop (shows colored keywords) -->
|
|
<div class="input-highlight-backdrop" aria-hidden="true">
|
|
{@html highlightedQuery}
|
|
</div>
|
|
<!-- Actual input (transparent text, visible caret) -->
|
|
<input
|
|
bind:this={inputElement}
|
|
type="text"
|
|
{placeholder}
|
|
bind:value={searchQuery}
|
|
oninput={handleSearch}
|
|
class="command-input"
|
|
/>
|
|
</div>
|
|
<kbd class="command-shortcut">ESC</kbd>
|
|
</div>
|
|
|
|
<!-- Results -->
|
|
{#if searchQuery.trim()}
|
|
<div class="command-results">
|
|
<!-- Create option (always first when available) -->
|
|
{#if createPreview && onCreate}
|
|
<button
|
|
type="button"
|
|
class="command-result create-option"
|
|
class:selected={selectedIndex === 0}
|
|
onclick={handleCreate}
|
|
onmouseenter={() => (selectedIndex = 0)}
|
|
disabled={creating}
|
|
>
|
|
<div class="result-avatar create-avatar">
|
|
{#if creating}
|
|
<div class="loading-spinner-small"></div>
|
|
{:else}
|
|
<Plus size={20} />
|
|
{/if}
|
|
</div>
|
|
<div class="result-info">
|
|
<div class="result-name">{createPreview.title}</div>
|
|
{#if createPreview.subtitle}
|
|
<div class="result-details">
|
|
<span>{createPreview.subtitle}</span>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<kbd class="create-shortcut">{createShortcut}</kbd>
|
|
</button>
|
|
{/if}
|
|
|
|
{#if loading}
|
|
<div class="command-loading">
|
|
<div class="loading-spinner"></div>
|
|
<span>{searchingText}</span>
|
|
</div>
|
|
{:else if results.length === 0 && !createPreview}
|
|
<div class="command-empty">
|
|
<span>{emptyText}</span>
|
|
</div>
|
|
{:else if results.length > 0}
|
|
<div class="results-divider">
|
|
<span>Suchergebnisse</span>
|
|
</div>
|
|
{#each results as item, index (item.id)}
|
|
{@const adjustedIndex = createPreview ? index + 1 : index}
|
|
<button
|
|
type="button"
|
|
class="command-result"
|
|
class:selected={adjustedIndex === selectedIndex}
|
|
onclick={() => selectItem(item)}
|
|
onmouseenter={() => (selectedIndex = adjustedIndex)}
|
|
>
|
|
<div class="result-avatar">
|
|
{#if item.imageUrl}
|
|
<img
|
|
src={item.imageUrl}
|
|
alt={item.title}
|
|
class="w-full h-full rounded-full object-cover"
|
|
/>
|
|
{:else}
|
|
{getInitials(item)}
|
|
{/if}
|
|
</div>
|
|
<div class="result-info">
|
|
<div class="result-name">{item.title}</div>
|
|
{#if item.subtitle}
|
|
<div class="result-details">
|
|
<span>{item.subtitle}</span>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{#if item.isFavorite}
|
|
<Heart size={20} weight="fill" class="result-favorite" />
|
|
{/if}
|
|
</button>
|
|
{/each}
|
|
{/if}
|
|
</div>
|
|
{:else if quickActions.length > 0}
|
|
<!-- Quick Actions when no search -->
|
|
<div class="quick-actions-list">
|
|
{#each quickActions as action, index (action.id)}
|
|
<button
|
|
type="button"
|
|
class="quick-action"
|
|
class:selected={index === selectedIndex}
|
|
onclick={() => handleQuickAction(action)}
|
|
onmouseenter={() => (selectedIndex = index)}
|
|
>
|
|
<Plus size={20} class="quick-action-icon" />
|
|
<span>{action.label}</span>
|
|
{#if action.shortcut}
|
|
<kbd>{action.shortcut}</kbd>
|
|
{/if}
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
|
|
<!-- Footer -->
|
|
<div class="command-footer">
|
|
<div class="footer-hints">
|
|
<span><kbd>↑↓</kbd> Navigation</span>
|
|
<span><kbd>↵</kbd> Öffnen</span>
|
|
{#if onCreate}
|
|
<span><kbd>{createShortcut}</kbd> Erstellen</span>
|
|
{/if}
|
|
<span><kbd>ESC</kbd> Schließen</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<style>
|
|
.command-backdrop {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 100;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
padding-top: 15vh;
|
|
background: hsl(var(--color-background) / 0.8);
|
|
backdrop-filter: blur(8px);
|
|
-webkit-backdrop-filter: blur(8px);
|
|
animation: fadeIn 0.15s ease;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.command-modal {
|
|
width: 100%;
|
|
max-width: 560px;
|
|
margin: 0 1rem;
|
|
background: hsl(var(--color-surface-elevated));
|
|
border: 1px solid hsl(var(--color-border));
|
|
border-radius: 12px;
|
|
box-shadow:
|
|
0 25px 50px -12px hsl(var(--color-background) / 0.5),
|
|
0 0 0 1px hsl(var(--color-border) / 0.5);
|
|
overflow: hidden;
|
|
animation: slideIn 0.2s ease;
|
|
color: hsl(var(--color-foreground));
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-10px) scale(0.98);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
.command-input-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 1rem 1.25rem;
|
|
border-bottom: 1px solid hsl(var(--color-border));
|
|
}
|
|
|
|
/* Input with syntax highlighting overlay */
|
|
.input-highlight-container {
|
|
position: relative;
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.input-highlight-backdrop {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
font-size: 1rem;
|
|
font-family: inherit;
|
|
white-space: pre;
|
|
pointer-events: none;
|
|
color: hsl(var(--color-foreground));
|
|
overflow: hidden;
|
|
}
|
|
|
|
.command-input {
|
|
position: relative;
|
|
width: 100%;
|
|
border: none;
|
|
background: transparent;
|
|
font-size: 1rem;
|
|
font-family: inherit;
|
|
color: transparent;
|
|
caret-color: hsl(var(--color-foreground));
|
|
outline: none;
|
|
z-index: 1;
|
|
}
|
|
|
|
.command-input::placeholder {
|
|
color: hsl(var(--color-muted-foreground));
|
|
}
|
|
|
|
/* Syntax highlighting colors - Priority levels with matching UI colors */
|
|
.input-highlight-backdrop :global(.hl-priority-urgent) {
|
|
color: #ef4444; /* red - Dringend */
|
|
font-weight: 600;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-priority-high) {
|
|
color: #f97316; /* orange - Wichtig */
|
|
font-weight: 600;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-priority-medium) {
|
|
color: #eab308; /* yellow - Normal */
|
|
font-weight: 600;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-priority-low) {
|
|
color: #22c55e; /* green - Später */
|
|
font-weight: 600;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-tag) {
|
|
color: hsl(var(--color-primary));
|
|
font-weight: 500;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-reference) {
|
|
color: hsl(var(--color-success));
|
|
font-weight: 500;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-date) {
|
|
color: hsl(262 83% 58%);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.input-highlight-backdrop :global(.hl-time) {
|
|
color: hsl(262 83% 58%);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.command-shortcut {
|
|
padding: 0.25rem 0.5rem;
|
|
font-size: 0.75rem;
|
|
font-family: inherit;
|
|
background: hsl(var(--color-surface));
|
|
border: 1px solid hsl(var(--color-border));
|
|
border-radius: 4px;
|
|
color: hsl(var(--color-muted-foreground));
|
|
}
|
|
|
|
.command-results {
|
|
max-height: 320px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.command-loading,
|
|
.command-empty {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.75rem;
|
|
padding: 2rem;
|
|
color: hsl(var(--color-muted-foreground));
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 1.25rem;
|
|
height: 1.25rem;
|
|
border: 2px solid hsl(var(--color-border));
|
|
border-top-color: hsl(var(--color-primary));
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
.loading-spinner-small {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border: 2px solid hsl(var(--color-border));
|
|
border-top-color: hsl(var(--color-success));
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
/* Create option styles */
|
|
.create-option {
|
|
border-bottom: 1px solid hsl(var(--color-border));
|
|
}
|
|
|
|
.create-option.selected,
|
|
.create-option:hover {
|
|
background: hsl(var(--color-success) / 0.1);
|
|
}
|
|
|
|
.create-avatar {
|
|
background: hsl(var(--color-success));
|
|
}
|
|
|
|
.create-shortcut {
|
|
padding: 0.25rem 0.5rem;
|
|
font-size: 0.6875rem;
|
|
font-family: inherit;
|
|
background: hsl(var(--color-surface));
|
|
border: 1px solid hsl(var(--color-border));
|
|
border-radius: 4px;
|
|
color: hsl(var(--color-muted-foreground));
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.results-divider {
|
|
padding: 0.5rem 1.25rem 0.25rem;
|
|
font-size: 0.6875rem;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
color: hsl(var(--color-muted-foreground));
|
|
}
|
|
|
|
.command-result {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
width: 100%;
|
|
padding: 0.75rem 1.25rem;
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: background 0.1s ease;
|
|
color: hsl(var(--color-foreground));
|
|
}
|
|
|
|
.command-result:hover,
|
|
.command-result.selected {
|
|
background: hsl(var(--color-surface-hover));
|
|
}
|
|
|
|
.result-avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
min-width: 40px;
|
|
border-radius: 9999px;
|
|
background: hsl(var(--color-primary));
|
|
color: hsl(var(--color-primary-foreground));
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 600;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.result-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.result-name {
|
|
font-weight: 500;
|
|
color: hsl(var(--color-foreground));
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.result-details {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
font-size: 0.8125rem;
|
|
color: hsl(var(--color-muted-foreground));
|
|
}
|
|
|
|
.result-details span {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.quick-actions-list {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.quick-action {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
width: 100%;
|
|
padding: 0.75rem 1rem;
|
|
border-radius: 8px;
|
|
color: hsl(var(--color-foreground));
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
transition: background 0.1s ease;
|
|
}
|
|
|
|
.quick-action:hover,
|
|
.quick-action.selected {
|
|
background: hsl(var(--color-surface-hover));
|
|
}
|
|
|
|
.quick-action span {
|
|
flex: 1;
|
|
font-size: 0.9375rem;
|
|
}
|
|
|
|
.quick-action kbd {
|
|
padding: 0.125rem 0.375rem;
|
|
font-size: 0.6875rem;
|
|
font-family: inherit;
|
|
background: hsl(var(--color-surface));
|
|
border: 1px solid hsl(var(--color-border));
|
|
border-radius: 4px;
|
|
color: hsl(var(--color-muted-foreground));
|
|
}
|
|
|
|
.command-footer {
|
|
padding: 0.75rem 1.25rem;
|
|
border-top: 1px solid hsl(var(--color-border));
|
|
background: hsl(var(--color-surface));
|
|
}
|
|
|
|
.footer-hints {
|
|
display: flex;
|
|
gap: 1rem;
|
|
font-size: 0.75rem;
|
|
color: hsl(var(--color-muted-foreground));
|
|
}
|
|
|
|
.footer-hints kbd {
|
|
padding: 0.125rem 0.25rem;
|
|
font-family: inherit;
|
|
background: hsl(var(--color-surface-elevated));
|
|
border: 1px solid hsl(var(--color-border));
|
|
border-radius: 3px;
|
|
margin-right: 0.25rem;
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.command-backdrop {
|
|
padding-top: 5vh;
|
|
}
|
|
|
|
.footer-hints {
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|
|
</style>
|