-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathToastItem.svelte
188 lines (172 loc) · 4.58 KB
/
ToastItem.svelte
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
<script>
import { onMount, onDestroy } from 'svelte'
import { tweened } from 'svelte/motion'
import { linear } from 'svelte/easing'
import { toast } from './stores.js'
/** @type {import('./stores.js').SvelteToastOptions} */
export let item
/** @type {any} */
let next = item.initial
let prev = next
let paused = false
let cprops = {}
/** @type {any} */
let unlisten
/** @type {MouseEvent | KeyboardEvent} */
let event
const progress = tweened(item.initial, { duration: item.duration, easing: linear })
/** @param {MouseEvent|KeyboardEvent|undefined} [ev] */
function close(ev) {
if (ev) event = ev
toast.pop(item.id)
}
function autoclose() {
if ($progress === 1 || $progress === 0) close()
}
function pause() {
if (!paused && $progress !== next) {
progress.set($progress, { duration: 0 })
paused = true
}
}
function resume() {
if (paused) {
const d = /** @type {any} */ (item.duration)
const duration = d - d * (($progress - prev) / (next - prev))
progress.set(next, { duration }).then(autoclose)
paused = false
}
}
/** @param {any} prop */
function check(prop, kind = 'undefined') {
return typeof prop === kind
}
function listen(d = document) {
if (check(d.hidden)) return
const handler = () => (d.hidden ? pause() : resume())
const name = 'visibilitychange'
d.addEventListener(name, handler)
unlisten = () => d.removeEventListener(name, handler)
handler()
}
$: if (next !== item.next) {
next = item.next
prev = $progress
paused = false
progress.set(next).then(autoclose)
}
$: if (item.component) {
const { props = {}, sendIdTo } = item.component
cprops = { ...props, ...(sendIdTo && { [sendIdTo]: item.id }) }
}
// `progress` has been renamed to `next`; shim included for backward compatibility, to remove in next major
$: if (!check(item.progress)) {
item.next = item.progress
}
onMount(listen)
onDestroy(() => {
item.onpop && item.onpop(item.id, { event })
unlisten && unlisten()
})
</script>
<div
role="status"
class="_toastItem"
class:pe={item.pausable}
on:mouseenter={() => {
if (item.pausable) pause()
}}
on:mouseleave={resume}
>
<div class="_toastMsg" class:pe={item.component}>
{#if item.component}
<svelte:component this={item.component.src} {...cprops} />
{:else}
{@html item.msg}
{/if}
</div>
{#if item.dismissable}
<div
class="_toastBtn pe"
role="button"
tabindex="0"
on:click={(ev) => close(ev)}
on:keydown={(ev) => {
if (ev instanceof KeyboardEvent && ['Enter', ' '].includes(ev.key)) close(ev)
}}
/>
{/if}
<progress class="_toastBar" value={$progress} />
</div>
<style>
._toastItem {
width: var(--toastWidth, 16rem);
height: var(--toastHeight, auto);
min-height: var(--toastMinHeight, 3.5rem);
margin: var(--toastMargin, 0 0 0.5rem 0);
padding: var(--toastPadding, 0);
background: var(--toastBackground, rgba(66, 66, 66, 0.9));
color: var(--toastColor, #fff);
box-shadow: var(
--toastBoxShadow,
0 4px 6px -1px rgba(0, 0, 0, 0.1),
0 2px 4px -1px rgba(0, 0, 0, 0.06)
);
border: var(--toastBorder, none);
border-radius: var(--toastBorderRadius, 0.125rem);
position: relative;
display: flex;
flex-direction: row;
align-items: center;
overflow: hidden;
will-change: transform, opacity;
-webkit-tap-highlight-color: transparent;
}
._toastMsg {
padding: var(--toastMsgPadding, 0.75rem 0.5rem);
flex: 1 1 0%;
}
.pe,
._toastMsg :global(a) {
pointer-events: auto;
}
._toastBtn {
width: var(--toastBtnWidth, 2rem);
height: var(--toastBtnHeight, 100%);
cursor: pointer;
outline: none;
}
._toastBtn::after {
content: var(--toastBtnContent, '✕');
font: var(--toastBtnFont, 1rem sans-serif);
display: flex;
align-items: center;
justify-content: center;
}
._toastBar {
top: var(--toastBarTop, auto);
right: var(--toastBarRight, auto);
bottom: var(--toastBarBottom, 0);
left: var(--toastBarLeft, 0);
height: var(--toastBarHeight, 6px);
width: var(--toastBarWidth, 100%);
position: absolute;
display: block;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: none;
background: transparent;
pointer-events: none;
}
._toastBar::-webkit-progress-bar {
background: transparent;
}
/* `--toastProgressBackground` renamed to `--toastBarBackground`; override included for backward compatibility */
._toastBar::-webkit-progress-value {
background: var(--toastProgressBackground, var(--toastBarBackground, rgba(33, 150, 243, 0.75)));
}
._toastBar::-moz-progress-bar {
background: var(--toastProgressBackground, var(--toastBarBackground, rgba(33, 150, 243, 0.75)));
}
</style>