├── .babelrc ├── .gitignore ├── README.md ├── config.js ├── demo-dashboard.gif ├── dist ├── dfc0cda63aba4a842c70693be2325975.gif ├── index.html └── main.js ├── index.pug ├── package.json ├── pagination.gif ├── public └── index.html ├── render-posts.gif ├── server.js ├── src ├── App.js ├── client-config.js ├── components │ ├── Blogs.js │ ├── Home.js │ ├── Login.js │ ├── NavLink.js │ ├── Navbar.js │ ├── Page.js │ ├── Posts.js │ ├── SinglePost.js │ ├── content │ │ └── Content.js │ ├── context │ │ ├── AppContext.js │ │ └── AppProvider.js │ ├── dashboard │ │ ├── Dashboard.js │ │ ├── pages │ │ │ └── Pages.js │ │ ├── posts │ │ │ ├── CreatePost.js │ │ │ └── Posts.js │ │ └── sidebar │ │ │ ├── SidebarMenu.js │ │ │ ├── ToggleSidebarBtn.js │ │ │ └── menus │ │ │ ├── PageMenu.js │ │ │ └── PostMenu.js │ ├── functions.js │ └── layouts │ │ ├── DashboardLayout.js │ │ ├── FeaturedImage.js │ │ ├── Loader.js │ │ ├── Pagination.js │ │ ├── Post.js │ │ └── PostLoader.js ├── index.js ├── loader.gif ├── style.css └── utils │ └── functions.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/config.js -------------------------------------------------------------------------------- /demo-dashboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/demo-dashboard.gif -------------------------------------------------------------------------------- /dist/dfc0cda63aba4a842c70693be2325975.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/dist/dfc0cda63aba4a842c70693be2325975.gif -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/dist/main.js -------------------------------------------------------------------------------- /index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/index.pug -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/package.json -------------------------------------------------------------------------------- /pagination.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/pagination.gif -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/public/index.html -------------------------------------------------------------------------------- /render-posts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/render-posts.gif -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/server.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/App.js -------------------------------------------------------------------------------- /src/client-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/client-config.js -------------------------------------------------------------------------------- /src/components/Blogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/Blogs.js -------------------------------------------------------------------------------- /src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/Home.js -------------------------------------------------------------------------------- /src/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/Login.js -------------------------------------------------------------------------------- /src/components/NavLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/NavLink.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/Page.js -------------------------------------------------------------------------------- /src/components/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/Posts.js -------------------------------------------------------------------------------- /src/components/SinglePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/SinglePost.js -------------------------------------------------------------------------------- /src/components/content/Content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/content/Content.js -------------------------------------------------------------------------------- /src/components/context/AppContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/context/AppContext.js -------------------------------------------------------------------------------- /src/components/context/AppProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/context/AppProvider.js -------------------------------------------------------------------------------- /src/components/dashboard/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/Dashboard.js -------------------------------------------------------------------------------- /src/components/dashboard/pages/Pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/pages/Pages.js -------------------------------------------------------------------------------- /src/components/dashboard/posts/CreatePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/posts/CreatePost.js -------------------------------------------------------------------------------- /src/components/dashboard/posts/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/posts/Posts.js -------------------------------------------------------------------------------- /src/components/dashboard/sidebar/SidebarMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/sidebar/SidebarMenu.js -------------------------------------------------------------------------------- /src/components/dashboard/sidebar/ToggleSidebarBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/sidebar/ToggleSidebarBtn.js -------------------------------------------------------------------------------- /src/components/dashboard/sidebar/menus/PageMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/sidebar/menus/PageMenu.js -------------------------------------------------------------------------------- /src/components/dashboard/sidebar/menus/PostMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/dashboard/sidebar/menus/PostMenu.js -------------------------------------------------------------------------------- /src/components/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/functions.js -------------------------------------------------------------------------------- /src/components/layouts/DashboardLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/layouts/DashboardLayout.js -------------------------------------------------------------------------------- /src/components/layouts/FeaturedImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/layouts/FeaturedImage.js -------------------------------------------------------------------------------- /src/components/layouts/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/layouts/Loader.js -------------------------------------------------------------------------------- /src/components/layouts/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/layouts/Pagination.js -------------------------------------------------------------------------------- /src/components/layouts/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/layouts/Post.js -------------------------------------------------------------------------------- /src/components/layouts/PostLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/components/layouts/PostLoader.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/loader.gif -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/src/utils/functions.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imranhsayed/react-with-wordpress/HEAD/webpack.config.js --------------------------------------------------------------------------------