mirror of
https://github.com/supabase/supabase.git
synced 2026-06-15 08:05:21 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import { useParams } from 'common'
|
|
import { Terminal } from 'lucide-react'
|
|
import { Card, CardContent, CardHeader, CardTitle } from 'ui'
|
|
import { EmptyStatePresentational } from 'ui-patterns'
|
|
|
|
import CommandRender from '@/components/interfaces/Functions/CommandRender'
|
|
|
|
export const MigrationsEmptyState = () => {
|
|
const { ref } = useParams()
|
|
|
|
const commands = [
|
|
{
|
|
comment: 'Link your project',
|
|
command: `supabase link --project-ref ${ref}`,
|
|
jsx: () => {
|
|
return (
|
|
<>
|
|
<span className="text-brand-600">supabase</span> link --project-ref {ref}
|
|
</>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
comment: 'Create a new migration called "new-migration"',
|
|
command: `supabase migration new new-migration`,
|
|
jsx: () => {
|
|
return (
|
|
<>
|
|
<span className="text-brand-600">supabase</span> migration new new-migration
|
|
</>
|
|
)
|
|
},
|
|
},
|
|
{
|
|
comment: 'Run all migrations for this project',
|
|
command: `supabase db push`,
|
|
jsx: () => {
|
|
return (
|
|
<>
|
|
<span className="text-brand-600">supabase</span> db push
|
|
</>
|
|
)
|
|
},
|
|
},
|
|
]
|
|
|
|
return (
|
|
<EmptyStatePresentational
|
|
icon={Terminal}
|
|
title="Run your first migration"
|
|
description="Create and run your first migration using the Supabase CLI."
|
|
className="gap-y-6"
|
|
>
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Terminal instructions</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<CommandRender commands={commands} />
|
|
</CardContent>
|
|
</Card>
|
|
</EmptyStatePresentational>
|
|
)
|
|
}
|