Files
supabase/apps/studio/components/layouts/IntegrationsLayout/IntegrationWindowLayout.tsx
Jonathan Summers-Muir 754ee55cd0 chore: update themes and add dark-new theme set (#20865)
* chore: update themes and add dark-new theme set

* chore: update

* add deep dark css theme

* fix issue with wrong class

* chore: add `bg-studio` as a custom remapped color for studio background

* updated surface classes to use a surface-75.

* update backgrounds and borders

* Update CardButton.tsx

* Update NavigationIconButton.tsx

* chore: add theme selection

* Update package.json

* Update index.ts

* Update package.json

* update alias

* Update ThemeSettings.tsx

* chore: split up theme support

* remove old code

* Update index.ts

* add back in

* Update ThemeSettingsOld.tsx

* fix issue with system theme leaking through

* reset themes

* update imports

* packagelock updated

* Update ThemeSettingsWithPreferredTheme.tsx

* Update system.svg

* Update NavigationIconButton.tsx

* Update NavigationBar.tsx

* update

* Update light.css

* updated some colors

* light mode updated

* hacked

* prettier

---------

Co-authored-by: Francesco Sansalvadore <f.sansalvadore@gmail.com>
Co-authored-by: Kevin Grüneberg <k.grueneberg1994@gmail.com>
2024-02-15 16:56:18 +01:00

99 lines
3.0 KiB
TypeScript

import Link from 'next/link'
import { PropsWithChildren, ReactNode, forwardRef } from 'react'
import { IconBook, IconLifeBuoy, IconX, LoadingLine, cn } from 'ui'
import { withAuth } from 'hooks'
import { BASE_PATH } from 'lib/constants'
import { ScaffoldContainer } from '../Scaffold'
export type IntegrationWindowLayoutProps = {
title: string
integrationIcon: ReactNode
loading?: boolean
docsHref?: string
}
const IntegrationWindowLayout = ({
title,
integrationIcon,
children,
loading = false,
docsHref,
}: PropsWithChildren<IntegrationWindowLayoutProps>) => {
return (
<div className="flex w-full flex-col">
<Header title={title} integrationIcon={integrationIcon} />
<LoadingLine loading={loading} />
<main className="overflow-auto flex flex-col h-full bg">{children}</main>
<ScaffoldContainer className="bg-studio flex flex-row gap-6 py-6 border-t">
{docsHref && (
<Link
href={docsHref}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-xs text-foreground-light hover:text"
>
<IconBook size={16} />
Docs
</Link>
)}
<Link
href={'https://supabase.com/support'}
target="_blank"
rel="noopener noreferrer"
className="flex items-center gap-2 text-xs text-light hover:text"
>
<IconLifeBuoy size={16} />
Support
</Link>
</ScaffoldContainer>
</div>
)
}
const INTEGRATION_LAYOUT_MAX_WIDTH = '' // 'max-w-[720px]'
export default withAuth(IntegrationWindowLayout)
export const IntegrationWindowLayoutWithoutAuth = IntegrationWindowLayout
export type HeaderProps = {
title: string
integrationIcon: ReactNode
}
const Header = ({ title, integrationIcon }: HeaderProps) => {
return (
<div className="bg">
<ScaffoldContainer className={cn('py-3', INTEGRATION_LAYOUT_MAX_WIDTH)}>
<div className="flex items-center gap-6 w-full">
<div className="flex gap-2 items-center">
<div className="bg-white shadow border rounded p-1 w-8 h-8 flex justify-center items-center">
<img src={`${BASE_PATH}/img/supabase-logo.svg`} alt="Supabase" className="w-4" />
</div>
<IconX className="text-border-stronger" strokeWidth={2} size={16} />
{integrationIcon}
</div>
<span className="text-sm" title={title}>
{title}
</span>
</div>
</ScaffoldContainer>
</div>
)
}
const maxWidthClasses = 'mx-auto w-full max-w-[1600px]'
const paddingClasses = 'px-6 lg:px-14 xl:px-28 2xl:px-32'
const IntegrationScaffoldContainer = forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => {
return <div ref={ref} {...props} className={cn(maxWidthClasses, paddingClasses, className)} />
})
IntegrationScaffoldContainer.displayName = 'IntegrationScaffoldContainer'
export { IntegrationScaffoldContainer }