Prevent notifications in client apps from being automatically dismissed
This commit is contained in:
parent
fe495345f8
commit
85b6943853
|
@ -19,6 +19,8 @@
|
||||||
type={$notificationStore.type}
|
type={$notificationStore.type}
|
||||||
message={$notificationStore.message}
|
message={$notificationStore.message}
|
||||||
icon={$notificationStore.icon}
|
icon={$notificationStore.icon}
|
||||||
|
dismissable={$notificationStore.dismissable}
|
||||||
|
on:dismiss={notificationStore.actions.dismiss}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{/key}
|
{/key}
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
const proxyNotification = event => {
|
const proxyNotification = event => {
|
||||||
const { message, type, icon } = event.detail
|
const { message, type, icon, autoDismiss } = event.detail
|
||||||
notificationStore.actions.send(message, type, icon)
|
notificationStore.actions.send(message, type, icon, autoDismiss)
|
||||||
}
|
}
|
||||||
|
|
||||||
const proxyStateUpdate = event => {
|
const proxyStateUpdate = event => {
|
||||||
|
|
|
@ -19,7 +19,7 @@ const createNotificationStore = () => {
|
||||||
setTimeout(() => (block = false), timeout)
|
setTimeout(() => (block = false), timeout)
|
||||||
}
|
}
|
||||||
|
|
||||||
const send = (message, type = "info", icon) => {
|
const send = (message, type = "info", icon, autoDismiss = true) => {
|
||||||
if (block) {
|
if (block) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,7 @@ const createNotificationStore = () => {
|
||||||
message,
|
message,
|
||||||
type,
|
type,
|
||||||
icon,
|
icon,
|
||||||
|
autoDismiss,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
|
@ -42,13 +43,21 @@ const createNotificationStore = () => {
|
||||||
type,
|
type,
|
||||||
message,
|
message,
|
||||||
icon,
|
icon,
|
||||||
|
dismissable: !autoDismiss,
|
||||||
delay: get(store) != null,
|
delay: get(store) != null,
|
||||||
})
|
})
|
||||||
clearTimeout(timeout)
|
clearTimeout(timeout)
|
||||||
|
if (autoDismiss) {
|
||||||
timeout = setTimeout(() => {
|
timeout = setTimeout(() => {
|
||||||
store.set(null)
|
store.set(null)
|
||||||
}, NOTIFICATION_TIMEOUT)
|
}, NOTIFICATION_TIMEOUT)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const dismiss = () => {
|
||||||
|
clearTimeout(timeout)
|
||||||
|
store.set(null)
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
subscribe: store.subscribe,
|
subscribe: store.subscribe,
|
||||||
|
@ -57,8 +66,9 @@ const createNotificationStore = () => {
|
||||||
info: msg => send(msg, "info", "Info"),
|
info: msg => send(msg, "info", "Info"),
|
||||||
success: msg => send(msg, "success", "CheckmarkCircle"),
|
success: msg => send(msg, "success", "CheckmarkCircle"),
|
||||||
warning: msg => send(msg, "warning", "Alert"),
|
warning: msg => send(msg, "warning", "Alert"),
|
||||||
error: msg => send(msg, "error", "Alert"),
|
error: msg => send(msg, "error", "Alert", false),
|
||||||
blockNotifications,
|
blockNotifications,
|
||||||
|
dismiss,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue