feat(cli): add command handles directory library & component installation

This commit is contained in:
p-sw 2024-06-15 02:33:30 +09:00
parent 2d68a5051f
commit 66232b2b9a

View File

@ -2,15 +2,16 @@ import {Args, Command, Flags} from '@oclif/core'
import {loadConfig, validateConfig} from '../helpers/config.js' import {loadConfig, validateConfig} from '../helpers/config.js'
import {existsSync} from 'node:fs' import {existsSync} from 'node:fs'
import {mkdir, writeFile} from 'node:fs/promises' import {mkdir, writeFile} from 'node:fs/promises'
import {join, dirname} from 'node:path' import {join} from 'node:path'
import {getAvailableComponentNames, getComponentRealname, getComponentURL, getRegistry} from '../helpers/registry.js' import {getAvailableComponentNames, getComponentRealname, getComponentURL, getRegistry} from '../helpers/registry.js'
import ora from 'ora' import ora from 'ora'
import React, {ComponentPropsWithoutRef} from 'react' import React, {ComponentPropsWithoutRef} from 'react'
import {render, Box} from 'ink' import {render, Box} from 'ink'
import {SearchBox} from '../components/SearchBox.js' import {SearchBox} from '../components/SearchBox.js'
import {getComponentsInstalled} from '../helpers/path.js' import {getComponentsInstalled, getDirComponentInstalledFiles} from '../helpers/path.js'
import {Choice} from '../components/Choice.js' import {Choice} from '../components/Choice.js'
import {colorize} from '@oclif/core/ux' import {colorize} from '@oclif/core/ux'
import {safeFetch} from '../helpers/safeFetcher.js'
function Generator() { function Generator() {
let complete: boolean = false let complete: boolean = false
@ -100,12 +101,12 @@ export default class Add extends Command {
const resolvedConfig = await validateConfig((message: string) => this.log(message), await loadConfig(flags.config)) const resolvedConfig = await validateConfig((message: string) => this.log(message), await loadConfig(flags.config))
const componentFolder = join(process.cwd(), resolvedConfig.paths.components) const componentFolder = join(process.cwd(), resolvedConfig.paths.components)
const libFile = join(process.cwd(), resolvedConfig.paths.lib) const libFolder = join(process.cwd(), resolvedConfig.paths.lib)
if (!existsSync(componentFolder)) { if (!existsSync(componentFolder)) {
await mkdir(componentFolder, {recursive: true}) await mkdir(componentFolder, {recursive: true})
} }
if (!existsSync(dirname(libFile))) { if (!existsSync(libFolder)) {
await mkdir(dirname(libFile), {recursive: true}) await mkdir(libFolder, {recursive: true})
} }
const loadRegistryOra = ora('Fetching registry...').start() const loadRegistryOra = ora('Fetching registry...').start()
@ -183,40 +184,75 @@ export default class Add extends Command {
} }
const libFileOra = ora('Installing required library...').start() const libFileOra = ora('Installing required library...').start()
if (!existsSync(libFile)) { let successCount = 0
const libFileContentResponse = await fetch(registry.base + registry.paths.lib) for await (const libFile of registry.lib) {
const filePath = join(libFolder, libFile)
if (!existsSync(filePath)) {
const libFileContentResponse = await safeFetch(registry.base + registry.paths.lib.replace('libName', libFile))
if (!libFileContentResponse.ok) { if (!libFileContentResponse.ok) {
libFileOra.fail( libFileOra.fail(libFileContentResponse.message)
`Error while fetching library content: ${libFileContentResponse.status} ${libFileContentResponse.statusText}`,
)
return return
} }
const libFileContent = await libFileContentResponse.text() const libFileContent = await libFileContentResponse.response.text()
await writeFile(libFile, libFileContent) await writeFile(filePath, libFileContent)
libFileOra.succeed('Library is successfully installed!') successCount++
}
}
if (successCount > 1) {
libFileOra.succeed('Successfully installed library files!')
} else { } else {
libFileOra.succeed('Library is already installed!') libFileOra.succeed('Library files are already installed!')
} }
const componentFileOra = ora(`Installing ${name} component...`).start() const componentFileOra = ora(`Installing ${name} component...`).start()
const componentObject = registry.components[name]
if (componentObject.type === 'file') {
const componentFile = join(componentFolder, registry.components[name].name) const componentFile = join(componentFolder, registry.components[name].name)
if (existsSync(componentFile) && !force) { if (existsSync(componentFile) && !force) {
componentFileOra.succeed(`Component is already installed! (${componentFile})`) componentFileOra.succeed(`Component is already installed! (${componentFile})`)
} else { } else {
const componentFileContentResponse = await fetch(await getComponentURL(registry, name)) const componentFileContentResponse = await safeFetch(await getComponentURL(registry, name))
if (!componentFileContentResponse.ok) { if (!componentFileContentResponse.ok) {
componentFileOra.fail( componentFileOra.fail(componentFileContentResponse.message)
`Error while fetching component file content: ${componentFileContentResponse.status} ${componentFileContentResponse.statusText}`,
)
return return
} }
const componentFileContent = (await componentFileContentResponse.text()).replaceAll( const componentFileContent = (await componentFileContentResponse.response.text()).replaceAll(
/import\s+{[^}]*}\s+from\s+"@pswui-lib"/g, /import\s+{[^}]*}\s+from\s+"@pswui-lib"/g,
(match) => match.replace(/@pswui-lib/, resolvedConfig.import.lib), (match) => match.replace(/@pswui-lib/, resolvedConfig.import.lib),
) )
await writeFile(componentFile, componentFileContent) await writeFile(componentFile, componentFileContent)
componentFileOra.succeed('Component is successfully installed!') componentFileOra.succeed('Component is successfully installed!')
} }
} else if (componentObject.type === 'dir') {
const componentDir = join(componentFolder, componentObject.name)
if (!existsSync(componentDir)) {
await mkdir(componentDir, {recursive: true})
}
const installed = await getDirComponentInstalledFiles(componentObject, resolvedConfig)
if (installed.length === 0 && !force) {
componentFileOra.succeed(`Component is already installed! (${componentDir})`)
} else {
const files = componentObject.files.filter((filename) => !installed.includes(filename))
for await (const filename of files) {
const componentFile = join(componentDir, filename)
if (!existsSync(componentFile) || force) {
const componentFileContentResponse = await safeFetch(
await getComponentURL(registry, componentObject.name, filename),
)
if (!componentFileContentResponse.ok) {
componentFileOra.fail(componentFileContentResponse.message)
return
}
const componentFileContent = (await componentFileContentResponse.response.text()).replaceAll(
/import\s+{[^}]*}\s+from\s+"@pswui-lib"/g,
(match) => match.replace(/@pswui-lib/, resolvedConfig.import.lib),
)
await writeFile(componentFile, componentFileContent)
}
}
componentFileOra.succeed('Component is successfully installed!')
}
}
this.log('Now you can import the component.') this.log('Now you can import the component.')
} }