├── .gitignore ├── Design ├── Desktop-1.png ├── Desktop-2.png ├── Desktop-3.png └── Desktop-4.png ├── LICENSE ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.png └── index.html └── src ├── App.js ├── DATE.js ├── app ├── rootReducer.js └── store.js ├── assets ├── cake.svg ├── camera.svg ├── chat.svg ├── clock.svg ├── close.svg ├── dp.jpg ├── file.svg ├── hamburger.svg ├── home.svg ├── img-1.jpg ├── img-2.jpg ├── img-3.jpg ├── index.js ├── location.svg ├── logout.svg ├── mail.svg ├── not-found.png ├── not-found.svg ├── options.svg ├── plane.svg └── search.svg ├── components ├── Appbar │ ├── Appbar.jsx │ └── appbar.css ├── Backdrop │ ├── Backdrop.jsx │ └── backdrop.css ├── ChatCard │ ├── ChatCard.jsx │ └── chatcard.css ├── Comment │ ├── Comment.jsx │ └── comment.css ├── Comments │ ├── Comments.jsx │ └── comments.css ├── Confirmation │ ├── confirmation.css │ └── useConfirmation.jsx ├── CreatePost │ ├── CreatePost.jsx │ └── createpost.css ├── DataList │ └── DataList.jsx ├── EditPost │ ├── EditPost.jsx │ └── editpost.css ├── Gallery │ ├── Gallery.jsx │ └── gallery.css ├── ImageUpload │ ├── ImageUpload.jsx │ └── imageupload.css ├── InfinityScroll │ └── InfinityScroll.jsx ├── Input │ ├── EmojiPicker.jsx │ ├── Input.jsx │ └── input.css ├── Loading │ ├── Loading.jsx │ └── loading.css ├── Login │ └── Login.jsx ├── MainGallery │ ├── MainGallery.jsx │ └── maingallery.css ├── Messenger │ ├── Messenger.jsx │ └── messenger.css ├── Modal │ ├── Modal.jsx │ └── modal.css ├── Online │ ├── Online.jsx │ └── online.css ├── Options │ ├── Options.jsx │ └── options.css ├── Post │ ├── ImageViewer.jsx │ ├── Loading.jsx │ ├── Post.jsx │ ├── Posts.jsx │ ├── Share.jsx │ └── post.css ├── ProfileCard │ ├── Guest.jsx │ ├── ProfileCard.jsx │ └── profilecard.css ├── Register │ └── Register.jsx ├── SearchResults │ ├── SearchResults.jsx │ └── searchresult.css ├── SetupProfile │ ├── SetupProfile.jsx │ └── setupprofile.css ├── SingleChat │ ├── SingleChat.jsx │ └── singlechat.css └── ThemeSwitch │ ├── ThemeSwitch.jsx │ └── themeSwitch.css ├── features ├── messageSlice.js ├── modalSlice.js ├── postSlice.js ├── socketSlice.js ├── userSlice.js └── usersSlice.js ├── hooks └── useFetch.js ├── index.css ├── index.js ├── pages ├── Auth │ ├── Auth.jsx │ ├── DomainList.jsx │ └── auth.css ├── Chat │ ├── Chat.jsx │ └── chat.css ├── Home │ ├── Home.jsx │ └── home.css ├── Messenger │ └── Messenger.jsx ├── NotFound │ ├── NotFound.jsx │ └── notfound.css ├── Profile │ ├── Profile.jsx │ └── profile.css └── Singlepost │ ├── SinglePost.jsx │ └── singlepost.css ├── routes ├── ProtectedRoute.jsx └── index.jsx ├── serverUri.js ├── services ├── authServices.js ├── axiosConfig.js ├── messageServices.js ├── postServices.js └── userServices.js └── utils ├── extractParams.js └── getDateString.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /Design/Desktop-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/Design/Desktop-1.png -------------------------------------------------------------------------------- /Design/Desktop-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/Design/Desktop-2.png -------------------------------------------------------------------------------- /Design/Desktop-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/Design/Desktop-3.png -------------------------------------------------------------------------------- /Design/Desktop-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/Design/Desktop-4.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/DATE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/DATE.js -------------------------------------------------------------------------------- /src/app/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/app/rootReducer.js -------------------------------------------------------------------------------- /src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/app/store.js -------------------------------------------------------------------------------- /src/assets/cake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/cake.svg -------------------------------------------------------------------------------- /src/assets/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/camera.svg -------------------------------------------------------------------------------- /src/assets/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/chat.svg -------------------------------------------------------------------------------- /src/assets/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/clock.svg -------------------------------------------------------------------------------- /src/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/close.svg -------------------------------------------------------------------------------- /src/assets/dp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/dp.jpg -------------------------------------------------------------------------------- /src/assets/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/file.svg -------------------------------------------------------------------------------- /src/assets/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/hamburger.svg -------------------------------------------------------------------------------- /src/assets/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/home.svg -------------------------------------------------------------------------------- /src/assets/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/img-1.jpg -------------------------------------------------------------------------------- /src/assets/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/img-2.jpg -------------------------------------------------------------------------------- /src/assets/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/img-3.jpg -------------------------------------------------------------------------------- /src/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/index.js -------------------------------------------------------------------------------- /src/assets/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/location.svg -------------------------------------------------------------------------------- /src/assets/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/logout.svg -------------------------------------------------------------------------------- /src/assets/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/mail.svg -------------------------------------------------------------------------------- /src/assets/not-found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/not-found.png -------------------------------------------------------------------------------- /src/assets/not-found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/not-found.svg -------------------------------------------------------------------------------- /src/assets/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/options.svg -------------------------------------------------------------------------------- /src/assets/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/plane.svg -------------------------------------------------------------------------------- /src/assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/assets/search.svg -------------------------------------------------------------------------------- /src/components/Appbar/Appbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Appbar/Appbar.jsx -------------------------------------------------------------------------------- /src/components/Appbar/appbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Appbar/appbar.css -------------------------------------------------------------------------------- /src/components/Backdrop/Backdrop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Backdrop/Backdrop.jsx -------------------------------------------------------------------------------- /src/components/Backdrop/backdrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Backdrop/backdrop.css -------------------------------------------------------------------------------- /src/components/ChatCard/ChatCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ChatCard/ChatCard.jsx -------------------------------------------------------------------------------- /src/components/ChatCard/chatcard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ChatCard/chatcard.css -------------------------------------------------------------------------------- /src/components/Comment/Comment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Comment/Comment.jsx -------------------------------------------------------------------------------- /src/components/Comment/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Comment/comment.css -------------------------------------------------------------------------------- /src/components/Comments/Comments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Comments/Comments.jsx -------------------------------------------------------------------------------- /src/components/Comments/comments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Comments/comments.css -------------------------------------------------------------------------------- /src/components/Confirmation/confirmation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Confirmation/confirmation.css -------------------------------------------------------------------------------- /src/components/Confirmation/useConfirmation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Confirmation/useConfirmation.jsx -------------------------------------------------------------------------------- /src/components/CreatePost/CreatePost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/CreatePost/CreatePost.jsx -------------------------------------------------------------------------------- /src/components/CreatePost/createpost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/CreatePost/createpost.css -------------------------------------------------------------------------------- /src/components/DataList/DataList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/DataList/DataList.jsx -------------------------------------------------------------------------------- /src/components/EditPost/EditPost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/EditPost/EditPost.jsx -------------------------------------------------------------------------------- /src/components/EditPost/editpost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/EditPost/editpost.css -------------------------------------------------------------------------------- /src/components/Gallery/Gallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Gallery/Gallery.jsx -------------------------------------------------------------------------------- /src/components/Gallery/gallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Gallery/gallery.css -------------------------------------------------------------------------------- /src/components/ImageUpload/ImageUpload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ImageUpload/ImageUpload.jsx -------------------------------------------------------------------------------- /src/components/ImageUpload/imageupload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ImageUpload/imageupload.css -------------------------------------------------------------------------------- /src/components/InfinityScroll/InfinityScroll.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/InfinityScroll/InfinityScroll.jsx -------------------------------------------------------------------------------- /src/components/Input/EmojiPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Input/EmojiPicker.jsx -------------------------------------------------------------------------------- /src/components/Input/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Input/Input.jsx -------------------------------------------------------------------------------- /src/components/Input/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Input/input.css -------------------------------------------------------------------------------- /src/components/Loading/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Loading/Loading.jsx -------------------------------------------------------------------------------- /src/components/Loading/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Loading/loading.css -------------------------------------------------------------------------------- /src/components/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Login/Login.jsx -------------------------------------------------------------------------------- /src/components/MainGallery/MainGallery.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/MainGallery/MainGallery.jsx -------------------------------------------------------------------------------- /src/components/MainGallery/maingallery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/MainGallery/maingallery.css -------------------------------------------------------------------------------- /src/components/Messenger/Messenger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Messenger/Messenger.jsx -------------------------------------------------------------------------------- /src/components/Messenger/messenger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Messenger/messenger.css -------------------------------------------------------------------------------- /src/components/Modal/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Modal/Modal.jsx -------------------------------------------------------------------------------- /src/components/Modal/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Modal/modal.css -------------------------------------------------------------------------------- /src/components/Online/Online.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Online/Online.jsx -------------------------------------------------------------------------------- /src/components/Online/online.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Online/online.css -------------------------------------------------------------------------------- /src/components/Options/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Options/Options.jsx -------------------------------------------------------------------------------- /src/components/Options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Options/options.css -------------------------------------------------------------------------------- /src/components/Post/ImageViewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Post/ImageViewer.jsx -------------------------------------------------------------------------------- /src/components/Post/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Post/Loading.jsx -------------------------------------------------------------------------------- /src/components/Post/Post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Post/Post.jsx -------------------------------------------------------------------------------- /src/components/Post/Posts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Post/Posts.jsx -------------------------------------------------------------------------------- /src/components/Post/Share.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Post/Share.jsx -------------------------------------------------------------------------------- /src/components/Post/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Post/post.css -------------------------------------------------------------------------------- /src/components/ProfileCard/Guest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ProfileCard/Guest.jsx -------------------------------------------------------------------------------- /src/components/ProfileCard/ProfileCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ProfileCard/ProfileCard.jsx -------------------------------------------------------------------------------- /src/components/ProfileCard/profilecard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ProfileCard/profilecard.css -------------------------------------------------------------------------------- /src/components/Register/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/Register/Register.jsx -------------------------------------------------------------------------------- /src/components/SearchResults/SearchResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/SearchResults/SearchResults.jsx -------------------------------------------------------------------------------- /src/components/SearchResults/searchresult.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/SearchResults/searchresult.css -------------------------------------------------------------------------------- /src/components/SetupProfile/SetupProfile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/SetupProfile/SetupProfile.jsx -------------------------------------------------------------------------------- /src/components/SetupProfile/setupprofile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/SetupProfile/setupprofile.css -------------------------------------------------------------------------------- /src/components/SingleChat/SingleChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/SingleChat/SingleChat.jsx -------------------------------------------------------------------------------- /src/components/SingleChat/singlechat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/SingleChat/singlechat.css -------------------------------------------------------------------------------- /src/components/ThemeSwitch/ThemeSwitch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ThemeSwitch/ThemeSwitch.jsx -------------------------------------------------------------------------------- /src/components/ThemeSwitch/themeSwitch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/components/ThemeSwitch/themeSwitch.css -------------------------------------------------------------------------------- /src/features/messageSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/features/messageSlice.js -------------------------------------------------------------------------------- /src/features/modalSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/features/modalSlice.js -------------------------------------------------------------------------------- /src/features/postSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/features/postSlice.js -------------------------------------------------------------------------------- /src/features/socketSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/features/socketSlice.js -------------------------------------------------------------------------------- /src/features/userSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/features/userSlice.js -------------------------------------------------------------------------------- /src/features/usersSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/features/usersSlice.js -------------------------------------------------------------------------------- /src/hooks/useFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/hooks/useFetch.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Auth/Auth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Auth/Auth.jsx -------------------------------------------------------------------------------- /src/pages/Auth/DomainList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Auth/DomainList.jsx -------------------------------------------------------------------------------- /src/pages/Auth/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Auth/auth.css -------------------------------------------------------------------------------- /src/pages/Chat/Chat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Chat/Chat.jsx -------------------------------------------------------------------------------- /src/pages/Chat/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Chat/chat.css -------------------------------------------------------------------------------- /src/pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Home/Home.jsx -------------------------------------------------------------------------------- /src/pages/Home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Home/home.css -------------------------------------------------------------------------------- /src/pages/Messenger/Messenger.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Messenger/Messenger.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/NotFound/NotFound.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/notfound.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/NotFound/notfound.css -------------------------------------------------------------------------------- /src/pages/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Profile/Profile.jsx -------------------------------------------------------------------------------- /src/pages/Profile/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Profile/profile.css -------------------------------------------------------------------------------- /src/pages/Singlepost/SinglePost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Singlepost/SinglePost.jsx -------------------------------------------------------------------------------- /src/pages/Singlepost/singlepost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/pages/Singlepost/singlepost.css -------------------------------------------------------------------------------- /src/routes/ProtectedRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/routes/ProtectedRoute.jsx -------------------------------------------------------------------------------- /src/routes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/routes/index.jsx -------------------------------------------------------------------------------- /src/serverUri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/serverUri.js -------------------------------------------------------------------------------- /src/services/authServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/services/authServices.js -------------------------------------------------------------------------------- /src/services/axiosConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/services/axiosConfig.js -------------------------------------------------------------------------------- /src/services/messageServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/services/messageServices.js -------------------------------------------------------------------------------- /src/services/postServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/services/postServices.js -------------------------------------------------------------------------------- /src/services/userServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/services/userServices.js -------------------------------------------------------------------------------- /src/utils/extractParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/utils/extractParams.js -------------------------------------------------------------------------------- /src/utils/getDateString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adram3l3ch/fb-clone-frontend/HEAD/src/utils/getDateString.js --------------------------------------------------------------------------------