├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── azure-pipelines.yml ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── package.json ├── serve.json ├── src ├── app │ ├── api.service.ts │ ├── app-routing.module.ts │ ├── app-shell-update │ │ ├── app-shell-update.component.css │ │ ├── app-shell-update.component.html │ │ └── app-shell-update.component.ts │ ├── app.module.ts │ ├── cached-route │ │ ├── cached-route.component.css │ │ ├── cached-route.component.html │ │ └── cached-route.component.ts │ ├── config.service.ts │ ├── dashboard │ │ ├── dashboard.component.css │ │ ├── dashboard.component.html │ │ └── dashboard.component.ts │ ├── material.module.ts │ ├── navigation │ │ ├── navigation.component.css │ │ ├── navigation.component.html │ │ └── navigation.component.ts │ ├── non-cached-route │ │ ├── non-cached-route.component.css │ │ ├── non-cached-route.component.html │ │ └── non-cached-route.component.ts │ ├── push-subscription.service.ts │ ├── push-subscription │ │ ├── push-subscription.component.css │ │ ├── push-subscription.component.html │ │ └── push-subscription.component.ts │ ├── tweet-feeds │ │ ├── tweet-feeds.component.css │ │ ├── tweet-feeds.component.html │ │ └── tweet-feeds.component.ts │ ├── tweet-list │ │ ├── tweet-list.component.css │ │ ├── tweet-list.component.html │ │ └── tweet-list.component.ts │ ├── tweet-user.ts │ ├── tweet.service.ts │ ├── tweet.ts │ └── window-ref.ts ├── assets │ └── .gitkeep ├── browserslist ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/angular.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/package.json -------------------------------------------------------------------------------- /serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/serve.json -------------------------------------------------------------------------------- /src/app/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/api.service.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app-shell-update/app-shell-update.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app-shell-update/app-shell-update.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/app-shell-update/app-shell-update.component.html -------------------------------------------------------------------------------- /src/app/app-shell-update/app-shell-update.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/app-shell-update/app-shell-update.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/cached-route/cached-route.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/cached-route/cached-route.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/cached-route/cached-route.component.html -------------------------------------------------------------------------------- /src/app/cached-route/cached-route.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/cached-route/cached-route.component.ts -------------------------------------------------------------------------------- /src/app/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/config.service.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/material.module.ts -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/navigation/navigation.component.css -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/navigation/navigation.component.html -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/navigation/navigation.component.ts -------------------------------------------------------------------------------- /src/app/non-cached-route/non-cached-route.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/non-cached-route/non-cached-route.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/non-cached-route/non-cached-route.component.html -------------------------------------------------------------------------------- /src/app/non-cached-route/non-cached-route.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/non-cached-route/non-cached-route.component.ts -------------------------------------------------------------------------------- /src/app/push-subscription.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/push-subscription.service.ts -------------------------------------------------------------------------------- /src/app/push-subscription/push-subscription.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/push-subscription/push-subscription.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/push-subscription/push-subscription.component.html -------------------------------------------------------------------------------- /src/app/push-subscription/push-subscription.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/push-subscription/push-subscription.component.ts -------------------------------------------------------------------------------- /src/app/tweet-feeds/tweet-feeds.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/tweet-feeds/tweet-feeds.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet-feeds/tweet-feeds.component.html -------------------------------------------------------------------------------- /src/app/tweet-feeds/tweet-feeds.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet-feeds/tweet-feeds.component.ts -------------------------------------------------------------------------------- /src/app/tweet-list/tweet-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/tweet-list/tweet-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet-list/tweet-list.component.html -------------------------------------------------------------------------------- /src/app/tweet-list/tweet-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet-list/tweet-list.component.ts -------------------------------------------------------------------------------- /src/app/tweet-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet-user.ts -------------------------------------------------------------------------------- /src/app/tweet.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet.service.ts -------------------------------------------------------------------------------- /src/app/tweet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/tweet.ts -------------------------------------------------------------------------------- /src/app/window-ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/app/window-ref.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/browserslist -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webmaxru/angular-pwa/HEAD/tslint.json --------------------------------------------------------------------------------