├── .DS_Store ├── .github └── workflows │ └── nodejs.yml ├── .travis.yml ├── .vscode └── settings.json ├── README.md ├── auction-server ├── .env.example ├── .gitignore ├── Dockerfile ├── index.js ├── mailService.js ├── package-lock.json └── package.json ├── chat-server ├── .gitignore ├── Dockerfile ├── README.md ├── index.js ├── package-lock.json └── package.json ├── client ├── .env.example ├── .firebaserc ├── .gitignore ├── .storybook │ ├── addons.js │ └── config.js ├── README.md ├── database.rules.json ├── firebase.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── App.test.js │ ├── Router.jsx │ ├── assets │ │ ├── cloth.svg │ │ ├── default-profile.svg │ │ ├── fail.svg │ │ ├── fbShareIcon.svg │ │ ├── font │ │ │ ├── NanumGothic-Regular.ttf │ │ │ └── NanumGothic-Regular.woff │ │ ├── found.png │ │ ├── geek.svg │ │ ├── kakaoShareIcon.svg │ │ ├── letmessengerbutton.svg │ │ ├── loading.gif │ │ ├── logo.svg │ │ ├── messenger.svg │ │ ├── notFound.png │ │ ├── notify.svg │ │ ├── report.svg │ │ ├── settings.svg │ │ ├── success.svg │ │ ├── television.svg │ │ ├── tickets.svg │ │ ├── twitterShareIcon.svg │ │ └── urlShareIcon.svg │ ├── components │ │ ├── Atoms │ │ │ ├── BoxButton │ │ │ │ └── index.jsx │ │ │ ├── BoxHeader │ │ │ │ └── index.jsx │ │ │ ├── BtnListItem │ │ │ │ └── index.jsx │ │ │ ├── Card │ │ │ │ └── index.jsx │ │ │ ├── DayButton │ │ │ │ └── index.jsx │ │ │ ├── Footer │ │ │ │ └── index.jsx │ │ │ ├── Header │ │ │ │ └── index.jsx │ │ │ ├── InputWithLimit │ │ │ │ └── index.jsx │ │ │ ├── LoadingBar │ │ │ │ └── index.jsx │ │ │ ├── NotiNumber │ │ │ │ └── index.jsx │ │ │ ├── RatingButton │ │ │ │ └── index.jsx │ │ │ ├── ReportButton │ │ │ │ └── index.jsx │ │ │ ├── SelectOptionButton │ │ │ │ └── index.jsx │ │ │ ├── SmallCard │ │ │ │ └── index.jsx │ │ │ ├── Spinner │ │ │ │ └── index.jsx │ │ │ ├── TextTimer │ │ │ │ └── index.jsx │ │ │ ├── TextareaWithLength │ │ │ │ └── index.jsx │ │ │ └── ToggleButton │ │ │ │ └── index.jsx │ │ ├── Messenger │ │ │ ├── Container │ │ │ │ ├── ChatContainer │ │ │ │ │ ├── ChatMessage.jsx │ │ │ │ │ └── index.jsx │ │ │ │ ├── RoomElement │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── CreateButton │ │ │ │ └── index.jsx │ │ │ └── index.jsx │ │ ├── Molecules │ │ │ ├── AlertDialog │ │ │ │ └── index.jsx │ │ │ ├── CardContainer │ │ │ │ └── index.jsx │ │ │ ├── Carousel │ │ │ │ ├── AddButton │ │ │ │ │ └── index.jsx │ │ │ │ ├── BeforeButton │ │ │ │ │ └── index.jsx │ │ │ │ ├── CarouselImage │ │ │ │ │ └── index.jsx │ │ │ │ ├── NextButton │ │ │ │ │ └── index.jsx │ │ │ │ ├── RemoveButton │ │ │ │ │ └── index.jsx │ │ │ │ ├── constant.jsx │ │ │ │ └── index.jsx │ │ │ ├── CustomModal │ │ │ │ ├── FailModal.jsx │ │ │ │ ├── LoginModal.jsx │ │ │ │ ├── Modal.jsx │ │ │ │ ├── ReportModal.jsx │ │ │ │ ├── SignUpModal.jsx │ │ │ │ ├── SuccessModal.jsx │ │ │ │ ├── UserModalCommonStyles.jsx │ │ │ │ └── constant.jsx │ │ │ ├── InfiniteScroll │ │ │ │ ├── index.jsx │ │ │ │ └── useIntersect.jsx │ │ │ ├── MoneyBox │ │ │ │ └── index.jsx │ │ │ ├── NotifyList │ │ │ │ ├── NotifyItem.jsx │ │ │ │ └── index.jsx │ │ │ ├── RatingDialog │ │ │ │ └── index.jsx │ │ │ ├── SelectBox │ │ │ │ ├── List │ │ │ │ │ └── index.jsx │ │ │ │ ├── ListItem │ │ │ │ │ └── index.jsx │ │ │ │ └── index.jsx │ │ │ ├── ShareBox │ │ │ │ └── index.jsx │ │ │ ├── SmallCardContainer │ │ │ │ └── index.jsx │ │ │ ├── TitleListBox │ │ │ │ └── index.jsx │ │ │ ├── TradeBase │ │ │ │ └── index.jsx │ │ │ └── UserInfoBox │ │ │ │ └── index.jsx │ │ └── Organism │ │ │ ├── AuctionGraph │ │ │ └── index.jsx │ │ │ ├── CategoryBar │ │ │ ├── CategoryIcon │ │ │ │ ├── ImageIcon.jsx │ │ │ │ ├── TextIcon.jsx │ │ │ │ └── index.jsx │ │ │ ├── ExpandList │ │ │ │ └── index.jsx │ │ │ ├── LoginButton │ │ │ │ └── index.jsx │ │ │ ├── Logo │ │ │ │ └── index.jsx │ │ │ ├── Profile │ │ │ │ └── index.jsx │ │ │ └── index.jsx │ │ │ ├── Chat │ │ │ ├── Chat.jsx │ │ │ ├── ChatBox.jsx │ │ │ └── ChatSend.jsx │ │ │ ├── ItemCategorySelector │ │ │ └── index.jsx │ │ │ ├── ProductInfo │ │ │ └── index.jsx │ │ │ ├── RegisterProgress │ │ │ ├── Button │ │ │ │ └── index.jsx │ │ │ └── index.jsx │ │ │ ├── RegisterTermSelector │ │ │ └── index.jsx │ │ │ ├── TradeBox │ │ │ ├── constants.jsx │ │ │ └── index.jsx │ │ │ └── TradeListBox │ │ │ └── index.jsx │ ├── config │ │ ├── api.js │ │ ├── firebase.js │ │ └── path.js │ ├── constants │ │ ├── strings.js │ │ └── values.js │ ├── context │ │ ├── MessengerContext.js │ │ ├── ModalContext.js │ │ ├── NotificationContext.js │ │ ├── ProductPageContext.js │ │ ├── SocketContext.js │ │ └── UserContext.js │ ├── data │ │ └── detail-category-list.js │ ├── hooks │ │ ├── useFetch.js │ │ ├── usePrevious.js │ │ └── useSocket.js │ ├── index.js │ ├── mock │ │ ├── deadline-items │ │ │ └── deadline-items.js │ │ ├── index.jsx │ │ ├── myitems │ │ │ └── myitems.js │ │ └── popular-items │ │ │ └── popular-items.js │ ├── pages │ │ ├── CategoryItems │ │ │ └── index.jsx │ │ ├── ErrorPage │ │ │ └── index.jsx │ │ ├── Main │ │ │ └── index.jsx │ │ ├── MyItems │ │ │ ├── contants.jsx │ │ │ └── index.jsx │ │ ├── Product │ │ │ └── index.jsx │ │ ├── ProductUpdate │ │ │ ├── constants.jsx │ │ │ └── index.jsx │ │ ├── Register │ │ │ ├── constants.jsx │ │ │ ├── context.jsx │ │ │ ├── index.jsx │ │ │ └── template │ │ │ │ ├── Complete │ │ │ │ └── index.jsx │ │ │ │ ├── InsertInfo │ │ │ │ └── index.jsx │ │ │ │ └── SelectCategory │ │ │ │ └── index.jsx │ │ └── TradeList │ │ │ └── index.jsx │ ├── serviceWorker.js │ ├── services │ │ ├── fetchService.js │ │ └── imageService.js │ ├── shared │ │ └── firebase.js │ ├── stories │ │ ├── 3-Progress.stories.js │ │ ├── 5-Carousel.stories.js │ │ ├── 6-SelectBox.stories.js │ │ ├── Atoms │ │ │ ├── BoxButton.stories.js │ │ │ ├── Card.stories.js │ │ │ ├── Color.stories.js │ │ │ ├── Footer.stories.js │ │ │ ├── Header.stories.js │ │ │ ├── InputWithLimits.stories.js │ │ │ ├── LoadingBar.stories.js │ │ │ ├── Padding.stories.js │ │ │ ├── Text.stories.js │ │ │ ├── TextareaWithLength.stories.js │ │ │ └── ToggleButton.stories.js │ │ ├── Modal │ │ │ ├── AlretDialog.stories.js │ │ │ └── ReportDialog.stories.js │ │ ├── Molecules │ │ │ ├── InfiniteScroll.stories.js │ │ │ ├── ShareButtonBox.stories.js │ │ │ ├── TermSelector.stories.js │ │ │ └── TradeResultBox.stories.js │ │ ├── Organisms │ │ │ ├── CategoryBar.stories.js │ │ │ ├── Chats.stories.js │ │ │ ├── Messenger.stories.js │ │ │ └── Products.stories.js │ │ └── TradeList.stories.js │ ├── style │ │ ├── App.css │ │ └── index.css │ └── utils │ │ ├── converter.js │ │ ├── dateUtil.js │ │ ├── fetchUtil.js │ │ └── validator.js └── yarn.lock ├── docker-compose.yml └── server ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── ormconfig.js ├── package-lock.json ├── package.json ├── src ├── app.ts ├── config │ ├── firestore.ts │ ├── key.ts │ └── objectStorage.ts ├── constants │ ├── category.json │ └── oauthAPIs.ts ├── controllers │ └── api │ │ ├── BidContorller.ts │ │ ├── ItemController.ts │ │ ├── LogController.ts │ │ ├── LoginController.ts │ │ ├── ProductController.ts │ │ ├── StaticController.ts │ │ ├── StorageController.ts │ │ └── UserController.ts ├── custom │ └── CustomNamingStrategy.ts ├── database │ ├── factories │ │ ├── BidFactory.ts │ │ ├── ImageFactory.ts │ │ ├── ProductFactory.ts │ │ └── UserFactory.ts │ └── seeds │ │ ├── BidSeed.ts │ │ └── UserSeed.ts ├── dto │ ├── BidResponseDTO.ts │ ├── ImageDTO.ts │ ├── ImageResponseDTO.ts │ ├── ProductCardResponseDTO.ts │ ├── ProductDTO.ts │ ├── ProductResponseDTO.ts │ ├── UserDTO.ts │ └── UserResponseDTO.ts ├── middlewares │ └── SystemLogger.ts ├── models │ ├── Bids.ts │ ├── Images.ts │ ├── Products.ts │ └── Users.ts ├── repositories │ ├── BidRepository.ts │ ├── ImageRepository.ts │ ├── LogRepository.ts │ ├── ProductRepository.ts │ └── UserRepository.ts ├── server.ts ├── services │ ├── BidService.ts │ ├── FireStoreService.ts │ ├── ItemService.ts │ ├── LogService.ts │ ├── ProductService.ts │ ├── S3Service.ts │ └── UserService.ts └── util │ ├── DateUtils.ts │ ├── StringUtils.ts │ ├── authUtils.ts │ └── fetchUtil.ts └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/README.md -------------------------------------------------------------------------------- /auction-server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/auction-server/.env.example -------------------------------------------------------------------------------- /auction-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_STORE 3 | .env 4 | dist -------------------------------------------------------------------------------- /auction-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/auction-server/Dockerfile -------------------------------------------------------------------------------- /auction-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/auction-server/index.js -------------------------------------------------------------------------------- /auction-server/mailService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/auction-server/mailService.js -------------------------------------------------------------------------------- /auction-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/auction-server/package-lock.json -------------------------------------------------------------------------------- /auction-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/auction-server/package.json -------------------------------------------------------------------------------- /chat-server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_STORE 3 | .env 4 | dist -------------------------------------------------------------------------------- /chat-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/chat-server/Dockerfile -------------------------------------------------------------------------------- /chat-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/chat-server/README.md -------------------------------------------------------------------------------- /chat-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/chat-server/index.js -------------------------------------------------------------------------------- /chat-server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/chat-server/package-lock.json -------------------------------------------------------------------------------- /chat-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/chat-server/package.json -------------------------------------------------------------------------------- /client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/.env.example -------------------------------------------------------------------------------- /client/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/.firebaserc -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/.storybook/addons.js -------------------------------------------------------------------------------- /client/.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/.storybook/config.js -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/README.md -------------------------------------------------------------------------------- /client/database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/database.rules.json -------------------------------------------------------------------------------- /client/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/firebase.json -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/public/logo192.png -------------------------------------------------------------------------------- /client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/public/logo512.png -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/public/robots.txt -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/Router.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/Router.jsx -------------------------------------------------------------------------------- /client/src/assets/cloth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/cloth.svg -------------------------------------------------------------------------------- /client/src/assets/default-profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/default-profile.svg -------------------------------------------------------------------------------- /client/src/assets/fail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/fail.svg -------------------------------------------------------------------------------- /client/src/assets/fbShareIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/fbShareIcon.svg -------------------------------------------------------------------------------- /client/src/assets/font/NanumGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/font/NanumGothic-Regular.ttf -------------------------------------------------------------------------------- /client/src/assets/font/NanumGothic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/font/NanumGothic-Regular.woff -------------------------------------------------------------------------------- /client/src/assets/found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/found.png -------------------------------------------------------------------------------- /client/src/assets/geek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/geek.svg -------------------------------------------------------------------------------- /client/src/assets/kakaoShareIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/kakaoShareIcon.svg -------------------------------------------------------------------------------- /client/src/assets/letmessengerbutton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/letmessengerbutton.svg -------------------------------------------------------------------------------- /client/src/assets/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/loading.gif -------------------------------------------------------------------------------- /client/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/logo.svg -------------------------------------------------------------------------------- /client/src/assets/messenger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/messenger.svg -------------------------------------------------------------------------------- /client/src/assets/notFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/notFound.png -------------------------------------------------------------------------------- /client/src/assets/notify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/notify.svg -------------------------------------------------------------------------------- /client/src/assets/report.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/report.svg -------------------------------------------------------------------------------- /client/src/assets/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/settings.svg -------------------------------------------------------------------------------- /client/src/assets/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/success.svg -------------------------------------------------------------------------------- /client/src/assets/television.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/television.svg -------------------------------------------------------------------------------- /client/src/assets/tickets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/tickets.svg -------------------------------------------------------------------------------- /client/src/assets/twitterShareIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/twitterShareIcon.svg -------------------------------------------------------------------------------- /client/src/assets/urlShareIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/assets/urlShareIcon.svg -------------------------------------------------------------------------------- /client/src/components/Atoms/BoxButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/BoxButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/BoxHeader/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/BoxHeader/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/BtnListItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/BtnListItem/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/Card/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/Card/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/DayButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/DayButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/Footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/Footer/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/Header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/Header/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/InputWithLimit/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/InputWithLimit/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/LoadingBar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/LoadingBar/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/NotiNumber/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/NotiNumber/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/RatingButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/RatingButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/ReportButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/ReportButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/SelectOptionButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/SelectOptionButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/SmallCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/SmallCard/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/Spinner/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/Spinner/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/TextTimer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/TextTimer/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/TextareaWithLength/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/TextareaWithLength/index.jsx -------------------------------------------------------------------------------- /client/src/components/Atoms/ToggleButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Atoms/ToggleButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Messenger/Container/ChatContainer/ChatMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Messenger/Container/ChatContainer/ChatMessage.jsx -------------------------------------------------------------------------------- /client/src/components/Messenger/Container/ChatContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Messenger/Container/ChatContainer/index.jsx -------------------------------------------------------------------------------- /client/src/components/Messenger/Container/RoomElement/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Messenger/Container/RoomElement/index.jsx -------------------------------------------------------------------------------- /client/src/components/Messenger/Container/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Messenger/Container/index.jsx -------------------------------------------------------------------------------- /client/src/components/Messenger/CreateButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Messenger/CreateButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Messenger/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Messenger/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/AlertDialog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/AlertDialog/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CardContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CardContainer/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/AddButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/AddButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/BeforeButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/BeforeButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/CarouselImage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/CarouselImage/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/NextButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/NextButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/RemoveButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/RemoveButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/constant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/constant.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/Carousel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/Carousel/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/FailModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/FailModal.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/LoginModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/LoginModal.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/Modal.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/ReportModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/ReportModal.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/SignUpModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/SignUpModal.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/SuccessModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/SuccessModal.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/UserModalCommonStyles.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/UserModalCommonStyles.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/CustomModal/constant.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/CustomModal/constant.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/InfiniteScroll/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/InfiniteScroll/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/InfiniteScroll/useIntersect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/InfiniteScroll/useIntersect.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/MoneyBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/MoneyBox/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/NotifyList/NotifyItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/NotifyList/NotifyItem.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/NotifyList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/NotifyList/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/RatingDialog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/RatingDialog/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/SelectBox/List/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/SelectBox/List/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/SelectBox/ListItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/SelectBox/ListItem/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/SelectBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/SelectBox/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/ShareBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/ShareBox/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/SmallCardContainer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/SmallCardContainer/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/TitleListBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/TitleListBox/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/TradeBase/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/TradeBase/index.jsx -------------------------------------------------------------------------------- /client/src/components/Molecules/UserInfoBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Molecules/UserInfoBox/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/AuctionGraph/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/AuctionGraph/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/CategoryIcon/ImageIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/CategoryIcon/ImageIcon.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/CategoryIcon/TextIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/CategoryIcon/TextIcon.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/CategoryIcon/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/CategoryIcon/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/ExpandList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/ExpandList/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/LoginButton/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/LoginButton/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/Logo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/Logo/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/Profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/Profile/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/CategoryBar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/CategoryBar/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/Chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/Chat/Chat.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/Chat/ChatBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/Chat/ChatBox.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/Chat/ChatSend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/Chat/ChatSend.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/ItemCategorySelector/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/ItemCategorySelector/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/ProductInfo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/ProductInfo/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/RegisterProgress/Button/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/RegisterProgress/Button/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/RegisterProgress/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/RegisterProgress/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/RegisterTermSelector/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/RegisterTermSelector/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/TradeBox/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/TradeBox/constants.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/TradeBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/TradeBox/index.jsx -------------------------------------------------------------------------------- /client/src/components/Organism/TradeListBox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/components/Organism/TradeListBox/index.jsx -------------------------------------------------------------------------------- /client/src/config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/config/api.js -------------------------------------------------------------------------------- /client/src/config/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/config/firebase.js -------------------------------------------------------------------------------- /client/src/config/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/config/path.js -------------------------------------------------------------------------------- /client/src/constants/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/constants/strings.js -------------------------------------------------------------------------------- /client/src/constants/values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/constants/values.js -------------------------------------------------------------------------------- /client/src/context/MessengerContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/context/MessengerContext.js -------------------------------------------------------------------------------- /client/src/context/ModalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/context/ModalContext.js -------------------------------------------------------------------------------- /client/src/context/NotificationContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/context/NotificationContext.js -------------------------------------------------------------------------------- /client/src/context/ProductPageContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/context/ProductPageContext.js -------------------------------------------------------------------------------- /client/src/context/SocketContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/context/SocketContext.js -------------------------------------------------------------------------------- /client/src/context/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/context/UserContext.js -------------------------------------------------------------------------------- /client/src/data/detail-category-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/data/detail-category-list.js -------------------------------------------------------------------------------- /client/src/hooks/useFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/hooks/useFetch.js -------------------------------------------------------------------------------- /client/src/hooks/usePrevious.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/hooks/usePrevious.js -------------------------------------------------------------------------------- /client/src/hooks/useSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/hooks/useSocket.js -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/mock/deadline-items/deadline-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/mock/deadline-items/deadline-items.js -------------------------------------------------------------------------------- /client/src/mock/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/mock/index.jsx -------------------------------------------------------------------------------- /client/src/mock/myitems/myitems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/mock/myitems/myitems.js -------------------------------------------------------------------------------- /client/src/mock/popular-items/popular-items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/mock/popular-items/popular-items.js -------------------------------------------------------------------------------- /client/src/pages/CategoryItems/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/CategoryItems/index.jsx -------------------------------------------------------------------------------- /client/src/pages/ErrorPage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/ErrorPage/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Main/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Main/index.jsx -------------------------------------------------------------------------------- /client/src/pages/MyItems/contants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/MyItems/contants.jsx -------------------------------------------------------------------------------- /client/src/pages/MyItems/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/MyItems/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Product/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Product/index.jsx -------------------------------------------------------------------------------- /client/src/pages/ProductUpdate/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/ProductUpdate/constants.jsx -------------------------------------------------------------------------------- /client/src/pages/ProductUpdate/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/ProductUpdate/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Register/constants.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Register/constants.jsx -------------------------------------------------------------------------------- /client/src/pages/Register/context.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Register/context.jsx -------------------------------------------------------------------------------- /client/src/pages/Register/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Register/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Register/template/Complete/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Register/template/Complete/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Register/template/InsertInfo/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Register/template/InsertInfo/index.jsx -------------------------------------------------------------------------------- /client/src/pages/Register/template/SelectCategory/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/Register/template/SelectCategory/index.jsx -------------------------------------------------------------------------------- /client/src/pages/TradeList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/pages/TradeList/index.jsx -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /client/src/services/fetchService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/services/fetchService.js -------------------------------------------------------------------------------- /client/src/services/imageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/services/imageService.js -------------------------------------------------------------------------------- /client/src/shared/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/shared/firebase.js -------------------------------------------------------------------------------- /client/src/stories/3-Progress.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/3-Progress.stories.js -------------------------------------------------------------------------------- /client/src/stories/5-Carousel.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/5-Carousel.stories.js -------------------------------------------------------------------------------- /client/src/stories/6-SelectBox.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/6-SelectBox.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/BoxButton.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/BoxButton.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/Card.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/Card.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/Color.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/Color.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/Footer.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/Footer.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/Header.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/Header.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/InputWithLimits.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/InputWithLimits.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/LoadingBar.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/LoadingBar.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/Padding.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/Padding.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/Text.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/Text.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/TextareaWithLength.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/TextareaWithLength.stories.js -------------------------------------------------------------------------------- /client/src/stories/Atoms/ToggleButton.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Atoms/ToggleButton.stories.js -------------------------------------------------------------------------------- /client/src/stories/Modal/AlretDialog.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Modal/AlretDialog.stories.js -------------------------------------------------------------------------------- /client/src/stories/Modal/ReportDialog.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Modal/ReportDialog.stories.js -------------------------------------------------------------------------------- /client/src/stories/Molecules/InfiniteScroll.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Molecules/InfiniteScroll.stories.js -------------------------------------------------------------------------------- /client/src/stories/Molecules/ShareButtonBox.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Molecules/ShareButtonBox.stories.js -------------------------------------------------------------------------------- /client/src/stories/Molecules/TermSelector.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Molecules/TermSelector.stories.js -------------------------------------------------------------------------------- /client/src/stories/Molecules/TradeResultBox.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Molecules/TradeResultBox.stories.js -------------------------------------------------------------------------------- /client/src/stories/Organisms/CategoryBar.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Organisms/CategoryBar.stories.js -------------------------------------------------------------------------------- /client/src/stories/Organisms/Chats.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Organisms/Chats.stories.js -------------------------------------------------------------------------------- /client/src/stories/Organisms/Messenger.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Organisms/Messenger.stories.js -------------------------------------------------------------------------------- /client/src/stories/Organisms/Products.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/Organisms/Products.stories.js -------------------------------------------------------------------------------- /client/src/stories/TradeList.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/stories/TradeList.stories.js -------------------------------------------------------------------------------- /client/src/style/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/style/App.css -------------------------------------------------------------------------------- /client/src/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/style/index.css -------------------------------------------------------------------------------- /client/src/utils/converter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/utils/converter.js -------------------------------------------------------------------------------- /client/src/utils/dateUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/utils/dateUtil.js -------------------------------------------------------------------------------- /client/src/utils/fetchUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/utils/fetchUtil.js -------------------------------------------------------------------------------- /client/src/utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/src/utils/validator.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_STORE 3 | .env 4 | dist 5 | 6 | ## Authenticate 7 | keys -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/README.md -------------------------------------------------------------------------------- /server/ormconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/ormconfig.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/app.ts -------------------------------------------------------------------------------- /server/src/config/firestore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/config/firestore.ts -------------------------------------------------------------------------------- /server/src/config/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/config/key.ts -------------------------------------------------------------------------------- /server/src/config/objectStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/config/objectStorage.ts -------------------------------------------------------------------------------- /server/src/constants/category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/constants/category.json -------------------------------------------------------------------------------- /server/src/constants/oauthAPIs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/constants/oauthAPIs.ts -------------------------------------------------------------------------------- /server/src/controllers/api/BidContorller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/BidContorller.ts -------------------------------------------------------------------------------- /server/src/controllers/api/ItemController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/ItemController.ts -------------------------------------------------------------------------------- /server/src/controllers/api/LogController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/LogController.ts -------------------------------------------------------------------------------- /server/src/controllers/api/LoginController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/LoginController.ts -------------------------------------------------------------------------------- /server/src/controllers/api/ProductController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/ProductController.ts -------------------------------------------------------------------------------- /server/src/controllers/api/StaticController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/StaticController.ts -------------------------------------------------------------------------------- /server/src/controllers/api/StorageController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/StorageController.ts -------------------------------------------------------------------------------- /server/src/controllers/api/UserController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/controllers/api/UserController.ts -------------------------------------------------------------------------------- /server/src/custom/CustomNamingStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/custom/CustomNamingStrategy.ts -------------------------------------------------------------------------------- /server/src/database/factories/BidFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/database/factories/BidFactory.ts -------------------------------------------------------------------------------- /server/src/database/factories/ImageFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/database/factories/ImageFactory.ts -------------------------------------------------------------------------------- /server/src/database/factories/ProductFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/database/factories/ProductFactory.ts -------------------------------------------------------------------------------- /server/src/database/factories/UserFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/database/factories/UserFactory.ts -------------------------------------------------------------------------------- /server/src/database/seeds/BidSeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/database/seeds/BidSeed.ts -------------------------------------------------------------------------------- /server/src/database/seeds/UserSeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/database/seeds/UserSeed.ts -------------------------------------------------------------------------------- /server/src/dto/BidResponseDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/BidResponseDTO.ts -------------------------------------------------------------------------------- /server/src/dto/ImageDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/ImageDTO.ts -------------------------------------------------------------------------------- /server/src/dto/ImageResponseDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/ImageResponseDTO.ts -------------------------------------------------------------------------------- /server/src/dto/ProductCardResponseDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/ProductCardResponseDTO.ts -------------------------------------------------------------------------------- /server/src/dto/ProductDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/ProductDTO.ts -------------------------------------------------------------------------------- /server/src/dto/ProductResponseDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/ProductResponseDTO.ts -------------------------------------------------------------------------------- /server/src/dto/UserDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/UserDTO.ts -------------------------------------------------------------------------------- /server/src/dto/UserResponseDTO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/dto/UserResponseDTO.ts -------------------------------------------------------------------------------- /server/src/middlewares/SystemLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/middlewares/SystemLogger.ts -------------------------------------------------------------------------------- /server/src/models/Bids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/models/Bids.ts -------------------------------------------------------------------------------- /server/src/models/Images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/models/Images.ts -------------------------------------------------------------------------------- /server/src/models/Products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/models/Products.ts -------------------------------------------------------------------------------- /server/src/models/Users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/models/Users.ts -------------------------------------------------------------------------------- /server/src/repositories/BidRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/repositories/BidRepository.ts -------------------------------------------------------------------------------- /server/src/repositories/ImageRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/repositories/ImageRepository.ts -------------------------------------------------------------------------------- /server/src/repositories/LogRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/repositories/LogRepository.ts -------------------------------------------------------------------------------- /server/src/repositories/ProductRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/repositories/ProductRepository.ts -------------------------------------------------------------------------------- /server/src/repositories/UserRepository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/repositories/UserRepository.ts -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/src/services/BidService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/BidService.ts -------------------------------------------------------------------------------- /server/src/services/FireStoreService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/FireStoreService.ts -------------------------------------------------------------------------------- /server/src/services/ItemService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/ItemService.ts -------------------------------------------------------------------------------- /server/src/services/LogService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/LogService.ts -------------------------------------------------------------------------------- /server/src/services/ProductService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/ProductService.ts -------------------------------------------------------------------------------- /server/src/services/S3Service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/S3Service.ts -------------------------------------------------------------------------------- /server/src/services/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/services/UserService.ts -------------------------------------------------------------------------------- /server/src/util/DateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/util/DateUtils.ts -------------------------------------------------------------------------------- /server/src/util/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/util/StringUtils.ts -------------------------------------------------------------------------------- /server/src/util/authUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/util/authUtils.ts -------------------------------------------------------------------------------- /server/src/util/fetchUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/src/util/fetchUtil.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/connect-foundation/2019-11/HEAD/server/tsconfig.json --------------------------------------------------------------------------------