import { splitByCase, upperFirst, camelCase, kebabCase } from 'scule' const playground = ({ name }) => { const upperName = splitByCase(name).map(p => upperFirst(p)).join('') const kebabName = kebabCase(name) return { filename: `playground/pages/${kebabName}.vue`, contents: ` ` } } const component = ({ name }) => { const upperName = splitByCase(name).map(p => upperFirst(p)).join('') const camelName = camelCase(name) const kebabName = kebabCase(name) return { filename: `src/runtime/components/${upperName}.vue`, contents: ` ` } } const theme = ({ name }) => { const kebabName = kebabCase(name) return { filename: `src/theme/${kebabName}.ts`, contents: ` export default (config: { colors: string[] }) => ({ slots: { root: '' }, variants: { }, defaultVariants: { } }) ` } } const test = ({ name }) => { const upperName = splitByCase(name).map(p => upperFirst(p)).join('') return { filename: `test/components/${upperName}.spec.ts`, contents: ` import { describe, it, expect } from 'vitest' import ${upperName}, { type ${upperName}Props } from '../../src/runtime/components/${upperName}.vue' import ComponentRender from '../component-render' describe('${upperName}', () => { it.each([ // Props ['with class', { props: { class: '' } }], ['with ui', { props: { ui: {} } }] ])('renders %s correctly', async (nameOrHtml: string, options: { props?: ${upperName}Props, slots?: any }) => { const html = await ComponentRender(nameOrHtml, options, ${upperName}) expect(html).toMatchSnapshot() }) }) ` } } export default { playground, component, theme, test }