managarten/packages/shared-ui/src/bottom-stack/NotificationBar.svelte
Till JS c8ed58b7d1 fix(mana,ui): integrate guest nudge into bottom stack + theme it
The "Gefällt es dir?" guest nudge was a free-floating fixed element at
bottom: 10rem, so it didn't follow the bottom-stack when the PillNav was
collapsed. Move it inside .bottom-stack as the first child so it shares
the stack's reflow.

NotificationBar now uses the elevation system (--color-surface-elevated,
--color-border-strong, --color-foreground) instead of hardcoded rgba so
it adapts to all themes. Bumped the CTA button (shadow + hover lift) and
container (stronger border, layered shadow) to be more visible.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-08 12:13:05 +02:00

165 lines
3.8 KiB
Svelte

<script lang="ts">
import { X, ArrowRight } from '@mana/shared-icons';
import type { BottomNotification } from './types';
interface Props {
notifications: BottomNotification[];
}
let { notifications }: Props = $props();
// Show highest priority notification (error > warning > info)
const PRIORITY: Record<string, number> = { error: 3, warning: 2, info: 1 };
let active = $derived(
notifications.length > 0
? [...notifications].sort((a, b) => (PRIORITY[b.type] ?? 0) - (PRIORITY[a.type] ?? 0))[0]
: null
);
function handleDismiss() {
if (active?.onDismiss) active.onDismiss();
}
</script>
{#if active}
<div
class="notification-bar"
class:warning={active.type === 'warning'}
class:error={active.type === 'error'}
>
<p class="notification-message">{active.message}</p>
<div class="notification-actions">
{#if active.action}
<button class="notification-action" onclick={active.action.onClick}>
{#if active.action.icon}
{@const ActionIcon = active.action.icon}
<ActionIcon size={14} weight="bold" />
{/if}
{active.action.label}
<ArrowRight size={12} />
</button>
{/if}
{#if active.dismissible !== false}
<button class="notification-dismiss" onclick={handleDismiss} aria-label="Schließen">
<X size={14} />
</button>
{/if}
</div>
</div>
{/if}
<style>
.notification-bar {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.625rem 0.625rem 0.625rem 1rem;
background: hsl(var(--color-surface-elevated));
border: 1px solid hsl(var(--color-border-strong, var(--color-border)));
border-radius: 0.875rem;
box-shadow:
0 8px 24px rgba(0, 0, 0, 0.12),
0 2px 6px rgba(0, 0, 0, 0.06);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
max-width: 480px;
width: max-content;
animation: slideUp 250ms ease-out;
}
:global(.dark) .notification-bar {
box-shadow:
0 12px 32px rgba(0, 0, 0, 0.45),
0 2px 8px rgba(0, 0, 0, 0.25);
}
.notification-bar.warning {
border-color: rgba(245, 158, 11, 0.3);
}
.notification-bar.error {
border-color: rgba(239, 68, 68, 0.3);
}
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.notification-message {
flex: 1;
margin: 0;
font-size: 0.8125rem;
line-height: 1.4;
color: hsl(var(--color-foreground) / 0.85);
}
.notification-actions {
display: flex;
align-items: center;
gap: 0.25rem;
flex-shrink: 0;
}
.notification-action {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 0.95rem;
font-size: 0.8125rem;
font-weight: 600;
color: white;
background: var(--color-primary, #7c3aed);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 0.625rem;
cursor: pointer;
transition:
background 150ms ease,
transform 150ms ease,
box-shadow 150ms ease;
white-space: nowrap;
font-family: inherit;
box-shadow:
0 4px 12px rgba(124, 58, 237, 0.35),
0 1px 2px rgba(0, 0, 0, 0.1);
}
.notification-action:hover {
filter: brightness(1.08);
transform: translateY(-1px);
box-shadow:
0 6px 16px rgba(124, 58, 237, 0.45),
0 2px 4px rgba(0, 0, 0, 0.12);
}
.notification-action:active {
transform: translateY(0);
}
.notification-dismiss {
display: inline-flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
padding: 0;
color: hsl(var(--color-foreground) / 0.45);
background: transparent;
border: none;
border-radius: 0.25rem;
cursor: pointer;
transition: all 150ms ease;
}
.notification-dismiss:hover {
background: hsl(var(--color-foreground) / 0.08);
color: hsl(var(--color-foreground) / 0.85);
}
@media (max-width: 480px) {
.notification-bar {
max-width: calc(100vw - 2rem);
}
}
</style>