├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── react-1.iml └── vcs.xml ├── .vscode └── launch.json ├── README-IMG ├── 0_SSDchB03yEUDUYHg_.png ├── 1562585643793.png ├── 1562938967001.png ├── 1562940934753.png ├── 1564063093206.png ├── 1564214889509.png ├── 1564215021643.png ├── 1564215283657.png ├── 1564215428311.png ├── 1564427302517.png ├── 1565187371752.png ├── 1565187623311.png ├── 1565187791164.png ├── 1565187836760.png ├── 1565187882877.png ├── 1565517952176.png ├── 1565518489591.png ├── 1565524485562.png ├── 1565949602035.png ├── 1565949713701.png ├── 1565949848685.png ├── 1565950092440.png ├── 1565951914995.png ├── 1566127947019.png ├── 1566304151424.png ├── 1567066574050.png ├── 1567067268523.png ├── 1567067454013.png ├── 1567363368480.png ├── 1567363461202.png ├── 1567363747497.png ├── 1567363862457.png ├── 1567364011979.png ├── 1567364125842.png ├── image-20191023235920585.png └── reduxform.png ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json └── src ├── App.js ├── App.scss ├── App.test.js ├── api └── usersAPI.js ├── assets ├── common │ ├── FormsControls │ │ ├── FormsControls.jsx │ │ └── FormsControls.module.scss │ ├── initialPreloader │ │ ├── initialPreloader.jsx │ │ └── preloader.module.scss │ └── preloader │ │ ├── preloader.jsx │ │ └── preloader.module.scss └── images │ └── 768px-Circle-icons-profile.svg.png ├── components ├── Dialogs │ ├── DialogItem │ │ └── DialogItem.jsx │ ├── Dialogs.jsx │ ├── Dialogs.module.scss │ ├── DialogsContainer.jsx │ └── Message │ │ └── Message.jsx ├── Header │ ├── Header.jsx │ ├── Header.module.scss │ └── HeaderContainer.jsx ├── Login │ ├── Login.jsx │ └── Login.module.scss ├── Nav │ ├── FriendsBar │ │ ├── FriendItem │ │ │ └── Friend.jsx │ │ ├── FriendsList.jsx │ │ ├── FriendsList.module.scss │ │ └── FriendsListContainer.jsx │ ├── Nav.jsx │ └── Nav.module.scss ├── Profile │ ├── MyPosts │ │ ├── MyPosts.jsx │ │ ├── MyPosts.module.scss │ │ ├── MyPostsContainer.jsx │ │ └── Post │ │ │ ├── Post.jsx │ │ │ └── Post.module.scss │ ├── Profile.jsx │ ├── Profile.module.scss │ ├── ProfileContainer.jsx │ └── ProfileInfo │ │ ├── ProfileInfo.jsx │ │ ├── ProfileInfo.module.scss │ │ ├── ProfileStatus.jsx │ │ └── ProfileStatusHook.jsx └── Users │ ├── UserItem │ ├── UserItem.jsx │ └── UserItemS.jsx │ ├── Users.jsx │ ├── Users.module.scss │ ├── UsersContainer.jsx │ └── UsersS.jsx ├── hoc └── withAuthRedirect.js ├── index.css ├── index.js ├── logo.svg ├── redux ├── app-reducer.js ├── auth-reducer.js ├── friends-reducer.js ├── messages-reducer.js ├── profile-reducer.js ├── profile-reducer.test.js ├── redux-store.js ├── store.js ├── users-reducer.js └── users-selector.js ├── serviceWorker.js └── utils ├── object-helpers.js └── validators └── validators.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/react-1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.idea/react-1.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README-IMG/0_SSDchB03yEUDUYHg_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/0_SSDchB03yEUDUYHg_.png -------------------------------------------------------------------------------- /README-IMG/1562585643793.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1562585643793.png -------------------------------------------------------------------------------- /README-IMG/1562938967001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1562938967001.png -------------------------------------------------------------------------------- /README-IMG/1562940934753.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1562940934753.png -------------------------------------------------------------------------------- /README-IMG/1564063093206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1564063093206.png -------------------------------------------------------------------------------- /README-IMG/1564214889509.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1564214889509.png -------------------------------------------------------------------------------- /README-IMG/1564215021643.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1564215021643.png -------------------------------------------------------------------------------- /README-IMG/1564215283657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1564215283657.png -------------------------------------------------------------------------------- /README-IMG/1564215428311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1564215428311.png -------------------------------------------------------------------------------- /README-IMG/1564427302517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1564427302517.png -------------------------------------------------------------------------------- /README-IMG/1565187371752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565187371752.png -------------------------------------------------------------------------------- /README-IMG/1565187623311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565187623311.png -------------------------------------------------------------------------------- /README-IMG/1565187791164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565187791164.png -------------------------------------------------------------------------------- /README-IMG/1565187836760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565187836760.png -------------------------------------------------------------------------------- /README-IMG/1565187882877.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565187882877.png -------------------------------------------------------------------------------- /README-IMG/1565517952176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565517952176.png -------------------------------------------------------------------------------- /README-IMG/1565518489591.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565518489591.png -------------------------------------------------------------------------------- /README-IMG/1565524485562.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565524485562.png -------------------------------------------------------------------------------- /README-IMG/1565949602035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565949602035.png -------------------------------------------------------------------------------- /README-IMG/1565949713701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565949713701.png -------------------------------------------------------------------------------- /README-IMG/1565949848685.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565949848685.png -------------------------------------------------------------------------------- /README-IMG/1565950092440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565950092440.png -------------------------------------------------------------------------------- /README-IMG/1565951914995.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1565951914995.png -------------------------------------------------------------------------------- /README-IMG/1566127947019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1566127947019.png -------------------------------------------------------------------------------- /README-IMG/1566304151424.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1566304151424.png -------------------------------------------------------------------------------- /README-IMG/1567066574050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567066574050.png -------------------------------------------------------------------------------- /README-IMG/1567067268523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567067268523.png -------------------------------------------------------------------------------- /README-IMG/1567067454013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567067454013.png -------------------------------------------------------------------------------- /README-IMG/1567363368480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567363368480.png -------------------------------------------------------------------------------- /README-IMG/1567363461202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567363461202.png -------------------------------------------------------------------------------- /README-IMG/1567363747497.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567363747497.png -------------------------------------------------------------------------------- /README-IMG/1567363862457.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567363862457.png -------------------------------------------------------------------------------- /README-IMG/1567364011979.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567364011979.png -------------------------------------------------------------------------------- /README-IMG/1567364125842.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/1567364125842.png -------------------------------------------------------------------------------- /README-IMG/image-20191023235920585.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/image-20191023235920585.png -------------------------------------------------------------------------------- /README-IMG/reduxform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README-IMG/reduxform.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/api/usersAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/api/usersAPI.js -------------------------------------------------------------------------------- /src/assets/common/FormsControls/FormsControls.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/common/FormsControls/FormsControls.jsx -------------------------------------------------------------------------------- /src/assets/common/FormsControls/FormsControls.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/common/FormsControls/FormsControls.module.scss -------------------------------------------------------------------------------- /src/assets/common/initialPreloader/initialPreloader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/common/initialPreloader/initialPreloader.jsx -------------------------------------------------------------------------------- /src/assets/common/initialPreloader/preloader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/common/initialPreloader/preloader.module.scss -------------------------------------------------------------------------------- /src/assets/common/preloader/preloader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/common/preloader/preloader.jsx -------------------------------------------------------------------------------- /src/assets/common/preloader/preloader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/common/preloader/preloader.module.scss -------------------------------------------------------------------------------- /src/assets/images/768px-Circle-icons-profile.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/assets/images/768px-Circle-icons-profile.svg.png -------------------------------------------------------------------------------- /src/components/Dialogs/DialogItem/DialogItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Dialogs/DialogItem/DialogItem.jsx -------------------------------------------------------------------------------- /src/components/Dialogs/Dialogs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Dialogs/Dialogs.jsx -------------------------------------------------------------------------------- /src/components/Dialogs/Dialogs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Dialogs/Dialogs.module.scss -------------------------------------------------------------------------------- /src/components/Dialogs/DialogsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Dialogs/DialogsContainer.jsx -------------------------------------------------------------------------------- /src/components/Dialogs/Message/Message.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Dialogs/Message/Message.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Header/Header.module.scss -------------------------------------------------------------------------------- /src/components/Header/HeaderContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Header/HeaderContainer.jsx -------------------------------------------------------------------------------- /src/components/Login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Login/Login.jsx -------------------------------------------------------------------------------- /src/components/Login/Login.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Login/Login.module.scss -------------------------------------------------------------------------------- /src/components/Nav/FriendsBar/FriendItem/Friend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Nav/FriendsBar/FriendItem/Friend.jsx -------------------------------------------------------------------------------- /src/components/Nav/FriendsBar/FriendsList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Nav/FriendsBar/FriendsList.jsx -------------------------------------------------------------------------------- /src/components/Nav/FriendsBar/FriendsList.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Nav/FriendsBar/FriendsList.module.scss -------------------------------------------------------------------------------- /src/components/Nav/FriendsBar/FriendsListContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Nav/FriendsBar/FriendsListContainer.jsx -------------------------------------------------------------------------------- /src/components/Nav/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Nav/Nav.jsx -------------------------------------------------------------------------------- /src/components/Nav/Nav.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Nav/Nav.module.scss -------------------------------------------------------------------------------- /src/components/Profile/MyPosts/MyPosts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/MyPosts/MyPosts.jsx -------------------------------------------------------------------------------- /src/components/Profile/MyPosts/MyPosts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/MyPosts/MyPosts.module.scss -------------------------------------------------------------------------------- /src/components/Profile/MyPosts/MyPostsContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/MyPosts/MyPostsContainer.jsx -------------------------------------------------------------------------------- /src/components/Profile/MyPosts/Post/Post.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/MyPosts/Post/Post.jsx -------------------------------------------------------------------------------- /src/components/Profile/MyPosts/Post/Post.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/MyPosts/Post/Post.module.scss -------------------------------------------------------------------------------- /src/components/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/Profile.jsx -------------------------------------------------------------------------------- /src/components/Profile/Profile.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Profile/ProfileContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/ProfileContainer.jsx -------------------------------------------------------------------------------- /src/components/Profile/ProfileInfo/ProfileInfo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/ProfileInfo/ProfileInfo.jsx -------------------------------------------------------------------------------- /src/components/Profile/ProfileInfo/ProfileInfo.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/ProfileInfo/ProfileInfo.module.scss -------------------------------------------------------------------------------- /src/components/Profile/ProfileInfo/ProfileStatus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/ProfileInfo/ProfileStatus.jsx -------------------------------------------------------------------------------- /src/components/Profile/ProfileInfo/ProfileStatusHook.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Profile/ProfileInfo/ProfileStatusHook.jsx -------------------------------------------------------------------------------- /src/components/Users/UserItem/UserItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Users/UserItem/UserItem.jsx -------------------------------------------------------------------------------- /src/components/Users/UserItem/UserItemS.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Users/UserItem/UserItemS.jsx -------------------------------------------------------------------------------- /src/components/Users/Users.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Users/Users.jsx -------------------------------------------------------------------------------- /src/components/Users/Users.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Users/Users.module.scss -------------------------------------------------------------------------------- /src/components/Users/UsersContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Users/UsersContainer.jsx -------------------------------------------------------------------------------- /src/components/Users/UsersS.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/components/Users/UsersS.jsx -------------------------------------------------------------------------------- /src/hoc/withAuthRedirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/hoc/withAuthRedirect.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/redux/app-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/app-reducer.js -------------------------------------------------------------------------------- /src/redux/auth-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/auth-reducer.js -------------------------------------------------------------------------------- /src/redux/friends-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/friends-reducer.js -------------------------------------------------------------------------------- /src/redux/messages-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/messages-reducer.js -------------------------------------------------------------------------------- /src/redux/profile-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/profile-reducer.js -------------------------------------------------------------------------------- /src/redux/profile-reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/profile-reducer.test.js -------------------------------------------------------------------------------- /src/redux/redux-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/redux-store.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/redux/users-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/users-reducer.js -------------------------------------------------------------------------------- /src/redux/users-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/redux/users-selector.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/utils/object-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/utils/object-helpers.js -------------------------------------------------------------------------------- /src/utils/validators/validators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ynhito/SocialNetworkReact/HEAD/src/utils/validators/validators.js --------------------------------------------------------------------------------