mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 03:24:19 +08:00
24 lines
491 B
TypeScript
24 lines
491 B
TypeScript
import { type ICommand } from './Command'
|
|
|
|
type ICommandSection = {
|
|
id: string
|
|
name: string
|
|
commands: Array<ICommand>
|
|
forceMount?: boolean
|
|
}
|
|
|
|
const toSectionId = (str: string) => str.toLowerCase().replace(/\s+/g, '-')
|
|
|
|
const section$new = (
|
|
name: string,
|
|
{ forceMount = false, id }: { forceMount?: boolean; id?: string } = {}
|
|
): ICommandSection => ({
|
|
id: id ?? toSectionId(name),
|
|
name,
|
|
forceMount,
|
|
commands: [],
|
|
})
|
|
|
|
export { section$new }
|
|
export type { ICommandSection }
|