mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 01:14:23 +08:00
77 lines
2.4 KiB
TypeScript
77 lines
2.4 KiB
TypeScript
import { observer } from 'mobx-react-lite'
|
|
import Link from 'next/link'
|
|
|
|
import { IS_PLATFORM } from 'lib/constants'
|
|
import { useStore } from 'hooks'
|
|
import BreadcrumbsView from './BreadcrumbsView'
|
|
import OrgDropdown from './OrgDropdown'
|
|
import ProjectDropdown from './ProjectDropdown'
|
|
import FeedbackDropdown from './FeedbackDropdown'
|
|
import HelpPopover from './HelpPopover'
|
|
import NotificationsPopover from './NotificationsPopover'
|
|
|
|
const LayoutHeader = ({ customHeaderComponents, breadcrumbs = [], headerBorder = true }: any) => {
|
|
const { ui } = useStore()
|
|
const { selectedOrganization, selectedProject } = ui
|
|
|
|
return (
|
|
<div
|
|
className={`flex h-12 max-h-12 items-center justify-between py-2 px-5 ${
|
|
headerBorder ? 'dark:border-dark border-b' : ''
|
|
}`}
|
|
>
|
|
<div className="-ml-2 flex items-center text-sm">
|
|
{/* Organization is selected */}
|
|
{selectedOrganization ? (
|
|
<>
|
|
{/* Org Dropdown */}
|
|
<OrgDropdown />
|
|
|
|
{/* Project is selected */}
|
|
{selectedProject && (
|
|
<>
|
|
<span className="text-scale-800 dark:text-scale-700">
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
width="16"
|
|
height="16"
|
|
stroke="currentColor"
|
|
strokeWidth="1"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
fill="none"
|
|
shapeRendering="geometricPrecision"
|
|
>
|
|
<path d="M16 3.549L7.12 20.600"></path>
|
|
</svg>
|
|
</span>
|
|
{/* Project Dropdown */}
|
|
<ProjectDropdown />
|
|
</>
|
|
)}
|
|
</>
|
|
) : (
|
|
<Link href="/">
|
|
<a
|
|
className={`text-scale-1200 cursor-pointer px-2 py-1 text-xs focus:bg-transparent focus:outline-none`}
|
|
>
|
|
Supabase
|
|
</a>
|
|
</Link>
|
|
)}
|
|
{/* Additional breadcrumbs are supplied */}
|
|
<BreadcrumbsView defaultValue={breadcrumbs} />
|
|
</div>
|
|
<div className="flex items-center space-x-2">
|
|
{customHeaderComponents && customHeaderComponents}
|
|
{IS_PLATFORM && <HelpPopover />}
|
|
{IS_PLATFORM && <FeedbackDropdown />}
|
|
{IS_PLATFORM && <NotificationsPopover />}
|
|
</div>
|
|
</div>
|
|
// </div>
|
|
// </div>
|
|
)
|
|
}
|
|
export default observer(LayoutHeader)
|