From 5a41b84c9a3eb2882d64e7fdabdb33ff1e71bf91 Mon Sep 17 00:00:00 2001 From: p-sw <shinwoo.park@psw.kr> Date: Sat, 15 Jun 2024 03:13:04 +0900 Subject: [PATCH] refactor(cli): remove getComponentsInstalled & make getDirComponentRequiredFiles --- packages/cli/src/helpers/path.ts | 31 ++++--------------------------- 1 file changed, 4 insertions(+), 27 deletions(-) diff --git a/packages/cli/src/helpers/path.ts b/packages/cli/src/helpers/path.ts index 356e19a..549c707 100644 --- a/packages/cli/src/helpers/path.ts +++ b/packages/cli/src/helpers/path.ts @@ -4,41 +4,18 @@ import path from 'node:path' import {RegistryComponent, ResolvedConfig} from '../const.js' -export async function getComponentsInstalled(components: string[], config: ResolvedConfig) { - const componentPath = path.join(process.cwd(), config.paths.components) - if (!existsSync(componentPath)) { - return [] - } - - const dir = await readdir(componentPath) - const dirOnlyContainsComponent = [] - for (const fileName of dir) { - if (components.includes(fileName)) { - dirOnlyContainsComponent.push(fileName) - } - } - - return dirOnlyContainsComponent -} - -export async function getDirComponentInstalledFiles<T extends RegistryComponent & {type: 'dir'}>( +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 [] + return componentObject.files } - const dir = await readdir(componentPath) - const dirOnlyContainsComponentFile = [] - for (const fileName of dir) { - if (componentObject.files.includes(fileName)) { - dirOnlyContainsComponentFile.push(fileName) - } - } + const dir = await readdir(componentPath):w - return dirOnlyContainsComponentFile + return componentObject.files.map((filename) => !dir.includes(filename)) } export async function checkComponentInstalled(component: RegistryComponent, config: ResolvedConfig): Promise<boolean> {