File size: 7,068 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
import { usePortal } from '../../internal/actions/index.js';
import { addMeltEventListener, makeElement, createElHelpers, executeCallbacks, generateId, isTouch, kbd, noop, toWritableStores, } from '../../internal/helpers/index.js';
import { derived, readonly, writable } from 'svelte/store';
const { name } = createElHelpers('toast');
const defaults = {
closeDelay: 5000,
type: 'foreground',
};
export function createToaster(props) {
const withDefaults = { ...defaults, ...props };
const options = toWritableStores(withDefaults);
const { closeDelay, type } = options;
const toastsMap = writable(new Map());
const addToast = (props) => {
const propsWithDefaults = {
closeDelay: closeDelay.get(),
type: type.get(),
...props,
};
const ids = {
content: generateId(),
title: generateId(),
description: generateId(),
};
const timeout = propsWithDefaults.closeDelay === 0
? null
: window.setTimeout(() => {
removeToast(ids.content);
}, propsWithDefaults.closeDelay);
const getPercentage = () => {
const { createdAt, pauseDuration, closeDelay, pausedAt } = toast;
if (closeDelay === 0)
return 0;
if (pausedAt) {
return (100 * (pausedAt - createdAt - pauseDuration)) / closeDelay;
}
else {
const now = performance.now();
return (100 * (now - createdAt - pauseDuration)) / closeDelay;
}
};
const toast = {
id: ids.content,
ids,
...propsWithDefaults,
timeout,
createdAt: performance.now(),
pauseDuration: 0,
getPercentage,
};
toastsMap.update((currentMap) => {
currentMap.set(ids.content, toast);
return new Map(currentMap);
});
return toast;
};
const removeToast = (id) => {
toastsMap.update((currentMap) => {
currentMap.delete(id);
return new Map(currentMap);
});
};
const updateToast = (id, data) => {
toastsMap.update((currentMap) => {
const toast = currentMap.get(id);
if (!toast)
return currentMap;
currentMap.set(id, { ...toast, data });
return new Map(currentMap);
});
};
const content = makeElement(name('content'), {
stores: toastsMap,
returned: ($toasts) => {
return (id) => {
const t = $toasts.get(id);
if (!t)
return null;
const { ...toast } = t;
return {
id,
role: 'alert',
'aria-describedby': toast.ids.description,
'aria-labelledby': toast.ids.title,
'aria-live': toast.type === 'foreground' ? 'assertive' : 'polite',
tabindex: -1,
};
};
},
action: (node) => {
let destroy = noop;
destroy = executeCallbacks(addMeltEventListener(node, 'pointerenter', (e) => {
if (isTouch(e))
return;
toastsMap.update((currentMap) => {
const currentToast = currentMap.get(node.id);
if (!currentToast || currentToast.closeDelay === 0)
return currentMap;
if (currentToast.timeout !== null) {
window.clearTimeout(currentToast.timeout);
}
currentToast.pausedAt = performance.now();
return new Map(currentMap);
});
}), addMeltEventListener(node, 'pointerleave', (e) => {
if (isTouch(e))
return;
toastsMap.update((currentMap) => {
const currentToast = currentMap.get(node.id);
if (!currentToast || currentToast.closeDelay === 0)
return currentMap;
const pausedAt = currentToast.pausedAt ?? currentToast.createdAt;
const elapsed = pausedAt - currentToast.createdAt - currentToast.pauseDuration;
const remaining = currentToast.closeDelay - elapsed;
currentToast.timeout = window.setTimeout(() => {
removeToast(node.id);
}, remaining);
currentToast.pauseDuration += performance.now() - pausedAt;
currentToast.pausedAt = undefined;
return new Map(currentMap);
});
}), () => {
removeToast(node.id);
});
return {
destroy,
};
},
});
const title = makeElement(name('title'), {
stores: toastsMap,
returned: ($toasts) => {
return (id) => {
const toast = $toasts.get(id);
if (!toast)
return null;
return {
id: toast.ids.title,
};
};
},
});
const description = makeElement(name('description'), {
stores: toastsMap,
returned: ($toasts) => {
return (id) => {
const toast = $toasts.get(id);
if (!toast)
return null;
return {
id: toast.ids.description,
};
};
},
});
const close = makeElement(name('close'), {
returned: () => {
return (id) => ({
type: 'button',
'data-id': id,
});
},
action: (node) => {
function handleClose() {
if (!node.dataset.id)
return;
removeToast(node.dataset.id);
}
const unsub = executeCallbacks(addMeltEventListener(node, 'click', () => {
handleClose();
}), addMeltEventListener(node, 'keydown', (e) => {
if (e.key !== kbd.ENTER && e.key !== kbd.SPACE)
return;
e.preventDefault();
handleClose();
}));
return {
destroy: unsub,
};
},
});
const toasts = derived(toastsMap, ($toastsMap) => {
return Array.from($toastsMap.values());
});
return {
elements: {
content,
title,
description,
close,
},
states: {
toasts: readonly(toasts),
},
helpers: {
addToast,
removeToast,
updateToast,
},
actions: {
portal: usePortal,
},
options,
};
}
|