Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core, cli, vsc 구현 #1

Merged
merged 32 commits into from
Oct 15, 2024
Merged

core, cli, vsc 구현 #1

merged 32 commits into from
Oct 15, 2024

Conversation

jintak0401
Copy link
Collaborator

@jintak0401 jintak0401 commented Sep 26, 2024

Config

root/
└── _seisei/
    ├── config.json
    └── ExampleTemplate/
        └── {{fileName}}.ts
  • seisei를 사용하려면 위처럼 프로젝트가 구성되어 있어야 합니다.
  • _seisei 하위의 각 폴더들은 각자의 폴더명을 템플릿 이름으로 한 템플릿들이 됩니다.

config.json

export interface Config {
  base: string
  overwrite: {
    directory: boolean
    file: boolean
  }
  variants: Record<string, string>
}
  • base: cli 에서 사용하기 위한 기본 path
  • overwrite
    • directory: true일 경우, 코드 생성시 이미 존재하는 디렉토리라면 해당 디렉토리 삭제하여 재생성(= 기존 내용 모두 삭제). false일 경우, 기존 디렉토리 그대로 이용(= 기존 내용 모두 남아 있음)
    • file: true 일 경우, 기존 파일 내용 삭제 후 코드 생성. false일 경우, 코드 생성하지 않고 기존 파일 그대로 남겨둠.
  • variants: 템플릿에 있는 변수들을 대체할 때 사용할 기본 변수 값들.
    e.g.) ``{{name}}이라는 변수가 있을 때,variants.name = 'gambit'` 이라면 변수값 입력시, name 의 기본값으로 gambit이 들어갑니다.

Core

  • readConfigFile: _seisei/config.json 을 읽어서 object로 반환. 없는 값들은 default 값을 첨부하여 반환
  • getTemplates: _seisei 폴더 하위의 폴더들, 즉 템플릿들을 읽어들여서 리스트를 반환
  • getVariantsFromTemplate: 템플릿에 있는 모든 변수들({{...}} 형식)을 중복없는 문자열 리스트로 반환
  • generateCode: 주어진 path에 선택된 템플릿을 기반으로 모든 변수를 치환하여 폴더와 파일을 작성. 생성된 파일들의 path들을 문자열 리스트로 반환.
  • generateConfig: 주어진 path에 seisei/ 설정 폴더와 설정 json 파일 및 예시 템플릿을 생성

Cli

init

seisei init

설정 폴더가 없을 때 생성해주는 명령어로 아래와 같은 폴더와 파일을 생성해줍니다.

.
└── _seisei/
    ├── config.json
    └── ExampleTemplate/
        └── {{fileName}}.ts

seisei

설정 폴더를 기반으로 코드를 생성해주는 명령어.

  1. Template 선택
image
  1. 코드를 생성할 타겟 path 입력
image
  1. 덮어쓰기 여부 확인
image
  1. 변수값 입력
image

위와 같은 순서로 실행됩니다.

VSC

publisher

추후에 "Channel Corp" 로 publisher 바꿔서 올려야하지만, 일단 지금은 제 계정으로 올렸습니다.

seisei init

CLI의 seisei init 과 동일합니다. 선택된 디렉토리에 _seisei 폴더 및 config 파일을 생성해줍니다.

image

seisei code

CLI 순서와 거의 동일합니다.

  1. Template 선택
image
  1. 덮어쓰기 여부 확인
image
  1. 변수값 입력
image

위와 같은 순서로 실행됩니다.

@jintak0401 jintak0401 self-assigned this Sep 26, 2024
@jintak0401
Copy link
Collaborator Author

@Kanary159357

image

이 에러입니다

@Kanary159357
Copy link

Kanary159357 commented Oct 8, 2024

@Kanary159357

image 이 에러입니다

changeset 달고 core까지 배포하기로

@jintak0401 jintak0401 merged commit 46df730 into main Oct 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants