From 46bdb3df98c9ffffb5eed07d075b26a16a3fa5c3 Mon Sep 17 00:00:00 2001 From: p-sw Date: Sat, 15 Jun 2024 02:19:40 +0900 Subject: [PATCH] feat(cli): add getDirComponentRequiredFiles --- packages/cli/src/helpers/path.ts | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/helpers/path.ts b/packages/cli/src/helpers/path.ts index 85a9338..a59fa0a 100644 --- a/packages/cli/src/helpers/path.ts +++ b/packages/cli/src/helpers/path.ts @@ -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( + 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 { return path.join(path.dirname(_path), path.basename(_path, path.extname(_path)) + extension) }