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

15기 운영관련 안내 변경사항 배포 #292

Merged
merged 3 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CURRENT_GENERATION, DAYS, TEAM_NICK_NAME } from '@/constants';
import { CURRENT_GENERATION, DAYS, TEAM_NICK_NAME, SEMINAR_RUNNING_HOUR } from '@/constants';
import { Application, RecruitSchedule } from '@/types/dto';
import { StatusDetailBackground } from '@/components';
import dayjs from 'dayjs';
Expand All @@ -17,11 +17,13 @@ const FinalConfirmAccept = ({ application, recruitSchedule }: FinalConfirmAccept
const afterFirstSeminalJoinDayjs = dayjs(AFTER_FIRST_SEMINAR_JOIN);

const afterFirstSeminalJoinDate = afterFirstSeminalJoinDayjs.format(
`M월 D일(${DAYS[afterFirstSeminalJoinDayjs.day()]})`,
`M월 D일(${DAYS[afterFirstSeminalJoinDayjs.day()]}) H시 ~ ${
afterFirstSeminalJoinDayjs.hour() + SEMINAR_RUNNING_HOUR
}시`,
);

const groupChatInviteDayjs = afterFirstSeminalJoinDayjs.date(
afterFirstSeminalJoinDayjs.date() - 6,
afterFirstSeminalJoinDayjs.date() - 2,
);

const groupChatInviteDate = groupChatInviteDayjs.format(
Expand All @@ -42,17 +44,17 @@ const FinalConfirmAccept = ({ application, recruitSchedule }: FinalConfirmAccept
</Styled.NoticeSection>
<Styled.OtDetailSection>
<Styled.OtDetailHeading>Mash-Up OT일시</Styled.OtDetailHeading>
<Styled.OtDetailContent>{`${afterFirstSeminalJoinDate} 오후 2시 ~ 5시`}</Styled.OtDetailContent>
<Styled.OtDetailContent>{`${afterFirstSeminalJoinDate}`}</Styled.OtDetailContent>
<Styled.OtDetailHeading>준비물</Styled.OtDetailHeading>
<Styled.OtDetailContent>노트북(선택), 그리고 열.정</Styled.OtDetailContent>
<Styled.OtDetailHeading>모집 프로세스 만족도 조사 설문 링크</Styled.OtDetailHeading>
<Styled.OtDetailContent>
<Styled.SatisfactionSurveyLink
href="https://forms.gle/bWbvuG2XVm9z3eNw9"
href="https://forms.gle/bfpbkhrZckeg5Sim8"
target="_blank"
rel="noreferrer"
>
https://forms.gle/bWbvuG2XVm9z3eNw9
https://forms.gle/bfpbkhrZckeg5Sim8
</Styled.SatisfactionSurveyLink>
</Styled.OtDetailContent>
<Styled.OtExplanationList>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ const ProcessFail = ({ heading, paragraph, survey = false }: ProcessFailProps) =
{survey && (
<Styled.SurveyRequestMessage>
<Styled.SatisfactionSurveyLink
href="https://forms.gle/bWbvuG2XVm9z3eNw9"
href="https://forms.gle/bfpbkhrZckeg5Sim8"
target="_blank"
rel="noreferrer"
>
https://forms.gle/bWbvuG2XVm9z3eNw9
https://forms.gle/bfpbkhrZckeg5Sim8
</Styled.SatisfactionSurveyLink>
Mash-Up {CURRENT_GENERATION}기 모집 프로세스 경험에 대한 만족도 설문을 진행하고 있습니다.
선택사항이며, 지원자님의 소중한 답변을 통해 더 나은 프로세스를 만들어 성장하는 Mash-Up이
Expand Down
1 change: 1 addition & 0 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ export * from './platform';
export * from './aos';
export * from './application';
export * from './date';
export * from './recruit';
2 changes: 2 additions & 0 deletions src/constants/recruit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,5 @@ export const INTERVIEW_LOCATION: {
},
},
} as const;

export const SEMINAR_RUNNING_HOUR = 3;
Loading