mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2026-05-08 09:38:55 -04:00
fbeca7cfee
- Deleted the start.sh script for container management. - Added AGENTS.md for project guidelines and development principles. - Introduced new SQL migration files for user appearance preferences and platform settings. - Implemented appearance provider to manage user interface themes and preferences. - Created branding utility to define and manage branding-related constants and types. Co-authored-by: Copilot <copilot@github.com>
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import { cn } from "~/lib/utils";
|
|
import { Card, CardContent } from "~/components/ui/card";
|
|
import { useAppearance } from "~/components/providers/appearance-provider";
|
|
import { useSidebar } from "~/components/layout/sidebar-provider";
|
|
|
|
interface FloatingActionBarProps {
|
|
/** Content to display on the left side */
|
|
leftContent?: React.ReactNode;
|
|
/** Action buttons to display on the right */
|
|
children: React.ReactNode;
|
|
/** Additional className for styling */
|
|
className?: string;
|
|
}
|
|
|
|
export function FloatingActionBar({
|
|
leftContent,
|
|
children,
|
|
className,
|
|
}: FloatingActionBarProps) {
|
|
const { isCollapsed } = useSidebar();
|
|
const { sidebarStyle } = useAppearance();
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"pb-safe-area-inset-bottom fixed right-0 bottom-4 left-0 z-50 transition-all duration-300 ease-in-out",
|
|
sidebarStyle === "floating"
|
|
? isCollapsed
|
|
? "md:left-24"
|
|
: "md:left-[18rem]"
|
|
: isCollapsed
|
|
? "md:left-16"
|
|
: "md:left-64",
|
|
"animate-slide-in-bottom",
|
|
className,
|
|
)}
|
|
>
|
|
<div className="w-full px-4 transition-transform duration-300">
|
|
<Card className="hover-lift bg-card border-border border shadow-lg">
|
|
<CardContent className="flex flex-col gap-3 p-3 sm:flex-row sm:items-center sm:justify-between sm:p-4">
|
|
{leftContent && (
|
|
<div className="text-card-foreground animate-fade-in flex flex-1 items-center gap-3">
|
|
{leftContent}
|
|
</div>
|
|
)}
|
|
|
|
<div className="animate-fade-in animate-delay-100 flex items-center gap-2 sm:gap-3">
|
|
{children}
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|