UNPKG

@theguild/components

Version:
65 lines (64 loc) 2.52 kB
"use client"; import { jsx, jsxs } from "react/jsx-runtime"; import { useLayoutEffect, useState } from "react"; import { cn } from "../cn"; import { CallToAction } from "./call-to-action"; function CookiesConsent(props) { const [consented, setConsented] = useState("unknown"); useLayoutEffect(() => { setConsented(localStorage.getItem("cookies") === "true" ? "yes" : "no"); }, []); if (consented === "unknown" || consented === "yes") { return null; } return /* @__PURE__ */ jsxs( "div", { ...props, "data-state": consented, className: cn( "ease fixed bottom-0 z-50 flex flex-wrap items-center justify-center gap-x-4 gap-y-3 rounded-lg border border-beige-200 bg-beige-100 p-4 text-sm text-green-800 shadow-xl duration-300 animate-in fade-in-0 slide-in-from-bottom-6 fill-mode-forwards data-[state=closing]:animate-out data-[state=closing]:fade-out data-[state=closing]:slide-out-to-bottom-6 lg:flex-nowrap lg:justify-between lg:text-left dark:border-neutral-800 dark:bg-neutral-900 dark:text-neutral-200", props.className ), onAnimationEnd: () => { if (consented === "closing") { setConsented("yes"); } }, children: [ /* @__PURE__ */ jsxs("div", { children: [ /* @__PURE__ */ jsx("p", { className: "max-sm:inline", children: "This site uses cookies for analytics and improving your experience." }), " ", /* @__PURE__ */ jsx("p", { className: "max-sm:inline", children: "By using our services, you consent to cookies." }) ] }), /* @__PURE__ */ jsxs("div", { className: "ml-auto flex w-auto items-center justify-end gap-4", children: [ /* @__PURE__ */ jsx( "a", { href: "https://the-guild.dev/graphql/hive/privacy-policy.pdf", className: "hive-focus whitespace-nowrap rounded p-1 hover:text-blue-700 hover:underline dark:hover:text-blue-100", target: "_blank", rel: "noopener noreferrer", children: "Privacy Policy" } ), /* @__PURE__ */ jsx( CallToAction, { variant: "tertiary", onClick: () => { setConsented("closing"); localStorage.setItem("cookies", "true"); }, className: "px-4 py-2", children: "Allow" } ) ] }) ] } ); } export { CookiesConsent };