-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from softeerbootcamp4th/refactor/88-directory
[refactor] 폴더 구조 대규모 변경
- Loading branch information
Showing
160 changed files
with
282 additions
and
279 deletions.
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
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
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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,8 +1,2 @@ | ||
export const EVENT_ID = "0"; | ||
export const TOKEN_ID = "AWESOME_ORANGE_ACCESS_TOKEN"; | ||
|
||
// scroll section constants | ||
export const INTERACTION_SECTION = 1; | ||
export const DETAIL_SECTION = 2; | ||
export const COMMENT_SECTION = 3; | ||
export const FCFS_SECTION = 4; | ||
export const TOKEN_ID = "AWESOME_ORANGE_ACCESS_TOKEN"; |
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
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
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
File renamed without changes.
File renamed without changes.
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
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,40 @@ | ||
import { useEffect } from "react"; | ||
|
||
import IntroSection from "./features/introSection"; | ||
import Header from "./features/header"; | ||
import SimpleInformation from "./features/simpleInformation"; | ||
import InteractionPage from "./features/interactions"; | ||
import DetailInformation from "./features/detailInformation"; | ||
import CommentSection from "./features/comment"; | ||
import FcfsSection from "./features/fcfs"; | ||
import QnA from "./features/qna"; | ||
import Footer from "./features/footer"; | ||
|
||
import Modal from "@common/modal/modal.jsx"; | ||
import { initLoginState } from "@main/auth/store.js"; | ||
|
||
function App() { | ||
useEffect(() => { | ||
window.scrollTo(0, 0); | ||
history.scrollRestoration = "manual"; | ||
initLoginState(); | ||
}, []); | ||
|
||
return ( | ||
<> | ||
<IntroSection /> | ||
<Header /> | ||
<SimpleInformation /> | ||
<InteractionPage /> | ||
<DetailInformation /> | ||
<CommentSection /> | ||
<FcfsSection /> | ||
<QnA /> | ||
<Footer /> | ||
<Modal layer="interaction" /> | ||
<Modal layer="alert" /> | ||
</> | ||
); | ||
} | ||
|
||
export default App; |
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ent/autoScrollCarousel/useAutoCarousel.js → ...ent/autoScrollCarousel/useAutoCarousel.js
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
4 changes: 2 additions & 2 deletions
4
...mment/commentCarousel/CommentCarousel.jsx → ...mment/commentCarousel/CommentCarousel.jsx
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...mmentCarousel/CommentCarouselSkeleton.jsx → ...mmentCarousel/CommentCarouselSkeleton.jsx
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
4 changes: 2 additions & 2 deletions
4
src/comment/commentCarousel/index.jsx → ...eatures/comment/commentCarousel/index.jsx
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
2 changes: 1 addition & 1 deletion
2
...omment/commentForm/SubmitButton/index.jsx → ...omment/commentForm/SubmitButton/index.jsx
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
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
2 changes: 1 addition & 1 deletion
2
src/comment/index.jsx → src/mainPage/features/comment/index.jsx
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/comment/modals/CommentNegativeModal.jsx → ...s/comment/modals/CommentNegativeModal.jsx
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
12 changes: 6 additions & 6 deletions
12
src/comment/modals/CommentNoUserModal.jsx → ...res/comment/modals/CommentNoUserModal.jsx
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
4 changes: 2 additions & 2 deletions
4
src/comment/modals/CommentSuccessModal.jsx → ...es/comment/modals/CommentSuccessModal.jsx
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/detailInformation/DetailSwiper.jsx → ...atures/detailInformation/DetailSwiper.jsx
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
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
File renamed without changes.
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
6 changes: 3 additions & 3 deletions
6
src/fcfs/cardGame/CardGameTitle.jsx → .../features/fcfs/cardGame/CardGameTitle.jsx
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
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions
8
src/fcfs/cardGame/index.jsx → ...mainPage/features/fcfs/cardGame/index.jsx
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
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
src/fcfs/countdown/CountStarter.jsx → .../features/fcfs/countdown/CountStarter.jsx
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
File renamed without changes.
15 changes: 3 additions & 12 deletions
15
src/fcfs/description/DateEventPrize.jsx → ...tures/fcfs/description/DateEventPrize.jsx
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
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/fcfs/description/index.jsx → ...nPage/features/fcfs/description/index.jsx
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
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
src/fcfs/modals/FcfsInvalidModal.jsx → ...features/fcfs/modals/FcfsInvalidModal.jsx
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
Oops, something went wrong.