mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
refactor(composed-modal): register buttonRef directly
This commit is contained in:
parent
4481c5a97f
commit
ffb6f477b9
2 changed files with 59 additions and 75 deletions
|
@ -4,7 +4,6 @@
|
|||
export let as = undefined;
|
||||
export let disabled = false;
|
||||
export let size = 'default';
|
||||
export let small = false;
|
||||
export let kind = 'primary';
|
||||
export let href = undefined;
|
||||
export let tabindex = '0';
|
||||
|
@ -18,79 +17,66 @@
|
|||
import { getContext } from 'svelte';
|
||||
import { cx } from '../../lib';
|
||||
|
||||
const hasIconOnly = !!icon && !$$props.$$slots;
|
||||
const ctx = getContext('ComposedModal');
|
||||
|
||||
let buttonRef = undefined;
|
||||
|
||||
$: if (ctx && buttonRef) {
|
||||
ctx.declareRef({ name: 'buttonRef', ref: buttonRef });
|
||||
ctx.declareRef(buttonRef);
|
||||
}
|
||||
$: _class = cx(
|
||||
'--btn',
|
||||
size === 'field' && '--btn--field',
|
||||
(size === 'small' || small) && '--btn--sm',
|
||||
kind === 'primary' && '--btn--primary',
|
||||
kind === 'danger' && '--btn--danger',
|
||||
kind === 'secondary' && '--btn--secondary',
|
||||
kind === 'ghost' && '--btn--ghost',
|
||||
kind === 'danger--primary' && '--btn--danger--primary',
|
||||
kind === 'tertiary' && '--btn--tertiary',
|
||||
disabled && '--btn--disabled',
|
||||
hasIconOnly && '--btn--icon-only',
|
||||
hasIconOnly && '--tooltip__trigger',
|
||||
hasIconOnly && '--tooltip--a11y',
|
||||
hasIconOnly && tooltipPosition && `--tooltip--${tooltipPosition}`,
|
||||
hasIconOnly && tooltipAlignment && `--tooltip--align-${tooltipAlignment}`,
|
||||
className
|
||||
);
|
||||
$: hasIconOnly = !!icon && !$$props.$$slots;
|
||||
$: buttonProps = {
|
||||
role: 'button',
|
||||
type: href && !disabled ? undefined : type,
|
||||
tabindex,
|
||||
class: _class,
|
||||
disabled,
|
||||
href,
|
||||
style
|
||||
style,
|
||||
class: cx(
|
||||
'--btn',
|
||||
size === 'field' && '--btn--field',
|
||||
size === 'small' && '--btn--sm',
|
||||
kind && `--btn--${kind}`,
|
||||
disabled && '--btn--disabled',
|
||||
hasIconOnly && '--btn--icon-only',
|
||||
hasIconOnly && '--tooltip__trigger',
|
||||
hasIconOnly && '--tooltip--a11y',
|
||||
hasIconOnly && tooltipPosition && `--tooltip--${tooltipPosition}`,
|
||||
hasIconOnly && tooltipAlignment && `--tooltip--align-${tooltipAlignment}`,
|
||||
className
|
||||
)
|
||||
};
|
||||
</script>
|
||||
|
||||
{#if as}
|
||||
<slot props={buttonProps} />
|
||||
{:else if href && !disabled}
|
||||
<!-- svelte-ignore a11y-missing-attribute -->
|
||||
<a {...buttonProps} on:click on:mouseover on:mouseenter on:mouseleave>
|
||||
{#if hasIconOnly}
|
||||
<span class={cx('--assistive-text')}>{iconDescription}</span>
|
||||
{/if}
|
||||
<slot />
|
||||
{#if icon}
|
||||
<svelte:component
|
||||
this={icon}
|
||||
aria-hidden="true"
|
||||
class={cx('--btn__icon')}
|
||||
aria-label={iconDescription} />
|
||||
{/if}
|
||||
</a>
|
||||
{:else}
|
||||
{#if href && !disabled}
|
||||
<a {...buttonProps} on:click on:mouseover on:mouseenter on:mouseleave {href}>
|
||||
{#if hasIconOnly}
|
||||
<span class={cx('--assistive-text')}>{iconDescription}</span>
|
||||
{/if}
|
||||
<slot />
|
||||
{#if icon}
|
||||
<svelte:component
|
||||
this={icon}
|
||||
aria-hidden="true"
|
||||
class={cx('--btn__icon')}
|
||||
aria-label={iconDescription} />
|
||||
{/if}
|
||||
</a>
|
||||
{:else}
|
||||
<button
|
||||
{...buttonProps}
|
||||
bind:this={buttonRef}
|
||||
on:click
|
||||
on:mouseover
|
||||
on:mouseenter
|
||||
on:mouseleave>
|
||||
{#if hasIconOnly}
|
||||
<span class={cx('--assistive-text')}>{iconDescription}</span>
|
||||
{/if}
|
||||
<slot />
|
||||
{#if icon}
|
||||
<svelte:component
|
||||
this={icon}
|
||||
aria-hidden="true"
|
||||
class={cx('--btn__icon')}
|
||||
aria-label={iconDescription} />
|
||||
{/if}
|
||||
</button>
|
||||
{/if}
|
||||
<button {...buttonProps} bind:this={buttonRef} on:click on:mouseover on:mouseenter on:mouseleave>
|
||||
{#if hasIconOnly}
|
||||
<span class={cx('--assistive-text')}>{iconDescription}</span>
|
||||
{/if}
|
||||
<slot />
|
||||
{#if icon}
|
||||
<svelte:component
|
||||
this={icon}
|
||||
aria-hidden="true"
|
||||
class={cx('--btn__icon')}
|
||||
aria-label={iconDescription} />
|
||||
{/if}
|
||||
</button>
|
||||
{/if}
|
||||
|
|
|
@ -13,7 +13,8 @@
|
|||
import { cx } from '../../lib';
|
||||
|
||||
const dispatch = createEventDispatcher();
|
||||
const refs = {};
|
||||
|
||||
let buttonRef = undefined;
|
||||
let outerModal = undefined;
|
||||
let innerModal = undefined;
|
||||
|
||||
|
@ -24,8 +25,8 @@
|
|||
submit: () => {
|
||||
dispatch('submit');
|
||||
},
|
||||
declareRef: ({ name, ref }) => {
|
||||
refs[name] = ref;
|
||||
declareRef: ref => {
|
||||
buttonRef = ref;
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -38,22 +39,17 @@
|
|||
return focusElement.focus();
|
||||
}
|
||||
|
||||
if (refs.buttonRef) {
|
||||
refs.buttonRef.focus();
|
||||
if (buttonRef) {
|
||||
buttonRef.focus();
|
||||
}
|
||||
}
|
||||
|
||||
const _containerClass = cx(
|
||||
'--modal-container',
|
||||
size && `--modal-container--${size}`,
|
||||
containerClass
|
||||
);
|
||||
$: didOpen = open;
|
||||
$: _class = cx('--modal', open && 'is-visible', danger && '--modal--danger', className);
|
||||
$: if (innerModal) {
|
||||
focus(innerModal);
|
||||
}
|
||||
$: {
|
||||
if (innerModal) {
|
||||
focus(innerModal);
|
||||
}
|
||||
|
||||
if (open) {
|
||||
document.body.classList.add(cx('--body--with-modal-open'));
|
||||
} else {
|
||||
|
@ -64,10 +60,10 @@
|
|||
</script>
|
||||
|
||||
<div
|
||||
bind:this={outerModal}
|
||||
role="presentation"
|
||||
tabindex="-1"
|
||||
bind:this={outerModal}
|
||||
class={_class}
|
||||
class={cx('--modal', open && 'is-visible', danger && '--modal--danger', className)}
|
||||
on:click
|
||||
on:click={({ target }) => {
|
||||
if (!innerModal.contains(target)) {
|
||||
|
@ -85,7 +81,9 @@
|
|||
}
|
||||
}}
|
||||
{style}>
|
||||
<div bind:this={innerModal} class={_containerClass}>
|
||||
<div
|
||||
bind:this={innerModal}
|
||||
class={cx('--modal-container', size && `--modal-container--${size}`, containerClass)}>
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue