├── .gitignore ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── Component.css ├── GooberStyled ├── Common.js └── TwitterHeart.js ├── components ├── CommentComponent │ ├── CommentCard.jsx │ ├── DropDownContent.jsx │ └── ReplyComment.jsx ├── EditPost.jsx ├── NotFound.jsx ├── PopInfo.jsx ├── SearchInput.jsx ├── Second.jsx ├── SideTop.jsx ├── Sidebar.jsx ├── SmallComponent │ ├── AddPicker.jsx │ ├── FollowInfo.jsx │ └── alertMessage.jsx ├── TweetComponents │ ├── AddTweet.jsx │ ├── BottomTab.jsx │ ├── DropDown.jsx │ ├── HomeTweets.jsx │ ├── TrendBar.jsx │ ├── TweetCard.jsx │ ├── TweetContent.jsx │ ├── TweetPostCard.jsx │ └── tweetHeader.jsx ├── TweetOperation.jsx └── UserRelated │ ├── RecommendUser.jsx │ └── UserEditModal.jsx ├── dabi.jpg ├── hooks ├── useForm.jsx ├── usePaginate.js └── useUserInfo.jsx ├── index.css ├── index.js ├── loading.gif ├── pages ├── Activate.jsx ├── BookmarkList.jsx ├── ChatMessage.jsx ├── Explore.jsx ├── FollowUser.jsx ├── Home.jsx ├── Login.jsx ├── Message.jsx ├── Notifications.jsx ├── PrivateRoomChat.jsx ├── Profile.jsx ├── Register.jsx └── TweetDetail.jsx ├── pop.mp3 ├── redux ├── asyncActions │ ├── ChatAsync.js │ ├── CommentAsync.js │ ├── NotificationAsync.js │ ├── TweetAsync.js │ └── UserAsync.js ├── slices │ ├── ChatSlice.js │ ├── CommentSlice.js │ ├── NotificationSlice.js │ ├── SearchSlice.js │ ├── simpleState.js │ ├── tweetSlice.js │ └── userSlice.js └── store.js ├── reportWebVitals.js ├── setupTests.js └── styles ├── chat.css └── explore.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/Component.css -------------------------------------------------------------------------------- /src/GooberStyled/Common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/GooberStyled/Common.js -------------------------------------------------------------------------------- /src/GooberStyled/TwitterHeart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/GooberStyled/TwitterHeart.js -------------------------------------------------------------------------------- /src/components/CommentComponent/CommentCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/CommentComponent/CommentCard.jsx -------------------------------------------------------------------------------- /src/components/CommentComponent/DropDownContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/CommentComponent/DropDownContent.jsx -------------------------------------------------------------------------------- /src/components/CommentComponent/ReplyComment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/CommentComponent/ReplyComment.jsx -------------------------------------------------------------------------------- /src/components/EditPost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/EditPost.jsx -------------------------------------------------------------------------------- /src/components/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/NotFound.jsx -------------------------------------------------------------------------------- /src/components/PopInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/PopInfo.jsx -------------------------------------------------------------------------------- /src/components/SearchInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/SearchInput.jsx -------------------------------------------------------------------------------- /src/components/Second.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/Second.jsx -------------------------------------------------------------------------------- /src/components/SideTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/SideTop.jsx -------------------------------------------------------------------------------- /src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /src/components/SmallComponent/AddPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/SmallComponent/AddPicker.jsx -------------------------------------------------------------------------------- /src/components/SmallComponent/FollowInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/SmallComponent/FollowInfo.jsx -------------------------------------------------------------------------------- /src/components/SmallComponent/alertMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/SmallComponent/alertMessage.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/AddTweet.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/AddTweet.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/BottomTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/BottomTab.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/DropDown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/DropDown.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/HomeTweets.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/HomeTweets.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/TrendBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/TrendBar.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/TweetCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/TweetCard.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/TweetContent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/TweetContent.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/TweetPostCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/TweetPostCard.jsx -------------------------------------------------------------------------------- /src/components/TweetComponents/tweetHeader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetComponents/tweetHeader.jsx -------------------------------------------------------------------------------- /src/components/TweetOperation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/TweetOperation.jsx -------------------------------------------------------------------------------- /src/components/UserRelated/RecommendUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/UserRelated/RecommendUser.jsx -------------------------------------------------------------------------------- /src/components/UserRelated/UserEditModal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/components/UserRelated/UserEditModal.jsx -------------------------------------------------------------------------------- /src/dabi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/dabi.jpg -------------------------------------------------------------------------------- /src/hooks/useForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/hooks/useForm.jsx -------------------------------------------------------------------------------- /src/hooks/usePaginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/hooks/usePaginate.js -------------------------------------------------------------------------------- /src/hooks/useUserInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/hooks/useUserInfo.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/loading.gif -------------------------------------------------------------------------------- /src/pages/Activate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Activate.jsx -------------------------------------------------------------------------------- /src/pages/BookmarkList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/BookmarkList.jsx -------------------------------------------------------------------------------- /src/pages/ChatMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/ChatMessage.jsx -------------------------------------------------------------------------------- /src/pages/Explore.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Explore.jsx -------------------------------------------------------------------------------- /src/pages/FollowUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/FollowUser.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Login.jsx -------------------------------------------------------------------------------- /src/pages/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Message.jsx -------------------------------------------------------------------------------- /src/pages/Notifications.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Notifications.jsx -------------------------------------------------------------------------------- /src/pages/PrivateRoomChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/PrivateRoomChat.jsx -------------------------------------------------------------------------------- /src/pages/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Profile.jsx -------------------------------------------------------------------------------- /src/pages/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/Register.jsx -------------------------------------------------------------------------------- /src/pages/TweetDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pages/TweetDetail.jsx -------------------------------------------------------------------------------- /src/pop.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/pop.mp3 -------------------------------------------------------------------------------- /src/redux/asyncActions/ChatAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/asyncActions/ChatAsync.js -------------------------------------------------------------------------------- /src/redux/asyncActions/CommentAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/asyncActions/CommentAsync.js -------------------------------------------------------------------------------- /src/redux/asyncActions/NotificationAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/asyncActions/NotificationAsync.js -------------------------------------------------------------------------------- /src/redux/asyncActions/TweetAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/asyncActions/TweetAsync.js -------------------------------------------------------------------------------- /src/redux/asyncActions/UserAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/asyncActions/UserAsync.js -------------------------------------------------------------------------------- /src/redux/slices/ChatSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/slices/ChatSlice.js -------------------------------------------------------------------------------- /src/redux/slices/CommentSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/slices/CommentSlice.js -------------------------------------------------------------------------------- /src/redux/slices/NotificationSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/slices/NotificationSlice.js -------------------------------------------------------------------------------- /src/redux/slices/SearchSlice.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/redux/slices/simpleState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/slices/simpleState.js -------------------------------------------------------------------------------- /src/redux/slices/tweetSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/slices/tweetSlice.js -------------------------------------------------------------------------------- /src/redux/slices/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/slices/userSlice.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/styles/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/styles/chat.css -------------------------------------------------------------------------------- /src/styles/explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learningnoobi/twitter-react/HEAD/src/styles/explore.css --------------------------------------------------------------------------------