1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-13 16:45:14 +01:00

more user-friendly service worker update message

This commit is contained in:
Matthias Kretschmann 2020-05-23 13:38:02 +02:00
parent a6f9e38e9e
commit 4df5f10485
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 41 additions and 7 deletions

View File

@ -11,11 +11,9 @@ export const wrapPageElement = wrapPageElementWithLayout
// Display a message when a service worker updates
// https://www.gatsbyjs.org/docs/add-offline-support-with-a-service-worker/#displaying-a-message-when-a-service-worker-updates
export const onServiceWorkerUpdateReady = () => {
const answer = window.confirm(
`This application has been updated. ` +
`Reload to display the latest version?`
)
if (answer === true) {
window.location.reload()
}
const div = document.createElement('div')
div.id = 'toast'
div.classList.add('alert', 'alert-info')
div.innerHTML = `<button onClick="window.location.reload()">This application has been updated. <span>Click to Reload</span>.</button>`
document.body.append(div)
}

34
src/styles/_toast.scss Normal file
View File

@ -0,0 +1,34 @@
@import 'variables';
#toast {
position: sticky;
z-index: 10;
bottom: $spacer / 2;
right: $spacer / 2;
left: $spacer / 2;
width: fit-content;
margin: 0 auto;
font-size: $font-size-small;
padding: $spacer / 3 $spacer;
animation: animation 0.2s ease-out backwards;
button {
font-family: inherit;
font-weight: inherit;
font-size: inherit;
color: inherit;
span {
color: $link-color;
}
}
}
@keyframes animation {
0% {
transform: translateY(3rem);
}
100% {
transform: translateY(0);
}
}

View File

@ -31,6 +31,7 @@ body {
min-height: 100vh;
transition: background 0.4s $easing;
background: $body-background-color;
position: relative;
// handling long text, like URLs
overflow-wrap: break-word;
@ -409,6 +410,7 @@ table {
@import 'code';
@import 'buttons';
@import 'alerts';
@import 'toast';
.dark .medium-zoom-overlay {
background-color: $body-background-color--dark !important;