-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: 29기 지원서 질문 데이터 추가 #249
Merged
+946
−81
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
f5318a1
refactor: 줄바꿈 설정 변경
7c0f19a
chore: 지원서 페이지 분야별 질문 29기로 변경
4313252
refactor: 줄바꿈을 위한 속성 추가
e95cef1
refactor: subtitle bold 처리를 위한 리팩토링
20c4fa7
chore: 29기 지원서 공통 질문 추가
5657cb5
chore: 29기 디자이너 분야별 질문 추가
43b4ebc
chore: 29기 개발자 분야별 질문 추가
041b83f
chore: 29기 지원서 기획자 분야별 질문 추가
07f2ed6
chore: 면접 가능 시간 업데이트
b37e90e
chore: 기획자 14번 질문 id 수정
be300ed
chore: 29기 지원서 추가
ec9da34
chore: 29기 지원서 평가 기준 업데이트
1bd72f7
chore: 지원서 기수 업데이트
8ea2e35
fix: ApplicationNavbar가 올바르게 보이지 않는 문제 해결
fbedd5e
refactor: humanName 오타 수정
40ec4a1
refactor: 개인 정보 수집 동의 alter 문구 수정
aec213b
refactor: CustomHuman 컴포넌트 humanName 오타 수정
75b75fc
refactor: 필수 확인 문구 온점 추가
5f445d1
refactor: Fregment 태그 제거
a488b50
chore: 불필요한 의존성 파일 삭제
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,295 @@ | ||
import type { ApplicationQuestion } from "../type"; | ||
|
||
export const APPLICATION_DESIGN: ApplicationQuestion[] = [ | ||
{ | ||
id: 5, | ||
title: "자기소개 및 에코노베이션에 지원하게 된 계기를 서술해 주세요.", | ||
direction: "horizontal", | ||
require: true, | ||
nodes: [ | ||
{ | ||
name: "reason", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "에코노베이션에 지원하게 된 계기를 입력해주세요.", | ||
}, | ||
], | ||
}, | ||
{ | ||
id: 6, | ||
title: "디자이너를 희망하는 이유는 무엇인가요?", | ||
subtitle: | ||
"본인이 생각하는 디자이너는 무엇인지, 디자이너를 희망하게 된 이유는 무엇인지 구체적으로 작성해주세요.", | ||
direction: "horizontal", | ||
require: true, | ||
nodes: [ | ||
{ | ||
name: "future", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "디자이너를 희망하는 이유를 입력해주세요.", | ||
}, | ||
], | ||
}, | ||
{ | ||
id: 7, | ||
title: | ||
"UI/UX 디자인 작업물들 중 가장 자신 있는 디자인 작업물을 설명하고, 이를 통해 배우게 된 점이 있다면 서술해 주세요.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "workDescript", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "디자인 작업물을 설명해주세요.", | ||
}, | ||
], | ||
require: true, | ||
}, | ||
{ | ||
id: 8, | ||
title: | ||
"UI/UX 디자인을 할 때, 가장 중요한 것은 무엇이라고 생각하나요? 한 가지 키워드를 중심으로 서술해주세요.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "keyword", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "가장 중요한 것을 서술해 주세요.", | ||
}, | ||
], | ||
require: true, | ||
}, | ||
{ | ||
id: 9, | ||
title: | ||
"우리 주변의 IT 서비스 중에 UI/UX를 개선하고 싶은 서비스가 있다면, 어떤 점을 '왜' 그리고 '어떻게' 개선하고 싶은지 서술해 주세요.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "betterment", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "개선하고 싶은 서비스를 서술해주세요.", | ||
}, | ||
], | ||
require: true, | ||
}, | ||
{ | ||
id: 10, | ||
title: | ||
"무언가에 깊게 빠지거나 파고 들어본 적이 있나요? 좋아하는 것을 위해서 주변에서 인정할 정도로 깊게 빠져본 적이 있다면 서술해 주세요.", | ||
subtitle: "IT 관련 경험이 아니어도 좋습니다.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "drain", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "깊게 빠져본 경험을 입력해주세요.", | ||
}, | ||
], | ||
require: true, | ||
}, | ||
{ | ||
id: 11, | ||
title: | ||
"어떤 일에 도전하고 실패해 본 경험이 있나요? 그 실패를 어떻게 극복했는지 서술해 주세요.", | ||
subtitle: "IT 관련 경험이 아니어도 좋습니다.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "failure", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "협업에 있어서 중요하다고 생각되는 것을 입력해주세요.", | ||
}, | ||
], | ||
|
||
require: true, | ||
}, | ||
{ | ||
id: 12, | ||
title: | ||
"협업(프로젝트, 팀 활동)에 있어서 가장 중요하다고 생각되는 것은 무엇인지 그 이유와 함께 지원자님의 생각을 서술해 주세요.", | ||
subtitle: "본인의 경험에 기반하여 말씀해주세요.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "collaboration", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "협업에 있어서 중요하다고 생각되는 것을 입력해주세요.", | ||
}, | ||
], | ||
require: true, | ||
}, | ||
{ | ||
id: 13, | ||
title: "에코노베이션에서의 활동 목표와 학습 계획을 이야기해주세요.", | ||
subtitle: "본인이 하고 싶은 프로젝트와 연관하여 설명해주세요.", | ||
direction: "horizontal", | ||
nodes: [ | ||
{ | ||
name: "studyPlan", | ||
require: true, | ||
type: "textarea", | ||
errorMessages: "목표와 학습 계획을 입력해주세요.", | ||
}, | ||
], | ||
require: true, | ||
}, | ||
{ | ||
id: 14, | ||
title: "자신을 어필할 수 있는 포트폴리오를 업로드해 주세요.", | ||
direction: "horizontal", | ||
subtitle: | ||
"지원자 분의 포트폴리오 링크 접근 권한을 열어주세요. 만약 접근 권한이 없을 경우 불이익이 있을 수 있습니다.", | ||
alert: "최종 제출 후 포트폴리오 수정은 불가합니다.", | ||
nodes: [ | ||
{ | ||
name: "portfolio", | ||
require: false, | ||
type: "text", | ||
title: "참고 URL", | ||
subtitle: "Github, Blog, Notion, Website 등", | ||
}, | ||
{ | ||
name: "fileUrl", | ||
require: true, | ||
type: "text", | ||
title: "파일 URL", | ||
subtitle: "Google Drive 등", | ||
}, | ||
], | ||
}, | ||
{ | ||
id: 15, | ||
direction: "horizontal", | ||
title: | ||
"에코노베이션은 3학기 이상의 활동과 매주 금요일 17시 주간발표 참여가 필수이며, 최종 합격 시 신입 기수로 구성된 팀으로 한 학기 동안 활동하게 됩니다. \n또한, 에코노베이션에서 운영되고 있는 다양한 부서 활동과 네트워킹 행사에 적극적인 참여를 권장합니다.", | ||
subtitle: | ||
"위 내용을 확인하셨으면 <b>'확인했습니다'</b>를 기입해주세요.\n확인하지 않았을 시 합격이 취소될 수 있습니다.", | ||
require: true, | ||
nodes: [ | ||
{ | ||
type: "text", | ||
name: "check", | ||
validate: "confirmationString", | ||
errorMessages: '"확인했습니다"를 입력해주세요.', | ||
require: true, | ||
}, | ||
], | ||
}, | ||
{ | ||
id: -1, | ||
title: "개인정보 수집에 관한 안내 및 개인정보 수집", | ||
direction: "vertical", | ||
nodes: [ | ||
{ | ||
id: 16, | ||
direction: "horizontal", | ||
title: "합격여부 전달을 위하여 이메일을 입력해주세요.", | ||
subtitle: "이메일을 기재하지 않을 시, 합격이 취소될 수 있습니다.", | ||
require: true, | ||
nodes: [ | ||
{ | ||
type: "text", | ||
name: "email", | ||
title: "E-mail", | ||
validate: "emailString", | ||
errorMessages: "이메일을 입력해주세요.", | ||
require: true, | ||
}, | ||
], | ||
}, | ||
{ | ||
id: 17, | ||
direction: "radioForCheck", | ||
title: | ||
"개인정보 수집에 관한 안내 및 개인정보 수집에 대한 안내에 동의하시나요?", | ||
require: true, | ||
nodes: [ | ||
{ | ||
type: "radioForCheck", | ||
name: "personalInformationAgree", | ||
title: "개인정보 수집(공통)에 대한 안내", | ||
value: ["동의합니다.", "동의하지 않습니다."], | ||
require: true, | ||
}, | ||
{ | ||
type: "radioForCheck", | ||
name: "personalInformationAgreeForPortfolio", | ||
title: "개인정보 수집(포트폴리오)에 대한 안내", | ||
value: ["동의합니다.", "동의하지 않습니다."], | ||
require: true, | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
{ | ||
id: 18, | ||
title: "면접 가능시간을 선택해주세요.(중복 선택 가능)", | ||
subtitle: | ||
"면접은 오프라인으로 진행되며 지원서에 작성된 내용을 토대로 약 15분간 진행될 예정입니다.\n선택한 시간이 적을 경우, 지원자님의 면접이 임의 시간에 배정될 수 있습니다.\n면접이 가능한 시간대를 모두 선택해 주시기 바랍니다.", | ||
direction: "timeline", | ||
alert: "최종 제출 후 시간 변경은 불가합니다.", | ||
require: false, | ||
nodes: [ | ||
{ | ||
type: "timeline", | ||
name: "timeline", | ||
require: true, | ||
}, | ||
], | ||
}, | ||
]; | ||
|
||
export const APPLICATION_NAVBAR_DESIGN = [ | ||
{ | ||
id: 5, | ||
title: "자기소개 및 에코노베이션에 지원하게 된 계기를 서술해 주세요.", | ||
}, | ||
{ | ||
id: 6, | ||
title: "디자이너를 희망하는 이유는 무엇인가요?", | ||
}, | ||
{ | ||
id: 7, | ||
title: | ||
"UI/UX 디자인 작업물들 중 가장 자신 있는 디자인 작업물을 설명하고, 이를 통해 배우게 된 점이 있다면 서술해 주세요.", | ||
}, | ||
{ | ||
id: 8, | ||
title: | ||
"UI/UX 디자인을 할 때, 가장 중요한 것은 무엇이라고 생각하나요? 한 가지 키워드를 중심으로 서술해 주세요.", | ||
}, | ||
{ | ||
id: 9, | ||
title: | ||
"IT 서비스 중에 개선하고 싶은 서비스가 있다면, '왜', '어떻게' 개선하고 싶은지 서술해 주세요.", | ||
}, | ||
{ | ||
id: 10, | ||
title: "무언가에 깊게 빠지거나 파고 들어본 적이 있나요?", | ||
}, | ||
{ | ||
id: 11, | ||
title: "어떤 일에 도전하고 실패해 본 경험이 있나요?", | ||
}, | ||
{ | ||
id: 12, | ||
title: | ||
"협업(프로젝트, 팀 활동)에 있어서 가장 중요하다고 생각되는 것은 무엇인지 그 이유와 함께 서술해주세요. ", | ||
}, | ||
{ | ||
id: 13, | ||
title: "에코노베이션에서의 활동 목표와 학습 계획을 이야기해주세요.", | ||
}, | ||
{ id: 14, title: "자신을 어필할 수 있는 포트폴리오를 업로드해주세요." }, | ||
{ id: 15, title: "필수 확인 사항" }, | ||
{ id: 16, title: "개인정보 수집에 관한 안내 및 개인정보 수집" }, | ||
{ id: 17, title: "면접 가능시간을 선택해주세요.(중복 선택 가능)" }, | ||
]; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인했습니다 => 확인했습니다.
변경부탁드립니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
개발자와 기획자 파일도 수정 부탁드려요 !
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수정 완료 했습니다!