-
-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathButton.svelte
More file actions
534 lines (491 loc) · 14.4 KB
/
Copy pathButton.svelte
File metadata and controls
534 lines (491 loc) · 14.4 KB
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
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
<script>
/**
* @template [Icon=any]
*/
/**
* @extends {"./ButtonSkeleton.svelte"} ButtonSkeletonProps
* @restProps {button | a | div}
* @slot {{ props: { role: "button"; type?: string; tabindex: any; disabled: boolean; href?: string; class: string; [key: string]: any; } }}
* @slot {{ style: undefined | string; }} icon
* @slot {{}} badge - Compose a `BadgeIndicator` overlaid on an icon-only button. Size is set to `lg` automatically.
*/
/**
* Specify the kind of button.
* @type {"primary" | "secondary" | "tertiary" | "ghost" | "danger" | "danger-tertiary" | "danger-ghost"}
*/
export let kind = "primary";
/**
* Specify the size of button.
* When the `badge` slot is used, size is set to `lg` per Carbon design guidelines.
* @type {"default" | "field" | "small" | "lg" | "xl"}
*/
export let size = "default";
/** Set to `true` to use Carbon's expressive typesetting */
export let expressive = false;
/**
* Set to `true` to enable the selected state for an icon-only, ghost button.
*/
export let isSelected = false;
/**
* Specify the icon to render.
* Alternatively, use the named slot "icon".
*
* @type {Icon}
* @example
* ```svelte
* <Button>
* <Icon slot="icon" size={20} />
* </Button>
* ```
*/
export let icon = /** @type {Icon} */ (undefined);
/**
* Specify the ARIA label for the button icon.
* @type {string}
*/
export let iconDescription = undefined;
/**
* Set the alignment of the tooltip relative to the icon.
* Only applies to icon-only buttons.
* @type {"start" | "center" | "end"}
*/
export let tooltipAlignment = "center";
/**
* Set the position of the tooltip relative to the icon.
* @type {"top" | "right" | "bottom" | "left"}
*/
export let tooltipPosition = "bottom";
/**
* Set to `true` to hide the tooltip while maintaining accessibility.
* Only applies to icon-only buttons.
* When `true`, the tooltip is visually hidden but the `iconDescription` remains accessible to screen readers.
*/
export let hideTooltip = false;
/**
* Set to `true` to render a custom HTML element.
* Props are destructured as `props` in the default slot.
* @example
* ```svelte
* <Button let:props>
* <div {...props}>Custom Element</div>
* </Button>
* ```
*/
export let as = false;
/** Set to `true` to display the skeleton state */
export let skeleton = false;
/** Set to `true` to disable the button */
export let disabled = false;
/**
* Set the `href` to use an anchor link.
* @type {string}
*/
export let href = undefined;
/**
* Specify the tabindex
* @type {number | string | undefined}
*/
export let tabindex = "0";
/** Specify the `type` attribute for the button element */
export let type = "button";
/**
* Obtain a reference to the HTML element.
* @bindable readonly
*/
export let ref = null;
/**
* Set to `true` to render the icon-only tooltip in a portal,
* preventing it from being clipped by `overflow: hidden` containers
* and enabling auto-flipping when the preferred direction lacks space.
* By default, the tooltip is portalled when inside a `Modal`.
* @type {boolean | undefined}
*/
export let portalTooltip = undefined;
import { getContext, onMount } from "svelte";
import { get } from "svelte/store";
import PortalTooltip from "../Portal/PortalTooltip.svelte";
import { observeModalClose } from "../Portal/portal-utils.js";
import ButtonSkeleton from "./ButtonSkeleton.svelte";
import { activeButtonTooltip } from "./button-tooltip-store.js";
const ctx = getContext("carbon:ComposedModal");
const insideModal = getContext("carbon:Modal");
$: if (ctx && ref) {
ctx.declareRef(ref);
}
$: hasIconOnly = (icon || $$slots.icon) && !$$slots.default;
$: effectivePortalTooltip =
portalTooltip === undefined ? !!insideModal : portalTooltip;
$: usePortal = hasIconOnly && !hideTooltip && effectivePortalTooltip;
const tooltipId = {};
// Hardcoded for parity with TooltipIcon defaults; not exposed as props yet.
const ENTER_DELAY_MS = 100;
const LEAVE_DELAY_MS = 300;
let hovered = false;
let focused = false;
let portalTimeout;
// Gate on the shared store so only one icon-only tooltip can be open at a
// time. When another button claims the store, this one closes immediately —
// preventing overlapping tooltips (e.g. Pagination's adjacent buttons).
$: portalOpen =
usePortal &&
!disabled &&
(hovered || focused) &&
$activeButtonTooltip === tooltipId;
function claimActiveTooltip() {
activeButtonTooltip.set(tooltipId);
}
function releaseActiveTooltip() {
if (get(activeButtonTooltip) === tooltipId) {
activeButtonTooltip.set(null);
}
}
function dismissPortalTooltip() {
clearTimeout(portalTimeout);
hovered = false;
focused = false;
releaseActiveTooltip();
}
// Re-attach the portal observer so the tooltip dismisses when an
// ancestor modal closes (mirrors CopyButton).
let disconnectModalObserver = () => {};
$: {
disconnectModalObserver();
disconnectModalObserver =
usePortal && ref
? observeModalClose(ref, dismissPortalTooltip)
: () => {};
}
$: tooltipHidden =
hasIconOnly &&
!hideTooltip &&
$activeButtonTooltip !== null &&
$activeButtonTooltip !== tooltipId;
function handleMouseEnter() {
if (hasIconOnly && !hideTooltip && !usePortal) {
claimActiveTooltip();
}
}
function handleMouseLeave() {
if (usePortal) return;
releaseActiveTooltip();
}
function handlePortalMouseEnter() {
if (!usePortal || disabled) return;
clearTimeout(portalTimeout);
// Warm handoff: if another icon-only tooltip is already showing, skip the
// enter delay so moving between adjacent buttons feels instant.
const warmHandoff =
get(activeButtonTooltip) !== null &&
get(activeButtonTooltip) !== tooltipId;
portalTimeout = setTimeout(
() => {
hovered = true;
claimActiveTooltip();
},
warmHandoff ? 0 : ENTER_DELAY_MS,
);
}
function handlePortalMouseLeave() {
if (!usePortal) return;
clearTimeout(portalTimeout);
portalTimeout = setTimeout(() => {
hovered = false;
if (!focused) releaseActiveTooltip();
}, LEAVE_DELAY_MS);
}
function handlePortalFocus() {
if (!usePortal || disabled) return;
focused = true;
claimActiveTooltip();
}
function handlePortalBlur() {
if (!usePortal) return;
focused = false;
if (!hovered) releaseActiveTooltip();
}
const PORTAL_HORIZONTAL_GAP_LEFT_PX = 2;
const PORTAL_HORIZONTAL_GAP_RIGHT_PX = 2;
const PORTAL_VERTICAL_GAP_TOP_PX = 1;
const PORTAL_VERTICAL_GAP_BOTTOM_PX = 1;
const PORTAL_VERTICAL_ALIGN_OFFSET_LEFT_START_PX = -3;
const PORTAL_VERTICAL_ALIGN_OFFSET_RIGHT_END_PX = 1;
$: portalHorizontalGapLeft =
tooltipPosition === "left" || tooltipPosition === "right"
? PORTAL_HORIZONTAL_GAP_LEFT_PX
: 0;
$: portalHorizontalGapRight =
tooltipPosition === "left" || tooltipPosition === "right"
? PORTAL_HORIZONTAL_GAP_RIGHT_PX
: 0;
$: portalGapTop =
tooltipPosition === "top" || tooltipPosition === "bottom"
? PORTAL_VERTICAL_GAP_TOP_PX
: 0;
$: portalGapBottom =
tooltipPosition === "top" || tooltipPosition === "bottom"
? PORTAL_VERTICAL_GAP_BOTTOM_PX
: 0;
$: portalVerticalAlignOffsetLeft =
tooltipPosition === "left" && tooltipAlignment === "start"
? PORTAL_VERTICAL_ALIGN_OFFSET_LEFT_START_PX
: 0;
$: portalVerticalAlignOffsetRight =
tooltipPosition === "right" && tooltipAlignment === "end"
? PORTAL_VERTICAL_ALIGN_OFFSET_RIGHT_END_PX
: 0;
onMount(() => {
return () => {
clearTimeout(portalTimeout);
disconnectModalObserver();
if (get(activeButtonTooltip) === tooltipId) {
activeButtonTooltip.set(null);
}
};
});
$: isDisabled = Boolean(disabled);
$: effectiveSize = $$slots.badge ? "lg" : size;
$: iconProps = {
"aria-hidden": "true",
class: "bx--btn__icon",
};
$: buttonProps = {
type: href && !isDisabled ? undefined : type,
tabindex,
disabled: isDisabled ? true : undefined,
href: href && !isDisabled ? href : undefined,
rel:
href && !isDisabled && $$restProps.target === "_blank"
? "noopener noreferrer"
: undefined,
"aria-pressed":
hasIconOnly && kind === "ghost" && !href ? isSelected : undefined,
...$$restProps,
class: [
"bx--btn",
expressive && "bx--btn--expressive",
effectiveSize === "small" && "bx--btn--sm",
effectiveSize === "field" && "bx--btn--field",
effectiveSize === "lg" && "bx--btn--lg",
effectiveSize === "xl" && "bx--btn--xl",
kind && `bx--btn--${kind}`,
isDisabled && "bx--btn--disabled",
hasIconOnly && "bx--btn--icon-only",
hasIconOnly && !hideTooltip && !usePortal && "bx--tooltip__trigger",
hasIconOnly && !hideTooltip && !usePortal && "bx--tooltip--a11y",
hasIconOnly &&
!hideTooltip &&
!usePortal &&
tooltipPosition &&
`bx--btn--icon-only--${tooltipPosition}`,
hasIconOnly &&
!hideTooltip &&
!usePortal &&
tooltipAlignment &&
`bx--tooltip--align-${tooltipAlignment}`,
hasIconOnly &&
!hideTooltip &&
!usePortal &&
tooltipHidden &&
"bx--tooltip--hidden",
hasIconOnly && isSelected && kind === "ghost" && "bx--btn--selected",
$$restProps.class,
]
.filter(Boolean)
.join(" "),
};
</script>
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
{#if skeleton}
<ButtonSkeleton
{href}
{size}
{...$$restProps}
style={hasIconOnly && "width: 3rem;"}
on:click
on:focus
on:blur
on:mouseover
on:mouseenter
on:mouseleave
/>
{:else if as}
<slot props={buttonProps} />
{:else if href && !isDisabled}
{#if $$slots.badge}
<div class="bx--btn__badge-wrapper">
<!-- svelte-ignore a11y-missing-attribute -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<a
bind:this={ref}
{...buttonProps}
on:click
on:focus
on:focus={handlePortalFocus}
on:blur
on:blur={handlePortalBlur}
on:mouseover
on:mouseenter
on:mouseenter={handleMouseEnter}
on:mouseenter={handlePortalMouseEnter}
on:mouseleave
on:mouseleave={handleMouseLeave}
on:mouseleave={handlePortalMouseLeave}
>
{#if hasIconOnly}
<span class:bx--assistive-text={true} style:pointer-events="none">
{iconDescription}
</span>
{/if}
<slot />
{#if $$slots.icon}
<slot
name="icon"
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{:else if icon}
<svelte:component
this={icon}
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{/if}
</a>
<slot name="badge" />
</div>
{:else}
<!-- svelte-ignore a11y-missing-attribute -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<a
bind:this={ref}
{...buttonProps}
on:click
on:focus
on:focus={handlePortalFocus}
on:blur
on:blur={handlePortalBlur}
on:mouseover
on:mouseenter
on:mouseenter={handleMouseEnter}
on:mouseenter={handlePortalMouseEnter}
on:mouseleave
on:mouseleave={handleMouseLeave}
on:mouseleave={handlePortalMouseLeave}
>
{#if hasIconOnly}
<span class:bx--assistive-text={true} style:pointer-events="none">
{iconDescription}
</span>
{/if}
<slot />
{#if $$slots.icon}
<slot
name="icon"
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{:else if icon}
<svelte:component
this={icon}
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{/if}
</a>
{/if}
{:else if $$slots.badge}
<div class="bx--btn__badge-wrapper">
<button
type="button"
bind:this={ref}
{...buttonProps}
on:click
on:focus
on:focus={handlePortalFocus}
on:blur
on:blur={handlePortalBlur}
on:mouseover
on:mouseenter
on:mouseenter={handleMouseEnter}
on:mouseenter={handlePortalMouseEnter}
on:mouseleave
on:mouseleave={handleMouseLeave}
on:mouseleave={handlePortalMouseLeave}
>
{#if hasIconOnly}
<span class:bx--assistive-text={true} style:pointer-events="none">
{iconDescription}
</span>
{/if}
<slot />
{#if $$slots.icon}
<slot
name="icon"
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{:else if icon}
<svelte:component
this={icon}
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{/if}
</button>
<slot name="badge" />
</div>
{:else}
<button
type="button"
bind:this={ref}
{...buttonProps}
on:click
on:focus
on:focus={handlePortalFocus}
on:blur
on:blur={handlePortalBlur}
on:mouseover
on:mouseenter
on:mouseenter={handleMouseEnter}
on:mouseenter={handlePortalMouseEnter}
on:mouseleave
on:mouseleave={handleMouseLeave}
on:mouseleave={handlePortalMouseLeave}
>
{#if hasIconOnly}
<span class:bx--assistive-text={true} style:pointer-events="none">
{iconDescription}
</span>
{/if}
<slot />
{#if $$slots.icon}
<slot
name="icon"
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{:else if icon}
<svelte:component
this={icon}
style={hasIconOnly ? "margin-left: 0" : undefined}
{...iconProps}
/>
{/if}
</button>
{/if}
{#if usePortal}
<PortalTooltip
anchor={ref}
direction={tooltipPosition}
open={portalOpen}
text={iconDescription}
tooltipType="icon"
intrinsicAlign={tooltipAlignment}
horizontalGapLeft={portalHorizontalGapLeft}
horizontalGapRight={portalHorizontalGapRight}
gapTop={portalGapTop}
gapBottom={portalGapBottom}
verticalAlignOffsetLeft={portalVerticalAlignOffsetLeft}
verticalAlignOffsetRight={portalVerticalAlignOffsetRight}
/>
{/if}