├── .gitignore ├── README.md ├── netlify.toml ├── package.json ├── public ├── index.html ├── logo.png ├── manifest.json └── robots.txt └── src ├── App.js ├── Data └── Home.js ├── assets ├── friends.png ├── groups.png ├── messenger.png ├── no_feed.svg └── selectFriends.svg ├── components ├── Auth │ ├── LoginForm.js │ ├── RecentAccount │ │ ├── AccountCard.js │ │ ├── AddAccount.js │ │ ├── LoginCard.js │ │ └── RecentAccounts.js │ ├── SignupForm.js │ └── hooks │ │ ├── useLoginUser.js │ │ └── useSignupUser.js ├── Chat │ ├── FriendNotSelected.js │ ├── Friends.js │ ├── MessageTextArea.js │ └── Messages.js ├── Comment │ ├── Comment.js │ └── CommentTextArea.js ├── Friends │ ├── Friend.js │ ├── MyFriendLists.js │ ├── SearchFriends.js │ ├── UserLists.js │ └── styles.js ├── InputField.js ├── Loader.js ├── Navbar │ ├── BottomNav.js │ ├── CreatePostMenu.js │ ├── DrawerBar.js │ ├── MiddleMenu.js │ ├── Navbar.js │ ├── ProfileMenu.js │ ├── RightMenu.js │ └── styles.js ├── NotificationMenu.js ├── PeopleYouMayKnow.js ├── Post │ ├── LikePost.js │ ├── Post.js │ ├── PostContent.js │ ├── PostFooter.js │ ├── PostForm │ │ ├── PostDialog │ │ │ ├── CameraField.js │ │ │ ├── CustomHeaderText.js │ │ │ ├── DialogHeader.js │ │ │ ├── FeelingsCard.js │ │ │ ├── FileField.js │ │ │ ├── LocationField.js │ │ │ ├── PostFormCard.js │ │ │ ├── PreviewImage.js │ │ │ └── TagUserCard.js │ │ └── WritePostCard.js │ ├── PostSubContent.js │ ├── Posts.js │ └── hooks │ │ └── useCreatePost.js ├── Profile │ ├── Friends.js │ ├── Photos.js │ ├── PopoverProfile.js │ ├── PopoverProfileCard.js │ ├── ProfileHeader.js │ ├── ProfileTimeline.js │ ├── UpdateCoverImage.js │ ├── UpdateProfileImage.js │ └── UserProfile.js ├── Search.js ├── Sidebar.js ├── UI │ ├── AvartarText.js │ ├── DialogLoading.js │ ├── GoogleMap.js │ └── StyledBadge.js └── settings │ ├── Blocking.js │ ├── General.js │ ├── General │ └── EditInput.js │ ├── Location.js │ ├── Location │ └── EditLocation.js │ ├── Privacy.js │ ├── SecurityAndLogin.js │ ├── SecurityAndLogin │ └── EditPassword.js │ └── TrigoInformation.js ├── context ├── ChatContext.js ├── PostContext.js ├── UIContext.js └── UserContext.js ├── firebase └── firebase.js ├── hooks ├── useCreateComment.js ├── useFetchComments.js ├── useFetchPost.js ├── useFriendActions.js ├── useLocationService.js ├── useSearchFriends.js ├── useSendMessage.js ├── useTheme.js ├── useUpdateProfile.js └── useUpdateProfilePic.js ├── index.css ├── index.js ├── screens ├── Auth.js ├── Friends.js ├── Home.js ├── Messenger.js ├── Post.js ├── Profile.js └── Settings.js ├── services ├── AuthService.js ├── ChatService.js ├── PostServices.js └── UserServices.js └── utils ├── FilterArray.js └── ProtectedRoute.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Data/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/Data/Home.js -------------------------------------------------------------------------------- /src/assets/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/assets/friends.png -------------------------------------------------------------------------------- /src/assets/groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/assets/groups.png -------------------------------------------------------------------------------- /src/assets/messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/assets/messenger.png -------------------------------------------------------------------------------- /src/assets/no_feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/assets/no_feed.svg -------------------------------------------------------------------------------- /src/assets/selectFriends.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/assets/selectFriends.svg -------------------------------------------------------------------------------- /src/components/Auth/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/LoginForm.js -------------------------------------------------------------------------------- /src/components/Auth/RecentAccount/AccountCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/RecentAccount/AccountCard.js -------------------------------------------------------------------------------- /src/components/Auth/RecentAccount/AddAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/RecentAccount/AddAccount.js -------------------------------------------------------------------------------- /src/components/Auth/RecentAccount/LoginCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/RecentAccount/LoginCard.js -------------------------------------------------------------------------------- /src/components/Auth/RecentAccount/RecentAccounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/RecentAccount/RecentAccounts.js -------------------------------------------------------------------------------- /src/components/Auth/SignupForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/SignupForm.js -------------------------------------------------------------------------------- /src/components/Auth/hooks/useLoginUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/hooks/useLoginUser.js -------------------------------------------------------------------------------- /src/components/Auth/hooks/useSignupUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Auth/hooks/useSignupUser.js -------------------------------------------------------------------------------- /src/components/Chat/FriendNotSelected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Chat/FriendNotSelected.js -------------------------------------------------------------------------------- /src/components/Chat/Friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Chat/Friends.js -------------------------------------------------------------------------------- /src/components/Chat/MessageTextArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Chat/MessageTextArea.js -------------------------------------------------------------------------------- /src/components/Chat/Messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Chat/Messages.js -------------------------------------------------------------------------------- /src/components/Comment/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Comment/Comment.js -------------------------------------------------------------------------------- /src/components/Comment/CommentTextArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Comment/CommentTextArea.js -------------------------------------------------------------------------------- /src/components/Friends/Friend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Friends/Friend.js -------------------------------------------------------------------------------- /src/components/Friends/MyFriendLists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Friends/MyFriendLists.js -------------------------------------------------------------------------------- /src/components/Friends/SearchFriends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Friends/SearchFriends.js -------------------------------------------------------------------------------- /src/components/Friends/UserLists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Friends/UserLists.js -------------------------------------------------------------------------------- /src/components/Friends/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Friends/styles.js -------------------------------------------------------------------------------- /src/components/InputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/InputField.js -------------------------------------------------------------------------------- /src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Loader.js -------------------------------------------------------------------------------- /src/components/Navbar/BottomNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/BottomNav.js -------------------------------------------------------------------------------- /src/components/Navbar/CreatePostMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/CreatePostMenu.js -------------------------------------------------------------------------------- /src/components/Navbar/DrawerBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/DrawerBar.js -------------------------------------------------------------------------------- /src/components/Navbar/MiddleMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/MiddleMenu.js -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/Navbar.js -------------------------------------------------------------------------------- /src/components/Navbar/ProfileMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/ProfileMenu.js -------------------------------------------------------------------------------- /src/components/Navbar/RightMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/RightMenu.js -------------------------------------------------------------------------------- /src/components/Navbar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Navbar/styles.js -------------------------------------------------------------------------------- /src/components/NotificationMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/NotificationMenu.js -------------------------------------------------------------------------------- /src/components/PeopleYouMayKnow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/PeopleYouMayKnow.js -------------------------------------------------------------------------------- /src/components/Post/LikePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/LikePost.js -------------------------------------------------------------------------------- /src/components/Post/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/Post.js -------------------------------------------------------------------------------- /src/components/Post/PostContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostContent.js -------------------------------------------------------------------------------- /src/components/Post/PostFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostFooter.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/CameraField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/CameraField.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/CustomHeaderText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/CustomHeaderText.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/DialogHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/DialogHeader.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/FeelingsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/FeelingsCard.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/FileField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/FileField.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/LocationField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/LocationField.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/PostFormCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/PostFormCard.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/PreviewImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/PreviewImage.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/PostDialog/TagUserCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/PostDialog/TagUserCard.js -------------------------------------------------------------------------------- /src/components/Post/PostForm/WritePostCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostForm/WritePostCard.js -------------------------------------------------------------------------------- /src/components/Post/PostSubContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/PostSubContent.js -------------------------------------------------------------------------------- /src/components/Post/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/Posts.js -------------------------------------------------------------------------------- /src/components/Post/hooks/useCreatePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Post/hooks/useCreatePost.js -------------------------------------------------------------------------------- /src/components/Profile/Friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/Friends.js -------------------------------------------------------------------------------- /src/components/Profile/Photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/Photos.js -------------------------------------------------------------------------------- /src/components/Profile/PopoverProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/PopoverProfile.js -------------------------------------------------------------------------------- /src/components/Profile/PopoverProfileCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/PopoverProfileCard.js -------------------------------------------------------------------------------- /src/components/Profile/ProfileHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/ProfileHeader.js -------------------------------------------------------------------------------- /src/components/Profile/ProfileTimeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/ProfileTimeline.js -------------------------------------------------------------------------------- /src/components/Profile/UpdateCoverImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/UpdateCoverImage.js -------------------------------------------------------------------------------- /src/components/Profile/UpdateProfileImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/UpdateProfileImage.js -------------------------------------------------------------------------------- /src/components/Profile/UserProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Profile/UserProfile.js -------------------------------------------------------------------------------- /src/components/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Search.js -------------------------------------------------------------------------------- /src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/Sidebar.js -------------------------------------------------------------------------------- /src/components/UI/AvartarText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/UI/AvartarText.js -------------------------------------------------------------------------------- /src/components/UI/DialogLoading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/UI/DialogLoading.js -------------------------------------------------------------------------------- /src/components/UI/GoogleMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/UI/GoogleMap.js -------------------------------------------------------------------------------- /src/components/UI/StyledBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/UI/StyledBadge.js -------------------------------------------------------------------------------- /src/components/settings/Blocking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/Blocking.js -------------------------------------------------------------------------------- /src/components/settings/General.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/General.js -------------------------------------------------------------------------------- /src/components/settings/General/EditInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/General/EditInput.js -------------------------------------------------------------------------------- /src/components/settings/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/Location.js -------------------------------------------------------------------------------- /src/components/settings/Location/EditLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/Location/EditLocation.js -------------------------------------------------------------------------------- /src/components/settings/Privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/Privacy.js -------------------------------------------------------------------------------- /src/components/settings/SecurityAndLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/SecurityAndLogin.js -------------------------------------------------------------------------------- /src/components/settings/SecurityAndLogin/EditPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/SecurityAndLogin/EditPassword.js -------------------------------------------------------------------------------- /src/components/settings/TrigoInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/components/settings/TrigoInformation.js -------------------------------------------------------------------------------- /src/context/ChatContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/context/ChatContext.js -------------------------------------------------------------------------------- /src/context/PostContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/context/PostContext.js -------------------------------------------------------------------------------- /src/context/UIContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/context/UIContext.js -------------------------------------------------------------------------------- /src/context/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/context/UserContext.js -------------------------------------------------------------------------------- /src/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/firebase/firebase.js -------------------------------------------------------------------------------- /src/hooks/useCreateComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useCreateComment.js -------------------------------------------------------------------------------- /src/hooks/useFetchComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useFetchComments.js -------------------------------------------------------------------------------- /src/hooks/useFetchPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useFetchPost.js -------------------------------------------------------------------------------- /src/hooks/useFriendActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useFriendActions.js -------------------------------------------------------------------------------- /src/hooks/useLocationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useLocationService.js -------------------------------------------------------------------------------- /src/hooks/useSearchFriends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useSearchFriends.js -------------------------------------------------------------------------------- /src/hooks/useSendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useSendMessage.js -------------------------------------------------------------------------------- /src/hooks/useTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useTheme.js -------------------------------------------------------------------------------- /src/hooks/useUpdateProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useUpdateProfile.js -------------------------------------------------------------------------------- /src/hooks/useUpdateProfilePic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/hooks/useUpdateProfilePic.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/index.js -------------------------------------------------------------------------------- /src/screens/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Auth.js -------------------------------------------------------------------------------- /src/screens/Friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Friends.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/Messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Messenger.js -------------------------------------------------------------------------------- /src/screens/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Post.js -------------------------------------------------------------------------------- /src/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Profile.js -------------------------------------------------------------------------------- /src/screens/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/screens/Settings.js -------------------------------------------------------------------------------- /src/services/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/services/AuthService.js -------------------------------------------------------------------------------- /src/services/ChatService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/services/ChatService.js -------------------------------------------------------------------------------- /src/services/PostServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/services/PostServices.js -------------------------------------------------------------------------------- /src/services/UserServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/services/UserServices.js -------------------------------------------------------------------------------- /src/utils/FilterArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/utils/FilterArray.js -------------------------------------------------------------------------------- /src/utils/ProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshmangalam/facebook-clone-app-react-client/HEAD/src/utils/ProtectedRoute.js --------------------------------------------------------------------------------