├── .firebase └── hosting.YnVpbGQ.cache ├── .firebaserc ├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .snyk ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.cn.md ├── README.md ├── _config.yml ├── book.json ├── codecov.yml ├── docs ├── README.md ├── SUMMARY.md ├── _config.yml ├── app │ ├── configure │ │ ├── development.env │ │ └── production.env │ ├── firestore.png │ ├── firestore2.png │ ├── layer-1.png │ ├── layer-2.png │ ├── layer-3.png │ ├── layer-4.png │ ├── layer-5.png │ ├── layer-6.png │ ├── layer.png │ ├── logo.png │ └── multi-device.png ├── layers.md ├── layers │ ├── actions.md │ ├── api.md │ ├── components.md │ ├── constants.md │ ├── reducers.md │ ├── store.md │ └── tests.md └── motivation.md ├── firebase.json ├── index.d.ts ├── package.json ├── public ├── favicon.ico ├── images │ └── flags.png └── index.html ├── server.js ├── src ├── api │ ├── CommentAPI.ts │ ├── CommonAPI.ts │ ├── FileAPI.ts │ ├── PostAPI.ts │ └── StringAPI.ts ├── assets │ ├── fonts │ │ ├── Flaticon.eot │ │ ├── Flaticon.ttf │ │ └── Flaticon.woff │ └── images │ │ └── Flaticon.svg ├── components │ ├── circle │ │ ├── CircleComponent.tsx │ │ ├── ICircleComponentProps.ts │ │ ├── ICircleComponentState.ts │ │ └── index.ts │ ├── comment │ │ ├── CommentComponent.tsx │ │ ├── ICommentComponentProps.ts │ │ ├── ICommentComponentState.ts │ │ └── index.ts │ ├── commentGroup │ │ ├── CommentGroupComponent.tsx │ │ ├── ICommentGroupComponentProps.ts │ │ ├── ICommentGroupComponentState.ts │ │ └── index.ts │ ├── commentList │ │ ├── CommentListComponent.tsx │ │ ├── ICommentListComponentProps.ts │ │ ├── ICommentListComponentState.ts │ │ └── index.ts │ ├── editProfile │ │ ├── EditProfileComponent.tsx │ │ ├── IEditProfileComponentProps.ts │ │ ├── IEditProfileComponentState.ts │ │ └── index.ts │ ├── findPeople │ │ ├── FindPeopleComponent.tsx │ │ ├── IFindPeopleComponentProps.ts │ │ ├── IFindPeopleComponentState.ts │ │ └── index.ts │ ├── followers │ │ ├── FollowersComponent.tsx │ │ ├── IFollowersComponentProps.ts │ │ ├── IFollowersComponentState.ts │ │ └── index.ts │ ├── following │ │ ├── FollowingComponent.tsx │ │ ├── IFollowingComponentProps.ts │ │ ├── IFollowingComponentState.ts │ │ └── index.ts │ ├── homeHeader │ │ ├── HomeHeaderComponent.tsx │ │ ├── IHomeHeaderComponentProps.ts │ │ ├── IHomeHeaderComponentState.ts │ │ └── index.ts │ ├── imageGallery │ │ ├── IImageGalleryComponentProps.ts │ │ ├── IImageGalleryComponentState.ts │ │ ├── ImageGalleryComponent.tsx │ │ └── index.ts │ ├── img │ │ ├── IImgComponentProps.ts │ │ ├── IImgComponentState.ts │ │ ├── ImgComponent.tsx │ │ └── index.ts │ ├── imgCover │ │ ├── IImgCoverComponentProps.ts │ │ ├── IImgCoverComponentState.ts │ │ ├── ImgCoverComponent.tsx │ │ └── index.ts │ ├── masterLoading │ │ ├── IMasterLoadingComponentProps.ts │ │ ├── IMasterLoadingComponentState.ts │ │ ├── MasterLoadingComponent.tsx │ │ └── index.ts │ ├── notify │ │ ├── INotifyComponentProps.ts │ │ ├── INotifyComponentState.ts │ │ ├── NotifyComponent.tsx │ │ └── index.ts │ ├── notifyItem │ │ ├── INotifyItemComponentProps.ts │ │ ├── INotifyItemComponentState.ts │ │ ├── NotifyItemComponent.tsx │ │ └── index.ts │ ├── post │ │ ├── IPostComponentProps.ts │ │ ├── IPostComponentState.ts │ │ ├── PostComponent.tsx │ │ └── index.ts │ ├── postWrite │ │ ├── IPostWriteComponentProps.ts │ │ ├── IPostWriteComponentState.ts │ │ ├── PostWriteComponent.tsx │ │ └── index.ts │ ├── profileHeader │ │ ├── IProfileHeaderComponentProps.ts │ │ ├── IProfileHeaderComponentState.ts │ │ ├── ProfileHeaderComponent.tsx │ │ └── index.ts │ ├── sendFeedback │ │ ├── ISendFeedbackComponentProps.ts │ │ ├── ISendFeedbackComponentState.ts │ │ ├── SendFeedbackComponent.tsx │ │ └── index.ts │ ├── shareDialog │ │ ├── IShareDialogComponentProps.ts │ │ ├── IShareDialogComponentState.ts │ │ ├── ShareDialogComponent.tsx │ │ └── index.ts │ ├── sidebar │ │ ├── ISidebarComponentProps.ts │ │ ├── ISidebarComponentState.ts │ │ ├── SidebarComponent.tsx │ │ └── index.ts │ ├── sidebarContent │ │ ├── ISidebarContentComponentProps.ts │ │ ├── ISidebarContentComponentState.ts │ │ ├── SidebarContentComponent.tsx │ │ └── index.ts │ ├── sidebarMain │ │ ├── ISidebarMainComponentProps.ts │ │ ├── ISidebarMainComponentState.ts │ │ ├── SidebarMainComponent.tsx │ │ └── index.ts │ ├── userAvatar │ │ ├── IUserAvatarComponentProps.ts │ │ ├── IUserAvatarComponentState.ts │ │ ├── UserAvatarComponent.tsx │ │ └── index.ts │ ├── userBox │ │ ├── IUserBoxComponentProps.ts │ │ ├── IUserBoxComponentState.ts │ │ ├── UserBoxComponent.tsx │ │ └── index.ts │ ├── userBoxList │ │ ├── IUserBoxListComponentProps.ts │ │ ├── IUserBoxListComponentState.ts │ │ ├── UserBoxListComponent.tsx │ │ └── index.ts │ └── yourCircles │ │ ├── IYourCirclesComponentProps.ts │ │ ├── IYourCirclesComponentState.ts │ │ ├── YourCirclesComponent.tsx │ │ └── index.ts ├── config │ ├── environment.dev.ts │ ├── environment.prod.ts │ └── index.ts ├── constants │ ├── authorizeActionType.ts │ ├── circleActionType.ts │ ├── commentActionType.ts │ ├── globalActionType.ts │ ├── imageGalleryActionType.ts │ ├── notificationActionType.ts │ ├── postActionType.ts │ ├── serverActionType.ts │ ├── serverRequestType.ts │ ├── userActionType.ts │ └── voteActionType.ts ├── containers │ ├── emailVerification │ │ ├── EmailVerificationComponent.tsx │ │ ├── IEmailVerificationComponentProps.ts │ │ ├── IEmailVerificationComponentState.ts │ │ └── index.ts │ ├── home │ │ ├── HomeComponent.tsx │ │ ├── IHomeComponentProps.ts │ │ ├── IHomeComponentState.ts │ │ └── index.ts │ ├── login │ │ ├── ILoginComponentProps.ts │ │ ├── ILoginComponentState.ts │ │ ├── LoginComponent.tsx │ │ └── index.ts │ ├── master │ │ ├── IMasterComponentProps.ts │ │ ├── IMasterComponentState.ts │ │ ├── MasterComponent.tsx │ │ └── index.ts │ ├── people │ │ ├── IPeopleComponentProps.ts │ │ ├── IPeopleComponentState.ts │ │ ├── PeopleComponent.tsx │ │ └── index.ts │ ├── postPage │ │ ├── IPostPageComponentProps.ts │ │ ├── IPostPageComponentState.ts │ │ ├── PostPageComponent.tsx │ │ └── index.ts │ ├── profile │ │ ├── IProfileComponentProps.ts │ │ ├── IProfileComponentState.ts │ │ ├── ProfileComponent.tsx │ │ ├── dialogTitle │ │ │ ├── DialogTitleComponent.tsx │ │ │ ├── IDialogTitleComponentProps.ts │ │ │ ├── IDialogTitleComponentState.ts │ │ │ └── index.ts │ │ └── index.ts │ ├── resetPassword │ │ ├── IResetPasswordComponentProps.ts │ │ ├── IResetPasswordComponentState.ts │ │ ├── ResetPasswordComponent.tsx │ │ └── index.ts │ ├── setting │ │ ├── ISettingComponentProps.ts │ │ ├── ISettingComponentState.ts │ │ ├── SettingComponent.tsx │ │ └── index.ts │ ├── signup │ │ ├── ISignupComponentProps.ts │ │ ├── ISignupComponentState.ts │ │ ├── SignupComponent.tsx │ │ └── index.ts │ └── stream │ │ ├── IStreamComponentProps.ts │ │ ├── IStreamComponentState.ts │ │ ├── StreamComponent.tsx │ │ └── index.ts ├── core │ ├── domain │ │ ├── authorize │ │ │ ├── index.ts │ │ │ ├── loginUser.ts │ │ │ ├── oauthType.ts │ │ │ └── registerUserResult.ts │ │ ├── circles │ │ │ ├── circle.ts │ │ │ ├── index.ts │ │ │ └── userTie.ts │ │ ├── comments │ │ │ ├── comment.ts │ │ │ └── index.ts │ │ ├── common │ │ │ ├── baseDomain.ts │ │ │ ├── feed.ts │ │ │ ├── feedType.ts │ │ │ ├── index.ts │ │ │ └── socialError.ts │ │ ├── graphs │ │ │ ├── graph.ts │ │ │ └── index.ts │ │ ├── imageGallery │ │ │ ├── image.ts │ │ │ └── index.ts │ │ ├── notifications │ │ │ ├── index.ts │ │ │ └── notification.ts │ │ ├── posts │ │ │ ├── index.ts │ │ │ └── post.ts │ │ ├── users │ │ │ ├── index.ts │ │ │ ├── profile.ts │ │ │ ├── user.ts │ │ │ └── userProvider.ts │ │ └── votes │ │ │ ├── index.ts │ │ │ └── vote.ts │ ├── environment.ts │ ├── factories │ │ ├── IServiceProvider.ts │ │ ├── index.ts │ │ └── serviceProvide.ts │ ├── services │ │ ├── authorize │ │ │ ├── IAuthorizeService.ts │ │ │ └── index.ts │ │ ├── circles │ │ │ ├── ICircleService.ts │ │ │ ├── IUserTieService.ts │ │ │ └── index.ts │ │ ├── comments │ │ │ ├── ICommentService.ts │ │ │ └── index.ts │ │ ├── common │ │ │ ├── ICommonService.ts │ │ │ └── index.ts │ │ ├── files │ │ │ ├── IStorageService.ts │ │ │ └── index.ts │ │ ├── imageGallery │ │ │ ├── IImageGalleryService.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── notifications │ │ │ ├── INotificationService.ts │ │ │ └── index.ts │ │ ├── posts │ │ │ ├── IPostService.ts │ │ │ └── index.ts │ │ ├── users │ │ │ ├── IUserService.ts │ │ │ └── index.ts │ │ └── votes │ │ │ ├── IVoteService.ts │ │ │ └── index.ts │ └── socialProviderTypes.ts ├── data │ └── firestoreClient │ │ ├── dependecyRegisterar.ts │ │ ├── firestoreClientTypes.ts │ │ ├── index.ts │ │ └── services │ │ ├── authorize │ │ ├── AuthorizeService.ts │ │ └── index.ts │ │ ├── circles │ │ ├── CircleService.ts │ │ ├── UserTieService.ts │ │ └── index.ts │ │ ├── comments │ │ ├── CommentService.ts │ │ └── index.ts │ │ ├── common │ │ ├── CommonService.ts │ │ └── index.ts │ │ ├── files │ │ ├── StorageService.ts │ │ └── index.ts │ │ ├── graphs │ │ ├── GraphService.ts │ │ ├── IGraphService.ts │ │ └── index.ts │ │ ├── imageGallery │ │ ├── ImageGalleryService.ts │ │ └── index.ts │ │ ├── index.ts │ │ ├── notifications │ │ ├── index.ts │ │ └── notificationService.ts │ │ ├── posts │ │ ├── PostService.ts │ │ └── index.ts │ │ ├── users │ │ ├── UserService.ts │ │ └── index.ts │ │ └── votes │ │ ├── VoteService.ts │ │ └── index.ts ├── index.tsx ├── layouts │ ├── appInput │ │ ├── AppInputComponent.tsx │ │ ├── IAppInputComponentProps.ts │ │ ├── IAppInputComponentState.ts │ │ └── index.ts │ ├── dialogTitle │ │ ├── DialogTitleComponent.tsx │ │ ├── IDialogTitleComponentProps.ts │ │ ├── IDialogTitleComponentState.ts │ │ └── index.ts │ ├── iconButtonElement │ │ ├── IconButtonElementComponent.tsx │ │ └── index.ts │ └── loadMoreProgress │ │ ├── LoadMoreProgressComponent.tsx │ │ └── index.ts ├── locale │ ├── ch.json │ ├── en.json │ └── es.json ├── models │ ├── comments │ │ └── commentTypes.ts │ ├── files │ │ ├── fileResult.ts │ │ └── index.ts │ ├── server │ │ ├── index.ts │ │ └── serverRequestModel.ts │ └── users │ │ ├── index.ts │ │ └── userRegisterModel.ts ├── registerServiceWorker.js ├── registerServiceWorker.ts ├── routes │ ├── HomeRouter.tsx │ ├── IRoute.ts │ ├── IRouterProps.ts │ ├── MasterRouter.tsx │ ├── PrivateRoute.tsx │ ├── PublicRoute.tsx │ └── index.ts ├── socialEngine.ts ├── store │ ├── actions │ │ ├── authorizeActions.ts │ │ ├── circleActions.ts │ │ ├── commentActions.ts │ │ ├── globalActions.ts │ │ ├── imageGalleryActions.ts │ │ ├── index.ts │ │ ├── localeActions.ts │ │ ├── notifyActions.ts │ │ ├── postActions.ts │ │ ├── serverActions.ts │ │ ├── serverRequestStatusType.ts │ │ ├── userActions.ts │ │ └── voteActions.ts │ ├── configureStore.dev.ts │ ├── configureStore.prod.ts │ ├── configureStore.ts │ ├── devTools.tsx │ ├── reducers │ │ ├── authorize │ │ │ ├── AuthorizeState.ts │ │ │ ├── IAuthorizeAction.ts │ │ │ ├── authorizeReducer.ts │ │ │ ├── authorizeSelector.ts │ │ │ └── index.ts │ │ ├── circles │ │ │ ├── CircleState.ts │ │ │ ├── ICircleAction.ts │ │ │ ├── circleReducer.ts │ │ │ └── index.ts │ │ ├── comments │ │ │ ├── CommentState.ts │ │ │ ├── ICommentAction.ts │ │ │ ├── commentReducer.ts │ │ │ └── index.ts │ │ ├── global │ │ │ ├── GlobalState.ts │ │ │ ├── IGlobalAction.ts │ │ │ ├── globalReducer.ts │ │ │ └── index.ts │ │ ├── imageGallery │ │ │ ├── IImageGalleryAction.ts │ │ │ ├── ImageGalleryState.ts │ │ │ ├── imageGalleryReducer.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── locale │ │ │ └── langugeType.ts │ │ ├── notifications │ │ │ ├── INotificationAction.ts │ │ │ ├── NotificationState.ts │ │ │ ├── index.ts │ │ │ └── notificationReducer.ts │ │ ├── posts │ │ │ ├── IPostAction.ts │ │ │ ├── PostState.ts │ │ │ ├── index.ts │ │ │ ├── postReducer.ts │ │ │ └── postSelector.ts │ │ ├── rootReducer.ts │ │ ├── server │ │ │ ├── IServerAction.ts │ │ │ ├── ServerState.ts │ │ │ ├── index.ts │ │ │ └── serverReducer.ts │ │ ├── users │ │ │ ├── IUserAction.ts │ │ │ ├── UserState.ts │ │ │ ├── index.ts │ │ │ └── userReducer.ts │ │ └── votes │ │ │ ├── IVoteAction.ts │ │ │ ├── VoteState.ts │ │ │ ├── index.ts │ │ │ └── voteReducer.ts │ └── sagas │ │ ├── commentSaga.ts │ │ ├── localeSaga.ts │ │ └── rootSaga.ts ├── styles │ ├── app.css │ ├── app.scss │ ├── base │ │ ├── _animate.scss │ │ ├── _flaticon.scss │ │ ├── _grid.scss │ │ ├── _icon.scss │ │ └── _variables.scss │ └── components │ │ ├── _blog.scss │ │ ├── _comment.scss │ │ ├── _global.scss │ │ ├── _home.scss │ │ ├── _homeHeader.scss │ │ ├── _imageGallery.scss │ │ ├── _login.scss │ │ ├── _master.scss │ │ ├── _masterLoading.scss │ │ ├── _people.scss │ │ ├── _post.scss │ │ ├── _postWrite.scss │ │ ├── _profile.scss │ │ ├── _sendFeedback.scss │ │ ├── _settings.scss │ │ ├── _sidebar.scss │ │ ├── _signup.scss │ │ └── _userBox.scss ├── tests │ └── app.test.ts └── typings │ ├── react-day-picker.d.ts │ ├── react-linkif.d.ts │ ├── react-loadable.d.ts │ ├── react-parallax.ts │ ├── react-share.ts │ └── react-string-replace.d.ts ├── tsconfig.json ├── tsconfig.prod.json └── tslint.json /.firebase/hosting.YnVpbGQ.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.firebase/hosting.YnVpbGQ.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.firebaserc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.gitignore -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/.snyk -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/README.cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/_config.yml -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/book.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/app/configure/development.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/configure/development.env -------------------------------------------------------------------------------- /docs/app/configure/production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/configure/production.env -------------------------------------------------------------------------------- /docs/app/firestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/firestore.png -------------------------------------------------------------------------------- /docs/app/firestore2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/firestore2.png -------------------------------------------------------------------------------- /docs/app/layer-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer-1.png -------------------------------------------------------------------------------- /docs/app/layer-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer-2.png -------------------------------------------------------------------------------- /docs/app/layer-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer-3.png -------------------------------------------------------------------------------- /docs/app/layer-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer-4.png -------------------------------------------------------------------------------- /docs/app/layer-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer-5.png -------------------------------------------------------------------------------- /docs/app/layer-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer-6.png -------------------------------------------------------------------------------- /docs/app/layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/layer.png -------------------------------------------------------------------------------- /docs/app/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/logo.png -------------------------------------------------------------------------------- /docs/app/multi-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/app/multi-device.png -------------------------------------------------------------------------------- /docs/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers.md -------------------------------------------------------------------------------- /docs/layers/actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/actions.md -------------------------------------------------------------------------------- /docs/layers/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/api.md -------------------------------------------------------------------------------- /docs/layers/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/components.md -------------------------------------------------------------------------------- /docs/layers/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/constants.md -------------------------------------------------------------------------------- /docs/layers/reducers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/reducers.md -------------------------------------------------------------------------------- /docs/layers/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/store.md -------------------------------------------------------------------------------- /docs/layers/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/layers/tests.md -------------------------------------------------------------------------------- /docs/motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/docs/motivation.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/firebase.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/public/images/flags.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/public/index.html -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/server.js -------------------------------------------------------------------------------- /src/api/CommentAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/api/CommentAPI.ts -------------------------------------------------------------------------------- /src/api/CommonAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/api/CommonAPI.ts -------------------------------------------------------------------------------- /src/api/FileAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/api/FileAPI.ts -------------------------------------------------------------------------------- /src/api/PostAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/api/PostAPI.ts -------------------------------------------------------------------------------- /src/api/StringAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/api/StringAPI.ts -------------------------------------------------------------------------------- /src/assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /src/assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /src/assets/images/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/assets/images/Flaticon.svg -------------------------------------------------------------------------------- /src/components/circle/CircleComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/circle/CircleComponent.tsx -------------------------------------------------------------------------------- /src/components/circle/ICircleComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/circle/ICircleComponentProps.ts -------------------------------------------------------------------------------- /src/components/circle/ICircleComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/circle/ICircleComponentState.ts -------------------------------------------------------------------------------- /src/components/circle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/circle/index.ts -------------------------------------------------------------------------------- /src/components/comment/CommentComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/comment/CommentComponent.tsx -------------------------------------------------------------------------------- /src/components/comment/ICommentComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/comment/ICommentComponentProps.ts -------------------------------------------------------------------------------- /src/components/comment/ICommentComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/comment/ICommentComponentState.ts -------------------------------------------------------------------------------- /src/components/comment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/comment/index.ts -------------------------------------------------------------------------------- /src/components/commentGroup/CommentGroupComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentGroup/CommentGroupComponent.tsx -------------------------------------------------------------------------------- /src/components/commentGroup/ICommentGroupComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentGroup/ICommentGroupComponentProps.ts -------------------------------------------------------------------------------- /src/components/commentGroup/ICommentGroupComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentGroup/ICommentGroupComponentState.ts -------------------------------------------------------------------------------- /src/components/commentGroup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentGroup/index.ts -------------------------------------------------------------------------------- /src/components/commentList/CommentListComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentList/CommentListComponent.tsx -------------------------------------------------------------------------------- /src/components/commentList/ICommentListComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentList/ICommentListComponentProps.ts -------------------------------------------------------------------------------- /src/components/commentList/ICommentListComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentList/ICommentListComponentState.ts -------------------------------------------------------------------------------- /src/components/commentList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/commentList/index.ts -------------------------------------------------------------------------------- /src/components/editProfile/EditProfileComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/editProfile/EditProfileComponent.tsx -------------------------------------------------------------------------------- /src/components/editProfile/IEditProfileComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/editProfile/IEditProfileComponentProps.ts -------------------------------------------------------------------------------- /src/components/editProfile/IEditProfileComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/editProfile/IEditProfileComponentState.ts -------------------------------------------------------------------------------- /src/components/editProfile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/editProfile/index.ts -------------------------------------------------------------------------------- /src/components/findPeople/FindPeopleComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/findPeople/FindPeopleComponent.tsx -------------------------------------------------------------------------------- /src/components/findPeople/IFindPeopleComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/findPeople/IFindPeopleComponentProps.ts -------------------------------------------------------------------------------- /src/components/findPeople/IFindPeopleComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IFindPeopleComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/findPeople/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/findPeople/index.ts -------------------------------------------------------------------------------- /src/components/followers/FollowersComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/followers/FollowersComponent.tsx -------------------------------------------------------------------------------- /src/components/followers/IFollowersComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/followers/IFollowersComponentProps.ts -------------------------------------------------------------------------------- /src/components/followers/IFollowersComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IFollowersComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/followers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/followers/index.ts -------------------------------------------------------------------------------- /src/components/following/FollowingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/following/FollowingComponent.tsx -------------------------------------------------------------------------------- /src/components/following/IFollowingComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/following/IFollowingComponentProps.ts -------------------------------------------------------------------------------- /src/components/following/IFollowingComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IFollowingComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/following/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/following/index.ts -------------------------------------------------------------------------------- /src/components/homeHeader/HomeHeaderComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/homeHeader/HomeHeaderComponent.tsx -------------------------------------------------------------------------------- /src/components/homeHeader/IHomeHeaderComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/homeHeader/IHomeHeaderComponentProps.ts -------------------------------------------------------------------------------- /src/components/homeHeader/IHomeHeaderComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/homeHeader/IHomeHeaderComponentState.ts -------------------------------------------------------------------------------- /src/components/homeHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/homeHeader/index.ts -------------------------------------------------------------------------------- /src/components/imageGallery/IImageGalleryComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imageGallery/IImageGalleryComponentProps.ts -------------------------------------------------------------------------------- /src/components/imageGallery/IImageGalleryComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IImageGalleryComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/imageGallery/ImageGalleryComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imageGallery/ImageGalleryComponent.tsx -------------------------------------------------------------------------------- /src/components/imageGallery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imageGallery/index.ts -------------------------------------------------------------------------------- /src/components/img/IImgComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/img/IImgComponentProps.ts -------------------------------------------------------------------------------- /src/components/img/IImgComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/img/IImgComponentState.ts -------------------------------------------------------------------------------- /src/components/img/ImgComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/img/ImgComponent.tsx -------------------------------------------------------------------------------- /src/components/img/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/img/index.ts -------------------------------------------------------------------------------- /src/components/imgCover/IImgCoverComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imgCover/IImgCoverComponentProps.ts -------------------------------------------------------------------------------- /src/components/imgCover/IImgCoverComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imgCover/IImgCoverComponentState.ts -------------------------------------------------------------------------------- /src/components/imgCover/ImgCoverComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imgCover/ImgCoverComponent.tsx -------------------------------------------------------------------------------- /src/components/imgCover/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/imgCover/index.ts -------------------------------------------------------------------------------- /src/components/masterLoading/IMasterLoadingComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/masterLoading/IMasterLoadingComponentProps.ts -------------------------------------------------------------------------------- /src/components/masterLoading/IMasterLoadingComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IMasterLoadingComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/masterLoading/MasterLoadingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/masterLoading/MasterLoadingComponent.tsx -------------------------------------------------------------------------------- /src/components/masterLoading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/masterLoading/index.ts -------------------------------------------------------------------------------- /src/components/notify/INotifyComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/notify/INotifyComponentProps.ts -------------------------------------------------------------------------------- /src/components/notify/INotifyComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface INotifyComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/notify/NotifyComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/notify/NotifyComponent.tsx -------------------------------------------------------------------------------- /src/components/notify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/notify/index.ts -------------------------------------------------------------------------------- /src/components/notifyItem/INotifyItemComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/notifyItem/INotifyItemComponentProps.ts -------------------------------------------------------------------------------- /src/components/notifyItem/INotifyItemComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface INotifyItemComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/notifyItem/NotifyItemComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/notifyItem/NotifyItemComponent.tsx -------------------------------------------------------------------------------- /src/components/notifyItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/notifyItem/index.ts -------------------------------------------------------------------------------- /src/components/post/IPostComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/post/IPostComponentProps.ts -------------------------------------------------------------------------------- /src/components/post/IPostComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/post/IPostComponentState.ts -------------------------------------------------------------------------------- /src/components/post/PostComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/post/PostComponent.tsx -------------------------------------------------------------------------------- /src/components/post/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/post/index.ts -------------------------------------------------------------------------------- /src/components/postWrite/IPostWriteComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/postWrite/IPostWriteComponentProps.ts -------------------------------------------------------------------------------- /src/components/postWrite/IPostWriteComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/postWrite/IPostWriteComponentState.ts -------------------------------------------------------------------------------- /src/components/postWrite/PostWriteComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/postWrite/PostWriteComponent.tsx -------------------------------------------------------------------------------- /src/components/postWrite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/postWrite/index.ts -------------------------------------------------------------------------------- /src/components/profileHeader/IProfileHeaderComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/profileHeader/IProfileHeaderComponentProps.ts -------------------------------------------------------------------------------- /src/components/profileHeader/IProfileHeaderComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/profileHeader/IProfileHeaderComponentState.ts -------------------------------------------------------------------------------- /src/components/profileHeader/ProfileHeaderComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/profileHeader/ProfileHeaderComponent.tsx -------------------------------------------------------------------------------- /src/components/profileHeader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/profileHeader/index.ts -------------------------------------------------------------------------------- /src/components/sendFeedback/ISendFeedbackComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sendFeedback/ISendFeedbackComponentProps.ts -------------------------------------------------------------------------------- /src/components/sendFeedback/ISendFeedbackComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sendFeedback/ISendFeedbackComponentState.ts -------------------------------------------------------------------------------- /src/components/sendFeedback/SendFeedbackComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sendFeedback/SendFeedbackComponent.tsx -------------------------------------------------------------------------------- /src/components/sendFeedback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sendFeedback/index.ts -------------------------------------------------------------------------------- /src/components/shareDialog/IShareDialogComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/shareDialog/IShareDialogComponentProps.ts -------------------------------------------------------------------------------- /src/components/shareDialog/IShareDialogComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IShareDialogComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/shareDialog/ShareDialogComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/shareDialog/ShareDialogComponent.tsx -------------------------------------------------------------------------------- /src/components/shareDialog/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/shareDialog/index.ts -------------------------------------------------------------------------------- /src/components/sidebar/ISidebarComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebar/ISidebarComponentProps.ts -------------------------------------------------------------------------------- /src/components/sidebar/ISidebarComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebar/ISidebarComponentState.ts -------------------------------------------------------------------------------- /src/components/sidebar/SidebarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebar/SidebarComponent.tsx -------------------------------------------------------------------------------- /src/components/sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebar/index.ts -------------------------------------------------------------------------------- /src/components/sidebarContent/ISidebarContentComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarContent/ISidebarContentComponentProps.ts -------------------------------------------------------------------------------- /src/components/sidebarContent/ISidebarContentComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarContent/ISidebarContentComponentState.ts -------------------------------------------------------------------------------- /src/components/sidebarContent/SidebarContentComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarContent/SidebarContentComponent.tsx -------------------------------------------------------------------------------- /src/components/sidebarContent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarContent/index.ts -------------------------------------------------------------------------------- /src/components/sidebarMain/ISidebarMainComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarMain/ISidebarMainComponentProps.ts -------------------------------------------------------------------------------- /src/components/sidebarMain/ISidebarMainComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface ISidebarMainComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/sidebarMain/SidebarMainComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarMain/SidebarMainComponent.tsx -------------------------------------------------------------------------------- /src/components/sidebarMain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/sidebarMain/index.ts -------------------------------------------------------------------------------- /src/components/userAvatar/IUserAvatarComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userAvatar/IUserAvatarComponentProps.ts -------------------------------------------------------------------------------- /src/components/userAvatar/IUserAvatarComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IUserAvatarComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/userAvatar/UserAvatarComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userAvatar/UserAvatarComponent.tsx -------------------------------------------------------------------------------- /src/components/userAvatar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userAvatar/index.ts -------------------------------------------------------------------------------- /src/components/userBox/IUserBoxComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBox/IUserBoxComponentProps.ts -------------------------------------------------------------------------------- /src/components/userBox/IUserBoxComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBox/IUserBoxComponentState.ts -------------------------------------------------------------------------------- /src/components/userBox/UserBoxComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBox/UserBoxComponent.tsx -------------------------------------------------------------------------------- /src/components/userBox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBox/index.ts -------------------------------------------------------------------------------- /src/components/userBoxList/IUserBoxListComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBoxList/IUserBoxListComponentProps.ts -------------------------------------------------------------------------------- /src/components/userBoxList/IUserBoxListComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IUserBoxListComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/userBoxList/UserBoxListComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBoxList/UserBoxListComponent.tsx -------------------------------------------------------------------------------- /src/components/userBoxList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/userBoxList/index.ts -------------------------------------------------------------------------------- /src/components/yourCircles/IYourCirclesComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/yourCircles/IYourCirclesComponentProps.ts -------------------------------------------------------------------------------- /src/components/yourCircles/IYourCirclesComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IYourCirclesComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/components/yourCircles/YourCirclesComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/yourCircles/YourCirclesComponent.tsx -------------------------------------------------------------------------------- /src/components/yourCircles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/components/yourCircles/index.ts -------------------------------------------------------------------------------- /src/config/environment.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/config/environment.dev.ts -------------------------------------------------------------------------------- /src/config/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/config/environment.prod.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/constants/authorizeActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/authorizeActionType.ts -------------------------------------------------------------------------------- /src/constants/circleActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/circleActionType.ts -------------------------------------------------------------------------------- /src/constants/commentActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/commentActionType.ts -------------------------------------------------------------------------------- /src/constants/globalActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/globalActionType.ts -------------------------------------------------------------------------------- /src/constants/imageGalleryActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/imageGalleryActionType.ts -------------------------------------------------------------------------------- /src/constants/notificationActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/notificationActionType.ts -------------------------------------------------------------------------------- /src/constants/postActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/postActionType.ts -------------------------------------------------------------------------------- /src/constants/serverActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/serverActionType.ts -------------------------------------------------------------------------------- /src/constants/serverRequestType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/serverRequestType.ts -------------------------------------------------------------------------------- /src/constants/userActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/userActionType.ts -------------------------------------------------------------------------------- /src/constants/voteActionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/constants/voteActionType.ts -------------------------------------------------------------------------------- /src/containers/emailVerification/EmailVerificationComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/emailVerification/EmailVerificationComponent.tsx -------------------------------------------------------------------------------- /src/containers/emailVerification/IEmailVerificationComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/emailVerification/IEmailVerificationComponentProps.ts -------------------------------------------------------------------------------- /src/containers/emailVerification/IEmailVerificationComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IEmailVerificationComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/containers/emailVerification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/emailVerification/index.ts -------------------------------------------------------------------------------- /src/containers/home/HomeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/home/HomeComponent.tsx -------------------------------------------------------------------------------- /src/containers/home/IHomeComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/home/IHomeComponentProps.ts -------------------------------------------------------------------------------- /src/containers/home/IHomeComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/home/IHomeComponentState.ts -------------------------------------------------------------------------------- /src/containers/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/home/index.ts -------------------------------------------------------------------------------- /src/containers/login/ILoginComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/login/ILoginComponentProps.ts -------------------------------------------------------------------------------- /src/containers/login/ILoginComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/login/ILoginComponentState.ts -------------------------------------------------------------------------------- /src/containers/login/LoginComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/login/LoginComponent.tsx -------------------------------------------------------------------------------- /src/containers/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/login/index.ts -------------------------------------------------------------------------------- /src/containers/master/IMasterComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/master/IMasterComponentProps.ts -------------------------------------------------------------------------------- /src/containers/master/IMasterComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/master/IMasterComponentState.ts -------------------------------------------------------------------------------- /src/containers/master/MasterComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/master/MasterComponent.tsx -------------------------------------------------------------------------------- /src/containers/master/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/master/index.ts -------------------------------------------------------------------------------- /src/containers/people/IPeopleComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/people/IPeopleComponentProps.ts -------------------------------------------------------------------------------- /src/containers/people/IPeopleComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/people/IPeopleComponentState.ts -------------------------------------------------------------------------------- /src/containers/people/PeopleComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/people/PeopleComponent.tsx -------------------------------------------------------------------------------- /src/containers/people/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/people/index.ts -------------------------------------------------------------------------------- /src/containers/postPage/IPostPageComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/postPage/IPostPageComponentProps.ts -------------------------------------------------------------------------------- /src/containers/postPage/IPostPageComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IPostPageComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/containers/postPage/PostPageComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/postPage/PostPageComponent.tsx -------------------------------------------------------------------------------- /src/containers/postPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/postPage/index.ts -------------------------------------------------------------------------------- /src/containers/profile/IProfileComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/profile/IProfileComponentProps.ts -------------------------------------------------------------------------------- /src/containers/profile/IProfileComponentState.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface IProfileComponentState { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /src/containers/profile/ProfileComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/profile/ProfileComponent.tsx -------------------------------------------------------------------------------- /src/containers/profile/dialogTitle/DialogTitleComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/profile/dialogTitle/DialogTitleComponent.tsx -------------------------------------------------------------------------------- /src/containers/profile/dialogTitle/IDialogTitleComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/profile/dialogTitle/IDialogTitleComponentProps.ts -------------------------------------------------------------------------------- /src/containers/profile/dialogTitle/IDialogTitleComponentState.ts: -------------------------------------------------------------------------------- 1 | export interface IDialogTitleComponentState { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/containers/profile/dialogTitle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/profile/dialogTitle/index.ts -------------------------------------------------------------------------------- /src/containers/profile/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/profile/index.ts -------------------------------------------------------------------------------- /src/containers/resetPassword/IResetPasswordComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/resetPassword/IResetPasswordComponentProps.ts -------------------------------------------------------------------------------- /src/containers/resetPassword/IResetPasswordComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/resetPassword/IResetPasswordComponentState.ts -------------------------------------------------------------------------------- /src/containers/resetPassword/ResetPasswordComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/resetPassword/ResetPasswordComponent.tsx -------------------------------------------------------------------------------- /src/containers/resetPassword/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/resetPassword/index.ts -------------------------------------------------------------------------------- /src/containers/setting/ISettingComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/setting/ISettingComponentProps.ts -------------------------------------------------------------------------------- /src/containers/setting/ISettingComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/setting/ISettingComponentState.ts -------------------------------------------------------------------------------- /src/containers/setting/SettingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/setting/SettingComponent.tsx -------------------------------------------------------------------------------- /src/containers/setting/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/setting/index.ts -------------------------------------------------------------------------------- /src/containers/signup/ISignupComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/signup/ISignupComponentProps.ts -------------------------------------------------------------------------------- /src/containers/signup/ISignupComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/signup/ISignupComponentState.ts -------------------------------------------------------------------------------- /src/containers/signup/SignupComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/signup/SignupComponent.tsx -------------------------------------------------------------------------------- /src/containers/signup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/signup/index.ts -------------------------------------------------------------------------------- /src/containers/stream/IStreamComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/stream/IStreamComponentProps.ts -------------------------------------------------------------------------------- /src/containers/stream/IStreamComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/stream/IStreamComponentState.ts -------------------------------------------------------------------------------- /src/containers/stream/StreamComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/stream/StreamComponent.tsx -------------------------------------------------------------------------------- /src/containers/stream/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/containers/stream/index.ts -------------------------------------------------------------------------------- /src/core/domain/authorize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/authorize/index.ts -------------------------------------------------------------------------------- /src/core/domain/authorize/loginUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/authorize/loginUser.ts -------------------------------------------------------------------------------- /src/core/domain/authorize/oauthType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/authorize/oauthType.ts -------------------------------------------------------------------------------- /src/core/domain/authorize/registerUserResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/authorize/registerUserResult.ts -------------------------------------------------------------------------------- /src/core/domain/circles/circle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/circles/circle.ts -------------------------------------------------------------------------------- /src/core/domain/circles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/circles/index.ts -------------------------------------------------------------------------------- /src/core/domain/circles/userTie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/circles/userTie.ts -------------------------------------------------------------------------------- /src/core/domain/comments/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/comments/comment.ts -------------------------------------------------------------------------------- /src/core/domain/comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/comments/index.ts -------------------------------------------------------------------------------- /src/core/domain/common/baseDomain.ts: -------------------------------------------------------------------------------- 1 | 2 | export class BaseDomain { 3 | 4 | } -------------------------------------------------------------------------------- /src/core/domain/common/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/common/feed.ts -------------------------------------------------------------------------------- /src/core/domain/common/feedType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/common/feedType.ts -------------------------------------------------------------------------------- /src/core/domain/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/common/index.ts -------------------------------------------------------------------------------- /src/core/domain/common/socialError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/common/socialError.ts -------------------------------------------------------------------------------- /src/core/domain/graphs/graph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/graphs/graph.ts -------------------------------------------------------------------------------- /src/core/domain/graphs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/graphs/index.ts -------------------------------------------------------------------------------- /src/core/domain/imageGallery/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/imageGallery/image.ts -------------------------------------------------------------------------------- /src/core/domain/imageGallery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/imageGallery/index.ts -------------------------------------------------------------------------------- /src/core/domain/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/notifications/index.ts -------------------------------------------------------------------------------- /src/core/domain/notifications/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/notifications/notification.ts -------------------------------------------------------------------------------- /src/core/domain/posts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/posts/index.ts -------------------------------------------------------------------------------- /src/core/domain/posts/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/posts/post.ts -------------------------------------------------------------------------------- /src/core/domain/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/users/index.ts -------------------------------------------------------------------------------- /src/core/domain/users/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/users/profile.ts -------------------------------------------------------------------------------- /src/core/domain/users/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/users/user.ts -------------------------------------------------------------------------------- /src/core/domain/users/userProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/users/userProvider.ts -------------------------------------------------------------------------------- /src/core/domain/votes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/votes/index.ts -------------------------------------------------------------------------------- /src/core/domain/votes/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/domain/votes/vote.ts -------------------------------------------------------------------------------- /src/core/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | appName : 'Green Social' 3 | } 4 | -------------------------------------------------------------------------------- /src/core/factories/IServiceProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/factories/IServiceProvider.ts -------------------------------------------------------------------------------- /src/core/factories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/factories/index.ts -------------------------------------------------------------------------------- /src/core/factories/serviceProvide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/factories/serviceProvide.ts -------------------------------------------------------------------------------- /src/core/services/authorize/IAuthorizeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/authorize/IAuthorizeService.ts -------------------------------------------------------------------------------- /src/core/services/authorize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/authorize/index.ts -------------------------------------------------------------------------------- /src/core/services/circles/ICircleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/circles/ICircleService.ts -------------------------------------------------------------------------------- /src/core/services/circles/IUserTieService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/circles/IUserTieService.ts -------------------------------------------------------------------------------- /src/core/services/circles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/circles/index.ts -------------------------------------------------------------------------------- /src/core/services/comments/ICommentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/comments/ICommentService.ts -------------------------------------------------------------------------------- /src/core/services/comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/comments/index.ts -------------------------------------------------------------------------------- /src/core/services/common/ICommonService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/common/ICommonService.ts -------------------------------------------------------------------------------- /src/core/services/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/common/index.ts -------------------------------------------------------------------------------- /src/core/services/files/IStorageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/files/IStorageService.ts -------------------------------------------------------------------------------- /src/core/services/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/files/index.ts -------------------------------------------------------------------------------- /src/core/services/imageGallery/IImageGalleryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/imageGallery/IImageGalleryService.ts -------------------------------------------------------------------------------- /src/core/services/imageGallery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/imageGallery/index.ts -------------------------------------------------------------------------------- /src/core/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/index.ts -------------------------------------------------------------------------------- /src/core/services/notifications/INotificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/notifications/INotificationService.ts -------------------------------------------------------------------------------- /src/core/services/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/notifications/index.ts -------------------------------------------------------------------------------- /src/core/services/posts/IPostService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/posts/IPostService.ts -------------------------------------------------------------------------------- /src/core/services/posts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/posts/index.ts -------------------------------------------------------------------------------- /src/core/services/users/IUserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/users/IUserService.ts -------------------------------------------------------------------------------- /src/core/services/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/users/index.ts -------------------------------------------------------------------------------- /src/core/services/votes/IVoteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/votes/IVoteService.ts -------------------------------------------------------------------------------- /src/core/services/votes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/services/votes/index.ts -------------------------------------------------------------------------------- /src/core/socialProviderTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/core/socialProviderTypes.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/dependecyRegisterar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/dependecyRegisterar.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/firestoreClientTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/firestoreClientTypes.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/authorize/AuthorizeService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/authorize/AuthorizeService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/authorize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/authorize/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/circles/CircleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/circles/CircleService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/circles/UserTieService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/circles/UserTieService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/circles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/circles/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/comments/CommentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/comments/CommentService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/comments/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/common/CommonService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/common/CommonService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/common/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/files/StorageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/files/StorageService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/files/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/graphs/GraphService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/graphs/GraphService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/graphs/IGraphService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/graphs/IGraphService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/graphs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/graphs/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/imageGallery/ImageGalleryService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/imageGallery/ImageGalleryService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/imageGallery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/imageGallery/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/notifications/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/notifications/notificationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/notifications/notificationService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/posts/PostService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/posts/PostService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/posts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/posts/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/users/UserService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/users/UserService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/users/index.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/votes/VoteService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/votes/VoteService.ts -------------------------------------------------------------------------------- /src/data/firestoreClient/services/votes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/data/firestoreClient/services/votes/index.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layouts/appInput/AppInputComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/appInput/AppInputComponent.tsx -------------------------------------------------------------------------------- /src/layouts/appInput/IAppInputComponentProps.ts: -------------------------------------------------------------------------------- 1 | export interface IAppInputComponentProps { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/appInput/IAppInputComponentState.ts: -------------------------------------------------------------------------------- 1 | export interface IAppInputComponentState { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/appInput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/appInput/index.ts -------------------------------------------------------------------------------- /src/layouts/dialogTitle/DialogTitleComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/dialogTitle/DialogTitleComponent.tsx -------------------------------------------------------------------------------- /src/layouts/dialogTitle/IDialogTitleComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/dialogTitle/IDialogTitleComponentProps.ts -------------------------------------------------------------------------------- /src/layouts/dialogTitle/IDialogTitleComponentState.ts: -------------------------------------------------------------------------------- 1 | export interface IDialogTitleComponentState { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/layouts/dialogTitle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/dialogTitle/index.ts -------------------------------------------------------------------------------- /src/layouts/iconButtonElement/IconButtonElementComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/iconButtonElement/IconButtonElementComponent.tsx -------------------------------------------------------------------------------- /src/layouts/iconButtonElement/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/iconButtonElement/index.ts -------------------------------------------------------------------------------- /src/layouts/loadMoreProgress/LoadMoreProgressComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/loadMoreProgress/LoadMoreProgressComponent.tsx -------------------------------------------------------------------------------- /src/layouts/loadMoreProgress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/layouts/loadMoreProgress/index.ts -------------------------------------------------------------------------------- /src/locale/ch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/locale/ch.json -------------------------------------------------------------------------------- /src/locale/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/locale/en.json -------------------------------------------------------------------------------- /src/locale/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/locale/es.json -------------------------------------------------------------------------------- /src/models/comments/commentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/comments/commentTypes.ts -------------------------------------------------------------------------------- /src/models/files/fileResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/files/fileResult.ts -------------------------------------------------------------------------------- /src/models/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/files/index.ts -------------------------------------------------------------------------------- /src/models/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/server/index.ts -------------------------------------------------------------------------------- /src/models/server/serverRequestModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/server/serverRequestModel.ts -------------------------------------------------------------------------------- /src/models/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/users/index.ts -------------------------------------------------------------------------------- /src/models/users/userRegisterModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/models/users/userRegisterModel.ts -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/registerServiceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/registerServiceWorker.ts -------------------------------------------------------------------------------- /src/routes/HomeRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/HomeRouter.tsx -------------------------------------------------------------------------------- /src/routes/IRoute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/IRoute.ts -------------------------------------------------------------------------------- /src/routes/IRouterProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/IRouterProps.ts -------------------------------------------------------------------------------- /src/routes/MasterRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/MasterRouter.tsx -------------------------------------------------------------------------------- /src/routes/PrivateRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/PrivateRoute.tsx -------------------------------------------------------------------------------- /src/routes/PublicRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/PublicRoute.tsx -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/socialEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/socialEngine.ts -------------------------------------------------------------------------------- /src/store/actions/authorizeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/authorizeActions.ts -------------------------------------------------------------------------------- /src/store/actions/circleActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/circleActions.ts -------------------------------------------------------------------------------- /src/store/actions/commentActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/commentActions.ts -------------------------------------------------------------------------------- /src/store/actions/globalActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/globalActions.ts -------------------------------------------------------------------------------- /src/store/actions/imageGalleryActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/imageGalleryActions.ts -------------------------------------------------------------------------------- /src/store/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/index.ts -------------------------------------------------------------------------------- /src/store/actions/localeActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/localeActions.ts -------------------------------------------------------------------------------- /src/store/actions/notifyActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/notifyActions.ts -------------------------------------------------------------------------------- /src/store/actions/postActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/postActions.ts -------------------------------------------------------------------------------- /src/store/actions/serverActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/serverActions.ts -------------------------------------------------------------------------------- /src/store/actions/serverRequestStatusType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/serverRequestStatusType.ts -------------------------------------------------------------------------------- /src/store/actions/userActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/userActions.ts -------------------------------------------------------------------------------- /src/store/actions/voteActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/actions/voteActions.ts -------------------------------------------------------------------------------- /src/store/configureStore.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/configureStore.dev.ts -------------------------------------------------------------------------------- /src/store/configureStore.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/configureStore.prod.ts -------------------------------------------------------------------------------- /src/store/configureStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/configureStore.ts -------------------------------------------------------------------------------- /src/store/devTools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/devTools.tsx -------------------------------------------------------------------------------- /src/store/reducers/authorize/AuthorizeState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/authorize/AuthorizeState.ts -------------------------------------------------------------------------------- /src/store/reducers/authorize/IAuthorizeAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/authorize/IAuthorizeAction.ts -------------------------------------------------------------------------------- /src/store/reducers/authorize/authorizeReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/authorize/authorizeReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/authorize/authorizeSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/authorize/authorizeSelector.ts -------------------------------------------------------------------------------- /src/store/reducers/authorize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/authorize/index.ts -------------------------------------------------------------------------------- /src/store/reducers/circles/CircleState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/circles/CircleState.ts -------------------------------------------------------------------------------- /src/store/reducers/circles/ICircleAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/circles/ICircleAction.ts -------------------------------------------------------------------------------- /src/store/reducers/circles/circleReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/circles/circleReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/circles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/circles/index.ts -------------------------------------------------------------------------------- /src/store/reducers/comments/CommentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/comments/CommentState.ts -------------------------------------------------------------------------------- /src/store/reducers/comments/ICommentAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/comments/ICommentAction.ts -------------------------------------------------------------------------------- /src/store/reducers/comments/commentReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/comments/commentReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/comments/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/comments/index.ts -------------------------------------------------------------------------------- /src/store/reducers/global/GlobalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/global/GlobalState.ts -------------------------------------------------------------------------------- /src/store/reducers/global/IGlobalAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/global/IGlobalAction.ts -------------------------------------------------------------------------------- /src/store/reducers/global/globalReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/global/globalReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/global/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/global/index.ts -------------------------------------------------------------------------------- /src/store/reducers/imageGallery/IImageGalleryAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/imageGallery/IImageGalleryAction.ts -------------------------------------------------------------------------------- /src/store/reducers/imageGallery/ImageGalleryState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/imageGallery/ImageGalleryState.ts -------------------------------------------------------------------------------- /src/store/reducers/imageGallery/imageGalleryReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/imageGallery/imageGalleryReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/imageGallery/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/imageGallery/index.ts -------------------------------------------------------------------------------- /src/store/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/index.ts -------------------------------------------------------------------------------- /src/store/reducers/locale/langugeType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/locale/langugeType.ts -------------------------------------------------------------------------------- /src/store/reducers/notifications/INotificationAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/notifications/INotificationAction.ts -------------------------------------------------------------------------------- /src/store/reducers/notifications/NotificationState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/notifications/NotificationState.ts -------------------------------------------------------------------------------- /src/store/reducers/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/notifications/index.ts -------------------------------------------------------------------------------- /src/store/reducers/notifications/notificationReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/notifications/notificationReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/posts/IPostAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/posts/IPostAction.ts -------------------------------------------------------------------------------- /src/store/reducers/posts/PostState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/posts/PostState.ts -------------------------------------------------------------------------------- /src/store/reducers/posts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/posts/index.ts -------------------------------------------------------------------------------- /src/store/reducers/posts/postReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/posts/postReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/posts/postSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/posts/postSelector.ts -------------------------------------------------------------------------------- /src/store/reducers/rootReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/rootReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/server/IServerAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/server/IServerAction.ts -------------------------------------------------------------------------------- /src/store/reducers/server/ServerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/server/ServerState.ts -------------------------------------------------------------------------------- /src/store/reducers/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/server/index.ts -------------------------------------------------------------------------------- /src/store/reducers/server/serverReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/server/serverReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/users/IUserAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/users/IUserAction.ts -------------------------------------------------------------------------------- /src/store/reducers/users/UserState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/users/UserState.ts -------------------------------------------------------------------------------- /src/store/reducers/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/users/index.ts -------------------------------------------------------------------------------- /src/store/reducers/users/userReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/users/userReducer.ts -------------------------------------------------------------------------------- /src/store/reducers/votes/IVoteAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/votes/IVoteAction.ts -------------------------------------------------------------------------------- /src/store/reducers/votes/VoteState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/votes/VoteState.ts -------------------------------------------------------------------------------- /src/store/reducers/votes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/votes/index.ts -------------------------------------------------------------------------------- /src/store/reducers/votes/voteReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/reducers/votes/voteReducer.ts -------------------------------------------------------------------------------- /src/store/sagas/commentSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/sagas/commentSaga.ts -------------------------------------------------------------------------------- /src/store/sagas/localeSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/sagas/localeSaga.ts -------------------------------------------------------------------------------- /src/store/sagas/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/store/sagas/rootSaga.ts -------------------------------------------------------------------------------- /src/styles/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/app.css -------------------------------------------------------------------------------- /src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/app.scss -------------------------------------------------------------------------------- /src/styles/base/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/base/_animate.scss -------------------------------------------------------------------------------- /src/styles/base/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/base/_flaticon.scss -------------------------------------------------------------------------------- /src/styles/base/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/base/_grid.scss -------------------------------------------------------------------------------- /src/styles/base/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/base/_icon.scss -------------------------------------------------------------------------------- /src/styles/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/base/_variables.scss -------------------------------------------------------------------------------- /src/styles/components/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_blog.scss -------------------------------------------------------------------------------- /src/styles/components/_comment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_comment.scss -------------------------------------------------------------------------------- /src/styles/components/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_global.scss -------------------------------------------------------------------------------- /src/styles/components/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_home.scss -------------------------------------------------------------------------------- /src/styles/components/_homeHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_homeHeader.scss -------------------------------------------------------------------------------- /src/styles/components/_imageGallery.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/components/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_login.scss -------------------------------------------------------------------------------- /src/styles/components/_master.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_master.scss -------------------------------------------------------------------------------- /src/styles/components/_masterLoading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_masterLoading.scss -------------------------------------------------------------------------------- /src/styles/components/_people.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_people.scss -------------------------------------------------------------------------------- /src/styles/components/_post.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/components/_postWrite.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/styles/components/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_profile.scss -------------------------------------------------------------------------------- /src/styles/components/_sendFeedback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_sendFeedback.scss -------------------------------------------------------------------------------- /src/styles/components/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_settings.scss -------------------------------------------------------------------------------- /src/styles/components/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_sidebar.scss -------------------------------------------------------------------------------- /src/styles/components/_signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_signup.scss -------------------------------------------------------------------------------- /src/styles/components/_userBox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/styles/components/_userBox.scss -------------------------------------------------------------------------------- /src/tests/app.test.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/typings/react-day-picker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/src/typings/react-day-picker.d.ts -------------------------------------------------------------------------------- /src/typings/react-linkif.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-linkify' -------------------------------------------------------------------------------- /src/typings/react-loadable.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-loadable' -------------------------------------------------------------------------------- /src/typings/react-parallax.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-parallax' 2 | -------------------------------------------------------------------------------- /src/typings/react-share.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-share' 2 | -------------------------------------------------------------------------------- /src/typings/react-string-replace.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-string-replace' -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/tsconfig.prod.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/red-gold/react-social-network/HEAD/tslint.json --------------------------------------------------------------------------------