import { upperFirst } from 'scule' interface Template { (options: { name: string }): { path: string, contents: string } } const api: Template = ({ name }) => ({ path: `server/api/${name}.ts`, contents: ` export default defineEventHandler((event) => { return 'Hello ${name}' }) ` }) const plugin: Template = ({ name }) => ({ path: `plugins/${name}.ts`, contents: ` export default defineNuxtPlugin((nuxtApp) => {}) ` }) const component: Template = ({ name }) => ({ path: `components/${name}.vue`, contents: ` ` }) const composable: Template = ({ name }) => { const nameWithUsePrefix = name.startsWith('use') ? name : `use${upperFirst(name)}` return { path: `composables/${name}.ts`, contents: ` export const ${nameWithUsePrefix} = () => { return ref() } ` } } const middleware: Template = ({ name }) => ({ path: `middleware/${name}.ts`, contents: ` export default defineNuxtRouteMiddleware((to, from) => {}) ` }) const layout: Template = ({ name }) => ({ path: `layouts/${name}.vue`, contents: ` ` }) const page: Template = ({ name }) => ({ path: `pages/${name}.vue`, contents: ` ` }) export const templates = { api, plugin, component, composable, middleware, layout, page } as Record