Conversation
Summary of ChangesHello @dle234, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! 이 PR은 31기 지원서 접수를 위한 새로운 질문 양식과 인적사항 필드를 도입합니다. 지원자들은 이제 병역 사항을 포함한 업데이트된 개인 정보를 제공해야 하며, 각 지원 분야(개발자, 디자이너, 기획자)에 특화된 질문에 답변하게 됩니다. 이는 지원 과정의 효율성을 높이고 지원자 정보를 보다 상세하게 수집하기 위함입니다. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
이번 PR은 31기 신입 모집을 위해 지원서에 병역사항을 추가하고, 각 파트별 질문을 업데이트하는 변경사항을 담고 있습니다. 전체적으로 31기 모집을 위한 준비가 잘 이루어진 것으로 보입니다. 다만, 몇 가지 오타와 데이터 불일치, 그리고 코드 개선점을 발견하여 리뷰 코멘트를 남겼습니다. 특히 frontend/src/constants/index.ts 파일의 APPLICANT_KEYS 배열에 새로 추가된 military 키가 누락되어 있으니 꼭 추가해주셔야 합니다. 이 부분이 누락되면 관련 데이터가 올바르게 처리되지 않을 수 있습니다. 나머지 수정이 필요한 부분들도 코멘트를 확인 부탁드립니다.
| title: | ||
| "무언가에 깊게 빠지거나 파고 들어본 적이 있나요? 좋아하는 것을 위해서 주변에서 인정할 정도로 깊게 빠져본 적이 있다면 서술해 주세요.", | ||
| type: "textarea", | ||
| value: { name: "failual" }, |
There was a problem hiding this comment.
이거 기존에 있던 단어인가요?? ㅠㅠ
단어 수정이 필요해 보이긴 하네요..!
There was a problem hiding this comment.
넵 30기때 사용했던 파일 그대로 복사했는데 이전에 오타가 있었나봐요..! 수정하겠습니다!
| name: "failure", | ||
| require: true, | ||
| type: "textarea", | ||
| errorMessages: "협업에 있어서 중요하다고 생각되는 것을 입력해주세요.", |
| { id: 12, title: "자신을 어필할 수 있는 포트폴리오를 업로드해주세요." }, | ||
| { id: 13, title: "필수 확인 사항" }, | ||
| { id: 14, title: "개인정보 수집에 관한 안내 및 개인정보 수집" }, | ||
| { id: 15, title: "면접 가능시간을 선택해주세요.(중복 선택 가능)" }, |
| direction: "horizontal", | ||
| nodes: [ | ||
| { | ||
| name: "failual", |
| // type ScoreKeywordName = | ||
| // | "passion" | ||
| // | "clubInvolvement" | ||
| // | "collaboration" | ||
| // | "devotion"; | ||
|
|
||
| export const ScoreSequence: { | ||
| [key: number]: ScoreKeyword; | ||
| } = { | ||
| 0: "열정", | ||
| 1: "협업", | ||
| 2: "에코노베이션", | ||
| }; | ||
|
|
||
| export type Score = { | ||
| fieldName: ScoreKeyword; | ||
| score: number | ""; | ||
| }; | ||
|
|
||
| // type ScoreKeywordType = { | ||
| // title: ScoreKeyword; | ||
| // name: ScoreKeywordName; | ||
| // }; | ||
|
|
||
| // const INTERVIEW_SCORE_KEYWORD: ScoreKeywordType[] = [ | ||
| // { title: "실천력", name: "passion" }, | ||
| // { title: "동아리 활동의지", name: "clubInvolvement" }, | ||
| // { title: "협업", name: "collaboration" }, | ||
| // { title: "베풀려는 마음", name: "devotion" }, | ||
| // ]; |
| @@ -0,0 +1,75 @@ | |||
| export const APPLICANT_DESIGNER = [ | |||
There was a problem hiding this comment.
배열의 각 요소에 as를 사용하여 타입 단언을 하는 대신, 배열 자체에 타입을 지정하여 타입 안정성을 높이는 것이 좋습니다. 예를 들어, export const APPLICANT_DESIGNER: ApplicantNode[] = [...]와 같이 선언하고 각 요소의 as ...Node를 제거할 수 있습니다. 이 방식은 developer.ts와 manager.ts 파일에도 동일하게 적용할 수 있습니다.
| export const APPLICANT_DESIGNER = [ | |
| export const APPLICANT_DESIGNER: ApplicantNode[] = [ |
| { | ||
| id: 12, | ||
| title: | ||
| "협업(프로젝트, 팀 활동)에 있어서 가장 중요하다고 생각되는 것은 무엇인지 그 이유와 함께 서술해주세요. ", |
There was a problem hiding this comment.
해당 suggestion 받아주면 좋을듯 합니다~!
| direction: "horizontal", | ||
| nodes: [ | ||
| { | ||
| name: "deep", |
| title: | ||
| "무언가에 깊게 빠지거나 파고 들어본 적이 있나요? 좋아하는 것을 위해서 주변에서 인정할 정도로 깊게 빠져본 적이 있다면 서술해 주세요.", | ||
| type: "textarea", | ||
| value: { name: "failual" }, |
There was a problem hiding this comment.
이거 기존에 있던 단어인가요?? ㅠㅠ
단어 수정이 필요해 보이긴 하네요..!
| { | ||
| id: 12, | ||
| title: | ||
| "협업(프로젝트, 팀 활동)에 있어서 가장 중요하다고 생각되는 것은 무엇인지 그 이유와 함께 서술해주세요. ", |
There was a problem hiding this comment.
해당 suggestion 받아주면 좋을듯 합니다~!
cho-in-sik
left a comment
There was a problem hiding this comment.
수고하셨습니다!
제미나이 리뷰 좋네요! 오타도 잘 찾아주고..
언급된것 처럼 APPLICANT_KEYS에 military만 넣어주세요!
관련 이슈
작업 분류
PR을 통해 해결하려는 문제가 무엇인가요? 🚀
PR에서 핵심적으로 변경된 부분이 어떤 부분인가요? 👀
지원서 인적사항에 병역사항을 추가했습니다.
(칸반보드, 사용자 입력 질문란에 31.ts 파일 추가해서 질문 넣었어요!)
관리자, 회장단은 모든 코멘트 조회가 가능해야한다고 하는데, 코멘트 블러 작업 후에 진행해야할 것 같아서 남겨두었습니다.
핵심 변경사항 이외 추가적으로 변경된 사항이 있나요? ➕
지원 분야 별 질문 부분과 constant generation=31로 수정해놓았습니다.
추가적으로, 리뷰어가 리뷰하며 알아야 할 정보가 있나요? 🙌
이런 부분을 신경써서 봐주셨으면 좋겠어요. 🙋🏻♂️
체크리스트 ✅
reviewers설정assignees설정label설정