2022-03-13 14:40:38 +08:00
|
|
|
import SvgIcon from '@/components/SvgIcon'
|
|
|
|
import useScroll from '@/hooks/useScroll'
|
|
|
|
import useUser from '@/hooks/useUser'
|
|
|
|
import { resizeImage } from '@/utils/common'
|
|
|
|
|
|
|
|
const NavigationButtons = () => {
|
|
|
|
const navigate = useNavigate()
|
|
|
|
enum ACTION {
|
|
|
|
BACK = 'back',
|
|
|
|
FORWARD = 'forward',
|
|
|
|
}
|
|
|
|
const handleNavigate = (action: ACTION) => {
|
|
|
|
if (action === ACTION.BACK) navigate(-1)
|
|
|
|
if (action === ACTION.FORWARD) navigate(1)
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<div className="flex gap-1">
|
|
|
|
{[ACTION.BACK, ACTION.FORWARD].map(action => (
|
|
|
|
<div
|
|
|
|
onClick={() => handleNavigate(action)}
|
|
|
|
key={action}
|
|
|
|
className="app-region-no-drag btn-hover-animation rounded-lg p-3 text-gray-500 transition duration-300 after:rounded-full after:bg-black/[.06] hover:text-gray-900 dark:text-gray-300 dark:after:bg-white/10 dark:hover:text-gray-200"
|
|
|
|
>
|
|
|
|
<SvgIcon className="h-4 w-4" name={action} />
|
|
|
|
</div>
|
|
|
|
))}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const SearchBox = () => {
|
|
|
|
return (
|
|
|
|
<div className="app-region-no-drag group flex w-[16rem] cursor-text items-center rounded-full bg-gray-500 bg-opacity-5 px-3 transition duration-300 hover:bg-opacity-10 dark:bg-gray-300 dark:bg-opacity-5">
|
|
|
|
<SvgIcon
|
|
|
|
className="mr-2 h-4 w-4 text-gray-500 transition duration-300 group-hover:text-gray-600 dark:text-gray-400 dark:group-hover:text-gray-200"
|
|
|
|
name="search"
|
|
|
|
/>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
className="w-full bg-transparent placeholder:text-gray-500 dark:text-white dark:placeholder:text-gray-400"
|
|
|
|
placeholder="Search"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const Settings = () => {
|
|
|
|
return (
|
|
|
|
<div className="app-region-no-drag btn-hover-animation rounded-lg p-2.5 text-gray-500 transition duration-300 after:rounded-full after:bg-black/[.06] hover:text-gray-900 dark:text-gray-300 dark:after:bg-white/10 dark:hover:text-gray-200">
|
|
|
|
<SvgIcon className="h-5 w-5" name="settings" />
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const Avatar = () => {
|
|
|
|
const navigate = useNavigate()
|
|
|
|
const { data: user } = useUser()
|
|
|
|
return (
|
|
|
|
<img
|
|
|
|
src={user?.profile?.avatarUrl}
|
|
|
|
onClick={() => navigate('/login')}
|
|
|
|
className="app-region-no-drag h-9 w-9 rounded-full bg-gray-100 dark:bg-gray-700"
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const Topbar = () => {
|
|
|
|
/**
|
|
|
|
* Show topbar background when scroll down
|
|
|
|
*/
|
|
|
|
const [mainContainer, setMainContainer] = useState<HTMLElement | null>(null)
|
|
|
|
const scroll = useScroll(mainContainer, { throttle: 100 })
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setMainContainer(document.getElementById('mainContainer'))
|
|
|
|
}, [setMainContainer])
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={classNames(
|
|
|
|
'app-region-drag sticky top-0 z-30 flex h-16 min-h-[4rem] w-full cursor-default items-center justify-between px-8 transition duration-300',
|
|
|
|
!scroll.arrivedState.top &&
|
2022-03-17 14:45:04 +08:00
|
|
|
'bg-white bg-opacity-[.86] backdrop-blur-xl backdrop-saturate-[1.8] dark:bg-[#222] dark:bg-opacity-[.86]'
|
2022-03-13 14:40:38 +08:00
|
|
|
)}
|
|
|
|
>
|
|
|
|
<div className="flex gap-2">
|
|
|
|
<NavigationButtons />
|
|
|
|
<SearchBox />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
<Settings />
|
|
|
|
<Avatar />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Topbar
|