mirror of
https://github.com/supabase/supabase.git
synced 2026-05-31 18:03:33 +08:00
* start * added panels * remove stuff * fixes and refinements * clean up * remove old assistant panel * resizable assistant kinda * use icon * Add missing package * remove canvas * add suggestions * updated empty state if no tables exist * fix table condition * Implement diffing if using assistant in sql editor * Reinstate old assistant in SQL editor if feature preview is off * pane size adjustment * assistant button corners * Add SQL snippet content to assistant if opening assistant in sql editor * Add the necessary checks for opt in and hipaa * revert adding snippet to assistant when opening assistant in sql editor * Add cmd i shortcut * Add admonitions for when disablePrompt is toggled on, and if no api key is set. Add footer note RE rate limitation * Bump ai package in packages * some fixes for backwards compability depending on feature preview toggled * Rename feature preview property for new assistant * Smol fix * Prevent SQL snippet from running until message is finished * only loading last message * fix z-index * save chat state to global state * add debug to failed ai queries * Add basic contextual invalidation * Add explain code action to SQL editor * Add link to abort ongoing queries from SqlSnippet * Update feature preview content * Fix * Fix * Fix * Te4st * Fix tests * ONly show ai button within a project * Fix PH tracking * Beef up a bit more event tracking * Rough fix to padding when assistant is open * A bit more telemetry stuff * Update prompts * fix rls editing via assistant * Update generate-v3.ts prompt to get auth schema too * Add policy satement to assistant when editing * Address all comments * fixc * Fix SqlSnippet not taking full width on larger viewports * Adjust max width --------- Co-authored-by: Saxon Fletcher <saxonafletcher@gmail.com>
40 lines
1019 B
TypeScript
40 lines
1019 B
TypeScript
import Link from 'next/link'
|
|
import { ReactMarkdown, ReactMarkdownOptions } from 'react-markdown/lib/react-markdown'
|
|
import remarkGfm from 'remark-gfm'
|
|
|
|
import { cn } from 'ui'
|
|
|
|
interface Props extends Omit<ReactMarkdownOptions, 'children' | 'node'> {
|
|
className?: string
|
|
content: string
|
|
extLinks?: boolean
|
|
}
|
|
|
|
const Markdown = ({ className, content = '', extLinks = false, ...props }: Props) => {
|
|
return (
|
|
<ReactMarkdown
|
|
remarkPlugins={[remarkGfm]}
|
|
components={{
|
|
h3: ({ children }) => <h3 className="mb-1">{children}</h3>,
|
|
a: ({ href, children }) => {
|
|
if (extLinks) {
|
|
return (
|
|
<a href={href} target="_blank" rel="noreferrer noopener">
|
|
{children}
|
|
</a>
|
|
)
|
|
} else {
|
|
return <Link href={href ?? '/'}>{children}</Link>
|
|
}
|
|
},
|
|
}}
|
|
{...props}
|
|
className={cn('prose text-sm', className)}
|
|
>
|
|
{content}
|
|
</ReactMarkdown>
|
|
)
|
|
}
|
|
|
|
export { Markdown }
|