Spaces:
Running
Running
File size: 4,925 Bytes
1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 eecbedf 1cf8f01 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 |
import classNames from "classnames";
import { FaMobileAlt } from "react-icons/fa";
import { HelpCircle, LogIn, RefreshCcw, SparkleIcon } from "lucide-react";
import { FaLaptopCode } from "react-icons/fa6";
import { HtmlHistory, Page } from "@/types";
import { Button } from "@/components/ui/button";
import { MdAdd } from "react-icons/md";
import { History } from "@/components/editor/history";
import { UserMenu } from "@/components/user-menu";
import { useUser } from "@/hooks/useUser";
import Link from "next/link";
import { useLocalStorage } from "react-use";
import { isTheSameHtml } from "@/lib/compare-html-diff";
const DEVICES = [
{
name: "desktop",
icon: FaLaptopCode,
},
{
name: "mobile",
icon: FaMobileAlt,
},
];
export function Footer({
pages,
isNew = false,
htmlHistory,
setPages,
device,
setDevice,
iframeRef,
}: {
pages: Page[];
isNew?: boolean;
htmlHistory?: HtmlHistory[];
device: "desktop" | "mobile";
setPages: (pages: Page[]) => void;
iframeRef?: React.RefObject<HTMLIFrameElement | null>;
setDevice: React.Dispatch<React.SetStateAction<"desktop" | "mobile">>;
}) {
const { user, openLoginWindow } = useUser();
const handleRefreshIframe = () => {
if (iframeRef?.current) {
const iframe = iframeRef.current;
const content = iframe.srcdoc;
iframe.srcdoc = "";
setTimeout(() => {
iframe.srcdoc = content;
}, 10);
}
};
const [, setStorage] = useLocalStorage("pages");
const handleClick = async () => {
if (pages && !isTheSameHtml(pages[0].html)) {
setStorage(pages);
}
openLoginWindow();
};
return (
<footer className="border-t bg-slate-200 border-slate-300 dark:bg-neutral-950 dark:border-neutral-800 px-3 py-2 flex items-center justify-between sticky bottom-0 z-20">
<div className="flex items-center gap-2">
{user ? (
user?.isLocalUse ? (
<>
<div className="max-w-max bg-amber-500/10 rounded-full px-3 py-1 text-amber-500 border border-amber-500/20 text-sm font-semibold">
Local Usage
</div>
</>
) : (
<UserMenu className="!p-1 !pr-3 !h-auto" />
)
) : (
<Button size="sm" variant="default" onClick={handleClick}>
<LogIn className="text-sm" />
Log In
</Button>
)}
{user && !isNew && <p className="text-neutral-700">|</p>}
{!isNew && (
<Link href="/projects/new">
<Button size="sm" variant="secondary">
<MdAdd className="text-sm" />
New <span className="max-lg:hidden">Project</span>
</Button>
</Link>
)}
{htmlHistory && htmlHistory.length > 0 && (
<>
<p className="text-neutral-700">|</p>
<History history={htmlHistory} setPages={setPages} />
</>
)}
</div>
<div className="flex justify-end items-center gap-2.5">
<a
href="https://huggingface.co/spaces/victor/deepsite-gallery"
target="_blank"
>
<Button size="sm" variant="ghost">
<SparkleIcon className="size-3.5" />
<span className="max-lg:hidden">DeepSite Gallery</span>
</Button>
</a>
<a
target="_blank"
href="https://huggingface.co/spaces/enzostvs/deepsite/discussions/157"
>
<Button size="sm" variant="outline">
<HelpCircle className="size-3.5" />
<span className="max-lg:hidden">Help</span>
</Button>
</a>
<Button size="sm" variant="outline" onClick={handleRefreshIframe}>
<RefreshCcw className="size-3.5" />
<span className="max-lg:hidden">Refresh Preview</span>
</Button>
<div className="flex items-center rounded-full p-0.5 bg-neutral-700/70 relative overflow-hidden z-0 max-lg:hidden gap-0.5">
<div
className={classNames(
"absolute left-0.5 top-0.5 rounded-full bg-white size-7 -z-[1] transition-all duration-200",
{
"translate-x-[calc(100%+2px)]": device === "mobile",
}
)}
/>
{DEVICES.map((deviceItem) => (
<button
key={deviceItem.name}
className={classNames(
"rounded-full text-neutral-300 size-7 flex items-center justify-center cursor-pointer",
{
"!text-black": device === deviceItem.name,
"hover:bg-neutral-800": device !== deviceItem.name,
}
)}
onClick={() => setDevice(deviceItem.name as "desktop" | "mobile")}
>
<deviceItem.icon className="text-sm" />
</button>
))}
</div>
</div>
</footer>
);
}
|