-
Notifications
You must be signed in to change notification settings - Fork 4
[Refactor] 질문지 생성/세션 생성 페이지 리팩토링 #312
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6daea6f
refactor: 스터디 세션 목록에서 스터디 채널로 메뉴 이름 변경
yiseungyun 00fbee6
refactor: 세션 페이지 타입과 테스트 코드 세션 페이지 폴더로 이동
yiseungyun 9c8b99d
refactor: 마이페이지 뷰 폴더 수정
yiseungyun decdf3d
refactor: 질문 생성 페이지 리팩토링
yiseungyun bc9c57f
refactor: 세션 생성 페이지 리팩토링
yiseungyun 4cbc8d9
refactor: sessions/create 사용하지 않는 데이터 제거 및 주석 제거
yiseungyun 5bc599e
fix: index.html 파일 수정
yiseungyun 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 hidden or 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 |
|---|---|---|
| @@ -1,43 +1,31 @@ | ||
| <!doctype html> | ||
| <html lang="ko"> | ||
| </html> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <link rel="icon" type="image/svg+xml" href="/preview-logo.png" /> | ||
| <link rel="apple-touch-icon" sizes="180x180" href="/preview-logo.png" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Preview | 실시간 면접 스터디</title> | ||
| <meta | ||
| name="description" | ||
| content="PREVIEW에서 실시간으로 면접 스터디를 진행해보세요. AI 기반 질문 생성, 화상 면접 연습, 피드백 시스템을 통해 면접 실력을 향상시킬 수 있습니다." | ||
| /> | ||
| <meta | ||
| name="keywords" | ||
| content="면접 스터디, 화상 면접, 온라인 면접, AI 면접, 면접 준비, 취업 준비, 실시간 스터디" | ||
| /> | ||
| <meta name="author" content="PREVIEW" /> | ||
| <meta property="og:type" content="website" /> | ||
| <meta property="og:url" content="https://boostcamp-preview.kro.kr/" /> | ||
| <meta property="og:title" content="Preview | 실시간 면접 스터디" /> | ||
| <meta | ||
| property="og:description" | ||
| content="동료와 함께 실시간 화상 면접 스터디로 면접 실력을 향상시켜보세요!" | ||
| /> | ||
| <meta | ||
| property="og:image" | ||
| content="/preview-banner.png" | ||
| /> | ||
| <meta name="theme-color" content="#01BF6F" /> | ||
| <meta name="mobile-web-app-capable" content="yes" /> | ||
| <meta | ||
| name="apple-mobile-web-app-status-bar-style" | ||
| content="black-translucent" | ||
| /> | ||
| <link rel="canonical" href="https://boostcamp-preview.kro.kr/" /> | ||
| <meta name="robots" content="index, follow" /> | ||
| </head> | ||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.tsx"></script> | ||
| </body> | ||
| </html> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <link rel="icon" type="image/png" href="/preview-logo.png" /> | ||
| <link rel="apple-touch-icon" sizes="180x180" href="/preview-logo.png" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Preview | 실시간 면접 스터디</title> | ||
| <meta name="description" | ||
| content="PREVIEW에서 실시간으로 면접 스터디를 진행해보세요. AI 기반 질문 생성, 화상 면접 연습, 피드백 시스템을 통해 면접 실력을 향상시킬 수 있습니다." /> | ||
| <meta name="keywords" content="면접 스터디, 화상 면접, 온라인 면접, AI 면접, 면접 준비, 취업 준비, 실시간 스터디" /> | ||
| <meta name="author" content="PREVIEW" /> | ||
| <meta property="og:type" content="website" /> | ||
| <meta property="og:url" content="https://boostcamp-preview.kro.kr/" /> | ||
| <meta property="og:title" content="Preview | 실시간 면접 스터디" /> | ||
| <meta property="og:description" content="동료와 함께 실시간 화상 면접 스터디로 면접 실력을 향상시켜보세요!" /> | ||
| <meta property="og:image" content="/preview-banner.png" /> | ||
| <meta name="theme-color" content="#01BF6F" /> | ||
| <meta name="mobile-web-app-capable" content="yes" /> | ||
| <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> | ||
| <link rel="canonical" href="https://boostcamp-preview.kro.kr/" /> | ||
| <meta name="robots" content="index, follow" /> | ||
| </head> | ||
|
|
||
| <body> | ||
| <div id="root"></div> | ||
| <script type="module" src="/src/main.tsx"></script> | ||
| </body> | ||
|
|
||
| </html> | ||
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...eate/QuestionForm/AccessSection/index.tsx → ...onents/questions/create/AccessSection.tsx
This file contains hidden or 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
4 changes: 2 additions & 2 deletions
4
...te/QuestionForm/CategorySection/index.tsx → ...ents/questions/create/CategorySection.tsx
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...onForm/QuestionInputSection/EditInput.tsx → ...create/QuestionInputSection/EditInput.tsx
This file contains hidden or 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
4 changes: 2 additions & 2 deletions
4
...rm/QuestionInputSection/QuestionInput.tsx → ...te/QuestionInputSection/QuestionInput.tsx
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...orm/QuestionInputSection/QuestionList.tsx → ...ate/QuestionInputSection/QuestionList.tsx
This file contains hidden or 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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...estionForm/QuestionInputSection/index.tsx → ...ons/create/QuestionInputSection/index.tsx
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...reate/QuestionForm/TitleSection/index.tsx → ...ponents/questions/create/TitleSection.tsx
This file contains hidden or 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
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...reate/SessionForm/AccessSection/index.tsx → ...ions/create/SessionForm/AccessSection.tsx
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...ate/SessionForm/CategorySection/index.tsx → ...ns/create/SessionForm/CategorySection.tsx
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
138 changes: 0 additions & 138 deletions
138
frontend/src/components/sessions/create/SessionForm/ListSelectModal/data.ts
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
frontend/src/components/sessions/create/SessionForm/ParticipantSection/index.tsx
This file contains hidden or 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
2 changes: 1 addition & 1 deletion
2
...SessionForm/QuestionListSection/index.tsx → ...reate/SessionForm/QuestionListSection.tsx
This file contains hidden or 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
Oops, something went wrong.
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.
눈물이 나로심..............
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.
ㅋㅋㅋㅋㅋ 이게 폴더구조 변경하면 가끔 안될때있더라구요 저도 당함 ㅋㅋ