Commit e9e8775e authored by ι™ˆεΈ…'s avatar ι™ˆεΈ…

use notification repalce modal for sw updated

parent ac86837d
import { Modal, message } from 'antd'; import React from 'react';
import { notification, Button, message } from 'antd';
import { formatMessage } from 'umi/locale'; import { formatMessage } from 'umi/locale';
// Notify user if offline now // Notify user if offline now
...@@ -8,11 +9,18 @@ window.addEventListener('sw.offline', () => { ...@@ -8,11 +9,18 @@ window.addEventListener('sw.offline', () => {
// Pop up a prompt on the page asking the user if they want to use the latest version // Pop up a prompt on the page asking the user if they want to use the latest version
window.addEventListener('sw.updated', e => { window.addEventListener('sw.updated', e => {
Modal.confirm({ const key = `open${Date.now()}`;
title: formatMessage({ id: 'app.pwa.serviceworker.updated' }), const btn = (
content: formatMessage({ id: 'app.pwa.serviceworker.updated.hint' }), <Button type="primary" onClick={() => notification.close(key)}>
okText: formatMessage({ id: 'app.pwa.serviceworker.updated.ok' }), {formatMessage({ id: 'app.pwa.serviceworker.updated.ok' })}
onOk: async () => { </Button>
);
notification.open({
message: formatMessage({ id: 'app.pwa.serviceworker.updated' }),
description: formatMessage({ id: 'app.pwa.serviceworker.updated.hint' }),
btn,
key,
onClose: async () => {
// Check if there is sw whose state is waiting in ServiceWorkerRegistration // Check if there is sw whose state is waiting in ServiceWorkerRegistration
// https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration // https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration
const worker = e.detail && e.detail.waiting; const worker = e.detail && e.detail.waiting;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment