├── .editorconfig ├── .firebase └── hosting.ZGlzdC93ZWF0aGVyLWFuZC1wbGFjZXM.cache ├── .firebaserc ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── firebase.json ├── image.png ├── karma.conf.js ├── ngsw-config.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ └── main-nav │ │ │ ├── main-nav.component.html │ │ │ ├── main-nav.component.scss │ │ │ ├── main-nav.component.spec.ts │ │ │ ├── main-nav.component.ts │ │ │ └── main-nav.module.ts │ ├── pages │ │ └── weather │ │ │ ├── weather.component.html │ │ │ ├── weather.component.scss │ │ │ ├── weather.component.spec.ts │ │ │ ├── weather.component.ts │ │ │ └── weather.module.ts │ ├── services │ │ └── weather │ │ │ ├── weather.service.spec.ts │ │ │ └── weather.service.ts │ └── utilities │ │ ├── entities │ │ ├── base-model.ts │ │ ├── weather-details.ts │ │ └── weather-forecast.ts │ │ ├── module │ │ └── mdc.module.ts │ │ ├── pipes │ │ ├── celsius │ │ │ ├── celsius.pipe.spec.ts │ │ │ └── celsius.pipe.ts │ │ └── weather-icon │ │ │ ├── weather-icon.pipe.spec.ts │ │ │ └── weather-icon.pipe.ts │ │ └── resources │ │ ├── endpoints.ts │ │ ├── pages.ts │ │ └── routes.ts ├── assets │ ├── .gitkeep │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── manifest.webmanifest ├── polyfills.ts ├── styles.scss ├── test.ts └── variable.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebase/hosting.ZGlzdC93ZWF0aGVyLWFuZC1wbGFjZXM.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/.firebase/hosting.ZGlzdC93ZWF0aGVyLWFuZC1wbGFjZXM.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/firebase.json -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/image.png -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/karma.conf.js -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/main-nav/main-nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/components/main-nav/main-nav.component.html -------------------------------------------------------------------------------- /src/app/components/main-nav/main-nav.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/components/main-nav/main-nav.component.scss -------------------------------------------------------------------------------- /src/app/components/main-nav/main-nav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/components/main-nav/main-nav.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/main-nav/main-nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/components/main-nav/main-nav.component.ts -------------------------------------------------------------------------------- /src/app/components/main-nav/main-nav.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/components/main-nav/main-nav.module.ts -------------------------------------------------------------------------------- /src/app/pages/weather/weather.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/pages/weather/weather.component.html -------------------------------------------------------------------------------- /src/app/pages/weather/weather.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/pages/weather/weather.component.scss -------------------------------------------------------------------------------- /src/app/pages/weather/weather.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/pages/weather/weather.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/weather/weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/pages/weather/weather.component.ts -------------------------------------------------------------------------------- /src/app/pages/weather/weather.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/pages/weather/weather.module.ts -------------------------------------------------------------------------------- /src/app/services/weather/weather.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/services/weather/weather.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/weather/weather.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/services/weather/weather.service.ts -------------------------------------------------------------------------------- /src/app/utilities/entities/base-model.ts: -------------------------------------------------------------------------------- 1 | export interface BaseModel { 2 | id: number 3 | } 4 | -------------------------------------------------------------------------------- /src/app/utilities/entities/weather-details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/entities/weather-details.ts -------------------------------------------------------------------------------- /src/app/utilities/entities/weather-forecast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/entities/weather-forecast.ts -------------------------------------------------------------------------------- /src/app/utilities/module/mdc.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/module/mdc.module.ts -------------------------------------------------------------------------------- /src/app/utilities/pipes/celsius/celsius.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/pipes/celsius/celsius.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/utilities/pipes/celsius/celsius.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/pipes/celsius/celsius.pipe.ts -------------------------------------------------------------------------------- /src/app/utilities/pipes/weather-icon/weather-icon.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/pipes/weather-icon/weather-icon.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/utilities/pipes/weather-icon/weather-icon.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/pipes/weather-icon/weather-icon.pipe.ts -------------------------------------------------------------------------------- /src/app/utilities/resources/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/resources/endpoints.ts -------------------------------------------------------------------------------- /src/app/utilities/resources/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/resources/pages.ts -------------------------------------------------------------------------------- /src/app/utilities/resources/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/app/utilities/resources/routes.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/src/variable.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryyyanribo/weather-app-pwa/HEAD/tslint.json --------------------------------------------------------------------------------