docs(service-worker): add example app for SwPush
API docs (#32139)
Previously, the `SwPush` API docs were using hard-coded code snippets. This commit switches to using code snippets from an actual example app, which ensures that the code shown in the docs will at least continue to compile successfully. PR Close #32139
This commit is contained in:
62
packages/examples/service-worker/push/BUILD.bazel
Normal file
62
packages/examples/service-worker/push/BUILD.bazel
Normal file
@ -0,0 +1,62 @@
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
load("//tools:defaults.bzl", "ng_module", "ts_library")
|
||||
load("@npm_bazel_protractor//:index.bzl", "protractor_web_test_suite")
|
||||
load("@npm_bazel_typescript//:index.bzl", "ts_devserver")
|
||||
|
||||
ng_module(
|
||||
name = "sw_push_examples",
|
||||
srcs = glob(
|
||||
["**/*.ts"],
|
||||
exclude = ["**/*_spec.ts"],
|
||||
),
|
||||
# TODO: FW-1004 Type checking is currently not complete.
|
||||
type_check = False,
|
||||
deps = [
|
||||
"//packages/core",
|
||||
"//packages/platform-browser",
|
||||
"//packages/platform-browser-dynamic",
|
||||
"//packages/service-worker",
|
||||
],
|
||||
)
|
||||
|
||||
ts_library(
|
||||
name = "sw_push_e2e_tests_lib",
|
||||
testonly = True,
|
||||
srcs = glob(["**/e2e_test/*_spec.ts"]),
|
||||
tsconfig = "//packages/examples:tsconfig-e2e.json",
|
||||
deps = [
|
||||
"//packages/examples/test-utils",
|
||||
"//packages/private/testing",
|
||||
"@npm//@types/jasminewd2",
|
||||
"@npm//protractor",
|
||||
],
|
||||
)
|
||||
|
||||
ts_devserver(
|
||||
name = "devserver",
|
||||
entry_module = "@angular/examples/service-worker/push/main",
|
||||
index_html = "//packages/examples:index.html",
|
||||
port = 4200,
|
||||
scripts = [
|
||||
"//tools/rxjs:rxjs_umd_modules",
|
||||
"@npm//:node_modules/tslib/tslib.js",
|
||||
],
|
||||
static_files = [
|
||||
"ngsw-worker.js",
|
||||
"@npm//:node_modules/zone.js/dist/zone.js",
|
||||
],
|
||||
deps = [":sw_push_examples"],
|
||||
)
|
||||
|
||||
protractor_web_test_suite(
|
||||
name = "protractor_tests",
|
||||
data = ["//packages/bazel/src/protractor/utils"],
|
||||
on_prepare = "start-server.js",
|
||||
server = ":devserver",
|
||||
deps = [
|
||||
":sw_push_e2e_tests_lib",
|
||||
"@npm//protractor",
|
||||
"@npm//selenium-webdriver",
|
||||
],
|
||||
)
|
22
packages/examples/service-worker/push/e2e_test/push_spec.ts
Normal file
22
packages/examples/service-worker/push/e2e_test/push_spec.ts
Normal file
@ -0,0 +1,22 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {browser, by, element} from 'protractor';
|
||||
import {verifyNoBrowserErrors} from '../../../test-utils';
|
||||
|
||||
describe('SW `SwPush` example', () => {
|
||||
const pageUrl = '/push';
|
||||
const appElem = element(by.css('example-app'));
|
||||
|
||||
afterEach(verifyNoBrowserErrors);
|
||||
|
||||
it('should be enabled', () => {
|
||||
browser.get(pageUrl);
|
||||
expect(appElem.getText()).toBe('SW enabled: true');
|
||||
});
|
||||
});
|
12
packages/examples/service-worker/push/main.ts
Normal file
12
packages/examples/service-worker/push/main.ts
Normal file
@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
|
||||
import {AppModuleNgFactory} from './module.ngfactory';
|
||||
|
||||
platformBrowserDynamic().bootstrapModuleFactory(AppModuleNgFactory);
|
66
packages/examples/service-worker/push/module.ts
Normal file
66
packages/examples/service-worker/push/module.ts
Normal file
@ -0,0 +1,66 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
// tslint:disable: no-duplicate-imports
|
||||
import {Component, NgModule} from '@angular/core';
|
||||
import {BrowserModule} from '@angular/platform-browser';
|
||||
import {ServiceWorkerModule} from '@angular/service-worker';
|
||||
// #docregion inject-sw-push
|
||||
import {SwPush} from '@angular/service-worker';
|
||||
// #enddocregion inject-sw-push
|
||||
// tslint:enable: no-duplicate-imports
|
||||
|
||||
const PUBLIC_VAPID_KEY_OF_SERVER = '...';
|
||||
|
||||
@Component({
|
||||
selector: 'example-app',
|
||||
template: 'SW enabled: {{ swPush.isEnabled }}',
|
||||
})
|
||||
// #docregion inject-sw-push
|
||||
export class AppComponent {
|
||||
constructor(readonly swPush: SwPush) {}
|
||||
// #enddocregion inject-sw-push
|
||||
|
||||
// #docregion subscribe-to-push
|
||||
private async subscribeToPush() {
|
||||
try {
|
||||
const sub = await this.swPush.requestSubscription({
|
||||
serverPublicKey: PUBLIC_VAPID_KEY_OF_SERVER,
|
||||
});
|
||||
// TODO: Send to server.
|
||||
} catch (err) {
|
||||
console.error('Could not subscribe due to:', err);
|
||||
}
|
||||
}
|
||||
// #enddocregion subscribe-to-push
|
||||
|
||||
private subscribeToNotificationClicks() {
|
||||
// #docregion subscribe-to-notification-clicks
|
||||
this.swPush.notificationClicks.subscribe(
|
||||
({action, notification}) => {
|
||||
// TODO: Do something in response to notification click.
|
||||
});
|
||||
// #enddocregion subscribe-to-notification-clicks
|
||||
}
|
||||
// #docregion inject-sw-push
|
||||
}
|
||||
// #enddocregion inject-sw-push
|
||||
|
||||
@NgModule({
|
||||
bootstrap: [
|
||||
AppComponent,
|
||||
],
|
||||
declarations: [
|
||||
AppComponent,
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
ServiceWorkerModule.register('ngsw-worker.js'),
|
||||
],
|
||||
})
|
||||
export class AppModule {
|
||||
}
|
14
packages/examples/service-worker/push/ngsw-worker.js
Normal file
14
packages/examples/service-worker/push/ngsw-worker.js
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
// Mock `ngsw-worker.js` used for testing the examples.
|
||||
// Immediately takes over and unregisters itself.
|
||||
self.addEventListener('install', evt => evt.waitUntil(self.skipWaiting()));
|
||||
self.addEventListener(
|
||||
'activate',
|
||||
evt => evt.waitUntil(self.clients.claim().then(() => self.registration.unregister())));
|
17
packages/examples/service-worker/push/start-server.js
Normal file
17
packages/examples/service-worker/push/start-server.js
Normal file
@ -0,0 +1,17 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright Google Inc. All Rights Reserved.
|
||||
*
|
||||
* Use of this source code is governed by an MIT-style license that can be
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
const protractorUtils = require('@bazel/protractor/protractor-utils');
|
||||
const protractor = require('protractor');
|
||||
|
||||
module.exports = async function(config) {
|
||||
const {port} = await protractorUtils.runServer(config.workspace, config.server, '-port', []);
|
||||
const serverUrl = `http://localhost:${port}`;
|
||||
|
||||
protractor.browser.baseUrl = serverUrl;
|
||||
};
|
Reference in New Issue
Block a user