2023-04-23 08:26:39 -05:00
// Copyright (C) 2022-present Daniel31x13 <daniel31x13@gmail.com>
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3.
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
2023-02-24 11:32:28 -06:00
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome" ;
2023-03-28 02:31:50 -05:00
import { signOut } from "next-auth/react" ;
import { useSession } from "next-auth/react" ;
2023-03-05 15:03:20 -06:00
import {
faPlus ,
faMagnifyingGlass ,
2023-03-28 02:31:50 -05:00
faCircleUser ,
faSliders ,
faArrowRightFromBracket ,
faChevronDown ,
2023-03-05 15:03:20 -06:00
} from "@fortawesome/free-solid-svg-icons" ;
2023-03-28 02:31:50 -05:00
import { useState } from "react" ;
import Dropdown from "@/components/Dropdown" ;
import Modal from "./Modal" ;
import AddLink from "./Modal/AddLink" ;
2023-02-24 11:32:28 -06:00
export default function ( ) {
2023-03-28 02:31:50 -05:00
const { data : session } = useSession ( ) ;
2023-02-24 11:32:28 -06:00
2023-03-28 02:31:50 -05:00
const [ profileDropdown , setProfileDropdown ] = useState ( false ) ;
2023-02-24 11:32:28 -06:00
2023-03-28 02:31:50 -05:00
const user = session ? . user ;
2023-02-24 11:32:28 -06:00
2023-03-08 15:31:24 -06:00
const [ linkModal , setLinkModal ] = useState ( false ) ;
2023-02-24 11:32:28 -06:00
2023-03-08 15:31:24 -06:00
const toggleLinkModal = ( ) = > {
setLinkModal ( ! linkModal ) ;
2023-02-24 11:32:28 -06:00
} ;
2023-02-08 18:32:20 -06:00
return (
2023-03-28 02:31:50 -05:00
< div className = "flex justify-between gap-2 items-center px-5 py-2 border-solid border-b-sky-100 border-b" >
< div className = "flex items-center relative" >
< label
htmlFor = "search-box"
className = "inline-flex w-fit absolute right-0 cursor-pointer select-none rounded-md p-1 text-sky-500"
>
< FontAwesomeIcon icon = { faMagnifyingGlass } className = "w-5 h-5" / >
< / label >
< input
id = "search-box"
type = "text"
placeholder = "Search for Links"
className = "border border-sky-100 rounded-md pr-6 w-60 focus:border-sky-500 sm:focus:w-80 hover:border-sky-500 duration-100 outline-none p-1 text-sm"
/ >
2023-03-05 15:03:20 -06:00
< / div >
2023-03-28 02:31:50 -05:00
< div className = "flex items-center gap-2" >
< div
2023-03-08 15:31:24 -06:00
onClick = { toggleLinkModal }
2023-03-25 09:17:34 -05:00
title = "New Link"
2023-03-28 02:31:50 -05:00
className = "inline-flex gap-1 items-center select-none cursor-pointer p-1 text-sky-500 rounded-md hover:outline-sky-500 outline duration-100 bg-white outline-sky-100 outline-1"
>
< FontAwesomeIcon icon = { faPlus } className = "w-5 h-5" / >
< / div >
2023-02-24 11:32:28 -06:00
2023-03-08 15:31:24 -06:00
{ linkModal ? (
2023-03-28 02:31:50 -05:00
< Modal toggleModal = { toggleLinkModal } >
< AddLink toggleLinkModal = { toggleLinkModal } / >
< / Modal >
2023-02-24 11:32:28 -06:00
) : null }
2023-03-28 02:31:50 -05:00
< div className = "relative" >
< div
className = "flex gap-2 items-center p-1 w-fit bg-white text-gray-600 cursor-pointer border border-sky-100 hover:border-sky-500 rounded-md duration-100"
onClick = { ( ) = > setProfileDropdown ( ! profileDropdown ) }
id = "profile-dropdown"
>
< FontAwesomeIcon
icon = { faCircleUser }
className = "h-5 w-5 pointer-events-none"
/ >
< div className = "flex items-center gap-1 pointer-events-none" >
< p className = "font-bold leading-3" > { user ? . name } < / p >
< FontAwesomeIcon icon = { faChevronDown } className = "h-3 w-3" / >
< / div >
< / div >
{ profileDropdown ? (
< Dropdown
items = { [
{
name : "Settings" ,
icon : < FontAwesomeIcon icon = { faSliders } / > ,
} ,
{
name : "Logout" ,
icon : < FontAwesomeIcon icon = { faArrowRightFromBracket } / > ,
onClick : ( ) = > {
signOut ( ) ;
setProfileDropdown ( ! profileDropdown ) ;
} ,
} ,
] }
onClickOutside = { ( e : Event ) = > {
const target = e . target as HTMLInputElement ;
if ( target . id !== "profile-dropdown" ) setProfileDropdown ( false ) ;
} }
2023-04-23 08:26:39 -05:00
className = "absolute top-8 right-0 z-20 w-36"
2023-03-28 02:31:50 -05:00
/ >
) : null }
< / div >
2023-02-08 18:32:20 -06:00
< / div >
< / div >
) ;
2023-02-08 17:58:55 -06:00
}