diff --git a/README.md b/README.md index 5973915..84d43af 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ const options = { icon: "https://andreinwald.github.io/webpush-ios-example/images/favicon.png", image: "https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Orange_tabby_cat_sitting_on_fallen_leaves-Hisashi-01A.jpg/1920px-Orange_tabby_cat_sitting_on_fallen_leaves-Hisashi-01A.jpg", data: { - "url": "https://andreinwald.github.io/webpush-ios-example/success.html", + "url": "https://andreinwald.github.io/webpush-ios-example/?page=success", "message_id": "your_internal_unique_message_id_for_tracking" }, }; diff --git a/backend-sender.js b/backend-sender.js index 470ea23..78d283c 100644 --- a/backend-sender.js +++ b/backend-sender.js @@ -32,7 +32,7 @@ let pushData = JSON.stringify({ "icon": "https://andreinwald.github.io/webpush-ios-example/images/favicon.png", "image": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Orange_tabby_cat_sitting_on_fallen_leaves-Hisashi-01A.jpg/1920px-Orange_tabby_cat_sitting_on_fallen_leaves-Hisashi-01A.jpg", "data": { - "url": "https://andreinwald.github.io/webpush-ios-example/success.html", + "url": "https://andreinwald.github.io/webpush-ios-example/?page=success", "message_id": "your_internal_unique_message_id_for_tracking" } }); diff --git a/frontend.js b/frontend.js index a7ac7c7..9930346 100644 --- a/frontend.js +++ b/frontend.js @@ -1,7 +1,3 @@ -if (navigator.serviceWorker) { - initServiceWorker(); -} - async function initServiceWorker() { let swRegistration = await navigator.serviceWorker.register('https://andreinwald.github.io/webpush-ios-example/serviceworker.js', {scope: '/webpush-ios-example/'}) let pushManager = swRegistration.pushManager; @@ -78,7 +74,7 @@ function testSend() { icon: "https://andreinwald.github.io/webpush-ios-example/images/push_icon.jpg", image: "https://upload.wikimedia.org/wikipedia/commons/thumb/6/68/Orange_tabby_cat_sitting_on_fallen_leaves-Hisashi-01A.jpg/1920px-Orange_tabby_cat_sitting_on_fallen_leaves-Hisashi-01A.jpg", data: { - "url": "https://andreinwald.github.io/webpush-ios-example/success.html", + "url": "https://andreinwald.github.io/webpush-ios-example/?page=success", "message_id": "your_internal_unique_message_id_for_tracking" }, }; @@ -86,3 +82,11 @@ function testSend() { await serviceWorker.showNotification(title, options); }); } + +if ((new URLSearchParams(window.location.search)).get('page') === 'success') { + document.getElementById('content').innerHTML = 'You successfully opened page from WebPush! (this url was that was set in json data param)'; +} + +if (navigator.serviceWorker) { + initServiceWorker(); +} diff --git a/index.html b/index.html index 6426098..7e5d9a8 100644 --- a/index.html +++ b/index.html @@ -6,27 +6,40 @@ - +

WebPush iOS example

-
- For WebPush work you may need to add this website to Home Screen at your iPhone or iPad (window.navigator is not - standalone). - webpush add to some screen -
+
+
+ For WebPush work you may need to add this website to Home Screen at your iPhone or iPad (window.navigator is + not + standalone). + webpush add to some screen +
-
Open this page at your iPhone/iPad: - qrCode

-
+
Open this page at your iPhone/iPad: + qrCode

+
- + -
- +
+ +
Code of this page
diff --git a/styles.css b/styles.css deleted file mode 100644 index f20e94a..0000000 --- a/styles.css +++ /dev/null @@ -1,60 +0,0 @@ -body { - background-color: #cfc7e2; - font-family: Arial, sans-serif; - font-size: 18px; - padding-bottom: 50px; -} - -.wrapper { - max-width: 800px; - margin: 0 auto; -} - -@supports (-webkit-touch-callout: none) { - #scan-qr-code { - display: none; - } -} - -#add-to-home-screen { - display: none; - background-color: bisque; - padding: 10px; -} - -#add-to-home-screen img { - display: block; - margin: 0 auto; - padding-top: 10px; - max-height: 500px; - max-width: 100% -} - -#scan-qr-code img { - display: block; - max-width: 100% -} - -#subscribe_btn, #test_send_btn { - display: none; - width: 100%; - line-height: 2; - font-size: 20px; - margin-top: 10px; -} - -#active_sub { - display: none; - background-color: #e7e7ff; - padding: 20px; - word-wrap: break-word; -} - -#source_link { - position: fixed; - bottom: 10px; - color: #fff; - background-color: rgba(0,0,0,0.5); - padding: 5px; - left: 10px; -} diff --git a/success.html b/success.html deleted file mode 100644 index d58577d..0000000 --- a/success.html +++ /dev/null @@ -1,19 +0,0 @@ - - - WebPush iOS example - - - - - - -
-

WebPush iOS example

- - You successfully opened page from WebPush! (this url was that was set in json data param) -
- -Code of this page - - -