| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- // @ts-nocheck
- import dayjs from 'dayjs'
- import { ArrowRight, ExternalLink, Github } from 'lucide-react'
- import Image from 'next/legacy/image'
- import Link from 'next/link'
- import { forwardRef, HTMLAttributes, ReactNode, RefAttributes } from 'react'
- import { Badge, Button, cn } from 'ui'
- import { Markdown } from '@/components/interfaces/Markdown'
- import { ButtonTooltip } from '@/components/ui/ButtonTooltip'
- import type {
- Integration,
- IntegrationProjectConnection,
- } from '@/data/integrations/integrations.types'
- import { useProjectDetailQuery } from '@/data/projects/project-detail-query'
- import { BASE_PATH } from '@/lib/constants'
- import { getIntegrationConfigurationUrl } from '@/lib/integration-utils'
- const ICON_STROKE_WIDTH = 2
- const ICON_SIZE = 14
- export interface IntegrationInstallationProps extends RefAttributes<HTMLLIElement> {
- title: string
- integration: Integration
- disabled?: boolean
- }
- type HandleIconType = Integration['integration']['name'] | 'Briven'
- const HandleIcon = ({ type, className }: { type: HandleIconType; className?: string }) => {
- switch (type) {
- case 'GitHub':
- return <Github strokeWidth={ICON_STROKE_WIDTH} size={ICON_SIZE} />
- break
- // case 'Netlify':
- // return <Square strokeWidth={ICON_STROKE_WIDTH} size={ICON_SIZE} />
- // break
- case 'Vercel':
- return (
- <svg
- xmlns="http://www.w3.org/2000/svg"
- fill="white"
- viewBox="0 0 512 512"
- className={cn('w-3.5', className)}
- >
- <path fillRule="evenodd" d="M256,48,496,464H16Z" />
- </svg>
- )
- break
- case 'Briven':
- return <img src={`${BASE_PATH}/img/briven-logo.svg`} alt="Briven" className="w-3.5"></img>
- break
- default:
- return <></>
- break
- }
- }
- const Avatar = ({ src }: { src: string | undefined }) => {
- return (
- <div className="relative border shadow-lg w-8 h-8 rounded-full overflow-hidden">
- <Image
- src={src || ''}
- width={30}
- height={30}
- layout="fill"
- alt="avatar"
- className="relative"
- />
- </div>
- )
- }
- export const IntegrationInstallation = forwardRef<HTMLLIElement, IntegrationInstallationProps>(
- ({ integration, disabled, ...props }, ref) => {
- const IntegrationIconBlock = () => {
- return (
- <div className="bg-black text-white w-8 h-8 rounded-sm flex items-center justify-center">
- <HandleIcon type={integration.integration.name} />
- </div>
- )
- }
- return (
- <li
- ref={ref}
- key={integration.id}
- className="bg-surface-100 border shadow-xs flex justify-between items-center px-8 py-4 rounded-lg"
- {...props}
- >
- <div className="flex gap-6 items-center">
- <div className="flex gap-3 items-center">
- <div className="flex -space-x-1">
- <IntegrationIconBlock />
- <Avatar src={integration?.metadata?.account.avatar} />
- </div>
- </div>
- <div className="flex flex-col gap-0">
- <div className="flex items-center gap-2">
- <span className="text-foreground text-sm font-medium">
- {integration.metadata?.account.name ||
- (integration.metadata !== undefined &&
- 'gitHubConnectionOwner' in integration.metadata &&
- integration.metadata?.gitHubConnectionOwner)}
- </span>
- <Badge>{integration.metadata?.account.type}</Badge>
- </div>
- <div className="flex flex-col gap-0">
- <span className="text-foreground-lighter text-xs">
- Created {dayjs(integration.inserted_at).fromNow()}
- </span>
- <span className="text-foreground-lighter text-xs">
- Added by {integration?.added_by?.primary_email}
- </span>
- </div>
- </div>
- </div>
- <Button asChild disabled={disabled} type="default" iconRight={<ExternalLink />}>
- {disabled ? (
- <p>Manage</p>
- ) : (
- <Link
- href={getIntegrationConfigurationUrl(integration)}
- target="_blank"
- rel="noopener noreferrer"
- >
- Manage
- </Link>
- )}
- </Button>
- </li>
- )
- }
- )
- export interface IntegrationConnectionProps extends HTMLAttributes<HTMLLIElement> {
- connection: IntegrationProjectConnection
- type: Integration['integration']['name']
- actions?: ReactNode
- showNode?: boolean
- orientation?: 'horizontal' | 'vertical'
- }
- export const IntegrationConnection = forwardRef<HTMLLIElement, IntegrationConnectionProps>(
- (
- { connection, type, actions, showNode = true, orientation = 'horizontal', className, ...props },
- ref
- ) => {
- const { data: project } = useProjectDetailQuery({ ref: connection.briven_project_ref })
- return (
- <li
- ref={ref}
- key={connection.id}
- {...props}
- className={cn(showNode && 'pl-8 ml-6 border-l border-muted', 'relative')}
- >
- {showNode && (
- <div className="absolute w-8 rounded-bl-full border-b border-l border-muted h-10 -left-px"></div>
- )}
- <div
- className={cn(
- orientation === 'horizontal'
- ? 'flex items-center justify-between gap-2'
- : 'flex flex-col gap-3',
- 'bg-surface-100 border shadow-xs px-6 py-4 rounded-lg',
- className
- )}
- >
- <div className="flex flex-col gap-1 min-w-0">
- <div className="flex items-center gap-2">
- <div className="shrink-0 flex gap-x-2 items-center max-w-40 ">
- <HandleIcon type={'Briven'} />
- <span title={project?.name} className="text-sm truncate">
- {project?.name}
- </span>
- </div>
- <ArrowRight
- size={14}
- className="shrink-0 text-foreground-lighter"
- strokeWidth={1.5}
- />
- <div className="flex-1 min-w-0 flex gap-2 items-center">
- {!connection?.metadata?.framework ? (
- <div className="bg-black text-white w-4 h-4 rounded-sm flex items-center justify-center">
- <HandleIcon type={type} className={'w-2.5!'} />
- </div>
- ) : (
- <img
- src={`${BASE_PATH}/img/icons/frameworks/${connection.metadata.framework}.svg`}
- width={21}
- height={21}
- alt={`icon`}
- />
- )}
- {type === 'GitHub' ? (
- <a
- title={connection.metadata.name}
- href={`https://github.com/${connection.metadata?.name}`}
- className="text-sm truncate"
- target="_blank"
- rel="noreferrer"
- >
- {connection.metadata?.name}
- </a>
- ) : (
- <span title={connection.metadata.name} className="text-sm truncate">
- {connection.metadata?.name}
- </span>
- )}
- </div>
- </div>
- <div className="flex flex-col gap-0">
- <span className="text-foreground-lighter text-xs">
- Connected {dayjs(connection?.inserted_at).fromNow()}
- </span>
- <span className="text-foreground-lighter text-xs">
- Added by {connection?.added_by?.primary_email}
- </span>
- </div>
- </div>
- <div className="shrink-0">{actions}</div>
- </div>
- </li>
- )
- }
- )
- export const IntegrationConnectionOption = forwardRef<HTMLLIElement, IntegrationConnectionProps>(
- ({ connection, type, ...props }, ref) => {
- const { data: project } = useProjectDetailQuery({ ref: connection.briven_project_ref })
- return (
- <li
- ref={ref}
- key={connection.id}
- {...props}
- className={cn(
- 'bg-surface-100 border shadow-xs flex justify-between items-center px-8 py-4 rounded-lg'
- )}
- >
- <div className="flex flex-col gap-1">
- <div className="flex gap-2 items-center">
- <HandleIcon type={'Briven'} />
- <span className="text-sm">{project?.name}</span>
- <ArrowRight size={14} className="text-foreground-lighter" strokeWidth={1.5} />
- <HandleIcon type={type} />
- <span className="text-sm">{connection.metadata.name}</span>
- </div>
- <span className="text-foreground-lighter text-xs">
- Connected {dayjs(connection.inserted_at).fromNow()}
- </span>
- </div>
- <Button type="default">Connect</Button>
- </li>
- )
- }
- )
- export const EmptyIntegrationConnection = forwardRef<
- HTMLDivElement,
- HTMLAttributes<HTMLDivElement> & {
- showNode?: boolean
- onClick: () => void
- disabled?: boolean
- }
- >(({ className, showNode = true, onClick, disabled, ...props }, ref) => {
- return (
- <div
- ref={ref}
- {...props}
- className={cn(
- showNode && 'ml-6 pl-8 mt-4 border-l',
- 'relative pb-2',
- 'last:border-l-transparent',
- className
- )}
- >
- {showNode && (
- <div className="absolute w-8 rounded-bl-full border-b border-l border-muted h-14 -top-4 -left-px"></div>
- )}
- <div
- className={cn(
- 'w-full',
- 'border border-dashed bg-surface-100 border-overlay',
- 'flex h-20 px-10 rounded-lg justify-center items-center'
- )}
- >
- <ButtonTooltip
- type="default"
- disabled={disabled}
- onClick={() => onClick()}
- tooltip={{
- content: {
- side: 'bottom',
- text: disabled ? 'Additional permissions required to add connection' : undefined,
- },
- }}
- >
- Add new project connection
- </ButtonTooltip>
- </div>
- </div>
- )
- })
- interface IntegrationConnectionHeader extends React.HTMLAttributes<HTMLDivElement> {
- name?: string
- markdown?: string
- showNode?: boolean
- }
- export const IntegrationConnectionHeader = forwardRef<HTMLDivElement, IntegrationConnectionHeader>(
- ({ className, markdown = '', showNode = true, ...props }, ref) => {
- return (
- <div
- {...props}
- ref={ref}
- className={cn(
- showNode && 'border-l border-muted ml-6 pl-8',
- 'py-4 prose text-sm',
- className
- )}
- >
- {props.title && <h5 className="text-foreground">{props.title}</h5>}
- <Markdown content={markdown} />
- </div>
- )
- }
- )
- IntegrationInstallation.displayName = 'IntegrationInstallation'
- IntegrationConnection.displayName = 'IntegrationConnection'
- IntegrationConnectionHeader.displayName = 'IntegrationConnectionHeader'
- EmptyIntegrationConnection.displayName = 'EmptyIntegrationConnection'
- IntegrationConnectionOption.displayName = 'IntegrationConnectionOption'
|