2023-08-15 13:35:47 +08:00
|
|
|
'use client'
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
import Link from 'next/link'
|
2023-11-27 11:47:48 +08:00
|
|
|
import { useSelectedLayoutSegment } from 'next/navigation'
|
|
|
|
import classNames from 'classnames'
|
|
|
|
import { useEffect } from 'react'
|
|
|
|
import { Bars3Icon } from '@heroicons/react/20/solid'
|
|
|
|
import { useBoolean } from 'ahooks'
|
2023-05-15 08:51:32 +08:00
|
|
|
import AccountDropdown from './account-dropdown'
|
2023-06-27 18:02:01 +08:00
|
|
|
import AppNav from './app-nav'
|
|
|
|
import DatasetNav from './dataset-nav'
|
2023-07-18 16:57:14 +08:00
|
|
|
import EnvNav from './env-nav'
|
|
|
|
import ExploreNav from './explore-nav'
|
|
|
|
import GithubStar from './github-star'
|
2023-11-27 11:47:48 +08:00
|
|
|
import s from './index.module.css'
|
2023-05-15 08:51:32 +08:00
|
|
|
import { WorkspaceProvider } from '@/context/workspace-context'
|
2023-08-15 13:35:47 +08:00
|
|
|
import { useAppContext } from '@/context/app-context'
|
2023-10-16 15:26:25 +08:00
|
|
|
import LogoSite from '@/app/components/base/logo/logo-site'
|
2023-11-27 11:47:48 +08:00
|
|
|
import useBreakpoints, { MediaType } from '@/hooks/use-breakpoints'
|
2023-05-25 16:59:47 +08:00
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
const navClassName = `
|
2023-11-28 20:05:19 +08:00
|
|
|
flex items-center relative mr-0 sm:mr-3 px-3 h-9 rounded-xl
|
2023-06-27 18:02:01 +08:00
|
|
|
font-medium text-sm
|
2023-05-15 08:51:32 +08:00
|
|
|
cursor-pointer
|
|
|
|
`
|
2023-06-06 10:42:32 +08:00
|
|
|
|
2023-07-18 16:57:14 +08:00
|
|
|
const Header = () => {
|
2023-11-27 11:47:48 +08:00
|
|
|
const selectedSegment = useSelectedLayoutSegment()
|
|
|
|
const { isCurrentWorkspaceManager, langeniusVersionInfo } = useAppContext()
|
|
|
|
const media = useBreakpoints()
|
|
|
|
const isMobile = media === MediaType.mobile
|
|
|
|
const [isShowNavMenu, { toggle, setFalse: hideNavMenu }] = useBoolean(false)
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
hideNavMenu()
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, [selectedSegment])
|
|
|
|
|
2023-05-15 08:51:32 +08:00
|
|
|
return (
|
2023-07-18 16:57:14 +08:00
|
|
|
<>
|
2023-11-27 11:47:48 +08:00
|
|
|
<div className={classNames(
|
|
|
|
s[`header-${langeniusVersionInfo.current_env}`],
|
|
|
|
'flex flex-1 items-center justify-between px-4',
|
|
|
|
)}>
|
|
|
|
<div className='flex items-center'>
|
|
|
|
{isMobile && <div
|
|
|
|
className='flex items-center justify-center h-8 w-8 cursor-pointer'
|
|
|
|
onClick={toggle}
|
|
|
|
>
|
|
|
|
<Bars3Icon className="h-4 w-4 text-gray-500" />
|
|
|
|
</div>}
|
|
|
|
{!isMobile && <>
|
|
|
|
<Link href="/apps" className='flex items-center mr-4'>
|
|
|
|
<LogoSite />
|
|
|
|
</Link>
|
|
|
|
<GithubStar />
|
|
|
|
</>}
|
|
|
|
</div>
|
|
|
|
{isMobile && (
|
|
|
|
<div className='flex'>
|
|
|
|
<Link href="/apps" className='flex items-center mr-4'>
|
|
|
|
<LogoSite />
|
|
|
|
</Link>
|
|
|
|
<GithubStar />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{!isMobile && (
|
|
|
|
<div className='flex items-center'>
|
|
|
|
<ExploreNav className={navClassName} />
|
|
|
|
<AppNav />
|
|
|
|
{isCurrentWorkspaceManager && <DatasetNav />}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<div className='flex items-center flex-shrink-0'>
|
|
|
|
<EnvNav />
|
|
|
|
<WorkspaceProvider>
|
|
|
|
<AccountDropdown isMobile={isMobile} />
|
|
|
|
</WorkspaceProvider>
|
|
|
|
</div>
|
2023-05-15 08:51:32 +08:00
|
|
|
</div>
|
2023-11-27 11:47:48 +08:00
|
|
|
{(isMobile && isShowNavMenu) && (
|
|
|
|
<div className='w-full flex flex-col p-2 gap-y-1'>
|
|
|
|
<ExploreNav className={navClassName} />
|
|
|
|
<AppNav />
|
|
|
|
{isCurrentWorkspaceManager && <DatasetNav />}
|
|
|
|
</div>
|
|
|
|
)}
|
2023-07-18 16:57:14 +08:00
|
|
|
</>
|
2023-05-15 08:51:32 +08:00
|
|
|
)
|
|
|
|
}
|
|
|
|
export default Header
|