├── .github └── workflows │ ├── firebase-hosting-merge.yml │ └── firebase-hosting-pull-request.yml ├── .gitignore ├── LICENSE ├── README.md ├── firebase.json ├── package.json ├── public ├── 404.html ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt ├── src ├── app │ ├── antd.css │ ├── components │ │ ├── AccountCard │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Banner │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Base │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Button │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Navbar │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Stud │ │ │ ├── index.css │ │ │ └── index.js │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── AlterBlog │ │ │ └── index.js │ │ ├── CreateBlog │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── DeleteBlog │ │ │ └── index.js │ │ ├── EditBlog │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Feed │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Home │ │ │ ├── Layout.js │ │ │ ├── Login.js │ │ │ ├── Signup.js │ │ │ └── index.css │ │ ├── Profile │ │ │ ├── ProfileTab.js │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── ReadBlog │ │ │ ├── index.css │ │ │ └── index.js │ │ ├── Results │ │ │ ├── 404.js │ │ │ ├── EmailFailure.js │ │ │ ├── EmailSuccess.js │ │ │ └── SignupSuccess.js │ │ ├── Search │ │ │ ├── index.css │ │ │ └── index.js │ │ └── Settings │ │ │ ├── AccountSettings.js │ │ │ ├── DeactivateAccount.js │ │ │ ├── DeleteAccount.js │ │ │ ├── PrivacySettings.js │ │ │ ├── index.css │ │ │ └── index.js │ ├── router │ │ ├── index.js │ │ └── routes.js │ ├── skeletons │ │ ├── Feed.js │ │ ├── Profile.js │ │ ├── ReadBlog.js │ │ ├── UpdateBlog.js │ │ └── index.js │ └── theme.css ├── config │ └── index.js ├── index.js ├── reportWebVitals.js ├── services │ ├── api │ │ ├── auth.api.js │ │ ├── blog.api.js │ │ └── writer.api.js │ └── firebase │ │ └── index.js ├── static │ ├── img │ │ ├── blue_book.svg │ │ ├── blue_bulb.svg │ │ ├── blue_read.svg │ │ ├── icon.png │ │ ├── idea_pen.png │ │ ├── music_pen.jpg │ │ ├── red_book.svg │ │ ├── red_bulb.svg │ │ ├── red_read.svg │ │ └── writer.png │ └── index.js ├── store │ ├── auth │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── reducer.js │ │ └── state.js │ ├── blog │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── reducer.js │ │ └── state.js │ ├── common │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── reducer.js │ │ └── state.js │ ├── feed │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── reducer.js │ │ └── state.js │ ├── index.js │ ├── profile │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── mapper.js │ │ ├── reducer.js │ │ └── state.js │ ├── rootReducer.js │ ├── search │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── reducer.js │ │ └── state.js │ ├── settings │ │ ├── actions │ │ │ ├── creators.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── reducer.js │ │ └── state.js │ └── utils │ │ └── index.js └── utils │ ├── blogMapper.js │ ├── ellipsis.js │ ├── index.js │ ├── logger.js │ └── userStorage.js └── yarn.lock /.github/workflows/firebase-hosting-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/.github/workflows/firebase-hosting-merge.yml -------------------------------------------------------------------------------- /.github/workflows/firebase-hosting-pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/.github/workflows/firebase-hosting-pull-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/public/404.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/app/antd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/antd.css -------------------------------------------------------------------------------- /src/app/components/AccountCard/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/AccountCard/index.css -------------------------------------------------------------------------------- /src/app/components/AccountCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/AccountCard/index.js -------------------------------------------------------------------------------- /src/app/components/Banner/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Banner/index.css -------------------------------------------------------------------------------- /src/app/components/Banner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Banner/index.js -------------------------------------------------------------------------------- /src/app/components/Base/index.css: -------------------------------------------------------------------------------- 1 | @media only screen and (max-width: 600px) { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/components/Base/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Base/index.js -------------------------------------------------------------------------------- /src/app/components/Button/index.css: -------------------------------------------------------------------------------- 1 | @media only screen and (max-width: 600px) { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Button/index.js -------------------------------------------------------------------------------- /src/app/components/Navbar/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Navbar/index.css -------------------------------------------------------------------------------- /src/app/components/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Navbar/index.js -------------------------------------------------------------------------------- /src/app/components/Stud/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Stud/index.css -------------------------------------------------------------------------------- /src/app/components/Stud/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/Stud/index.js -------------------------------------------------------------------------------- /src/app/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/components/index.js -------------------------------------------------------------------------------- /src/app/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/index.css -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/app/pages/AlterBlog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/AlterBlog/index.js -------------------------------------------------------------------------------- /src/app/pages/CreateBlog/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/CreateBlog/index.css -------------------------------------------------------------------------------- /src/app/pages/CreateBlog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/CreateBlog/index.js -------------------------------------------------------------------------------- /src/app/pages/DeleteBlog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/DeleteBlog/index.js -------------------------------------------------------------------------------- /src/app/pages/EditBlog/index.css: -------------------------------------------------------------------------------- 1 | @media only screen and (max-width: 600px) { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/pages/EditBlog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/EditBlog/index.js -------------------------------------------------------------------------------- /src/app/pages/Feed/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Feed/index.css -------------------------------------------------------------------------------- /src/app/pages/Feed/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Feed/index.js -------------------------------------------------------------------------------- /src/app/pages/Home/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Home/Layout.js -------------------------------------------------------------------------------- /src/app/pages/Home/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Home/Login.js -------------------------------------------------------------------------------- /src/app/pages/Home/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Home/Signup.js -------------------------------------------------------------------------------- /src/app/pages/Home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Home/index.css -------------------------------------------------------------------------------- /src/app/pages/Profile/ProfileTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Profile/ProfileTab.js -------------------------------------------------------------------------------- /src/app/pages/Profile/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Profile/index.css -------------------------------------------------------------------------------- /src/app/pages/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Profile/index.js -------------------------------------------------------------------------------- /src/app/pages/ReadBlog/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/ReadBlog/index.css -------------------------------------------------------------------------------- /src/app/pages/ReadBlog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/ReadBlog/index.js -------------------------------------------------------------------------------- /src/app/pages/Results/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Results/404.js -------------------------------------------------------------------------------- /src/app/pages/Results/EmailFailure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Results/EmailFailure.js -------------------------------------------------------------------------------- /src/app/pages/Results/EmailSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Results/EmailSuccess.js -------------------------------------------------------------------------------- /src/app/pages/Results/SignupSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Results/SignupSuccess.js -------------------------------------------------------------------------------- /src/app/pages/Search/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Search/index.css -------------------------------------------------------------------------------- /src/app/pages/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Search/index.js -------------------------------------------------------------------------------- /src/app/pages/Settings/AccountSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Settings/AccountSettings.js -------------------------------------------------------------------------------- /src/app/pages/Settings/DeactivateAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Settings/DeactivateAccount.js -------------------------------------------------------------------------------- /src/app/pages/Settings/DeleteAccount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Settings/DeleteAccount.js -------------------------------------------------------------------------------- /src/app/pages/Settings/PrivacySettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Settings/PrivacySettings.js -------------------------------------------------------------------------------- /src/app/pages/Settings/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Settings/index.css -------------------------------------------------------------------------------- /src/app/pages/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/pages/Settings/index.js -------------------------------------------------------------------------------- /src/app/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/router/index.js -------------------------------------------------------------------------------- /src/app/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/router/routes.js -------------------------------------------------------------------------------- /src/app/skeletons/Feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/skeletons/Feed.js -------------------------------------------------------------------------------- /src/app/skeletons/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/skeletons/Profile.js -------------------------------------------------------------------------------- /src/app/skeletons/ReadBlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/skeletons/ReadBlog.js -------------------------------------------------------------------------------- /src/app/skeletons/UpdateBlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/skeletons/UpdateBlog.js -------------------------------------------------------------------------------- /src/app/skeletons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/skeletons/index.js -------------------------------------------------------------------------------- /src/app/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/app/theme.css -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/config/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/services/api/auth.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/services/api/auth.api.js -------------------------------------------------------------------------------- /src/services/api/blog.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/services/api/blog.api.js -------------------------------------------------------------------------------- /src/services/api/writer.api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/services/api/writer.api.js -------------------------------------------------------------------------------- /src/services/firebase/index.js: -------------------------------------------------------------------------------- 1 | // firebase 2 | -------------------------------------------------------------------------------- /src/static/img/blue_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/blue_book.svg -------------------------------------------------------------------------------- /src/static/img/blue_bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/blue_bulb.svg -------------------------------------------------------------------------------- /src/static/img/blue_read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/blue_read.svg -------------------------------------------------------------------------------- /src/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/icon.png -------------------------------------------------------------------------------- /src/static/img/idea_pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/idea_pen.png -------------------------------------------------------------------------------- /src/static/img/music_pen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/music_pen.jpg -------------------------------------------------------------------------------- /src/static/img/red_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/red_book.svg -------------------------------------------------------------------------------- /src/static/img/red_bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/red_bulb.svg -------------------------------------------------------------------------------- /src/static/img/red_read.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/red_read.svg -------------------------------------------------------------------------------- /src/static/img/writer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/img/writer.png -------------------------------------------------------------------------------- /src/static/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/static/index.js -------------------------------------------------------------------------------- /src/store/auth/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/auth/actions/creators.js -------------------------------------------------------------------------------- /src/store/auth/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/auth/actions/index.js -------------------------------------------------------------------------------- /src/store/auth/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/auth/actions/types.js -------------------------------------------------------------------------------- /src/store/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/auth/reducer.js -------------------------------------------------------------------------------- /src/store/auth/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/auth/state.js -------------------------------------------------------------------------------- /src/store/blog/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/blog/actions/creators.js -------------------------------------------------------------------------------- /src/store/blog/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/blog/actions/index.js -------------------------------------------------------------------------------- /src/store/blog/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/blog/actions/types.js -------------------------------------------------------------------------------- /src/store/blog/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/blog/reducer.js -------------------------------------------------------------------------------- /src/store/blog/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/blog/state.js -------------------------------------------------------------------------------- /src/store/common/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/common/actions/creators.js -------------------------------------------------------------------------------- /src/store/common/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/common/actions/index.js -------------------------------------------------------------------------------- /src/store/common/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/common/actions/types.js -------------------------------------------------------------------------------- /src/store/common/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/common/reducer.js -------------------------------------------------------------------------------- /src/store/common/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/common/state.js -------------------------------------------------------------------------------- /src/store/feed/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/feed/actions/creators.js -------------------------------------------------------------------------------- /src/store/feed/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/feed/actions/index.js -------------------------------------------------------------------------------- /src/store/feed/actions/types.js: -------------------------------------------------------------------------------- 1 | export const actionTypes = { 2 | SET_BLOGS: "blog/setBlogs", 3 | }; 4 | -------------------------------------------------------------------------------- /src/store/feed/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/feed/reducer.js -------------------------------------------------------------------------------- /src/store/feed/state.js: -------------------------------------------------------------------------------- 1 | export const initialState = { 2 | blogs: [], 3 | loading: true, 4 | }; 5 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/profile/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/profile/actions/creators.js -------------------------------------------------------------------------------- /src/store/profile/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/profile/actions/index.js -------------------------------------------------------------------------------- /src/store/profile/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/profile/actions/types.js -------------------------------------------------------------------------------- /src/store/profile/mapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/profile/mapper.js -------------------------------------------------------------------------------- /src/store/profile/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/profile/reducer.js -------------------------------------------------------------------------------- /src/store/profile/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/profile/state.js -------------------------------------------------------------------------------- /src/store/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/rootReducer.js -------------------------------------------------------------------------------- /src/store/search/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/search/actions/creators.js -------------------------------------------------------------------------------- /src/store/search/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/search/actions/index.js -------------------------------------------------------------------------------- /src/store/search/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/search/actions/types.js -------------------------------------------------------------------------------- /src/store/search/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/search/reducer.js -------------------------------------------------------------------------------- /src/store/search/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/search/state.js -------------------------------------------------------------------------------- /src/store/settings/actions/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/settings/actions/creators.js -------------------------------------------------------------------------------- /src/store/settings/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/settings/actions/index.js -------------------------------------------------------------------------------- /src/store/settings/actions/types.js: -------------------------------------------------------------------------------- 1 | export const actionTypes = { 2 | SET_TAB: "settings/setTab", 3 | }; 4 | -------------------------------------------------------------------------------- /src/store/settings/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/settings/reducer.js -------------------------------------------------------------------------------- /src/store/settings/state.js: -------------------------------------------------------------------------------- 1 | export const initialState = { 2 | tab: 1, 3 | }; 4 | -------------------------------------------------------------------------------- /src/store/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/store/utils/index.js -------------------------------------------------------------------------------- /src/utils/blogMapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/utils/blogMapper.js -------------------------------------------------------------------------------- /src/utils/ellipsis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/utils/ellipsis.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /src/utils/userStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/src/utils/userStorage.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nandan-unni-zz/BlogBook-React-Frontend/HEAD/yarn.lock --------------------------------------------------------------------------------