├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .vscode └── settings.json ├── README.assets ├── image-20200511183541839.png ├── image-20200511183547487.png ├── image-20200511184801972.png └── thumbnail.png ├── README.md ├── firebase.json ├── index.html ├── jest.config.js ├── package.json ├── src ├── App.js ├── api │ └── theCatAPI.js ├── components │ ├── Card.js │ ├── CardModal.js │ ├── ChangeMode.js │ ├── Loader.js │ ├── ResultSection.js │ └── SearchSection.js ├── css │ └── style.css ├── main.js └── util │ └── localStorage.js ├── studyLog.md ├── test └── test.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.assets/image-20200511183541839.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/README.assets/image-20200511183541839.png -------------------------------------------------------------------------------- /README.assets/image-20200511183547487.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/README.assets/image-20200511183547487.png -------------------------------------------------------------------------------- /README.assets/image-20200511184801972.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/README.assets/image-20200511184801972.png -------------------------------------------------------------------------------- /README.assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/README.assets/thumbnail.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/firebase.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/App.js -------------------------------------------------------------------------------- /src/api/theCatAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/api/theCatAPI.js -------------------------------------------------------------------------------- /src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/components/Card.js -------------------------------------------------------------------------------- /src/components/CardModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/components/CardModal.js -------------------------------------------------------------------------------- /src/components/ChangeMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/components/ChangeMode.js -------------------------------------------------------------------------------- /src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/components/Loader.js -------------------------------------------------------------------------------- /src/components/ResultSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/components/ResultSection.js -------------------------------------------------------------------------------- /src/components/SearchSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/components/SearchSection.js -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/main.js -------------------------------------------------------------------------------- /src/util/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/src/util/localStorage.js -------------------------------------------------------------------------------- /studyLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/studyLog.md -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/test/test.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hanameee/vanillaJSKitty/HEAD/webpack.config.js --------------------------------------------------------------------------------