├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── README.md ├── index.html ├── package.json ├── server.js ├── src ├── __tests__ │ └── actions │ │ └── utils-test.js ├── actions │ ├── auth.js │ ├── device.js │ ├── geolocation.js │ ├── user.js │ └── utils.js ├── components │ ├── footer │ │ ├── Footer.js │ │ └── footer.css │ ├── googlemap │ │ ├── Googlemap.js │ │ └── googlemap.css │ ├── header │ │ ├── Header.js │ │ └── header.css │ └── users │ │ ├── User.js │ │ ├── Users.js │ │ ├── user.css │ │ └── users.css ├── containers │ ├── app │ │ ├── App.js │ │ └── app.css │ ├── explore │ │ ├── Explore.js │ │ └── explore.css │ ├── following │ │ ├── Following.js │ │ └── following.css │ ├── home │ │ ├── Home.js │ │ └── home.css │ ├── login │ │ ├── Login.js │ │ └── login.css │ ├── misc │ │ ├── NotFound.js │ │ └── RestrictPage.js │ ├── profile │ │ ├── Profile.js │ │ └── profile.css │ ├── record │ │ ├── Record.js │ │ └── record.css │ └── register │ │ ├── Register.js │ │ └── register.css ├── index.css ├── index.js ├── reducers │ ├── auth.js │ ├── device.js │ ├── geolocation.js │ └── user.js └── store │ └── configureStore.js ├── webpack.config.js └── webpack.production.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/server.js -------------------------------------------------------------------------------- /src/__tests__/actions/utils-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/__tests__/actions/utils-test.js -------------------------------------------------------------------------------- /src/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/actions/auth.js -------------------------------------------------------------------------------- /src/actions/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/actions/device.js -------------------------------------------------------------------------------- /src/actions/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/actions/geolocation.js -------------------------------------------------------------------------------- /src/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/actions/user.js -------------------------------------------------------------------------------- /src/actions/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/actions/utils.js -------------------------------------------------------------------------------- /src/components/footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/footer/Footer.js -------------------------------------------------------------------------------- /src/components/footer/footer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/googlemap/Googlemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/googlemap/Googlemap.js -------------------------------------------------------------------------------- /src/components/googlemap/googlemap.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/header/Header.js -------------------------------------------------------------------------------- /src/components/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/header/header.css -------------------------------------------------------------------------------- /src/components/users/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/users/User.js -------------------------------------------------------------------------------- /src/components/users/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/users/Users.js -------------------------------------------------------------------------------- /src/components/users/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/components/users/user.css -------------------------------------------------------------------------------- /src/components/users/users.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/containers/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/app/App.js -------------------------------------------------------------------------------- /src/containers/app/app.css: -------------------------------------------------------------------------------- 1 | .appContent { 2 | } 3 | -------------------------------------------------------------------------------- /src/containers/explore/Explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/explore/Explore.js -------------------------------------------------------------------------------- /src/containers/explore/explore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/explore/explore.css -------------------------------------------------------------------------------- /src/containers/following/Following.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/following/Following.js -------------------------------------------------------------------------------- /src/containers/following/following.css: -------------------------------------------------------------------------------- 1 | h3 { 2 | height: 50px; 3 | } -------------------------------------------------------------------------------- /src/containers/home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/home/Home.js -------------------------------------------------------------------------------- /src/containers/home/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/home/home.css -------------------------------------------------------------------------------- /src/containers/login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/login/Login.js -------------------------------------------------------------------------------- /src/containers/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/login/login.css -------------------------------------------------------------------------------- /src/containers/misc/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/misc/NotFound.js -------------------------------------------------------------------------------- /src/containers/misc/RestrictPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/misc/RestrictPage.js -------------------------------------------------------------------------------- /src/containers/profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/profile/Profile.js -------------------------------------------------------------------------------- /src/containers/profile/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/profile/profile.css -------------------------------------------------------------------------------- /src/containers/record/Record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/record/Record.js -------------------------------------------------------------------------------- /src/containers/record/record.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/record/record.css -------------------------------------------------------------------------------- /src/containers/register/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/register/Register.js -------------------------------------------------------------------------------- /src/containers/register/register.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/containers/register/register.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/reducers/auth.js -------------------------------------------------------------------------------- /src/reducers/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/reducers/device.js -------------------------------------------------------------------------------- /src/reducers/geolocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/reducers/geolocation.js -------------------------------------------------------------------------------- /src/reducers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/reducers/user.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDLyu/react-redux-antd-starter-kit/HEAD/webpack.production.config.js --------------------------------------------------------------------------------