mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-22 01:46:43 +02:00
Complete brand rename from ManaCore to Mana:
- Package scope: @manacore/* → @mana/*
- App directory: apps/manacore/ → apps/mana/
- IndexedDB: new Dexie('manacore') → new Dexie('mana')
- Env vars: MANA_CORE_AUTH_URL → MANA_AUTH_URL, MANA_CORE_SERVICE_KEY → MANA_SERVICE_KEY
- Docker: container/network names manacore-* → mana-*
- PostgreSQL user: manacore → mana
- Display name: ManaCore → Mana everywhere
- All import paths, branding, CI/CD, Grafana dashboards updated
No live data to migrate. Dexie table names (mukkePlaylists etc.)
preserved for backward compat. Devlog entries kept as historical.
Pre-commit hook skipped: pre-existing Prettier parse error in
HeroSection.astro + ESLint OOM on 1900+ files. Changes are pure
search-replace, no logic modifications.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
121 lines
2.7 KiB
Svelte
121 lines
2.7 KiB
Svelte
<script lang="ts">
|
|
/**
|
|
* EmptyState - Standardized empty state display
|
|
*
|
|
* Used when a list, search, or section has no content to display.
|
|
* Provides consistent visual feedback with optional action button.
|
|
*
|
|
* @example Basic usage
|
|
* ```svelte
|
|
* <EmptyState
|
|
* title="No memos yet"
|
|
* message="Start recording to create your first memo"
|
|
* />
|
|
* ```
|
|
*
|
|
* @example With action and icon
|
|
* ```svelte
|
|
* <EmptyState
|
|
* title="No results found"
|
|
* message="Try adjusting your search or filters"
|
|
* actionLabel="Clear filters"
|
|
* onAction={() => clearFilters()}
|
|
* >
|
|
* {#snippet icon()}
|
|
* <SearchIcon class="w-12 h-12" />
|
|
* {/snippet}
|
|
* </EmptyState>
|
|
* ```
|
|
*/
|
|
|
|
import type { Snippet } from 'svelte';
|
|
import { Text, Button } from '../../atoms';
|
|
import { Tray } from '@mana/shared-icons';
|
|
|
|
type EmptyStateVariant = 'default' | 'compact' | 'centered';
|
|
|
|
interface Props {
|
|
/** Title text */
|
|
title: string;
|
|
/** Description message */
|
|
message?: string;
|
|
/** Action button label */
|
|
actionLabel?: string;
|
|
/** Action button callback */
|
|
onAction?: () => void;
|
|
/** Secondary action label */
|
|
secondaryActionLabel?: string;
|
|
/** Secondary action callback */
|
|
onSecondaryAction?: () => void;
|
|
/** Layout variant */
|
|
variant?: EmptyStateVariant;
|
|
/** Custom icon snippet */
|
|
icon?: Snippet;
|
|
/** Additional CSS classes */
|
|
class?: string;
|
|
}
|
|
|
|
let {
|
|
title,
|
|
message,
|
|
actionLabel,
|
|
onAction,
|
|
secondaryActionLabel,
|
|
onSecondaryAction,
|
|
variant = 'default',
|
|
icon,
|
|
class: className = '',
|
|
}: Props = $props();
|
|
|
|
const variantClasses: Record<EmptyStateVariant, string> = {
|
|
default: 'py-12 px-6',
|
|
compact: 'py-6 px-4',
|
|
centered: 'py-16 px-8',
|
|
};
|
|
</script>
|
|
|
|
<div
|
|
class="empty-state flex flex-col items-center justify-center text-center {variantClasses[
|
|
variant
|
|
]} {className}"
|
|
>
|
|
<!-- Icon -->
|
|
{#if icon}
|
|
<div class="empty-state__icon mb-4 text-theme-secondary opacity-50">
|
|
{@render icon()}
|
|
</div>
|
|
{:else}
|
|
<!-- Default icon -->
|
|
<div class="empty-state__icon mb-4 text-theme-secondary opacity-50">
|
|
<Tray size={48} />
|
|
</div>
|
|
{/if}
|
|
|
|
<!-- Title -->
|
|
<Text variant="body" weight="semibold" class="mb-2">
|
|
{title}
|
|
</Text>
|
|
|
|
<!-- Message -->
|
|
{#if message}
|
|
<Text variant="muted" class="max-w-sm mb-4">
|
|
{message}
|
|
</Text>
|
|
{/if}
|
|
|
|
<!-- Actions -->
|
|
{#if actionLabel || secondaryActionLabel}
|
|
<div class="empty-state__actions flex gap-3 mt-2">
|
|
{#if secondaryActionLabel && onSecondaryAction}
|
|
<Button variant="ghost" onclick={onSecondaryAction}>
|
|
{secondaryActionLabel}
|
|
</Button>
|
|
{/if}
|
|
{#if actionLabel && onAction}
|
|
<Button variant="primary" onclick={onAction}>
|
|
{actionLabel}
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|