├── .codeclimate.yml ├── .dockerignore ├── .editorconfig ├── .env ├── .env.test ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── build.yml │ ├── codeql.yml │ └── deploy.yml ├── .gitignore ├── .stylelintrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── env.js ├── getHttpsConfig.js ├── jest │ ├── babelTransform.js │ ├── cssTransform.js │ └── fileTransform.js ├── modules.js ├── paths.js ├── pnpTs.js ├── polyfills.js ├── webpack.config.dev.js ├── webpack.config.js ├── webpack.config.prod.js └── webpackDevServer.config.js ├── docker-compose.yml ├── jest.setup.js ├── package.json ├── public ├── .htaccess ├── android-chrome-192x192.png ├── android-chrome-256x256.png ├── apple-touch-icon.png ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon-48x48.png ├── favicon.ico ├── icon-128x128.png ├── icon-144x144.png ├── icon-152x152.png ├── icon-192x192.png ├── icon-384x384.png ├── icon-512x512.png ├── icon-72x72.png ├── icon-96x96.png ├── index.html ├── manifest.webmanifest ├── mstile-150x150.png ├── robots.txt ├── safari-pinned-tab.svg └── svg │ ├── close.svg │ ├── day │ ├── 113.png │ ├── 116.png │ ├── 119.png │ ├── 122.png │ ├── 143.png │ ├── 176.png │ ├── 179.png │ ├── 182.png │ ├── 185.png │ ├── 200.png │ ├── 227.png │ ├── 230.png │ ├── 248.png │ ├── 260.png │ ├── 263.png │ ├── 266.png │ ├── 281.png │ ├── 284.png │ ├── 293.png │ ├── 296.png │ ├── 299.png │ ├── 302.png │ ├── 305.png │ ├── 308.png │ ├── 311.png │ ├── 314.png │ ├── 317.png │ ├── 320.png │ ├── 323.png │ ├── 326.png │ ├── 329.png │ ├── 332.png │ ├── 335.png │ ├── 338.png │ ├── 350.png │ ├── 353.png │ ├── 356.png │ ├── 359.png │ ├── 362.png │ ├── 365.png │ ├── 368.png │ ├── 371.png │ ├── 374.png │ ├── 377.png │ ├── 386.png │ ├── 389.png │ ├── 392.png │ └── 395.png │ ├── github.svg │ ├── gps.svg │ ├── info.svg │ ├── night │ ├── 113.png │ ├── 116.png │ ├── 119.png │ ├── 122.png │ ├── 143.png │ ├── 176.png │ ├── 179.png │ ├── 182.png │ ├── 185.png │ ├── 200.png │ ├── 227.png │ ├── 230.png │ ├── 248.png │ ├── 260.png │ ├── 263.png │ ├── 266.png │ ├── 281.png │ ├── 284.png │ ├── 293.png │ ├── 296.png │ ├── 299.png │ ├── 302.png │ ├── 305.png │ ├── 308.png │ ├── 311.png │ ├── 314.png │ ├── 317.png │ ├── 320.png │ ├── 323.png │ ├── 326.png │ ├── 329.png │ ├── 332.png │ ├── 335.png │ ├── 338.png │ ├── 350.png │ ├── 353.png │ ├── 356.png │ ├── 359.png │ ├── 362.png │ ├── 365.png │ ├── 368.png │ ├── 371.png │ ├── 374.png │ ├── 377.png │ ├── 386.png │ ├── 389.png │ ├── 392.png │ └── 395.png │ ├── pin.svg │ ├── rain-probality.svg │ └── synchronize.svg ├── scripts ├── build.js ├── start.js └── test.js ├── spec ├── api │ ├── ipGeolocation.spec.js │ └── ipfetcher.spec.js ├── app │ ├── Home.spec.js │ ├── Info │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── __snapshots__ │ │ └── Home.spec.js.snap │ └── storage.spec.js ├── components │ ├── Close │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── DateCurrent │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── Forecast │ │ ├── Temperature.spec.js │ │ ├── __snapshots__ │ │ │ ├── Temperature.spec.js.snap │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── GPSLocation │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── Info │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── Loader │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── Location │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── Navigation │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── RainProbability │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ ├── Refresh │ │ ├── __snapshots__ │ │ │ └── index.spec.js.snap │ │ └── index.spec.js │ └── Temperature │ │ ├── __snapshots__ │ │ └── index.spec.js.snap │ │ └── index.spec.js ├── enzymeConfig.js └── helpers │ ├── icons.spec.js │ ├── rAFTimeout.spec.js │ ├── time.spec.js │ └── weekday.spec.js └── src ├── api ├── __mocks__ │ ├── foreCastAPI.js │ ├── ipGeoLocation.js │ ├── ipfetcher.js │ └── reverseGeoLocation.js ├── ipGeoLocation.js └── ipfetcher.js ├── app ├── Home │ └── index.js ├── Info │ ├── index.js │ ├── index.scss │ └── transition.scss ├── index.js ├── index.scss └── storage.js ├── components ├── Close │ ├── index.js │ └── index.scss ├── DateCurrent │ ├── index.js │ └── index.scss ├── Error │ ├── index.js │ └── index.scss ├── Forecast │ ├── Temperature.js │ ├── index.js │ └── index.scss ├── ForecastDaily │ └── index.js ├── ForecastHourly │ └── index.js ├── GPSLocation │ ├── index.js │ └── index.scss ├── Info │ ├── index.js │ └── index.scss ├── Loader │ ├── index.js │ ├── index.scss │ └── ray.scss ├── Location │ ├── index.js │ └── index.scss ├── Navigation │ ├── index.js │ └── index.scss ├── RainProbability │ ├── index.js │ └── index.scss ├── Refresh │ ├── index.js │ └── index.scss └── Temperature │ ├── index.js │ └── index.scss ├── helpers ├── __mocks__ │ └── drag.js ├── icons.js ├── rAFTimeout.js ├── time.js └── weekdays.js ├── index.js ├── initialState.js ├── mock ├── foreCast.json ├── ipGeoLocation.json └── reverseGeoLocation.json ├── registerServiceWorker.js ├── service-worker.js └── svg ├── close.svg ├── github.svg ├── gps.svg ├── info.svg ├── pin.svg ├── rain-probality.svg ├── synchronize.svg ├── wi-cloudy.svg ├── wi-day-cloudy.svg ├── wi-day-sunny.svg ├── wi-fog.svg ├── wi-night-alt-cloudy.svg ├── wi-night-clear.svg ├── wi-rain.svg ├── wi-sleet.svg ├── wi-snow.svg └── wi-windy.svg /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .vscode 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.env -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- 1 | REACT_APP_API_ENDPOINT=http://localhost:5000/api 2 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/registerServiceWorker.js 2 | /scripts 3 | /build 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/README.md -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/env.js -------------------------------------------------------------------------------- /config/getHttpsConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/getHttpsConfig.js -------------------------------------------------------------------------------- /config/jest/babelTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/jest/babelTransform.js -------------------------------------------------------------------------------- /config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/jest/cssTransform.js -------------------------------------------------------------------------------- /config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/jest/fileTransform.js -------------------------------------------------------------------------------- /config/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/modules.js -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/pnpTs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/pnpTs.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/package.json -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/android-chrome-256x256.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/favicon-48x48.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-128x128.png -------------------------------------------------------------------------------- /public/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-144x144.png -------------------------------------------------------------------------------- /public/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-152x152.png -------------------------------------------------------------------------------- /public/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-192x192.png -------------------------------------------------------------------------------- /public/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-384x384.png -------------------------------------------------------------------------------- /public/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-512x512.png -------------------------------------------------------------------------------- /public/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-72x72.png -------------------------------------------------------------------------------- /public/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/icon-96x96.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/manifest.webmanifest -------------------------------------------------------------------------------- /public/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/mstile-150x150.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/close.svg -------------------------------------------------------------------------------- /public/svg/day/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/113.png -------------------------------------------------------------------------------- /public/svg/day/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/116.png -------------------------------------------------------------------------------- /public/svg/day/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/119.png -------------------------------------------------------------------------------- /public/svg/day/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/122.png -------------------------------------------------------------------------------- /public/svg/day/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/143.png -------------------------------------------------------------------------------- /public/svg/day/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/176.png -------------------------------------------------------------------------------- /public/svg/day/179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/179.png -------------------------------------------------------------------------------- /public/svg/day/182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/182.png -------------------------------------------------------------------------------- /public/svg/day/185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/185.png -------------------------------------------------------------------------------- /public/svg/day/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/200.png -------------------------------------------------------------------------------- /public/svg/day/227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/227.png -------------------------------------------------------------------------------- /public/svg/day/230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/230.png -------------------------------------------------------------------------------- /public/svg/day/248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/248.png -------------------------------------------------------------------------------- /public/svg/day/260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/260.png -------------------------------------------------------------------------------- /public/svg/day/263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/263.png -------------------------------------------------------------------------------- /public/svg/day/266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/266.png -------------------------------------------------------------------------------- /public/svg/day/281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/281.png -------------------------------------------------------------------------------- /public/svg/day/284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/284.png -------------------------------------------------------------------------------- /public/svg/day/293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/293.png -------------------------------------------------------------------------------- /public/svg/day/296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/296.png -------------------------------------------------------------------------------- /public/svg/day/299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/299.png -------------------------------------------------------------------------------- /public/svg/day/302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/302.png -------------------------------------------------------------------------------- /public/svg/day/305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/305.png -------------------------------------------------------------------------------- /public/svg/day/308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/308.png -------------------------------------------------------------------------------- /public/svg/day/311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/311.png -------------------------------------------------------------------------------- /public/svg/day/314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/314.png -------------------------------------------------------------------------------- /public/svg/day/317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/317.png -------------------------------------------------------------------------------- /public/svg/day/320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/320.png -------------------------------------------------------------------------------- /public/svg/day/323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/323.png -------------------------------------------------------------------------------- /public/svg/day/326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/326.png -------------------------------------------------------------------------------- /public/svg/day/329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/329.png -------------------------------------------------------------------------------- /public/svg/day/332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/332.png -------------------------------------------------------------------------------- /public/svg/day/335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/335.png -------------------------------------------------------------------------------- /public/svg/day/338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/338.png -------------------------------------------------------------------------------- /public/svg/day/350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/350.png -------------------------------------------------------------------------------- /public/svg/day/353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/353.png -------------------------------------------------------------------------------- /public/svg/day/356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/356.png -------------------------------------------------------------------------------- /public/svg/day/359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/359.png -------------------------------------------------------------------------------- /public/svg/day/362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/362.png -------------------------------------------------------------------------------- /public/svg/day/365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/365.png -------------------------------------------------------------------------------- /public/svg/day/368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/368.png -------------------------------------------------------------------------------- /public/svg/day/371.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/371.png -------------------------------------------------------------------------------- /public/svg/day/374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/374.png -------------------------------------------------------------------------------- /public/svg/day/377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/377.png -------------------------------------------------------------------------------- /public/svg/day/386.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/386.png -------------------------------------------------------------------------------- /public/svg/day/389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/389.png -------------------------------------------------------------------------------- /public/svg/day/392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/392.png -------------------------------------------------------------------------------- /public/svg/day/395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/day/395.png -------------------------------------------------------------------------------- /public/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/github.svg -------------------------------------------------------------------------------- /public/svg/gps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/gps.svg -------------------------------------------------------------------------------- /public/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/info.svg -------------------------------------------------------------------------------- /public/svg/night/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/113.png -------------------------------------------------------------------------------- /public/svg/night/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/116.png -------------------------------------------------------------------------------- /public/svg/night/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/119.png -------------------------------------------------------------------------------- /public/svg/night/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/122.png -------------------------------------------------------------------------------- /public/svg/night/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/143.png -------------------------------------------------------------------------------- /public/svg/night/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/176.png -------------------------------------------------------------------------------- /public/svg/night/179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/179.png -------------------------------------------------------------------------------- /public/svg/night/182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/182.png -------------------------------------------------------------------------------- /public/svg/night/185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/185.png -------------------------------------------------------------------------------- /public/svg/night/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/200.png -------------------------------------------------------------------------------- /public/svg/night/227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/227.png -------------------------------------------------------------------------------- /public/svg/night/230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/230.png -------------------------------------------------------------------------------- /public/svg/night/248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/248.png -------------------------------------------------------------------------------- /public/svg/night/260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/260.png -------------------------------------------------------------------------------- /public/svg/night/263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/263.png -------------------------------------------------------------------------------- /public/svg/night/266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/266.png -------------------------------------------------------------------------------- /public/svg/night/281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/281.png -------------------------------------------------------------------------------- /public/svg/night/284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/284.png -------------------------------------------------------------------------------- /public/svg/night/293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/293.png -------------------------------------------------------------------------------- /public/svg/night/296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/296.png -------------------------------------------------------------------------------- /public/svg/night/299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/299.png -------------------------------------------------------------------------------- /public/svg/night/302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/302.png -------------------------------------------------------------------------------- /public/svg/night/305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/305.png -------------------------------------------------------------------------------- /public/svg/night/308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/308.png -------------------------------------------------------------------------------- /public/svg/night/311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/311.png -------------------------------------------------------------------------------- /public/svg/night/314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/314.png -------------------------------------------------------------------------------- /public/svg/night/317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/317.png -------------------------------------------------------------------------------- /public/svg/night/320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/320.png -------------------------------------------------------------------------------- /public/svg/night/323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/323.png -------------------------------------------------------------------------------- /public/svg/night/326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/326.png -------------------------------------------------------------------------------- /public/svg/night/329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/329.png -------------------------------------------------------------------------------- /public/svg/night/332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/332.png -------------------------------------------------------------------------------- /public/svg/night/335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/335.png -------------------------------------------------------------------------------- /public/svg/night/338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/338.png -------------------------------------------------------------------------------- /public/svg/night/350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/350.png -------------------------------------------------------------------------------- /public/svg/night/353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/353.png -------------------------------------------------------------------------------- /public/svg/night/356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/356.png -------------------------------------------------------------------------------- /public/svg/night/359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/359.png -------------------------------------------------------------------------------- /public/svg/night/362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/362.png -------------------------------------------------------------------------------- /public/svg/night/365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/365.png -------------------------------------------------------------------------------- /public/svg/night/368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/368.png -------------------------------------------------------------------------------- /public/svg/night/371.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/371.png -------------------------------------------------------------------------------- /public/svg/night/374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/374.png -------------------------------------------------------------------------------- /public/svg/night/377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/377.png -------------------------------------------------------------------------------- /public/svg/night/386.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/386.png -------------------------------------------------------------------------------- /public/svg/night/389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/389.png -------------------------------------------------------------------------------- /public/svg/night/392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/392.png -------------------------------------------------------------------------------- /public/svg/night/395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/night/395.png -------------------------------------------------------------------------------- /public/svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/pin.svg -------------------------------------------------------------------------------- /public/svg/rain-probality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/rain-probality.svg -------------------------------------------------------------------------------- /public/svg/synchronize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/public/svg/synchronize.svg -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/scripts/test.js -------------------------------------------------------------------------------- /spec/api/ipGeolocation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/api/ipGeolocation.spec.js -------------------------------------------------------------------------------- /spec/api/ipfetcher.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/api/ipfetcher.spec.js -------------------------------------------------------------------------------- /spec/app/Home.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/app/Home.spec.js -------------------------------------------------------------------------------- /spec/app/Info/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/app/Info/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/app/Info/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/app/Info/index.spec.js -------------------------------------------------------------------------------- /spec/app/__snapshots__/Home.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/app/__snapshots__/Home.spec.js.snap -------------------------------------------------------------------------------- /spec/app/storage.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/app/storage.spec.js -------------------------------------------------------------------------------- /spec/components/Close/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Close/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Close/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Close/index.spec.js -------------------------------------------------------------------------------- /spec/components/DateCurrent/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/DateCurrent/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/DateCurrent/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/DateCurrent/index.spec.js -------------------------------------------------------------------------------- /spec/components/Forecast/Temperature.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Forecast/Temperature.spec.js -------------------------------------------------------------------------------- /spec/components/Forecast/__snapshots__/Temperature.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Forecast/__snapshots__/Temperature.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Forecast/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Forecast/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Forecast/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Forecast/index.spec.js -------------------------------------------------------------------------------- /spec/components/GPSLocation/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/GPSLocation/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/GPSLocation/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/GPSLocation/index.spec.js -------------------------------------------------------------------------------- /spec/components/Info/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Info/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Info/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Info/index.spec.js -------------------------------------------------------------------------------- /spec/components/Loader/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Loader/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Loader/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Loader/index.spec.js -------------------------------------------------------------------------------- /spec/components/Location/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Location/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Location/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Location/index.spec.js -------------------------------------------------------------------------------- /spec/components/Navigation/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Navigation/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Navigation/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Navigation/index.spec.js -------------------------------------------------------------------------------- /spec/components/RainProbability/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/RainProbability/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/RainProbability/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/RainProbability/index.spec.js -------------------------------------------------------------------------------- /spec/components/Refresh/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Refresh/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Refresh/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Refresh/index.spec.js -------------------------------------------------------------------------------- /spec/components/Temperature/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Temperature/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /spec/components/Temperature/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/components/Temperature/index.spec.js -------------------------------------------------------------------------------- /spec/enzymeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/enzymeConfig.js -------------------------------------------------------------------------------- /spec/helpers/icons.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/helpers/icons.spec.js -------------------------------------------------------------------------------- /spec/helpers/rAFTimeout.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/helpers/rAFTimeout.spec.js -------------------------------------------------------------------------------- /spec/helpers/time.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/helpers/time.spec.js -------------------------------------------------------------------------------- /spec/helpers/weekday.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/spec/helpers/weekday.spec.js -------------------------------------------------------------------------------- /src/api/__mocks__/foreCastAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/api/__mocks__/foreCastAPI.js -------------------------------------------------------------------------------- /src/api/__mocks__/ipGeoLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/api/__mocks__/ipGeoLocation.js -------------------------------------------------------------------------------- /src/api/__mocks__/ipfetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/api/__mocks__/ipfetcher.js -------------------------------------------------------------------------------- /src/api/__mocks__/reverseGeoLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/api/__mocks__/reverseGeoLocation.js -------------------------------------------------------------------------------- /src/api/ipGeoLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/api/ipGeoLocation.js -------------------------------------------------------------------------------- /src/api/ipfetcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/api/ipfetcher.js -------------------------------------------------------------------------------- /src/app/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/Home/index.js -------------------------------------------------------------------------------- /src/app/Info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/Info/index.js -------------------------------------------------------------------------------- /src/app/Info/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/Info/index.scss -------------------------------------------------------------------------------- /src/app/Info/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/Info/transition.scss -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/app/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/index.scss -------------------------------------------------------------------------------- /src/app/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/app/storage.js -------------------------------------------------------------------------------- /src/components/Close/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Close/index.js -------------------------------------------------------------------------------- /src/components/Close/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Close/index.scss -------------------------------------------------------------------------------- /src/components/DateCurrent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/DateCurrent/index.js -------------------------------------------------------------------------------- /src/components/DateCurrent/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/DateCurrent/index.scss -------------------------------------------------------------------------------- /src/components/Error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Error/index.js -------------------------------------------------------------------------------- /src/components/Error/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Error/index.scss -------------------------------------------------------------------------------- /src/components/Forecast/Temperature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Forecast/Temperature.js -------------------------------------------------------------------------------- /src/components/Forecast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Forecast/index.js -------------------------------------------------------------------------------- /src/components/Forecast/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Forecast/index.scss -------------------------------------------------------------------------------- /src/components/ForecastDaily/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/ForecastDaily/index.js -------------------------------------------------------------------------------- /src/components/ForecastHourly/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/ForecastHourly/index.js -------------------------------------------------------------------------------- /src/components/GPSLocation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/GPSLocation/index.js -------------------------------------------------------------------------------- /src/components/GPSLocation/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/GPSLocation/index.scss -------------------------------------------------------------------------------- /src/components/Info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Info/index.js -------------------------------------------------------------------------------- /src/components/Info/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Info/index.scss -------------------------------------------------------------------------------- /src/components/Loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Loader/index.js -------------------------------------------------------------------------------- /src/components/Loader/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Loader/index.scss -------------------------------------------------------------------------------- /src/components/Loader/ray.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Loader/ray.scss -------------------------------------------------------------------------------- /src/components/Location/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Location/index.js -------------------------------------------------------------------------------- /src/components/Location/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Location/index.scss -------------------------------------------------------------------------------- /src/components/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Navigation/index.js -------------------------------------------------------------------------------- /src/components/Navigation/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Navigation/index.scss -------------------------------------------------------------------------------- /src/components/RainProbability/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/RainProbability/index.js -------------------------------------------------------------------------------- /src/components/RainProbability/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/RainProbability/index.scss -------------------------------------------------------------------------------- /src/components/Refresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Refresh/index.js -------------------------------------------------------------------------------- /src/components/Refresh/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Refresh/index.scss -------------------------------------------------------------------------------- /src/components/Temperature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Temperature/index.js -------------------------------------------------------------------------------- /src/components/Temperature/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/components/Temperature/index.scss -------------------------------------------------------------------------------- /src/helpers/__mocks__/drag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/helpers/__mocks__/drag.js -------------------------------------------------------------------------------- /src/helpers/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/helpers/icons.js -------------------------------------------------------------------------------- /src/helpers/rAFTimeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/helpers/rAFTimeout.js -------------------------------------------------------------------------------- /src/helpers/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/helpers/time.js -------------------------------------------------------------------------------- /src/helpers/weekdays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/helpers/weekdays.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/initialState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/initialState.js -------------------------------------------------------------------------------- /src/mock/foreCast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/mock/foreCast.json -------------------------------------------------------------------------------- /src/mock/ipGeoLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/mock/ipGeoLocation.json -------------------------------------------------------------------------------- /src/mock/reverseGeoLocation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/mock/reverseGeoLocation.json -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/close.svg -------------------------------------------------------------------------------- /src/svg/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/github.svg -------------------------------------------------------------------------------- /src/svg/gps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/gps.svg -------------------------------------------------------------------------------- /src/svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/info.svg -------------------------------------------------------------------------------- /src/svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/pin.svg -------------------------------------------------------------------------------- /src/svg/rain-probality.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/rain-probality.svg -------------------------------------------------------------------------------- /src/svg/synchronize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/synchronize.svg -------------------------------------------------------------------------------- /src/svg/wi-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-cloudy.svg -------------------------------------------------------------------------------- /src/svg/wi-day-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-day-cloudy.svg -------------------------------------------------------------------------------- /src/svg/wi-day-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-day-sunny.svg -------------------------------------------------------------------------------- /src/svg/wi-fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-fog.svg -------------------------------------------------------------------------------- /src/svg/wi-night-alt-cloudy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-night-alt-cloudy.svg -------------------------------------------------------------------------------- /src/svg/wi-night-clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-night-clear.svg -------------------------------------------------------------------------------- /src/svg/wi-rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-rain.svg -------------------------------------------------------------------------------- /src/svg/wi-sleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-sleet.svg -------------------------------------------------------------------------------- /src/svg/wi-snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-snow.svg -------------------------------------------------------------------------------- /src/svg/wi-windy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iondrimba/react-weather-app/HEAD/src/svg/wi-windy.svg --------------------------------------------------------------------------------