├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENCE ├── README.md ├── config ├── env.js ├── jest │ ├── cssTransform.js │ └── fileTransform.js ├── paths.js ├── polyfills.js ├── webpack.config.demo.js ├── webpack.config.dev.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── how-it-works.png ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── scripts ├── build.js ├── demo.js ├── start.js └── test.js └── src ├── __tests__ └── AuthProvider.react.js ├── demo ├── App.css ├── App.js ├── hasura.png ├── index.js └── registerServiceWorker.js └── lib ├── components ├── AuthConsumer.js └── AuthProvider.js ├── context.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/webpack.config.demo.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/how-it-works.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/public/manifest.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/scripts/demo.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/__tests__/AuthProvider.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/__tests__/AuthProvider.react.js -------------------------------------------------------------------------------- /src/demo/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/demo/App.css -------------------------------------------------------------------------------- /src/demo/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/demo/App.js -------------------------------------------------------------------------------- /src/demo/hasura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/demo/hasura.png -------------------------------------------------------------------------------- /src/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/demo/index.js -------------------------------------------------------------------------------- /src/demo/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/demo/registerServiceWorker.js -------------------------------------------------------------------------------- /src/lib/components/AuthConsumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/lib/components/AuthConsumer.js -------------------------------------------------------------------------------- /src/lib/components/AuthProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/lib/components/AuthProvider.js -------------------------------------------------------------------------------- /src/lib/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/lib/context.js -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasura/react-check-auth/HEAD/src/lib/index.js --------------------------------------------------------------------------------