File size: 4,405 Bytes
f5071ca |
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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
"use client";
import { twMerge } from "tailwind-merge";
import { RxCaretLeft, RxCaretRight } from "react-icons/rx";
import { useRouter } from "next/navigation";
import { FaUserAlt } from "react-icons/fa";
import { useSupabaseClient } from '@supabase/auth-helpers-react';
import { toast } from "react-hot-toast";
import { HiHome } from "react-icons/hi";
import { BiSearch } from "react-icons/bi";
import useAuthModal from "@/hooks/useAuthModal";
import { useUser } from "@/hooks/useUser";
import usePlayer from "@/hooks/usePlayer";
import Button from "./Button";
interface HeaderProps {
children: React.ReactNode;
className?: string;
}
const Header: React.FC<HeaderProps> = ({
children,
className,
}) => {
const player = usePlayer();
const router = useRouter();
const authModal = useAuthModal();
const supabaseClient = useSupabaseClient();
const { user } = useUser();
const handleLogout = async () => {
const { error } = await supabaseClient.auth.signOut();
player.reset();
router.refresh();
if (error) {
toast.error(error.message);
}
}
return (
<div
className={twMerge(`
h-fit
bg-gradient-to-b
from-emerald-800
p-6
`,
className
)}>
<div className="w-full mb-4 flex items-center justify-between">
<div className="hidden md:flex gap-x-2 items-center">
<button
onClick={() => router.back()}
className="
rounded-full
bg-black
flex
items-center
justify-center
cursor-pointer
hover:opacity-75
transition
"
>
<RxCaretLeft className="text-white" size={35} />
</button>
<button
onClick={() => router.forward()}
className="
rounded-full
bg-black
flex
items-center
justify-center
cursor-pointer
hover:opacity-75
transition
"
>
<RxCaretRight className="text-white" size={35} />
</button>
</div>
<div className="flex md:hidden gap-x-2 items-center">
<button
onClick={() => router.push('/')}
className="
rounded-full
p-2
bg-white
flex
items-center
justify-center
cursor-pointer
hover:opacity-75
transition
"
>
<HiHome className="text-black" size={20} />
</button>
<button
onClick={() => router.push('/search')}
className="
rounded-full
p-2
bg-white
flex
items-center
justify-center
cursor-pointer
hover:opacity-75
transition
"
>
<BiSearch className="text-black" size={20} />
</button>
</div>
<div className="flex justify-between items-center gap-x-4">
{user ? (
<div className="flex gap-x-4 items-center">
<Button
onClick={handleLogout}
className="bg-white px-6 py-2"
>
Logout
</Button>
<Button
onClick={() => router.push('/account')}
className="bg-white"
>
<FaUserAlt />
</Button>
</div>
) : (
<>
<div>
<Button
onClick={authModal.onOpen}
className="
bg-transparent
text-neutral-300
font-medium
"
>
Sign up
</Button>
</div>
<div>
<Button
onClick={authModal.onOpen}
className="bg-white px-6 py-2"
>
Log in
</Button>
</div>
</>
)}
</div>
</div>
{children}
</div>
);
}
export default Header; |