From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../serviceworkerglobalscope/push_event/index.html | 93 ++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 files/ja/web/api/serviceworkerglobalscope/push_event/index.html (limited to 'files/ja/web/api/serviceworkerglobalscope/push_event/index.html') diff --git a/files/ja/web/api/serviceworkerglobalscope/push_event/index.html b/files/ja/web/api/serviceworkerglobalscope/push_event/index.html new file mode 100644 index 0000000000..0201cc4d36 --- /dev/null +++ b/files/ja/web/api/serviceworkerglobalscope/push_event/index.html @@ -0,0 +1,93 @@ +--- +title: 'ServiceWorkerGlobalScope: push イベント' +slug: Web/API/ServiceWorkerGlobalScope/push_event +tags: + - API + - Event + - Notifications + - Push + - Push API + - PushEvent + - Reference + - Service Workers + - ServiceWorker + - ServiceWorkerGlobalScope + - events + - messaging + - イベント +translation_of: Web/API/ServiceWorkerGlobalScope/push_event +--- +
{{APIRef("Push API")}}
+ +

push イベントは、サービスワーカーがプッシュメッセージを受信したときにサービスワーカーのグローバルスコープ ({{domxref("ServiceWorkerGlobalScope")}} インターフェイスで表現されるもの) に送られます。

+ + + + + + + + + + + + + + + + + + + + +
バブリングなし
キャンセル不可
インターフェイス{{domxref("PushEvent")}}
イベントハンドラープロパティ{{domxref("ServiceWorkerGlobalScope.onpush", "onpush")}}
+ +

+ +

この例は push イベントのハンドラーを設定して、 {{Glossary("JSON")}} データを取り、解析し、メッセージ内に含まれる情報に基づいて扱うためにメッセージを仕分けします。

+ +
self.addEventListener("push", event => {
+  let message = event.data.json();
+
+  switch(message.type) {
+    case "init":
+      doInit();
+      break;
+    case "shutdown":
+      doShutdown();
+      break;
+  }
+}, false);
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('Push API', '#extensions-to-the-serviceworkerglobalscope-interface', 'push')}}{{Spec2('Push API')}}初回定義
+ +

ブラウザーの互換性

+ + + +

{{Compat("api.ServiceWorkerGlobalScope.push_event")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf