feat(cli): add getDirComponentRequiredFiles

This commit is contained in:
p-sw 2024-06-15 02:19:40 +09:00
parent 0be21e2a8d
commit 46bdb3df98

View File

@ -2,7 +2,7 @@ import {existsSync} from 'node:fs'
import {readdir} from 'node:fs/promises'
import path from 'node:path'
import {ResolvedConfig} from '../const.js'
import {RegistryComponent, ResolvedConfig} from '../const.js'
export async function getComponentsInstalled(components: string[], config: ResolvedConfig) {
const componentPath = path.join(process.cwd(), config.paths.components)
@ -21,6 +21,26 @@ export async function getComponentsInstalled(components: string[], config: Resol
return []
}
export async function getDirComponentRequiredFiles<T extends RegistryComponent & {type: 'dir'}>(
componentObject: T,
config: ResolvedConfig,
) {
const componentPath = path.join(process.cwd(), config.paths.components, componentObject.name)
if (!existsSync(componentPath)) {
return []
}
const dir = await readdir(componentPath)
const dirOnlyContainsComponentFile = []
for (const fileName of dir) {
if (componentObject.files.includes(fileName)) {
dirOnlyContainsComponentFile.push(fileName)
}
}
return dirOnlyContainsComponentFile
}
export async function changeExtension(_path: string, extension: string): Promise<string> {
return path.join(path.dirname(_path), path.basename(_path, path.extname(_path)) + extension)
}