mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
156f904018
- move navigation components to `apps/studio/components/layouts/Navigation` - add [FloatingMobileToolbar](https://github.com/supabase/supabase/pull/43444/changes#diff-3dffe47fd51ca851d612d8728e03b2dc344ec213d4f3a46a824d3fa32a7cc851) as quick access to tools such as search, assistant, inline editor, etc - behind feature flag and feature preview (true by default as it's a bit annoying to have to enable it all the time as previews are stored in local-storage) - fix sidebar panels closing on viewport resizing (regression from previous pr) https://github.com/user-attachments/assets/d6881e3b-5128-4306-bb82-3ca39c755dba <img width="986" height="697" alt="Screenshot 2026-03-12 at 12 40 11" src="https://github.com/user-attachments/assets/da8511e2-7d01-4237-b814-596031c747c5" />
30 lines
809 B
TypeScript
30 lines
809 B
TypeScript
export type HelpOptionId =
|
|
| 'assistant'
|
|
| 'docs'
|
|
| 'troubleshooting'
|
|
| 'discord'
|
|
| 'status'
|
|
| 'support'
|
|
|
|
export const HELP_OPTION_IDS = [
|
|
'assistant',
|
|
'docs',
|
|
'troubleshooting',
|
|
'discord',
|
|
'status',
|
|
'support',
|
|
] as const satisfies readonly HelpOptionId[]
|
|
|
|
export const ASSISTANT_SUGGESTIONS = {
|
|
name: 'Support' as const,
|
|
initialInput: 'I need help with my project',
|
|
suggestions: {
|
|
title: 'I can help you with your project, here are some example prompts to get you started:',
|
|
prompts: [
|
|
{ label: 'Database Health', description: 'Summarise my database health and performance' },
|
|
{ label: 'Debug Logs', description: 'View and debug my edge function logs' },
|
|
{ label: 'RLS Setup', description: 'Implement row level security for my tables' },
|
|
],
|
|
},
|
|
}
|