@makolabs/ripple 0.0.1-dev.42 → 0.0.1-dev.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/elements/dropdown/Dropdown.svelte +74 -107
- package/dist/elements/dropdown/Select.svelte +66 -60
- package/dist/elements/dropdown/dropdown.js +1 -1
- package/dist/elements/dropdown/select.js +2 -2
- package/dist/utils/Portal.svelte +98 -0
- package/dist/utils/Portal.svelte.d.ts +8 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { dropdownMenu } from '../../index.js';
|
|
6
6
|
import { onMount, onDestroy } from 'svelte';
|
|
7
7
|
import { Size } from '../../variants.js';
|
|
8
|
+
import Portal from '../../utils/Portal.svelte';
|
|
8
9
|
|
|
9
10
|
let {
|
|
10
11
|
sections = [],
|
|
@@ -26,7 +27,6 @@
|
|
|
26
27
|
|
|
27
28
|
let dropdownRef = $state<HTMLDivElement | undefined>();
|
|
28
29
|
let triggerRef = $state<HTMLDivElement | undefined>();
|
|
29
|
-
let portalEl = $state<HTMLDivElement | undefined>();
|
|
30
30
|
let triggerRect = $state<DOMRect | null>(null);
|
|
31
31
|
|
|
32
32
|
const {
|
|
@@ -90,10 +90,10 @@
|
|
|
90
90
|
posStyles += `left: ${right - triggerWidth}px;`;
|
|
91
91
|
}
|
|
92
92
|
} else {
|
|
93
|
-
const centeredLeft = left +
|
|
94
|
-
if (centeredLeft +
|
|
93
|
+
const centeredLeft = left + triggerWidth / 2;
|
|
94
|
+
if (centeredLeft + dropdownWidthPx / 2 > viewportWidth - 20) {
|
|
95
95
|
posStyles += `right: 20px; left: auto;`;
|
|
96
|
-
} else if (centeredLeft -
|
|
96
|
+
} else if (centeredLeft - dropdownWidthPx / 2 < 20) {
|
|
97
97
|
posStyles += `left: 20px; right: auto;`;
|
|
98
98
|
} else {
|
|
99
99
|
posStyles += `left: ${centeredLeft}px; transform: translateX(-50%);`;
|
|
@@ -111,18 +111,16 @@
|
|
|
111
111
|
function handleToggle() {
|
|
112
112
|
if (disabled) return;
|
|
113
113
|
isOpen = !isOpen;
|
|
114
|
-
|
|
115
|
-
if (isOpen) {
|
|
116
|
-
setTimeout(updatePosition, 0); // Use setTimeout to ensure DOM is updated
|
|
117
|
-
}
|
|
118
114
|
}
|
|
119
115
|
|
|
120
116
|
function handleClickOutside(event: MouseEvent) {
|
|
121
|
-
if (
|
|
117
|
+
if (
|
|
118
|
+
isOpen &&
|
|
122
119
|
dropdownRef &&
|
|
123
120
|
!dropdownRef.contains(event.target as Node) &&
|
|
124
121
|
triggerRef &&
|
|
125
|
-
!triggerRef.contains(event.target as Node)
|
|
122
|
+
!triggerRef.contains(event.target as Node)
|
|
123
|
+
) {
|
|
126
124
|
isOpen = false;
|
|
127
125
|
}
|
|
128
126
|
}
|
|
@@ -131,49 +129,6 @@
|
|
|
131
129
|
if (item.onclick) item.onclick();
|
|
132
130
|
isOpen = false;
|
|
133
131
|
}
|
|
134
|
-
|
|
135
|
-
function updatePosition() {
|
|
136
|
-
if (triggerRef) {
|
|
137
|
-
triggerRect = triggerRef.getBoundingClientRect();
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
function renderPortalDropdown() {
|
|
142
|
-
if (!portalEl || !document.body.contains(portalEl)) {
|
|
143
|
-
portalEl = document.createElement('div');
|
|
144
|
-
portalEl.id = 'dropdown-portal';
|
|
145
|
-
portalEl.style.position = 'fixed';
|
|
146
|
-
portalEl.style.top = '0';
|
|
147
|
-
portalEl.style.left = '0';
|
|
148
|
-
portalEl.style.width = '100%';
|
|
149
|
-
portalEl.style.height = '100%';
|
|
150
|
-
portalEl.style.pointerEvents = 'none';
|
|
151
|
-
portalEl.style.zIndex = '9999';
|
|
152
|
-
document.body.appendChild(portalEl);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
onMount(() => {
|
|
157
|
-
renderPortalDropdown();
|
|
158
|
-
window.addEventListener('scroll', updatePosition, true);
|
|
159
|
-
window.addEventListener('resize', updatePosition);
|
|
160
|
-
});
|
|
161
|
-
|
|
162
|
-
onDestroy(() => {
|
|
163
|
-
if (!triggerRef) return;
|
|
164
|
-
window.removeEventListener('scroll', updatePosition, true);
|
|
165
|
-
window.removeEventListener('resize', updatePosition);
|
|
166
|
-
if (portalEl && document.body.contains(portalEl)) {
|
|
167
|
-
document.body.removeChild(portalEl);
|
|
168
|
-
}
|
|
169
|
-
});
|
|
170
|
-
|
|
171
|
-
$effect(() => {
|
|
172
|
-
if (isOpen) {
|
|
173
|
-
renderPortalDropdown();
|
|
174
|
-
updatePosition();
|
|
175
|
-
}
|
|
176
|
-
});
|
|
177
132
|
</script>
|
|
178
133
|
|
|
179
134
|
<svelte:window onclick={handleClickOutside} />
|
|
@@ -194,68 +149,80 @@
|
|
|
194
149
|
{/if}
|
|
195
150
|
|
|
196
151
|
{#if Icon}
|
|
197
|
-
<Icon class="
|
|
152
|
+
<Icon class="text-default-400 size-5" />
|
|
198
153
|
{:else if label}
|
|
199
|
-
<svg
|
|
200
|
-
|
|
201
|
-
|
|
154
|
+
<svg
|
|
155
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
156
|
+
width="28"
|
|
157
|
+
height="28"
|
|
158
|
+
viewBox="0 0 28 28"
|
|
159
|
+
class="size-5"
|
|
160
|
+
>
|
|
161
|
+
<path
|
|
162
|
+
fill="currentColor"
|
|
163
|
+
d="M4.22 9.47a.75.75 0 0 1 1.06 0L14 18.19l8.72-8.72a.75.75 0 1 1 1.06 1.06l-9.25 9.25a.75.75 0 0 1-1.06 0l-9.25-9.25a.75.75 0 0 1 0-1.06"
|
|
164
|
+
/>
|
|
202
165
|
</svg>
|
|
203
166
|
{/if}
|
|
204
167
|
</button>
|
|
205
168
|
</div>
|
|
206
169
|
</div>
|
|
207
170
|
|
|
208
|
-
{#if isOpen
|
|
209
|
-
<
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
{
|
|
221
|
-
{
|
|
222
|
-
|
|
223
|
-
{#if header.title}
|
|
224
|
-
<span class={headerTitleClass}>{header.title}</span>
|
|
225
|
-
{/if}
|
|
226
|
-
{#if header.subtitle}
|
|
227
|
-
<span class={headerSubtitleClass}>{header.subtitle}</span>
|
|
228
|
-
{/if}
|
|
229
|
-
{/if}
|
|
230
|
-
</button>
|
|
231
|
-
{/if}
|
|
232
|
-
|
|
233
|
-
{#each sections as section_, sectionIndex (sectionIndex)}
|
|
234
|
-
<div class={sectionClass}>
|
|
235
|
-
{#each section_.items as menuItem, itemIndex (itemIndex)}
|
|
236
|
-
{@const itemProps = {
|
|
237
|
-
class: itemClass_,
|
|
238
|
-
role: 'menuitem',
|
|
239
|
-
tabindex: -1,
|
|
240
|
-
id: `menu-item-${sectionIndex}-${itemIndex}`,
|
|
241
|
-
'data-active': menuItem.active
|
|
242
|
-
}}
|
|
243
|
-
{#if menuItem.href}
|
|
244
|
-
<a href={menuItem.href} {...itemProps}>
|
|
245
|
-
{@render DropItemContent(menuItem)}
|
|
246
|
-
</a>
|
|
171
|
+
{#if isOpen}
|
|
172
|
+
<Portal target={triggerRef}>
|
|
173
|
+
<div
|
|
174
|
+
bind:this={dropdownRef}
|
|
175
|
+
class={containerClass_}
|
|
176
|
+
role="menu"
|
|
177
|
+
aria-orientation="vertical"
|
|
178
|
+
aria-labelledby="menu-button"
|
|
179
|
+
style={dropdownStyles}
|
|
180
|
+
transition:fly={{ duration: 150, y: 5, opacity: 0 }}
|
|
181
|
+
>
|
|
182
|
+
{#if header}
|
|
183
|
+
<button class={headerClass_} onclick={header.onclick} aria-label="Header Actions">
|
|
184
|
+
{#if header.content}
|
|
185
|
+
{@render header.content()}
|
|
247
186
|
{:else}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
{
|
|
253
|
-
|
|
187
|
+
{#if header.title}
|
|
188
|
+
<span class={headerTitleClass}>{header.title}</span>
|
|
189
|
+
{/if}
|
|
190
|
+
{#if header.subtitle}
|
|
191
|
+
<span class={headerSubtitleClass}>{header.subtitle}</span>
|
|
192
|
+
{/if}
|
|
254
193
|
{/if}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
194
|
+
</button>
|
|
195
|
+
{/if}
|
|
196
|
+
|
|
197
|
+
{#each sections as section_, sectionIndex (sectionIndex)}
|
|
198
|
+
<div class={sectionClass}>
|
|
199
|
+
{#each section_.items as menuItem, itemIndex (itemIndex)}
|
|
200
|
+
{@const itemProps = {
|
|
201
|
+
class: itemClass_,
|
|
202
|
+
role: 'menuitem',
|
|
203
|
+
tabindex: -1,
|
|
204
|
+
id: `menu-item-${sectionIndex}-${itemIndex}`,
|
|
205
|
+
'data-active': menuItem.active
|
|
206
|
+
}}
|
|
207
|
+
{#if menuItem.href}
|
|
208
|
+
<a href={menuItem.href} {...itemProps}>
|
|
209
|
+
{@render DropItemContent(menuItem)}
|
|
210
|
+
</a>
|
|
211
|
+
{:else}
|
|
212
|
+
<button
|
|
213
|
+
type="button"
|
|
214
|
+
onclick={() => handleItemClick(menuItem)}
|
|
215
|
+
disabled={!menuItem.onclick}
|
|
216
|
+
{...itemProps}
|
|
217
|
+
>
|
|
218
|
+
{@render DropItemContent(menuItem)}
|
|
219
|
+
</button>
|
|
220
|
+
{/if}
|
|
221
|
+
{/each}
|
|
222
|
+
</div>
|
|
223
|
+
{/each}
|
|
224
|
+
</div>
|
|
225
|
+
</Portal>
|
|
259
226
|
{/if}
|
|
260
227
|
|
|
261
228
|
{#snippet DropItemContent(menuItem: DropdownItem)}
|
|
@@ -264,4 +231,4 @@
|
|
|
264
231
|
<ItemIcon class={iconClass} />
|
|
265
232
|
{/if}
|
|
266
233
|
<span class="truncate">{menuItem.label}</span>
|
|
267
|
-
{/snippet}
|
|
234
|
+
{/snippet}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import type { SelectItem, SelectProps } from '../../index.js';
|
|
6
6
|
import Badge from '../badge/Badge.svelte';
|
|
7
7
|
import { Size } from '../../variants.js';
|
|
8
|
+
import Portal from '../../utils/Portal.svelte';
|
|
8
9
|
|
|
9
10
|
let {
|
|
10
11
|
items = [],
|
|
@@ -29,7 +30,7 @@
|
|
|
29
30
|
|
|
30
31
|
let open = $state(false);
|
|
31
32
|
let searchQuery = $state('');
|
|
32
|
-
let
|
|
33
|
+
let labelRef = $state<HTMLLabelElement | null>(null);
|
|
33
34
|
let searchInputRef = $state<HTMLInputElement | null>(null);
|
|
34
35
|
let highlightedIndex = $state(-1);
|
|
35
36
|
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
);
|
|
51
52
|
|
|
52
53
|
const baseClass = $derived(cn(base(), className));
|
|
53
|
-
const triggerClass_ = $derived(cn(trigger(), triggerClass));
|
|
54
|
+
const triggerClass_ = $derived(cn(trigger(), triggerClass, baseClass));
|
|
54
55
|
const triggerIconClass = $derived(cn(triggerIcon(), iconClass));
|
|
55
56
|
const containerClass_ = $derived(cn(container(), containerClass));
|
|
56
57
|
const searchInputClass_ = $derived(cn(searchInput(), searchInputClass));
|
|
@@ -122,7 +123,7 @@
|
|
|
122
123
|
}
|
|
123
124
|
|
|
124
125
|
function handleClickOutside(event: MouseEvent) {
|
|
125
|
-
if (
|
|
126
|
+
if (labelRef && !labelRef.contains(event.target as Node) && open) {
|
|
126
127
|
open = false;
|
|
127
128
|
onclose();
|
|
128
129
|
}
|
|
@@ -130,7 +131,7 @@
|
|
|
130
131
|
|
|
131
132
|
function handleKeydown(event: KeyboardEvent) {
|
|
132
133
|
// check if the event is fired from the select
|
|
133
|
-
if (!
|
|
134
|
+
if (!labelRef || !labelRef.contains(event.target as Node)) return;
|
|
134
135
|
|
|
135
136
|
if (!open) {
|
|
136
137
|
if (event.key === 'Enter' || event.key === ' ' || event.key === 'ArrowDown') {
|
|
@@ -182,59 +183,61 @@
|
|
|
182
183
|
|
|
183
184
|
<svelte:window onclick={handleClickOutside} onkeydown={handleKeydown} />
|
|
184
185
|
|
|
185
|
-
<
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
{
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
{
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
</
|
|
236
|
-
|
|
237
|
-
|
|
186
|
+
<label
|
|
187
|
+
bind:this={labelRef}
|
|
188
|
+
class={triggerClass_}
|
|
189
|
+
aria-disabled={disabled}
|
|
190
|
+
aria-haspopup="listbox"
|
|
191
|
+
aria-labelledby="select-label"
|
|
192
|
+
data-state={open ? 'open' : 'closed'}
|
|
193
|
+
>
|
|
194
|
+
<button
|
|
195
|
+
type="button"
|
|
196
|
+
aria-label="Toggle dropdown"
|
|
197
|
+
{disabled}
|
|
198
|
+
aria-expanded={open}
|
|
199
|
+
onclick={handleToggle}
|
|
200
|
+
></button>
|
|
201
|
+
<span class="flex min-h-[1.5rem] flex-1 flex-wrap items-center gap-1 overflow-hidden">
|
|
202
|
+
{#if multiple && selectedItems.length > 0}
|
|
203
|
+
{#each selectedItems as item (item.value)}
|
|
204
|
+
<Badge {size} color="info" onclose={() => removeItem(item.value)}>
|
|
205
|
+
{item.value}
|
|
206
|
+
</Badge>
|
|
207
|
+
{/each}
|
|
208
|
+
{:else if !multiple && selectedItem}
|
|
209
|
+
<span id="select-label" class="flex-1 truncate text-left">
|
|
210
|
+
{selectedItem.label}
|
|
211
|
+
</span>
|
|
212
|
+
{:else}
|
|
213
|
+
<span id="select-label" class="text-default-500 px-1">
|
|
214
|
+
{placeholder}
|
|
215
|
+
</span>
|
|
216
|
+
{/if}
|
|
217
|
+
</span>
|
|
218
|
+
|
|
219
|
+
<span class="ml-auto flex flex-shrink-0 items-center pl-2">
|
|
220
|
+
{#if Icon}
|
|
221
|
+
<Icon class={triggerIconClass} />
|
|
222
|
+
{:else}
|
|
223
|
+
<svg
|
|
224
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
225
|
+
viewBox="0 0 20 20"
|
|
226
|
+
fill="currentColor"
|
|
227
|
+
class={cn(triggerIconClass, open && 'rotate-180 transform')}
|
|
228
|
+
>
|
|
229
|
+
<path
|
|
230
|
+
fill-rule="evenodd"
|
|
231
|
+
d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"
|
|
232
|
+
clip-rule="evenodd"
|
|
233
|
+
/>
|
|
234
|
+
</svg>
|
|
235
|
+
{/if}
|
|
236
|
+
</span>
|
|
237
|
+
</label>
|
|
238
|
+
|
|
239
|
+
{#if open}
|
|
240
|
+
<Portal target={labelRef}>
|
|
238
241
|
<div class={containerClass_} role="listbox" aria-labelledby="select-label">
|
|
239
242
|
{#if searchable}
|
|
240
243
|
<div class={searchInputClass_}>
|
|
@@ -269,7 +272,10 @@
|
|
|
269
272
|
<li>
|
|
270
273
|
<button
|
|
271
274
|
type="button"
|
|
272
|
-
onclick={() =>
|
|
275
|
+
onclick={(event) => {
|
|
276
|
+
handleSelect(item);
|
|
277
|
+
event.preventDefault();
|
|
278
|
+
}}
|
|
273
279
|
disabled={item.disabled}
|
|
274
280
|
class={itemClass_}
|
|
275
281
|
role="option"
|
|
@@ -310,5 +316,5 @@
|
|
|
310
316
|
</ul>
|
|
311
317
|
{/if}
|
|
312
318
|
</div>
|
|
313
|
-
|
|
314
|
-
|
|
319
|
+
</Portal>
|
|
320
|
+
{/if}
|
|
@@ -2,7 +2,7 @@ import { tv } from '../../helper/cls.js';
|
|
|
2
2
|
import { Size } from '../../variants.js';
|
|
3
3
|
export const dropdownMenu = tv({
|
|
4
4
|
slots: {
|
|
5
|
-
base: '
|
|
5
|
+
base: 'inline-block text-left',
|
|
6
6
|
trigger: 'inline-flex w-full justify-center items-center gap-x-1.5 rounded-md bg-white px-3 py-2 text-sm font-semibold text-default-900 shadow-xs ring-1 ring-inset ring-default-300 hover:bg-default-50 cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed',
|
|
7
7
|
container: 'absolute z-50 mt-2 origin-top-right divide-y divide-default-100 rounded-md bg-white ring-1 ring-black/5 shadow-lg focus:outline-none',
|
|
8
8
|
section: 'py-1',
|
|
@@ -2,11 +2,11 @@ import { tv } from 'tailwind-variants';
|
|
|
2
2
|
import { Size } from '../../variants.js';
|
|
3
3
|
export const selectTV = tv({
|
|
4
4
|
slots: {
|
|
5
|
-
base: '
|
|
5
|
+
base: '',
|
|
6
6
|
trigger: `flex items-center justify-between w-full text-left bg-white border
|
|
7
7
|
border-default-200 text-default-700 hover:border-default-300 rounded-md cursor-pointer`,
|
|
8
8
|
triggerIcon: 'transition-transform duration-200 text-default-500',
|
|
9
|
-
container: 'absolute z-50 w-full mt-1 bg-white overflow-clip border border-default-200 rounded-md shadow-md',
|
|
9
|
+
container: 'absolute z-50 w-full mt-1 bg-white overflow-clip border border-default-200 rounded-md shadow-md origin-top-left top-full left-0 mt-2',
|
|
10
10
|
searchInput: 'flex items-center gap-x-3 w-full outline-none px-2 h-10 border-b border-b-default-200',
|
|
11
11
|
list: 'py-1 max-h-60 overflow-x-clip overflow-y-auto h-full',
|
|
12
12
|
item: `w-full px-3 py-2 text-sm text-left
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { onMount, onDestroy, type Snippet } from 'svelte';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Target element to mount the portal content to
|
|
6
|
+
* Defaults to document.body
|
|
7
|
+
*/
|
|
8
|
+
let { target, children }: { target?: HTMLElement | null; children: Snippet } = $props();
|
|
9
|
+
|
|
10
|
+
let ref: HTMLElement;
|
|
11
|
+
let portal: HTMLElement;
|
|
12
|
+
let animationFrameId: number;
|
|
13
|
+
let isPositioned = $state(false);
|
|
14
|
+
|
|
15
|
+
// Position update without animation - for immediate positioning
|
|
16
|
+
function updatePosition() {
|
|
17
|
+
if (!ref || !target) return;
|
|
18
|
+
|
|
19
|
+
const { top, left, width, height } = target.getBoundingClientRect();
|
|
20
|
+
|
|
21
|
+
// Set instant positioning without transitions for first render
|
|
22
|
+
if (!isPositioned) {
|
|
23
|
+
ref.style.position = 'fixed';
|
|
24
|
+
ref.style.width = `${width}px`;
|
|
25
|
+
ref.style.height = `${height}px`;
|
|
26
|
+
ref.style.top = '0';
|
|
27
|
+
ref.style.left = '0';
|
|
28
|
+
ref.style.transform = `translate(${left}px, ${top}px)`;
|
|
29
|
+
ref.style.visibility = 'hidden'; // Keep hidden until fully positioned
|
|
30
|
+
|
|
31
|
+
// Wait for next frame to ensure positioning is applied before showing
|
|
32
|
+
animationFrameId = requestAnimationFrame(() => {
|
|
33
|
+
ref.style.opacity = '1';
|
|
34
|
+
ref.style.visibility = 'visible';
|
|
35
|
+
isPositioned = true;
|
|
36
|
+
|
|
37
|
+
// Now add transition for subsequent updates
|
|
38
|
+
ref.style.transition = 'transform 0.1s ease-out';
|
|
39
|
+
});
|
|
40
|
+
} else {
|
|
41
|
+
// For subsequent updates, smoothly transition
|
|
42
|
+
ref.style.transform = `translate(${left}px, ${top}px)`;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Handle scroll and resize with animation frames for smooth updates
|
|
47
|
+
function handlePositionUpdate() {
|
|
48
|
+
if (animationFrameId) {
|
|
49
|
+
cancelAnimationFrame(animationFrameId);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
animationFrameId = requestAnimationFrame(updatePosition);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
onMount(() => {
|
|
56
|
+
// Create portal container
|
|
57
|
+
portal = document.createElement('div');
|
|
58
|
+
portal.className = 'ripple-portal';
|
|
59
|
+
|
|
60
|
+
// Default to document.body if no target is provided
|
|
61
|
+
const targetElement = target || document.body;
|
|
62
|
+
targetElement.appendChild(portal);
|
|
63
|
+
|
|
64
|
+
// Move the content to the portal
|
|
65
|
+
portal.appendChild(ref);
|
|
66
|
+
|
|
67
|
+
// Initially hide the content
|
|
68
|
+
ref.style.opacity = '0';
|
|
69
|
+
|
|
70
|
+
// Position immediately - critical for first render
|
|
71
|
+
updatePosition();
|
|
72
|
+
|
|
73
|
+
// Add event listeners for position updates
|
|
74
|
+
window.addEventListener('resize', handlePositionUpdate);
|
|
75
|
+
window.addEventListener('scroll', handlePositionUpdate, true);
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
onDestroy(() => {
|
|
79
|
+
// Clean up on component destruction
|
|
80
|
+
if (portal && portal.parentNode) {
|
|
81
|
+
portal.parentNode.removeChild(portal);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// Clean up event listeners
|
|
85
|
+
window.removeEventListener('resize', handlePositionUpdate);
|
|
86
|
+
window.removeEventListener('scroll', handlePositionUpdate, true);
|
|
87
|
+
|
|
88
|
+
// Cancel any pending animation frame
|
|
89
|
+
if (animationFrameId) {
|
|
90
|
+
cancelAnimationFrame(animationFrameId);
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
</script>
|
|
94
|
+
|
|
95
|
+
<div class="portal-content" bind:this={ref}>
|
|
96
|
+
{@render children()}
|
|
97
|
+
</div>
|
|
98
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type Snippet } from 'svelte';
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
target?: HTMLElement | null;
|
|
4
|
+
children: Snippet;
|
|
5
|
+
};
|
|
6
|
+
declare const Portal: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
7
|
+
type Portal = ReturnType<typeof Portal>;
|
|
8
|
+
export default Portal;
|