mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
fix(copy-button): use ^10.9.0 styles for CopyButton
Fixes #36 - Remove creaetEventDispatcher - Remove exported props - Breaking Change: upgrade to carbon-components@10.9.0-rc.1 - Clean up CopyButton story
This commit is contained in:
parent
fb6983b94e
commit
0bf3c465c8
5 changed files with 22 additions and 31 deletions
|
@ -34,7 +34,7 @@
|
||||||
"@testing-library/svelte": "^1.11.0",
|
"@testing-library/svelte": "^1.11.0",
|
||||||
"babel-jest": "^24.9.0",
|
"babel-jest": "^24.9.0",
|
||||||
"babel-loader": "^8.0.6",
|
"babel-loader": "^8.0.6",
|
||||||
"carbon-components": "10.8.0",
|
"carbon-components": "10.9.0-rc.1",
|
||||||
"eslint": "^6.7.2",
|
"eslint": "^6.7.2",
|
||||||
"eslint-plugin-svelte3": "^2.7.3",
|
"eslint-plugin-svelte3": "^2.7.3",
|
||||||
"husky": "^3.1.0",
|
"husky": "^3.1.0",
|
||||||
|
|
|
@ -4,7 +4,5 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Layout>
|
<Layout>
|
||||||
<div style="position: relative;">
|
|
||||||
<CopyButton {...$$props} />
|
<CopyButton {...$$props} />
|
||||||
</div>
|
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
@ -7,7 +7,7 @@ export const Default = () => ({
|
||||||
Component,
|
Component,
|
||||||
props: {
|
props: {
|
||||||
feedback: text('The text shown upon clicking (feedback)', 'Copied!'),
|
feedback: text('The text shown upon clicking (feedback)', 'Copied!'),
|
||||||
feedbackTimeout: number('How long the text is shown upon clicking (feedbackTimeout)', 3000),
|
feedbackTimeout: number('How long the text is shown upon clicking (feedbackTimeout)', 2000),
|
||||||
iconDescription: text('Feedback icon description (iconDescription)', 'Copy to clipboard')
|
iconDescription: text('Feedback icon description (iconDescription)', 'Copy to clipboard')
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -4,59 +4,52 @@
|
||||||
export let iconDescription = 'Copy to clipboard';
|
export let iconDescription = 'Copy to clipboard';
|
||||||
export let feedback = 'Copied!';
|
export let feedback = 'Copied!';
|
||||||
export let feedbackTimeout = 2000;
|
export let feedbackTimeout = 2000;
|
||||||
export let props = {};
|
|
||||||
|
|
||||||
import { createEventDispatcher, onDestroy } from 'svelte';
|
import { onDestroy } from 'svelte';
|
||||||
import Copy16 from 'carbon-icons-svelte/lib/Copy16';
|
import Copy16 from 'carbon-icons-svelte/lib/Copy16';
|
||||||
import { cx } from '../../lib';
|
import { cx } from '../../lib';
|
||||||
|
|
||||||
const dispatch = createEventDispatcher();
|
|
||||||
let animation = undefined;
|
let animation = undefined;
|
||||||
let timeoutId = undefined;
|
let timeoutId = undefined;
|
||||||
|
|
||||||
onDestroy(() => {
|
onDestroy(() => {
|
||||||
if (timeoutId !== undefined) {
|
if (timeoutId !== undefined) {
|
||||||
clearTimeout(timeoutId);
|
window.clearTimeout(timeoutId);
|
||||||
timeoutId = undefined;
|
timeoutId = undefined;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function handleClick(event) {
|
|
||||||
animation = 'fade-in';
|
|
||||||
|
|
||||||
timeoutId = setTimeout(() => {
|
|
||||||
animation = 'fade-out';
|
|
||||||
}, feedbackTimeout);
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleAnimationEnd(event) {
|
|
||||||
if (event.animationName === 'hide-feedback') {
|
|
||||||
animation = undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$: _class = cx(
|
$: _class = cx(
|
||||||
'--snippet-button', // TODO: deprecated?
|
|
||||||
'--copy-btn',
|
'--copy-btn',
|
||||||
animation && '--copy-btn--animating',
|
animation && '--copy-btn--animating',
|
||||||
animation && `--copy-btn--${animation}`,
|
animation && `--copy-btn--${animation}`,
|
||||||
|
animation === 'fade-in' && '--btn--copy__feedback--displayed',
|
||||||
className
|
className
|
||||||
);
|
);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
{...props}
|
|
||||||
type="button"
|
type="button"
|
||||||
|
tabindex="0"
|
||||||
aria-label={iconDescription}
|
aria-label={iconDescription}
|
||||||
title={iconDescription}
|
title={iconDescription}
|
||||||
class={_class}
|
class={_class}
|
||||||
on:click
|
on:click
|
||||||
on:click={handleClick}
|
on:click={() => {
|
||||||
|
animation = 'fade-in';
|
||||||
|
timeoutId = window.setTimeout(() => {
|
||||||
|
animation = 'fade-out';
|
||||||
|
}, feedbackTimeout);
|
||||||
|
}}
|
||||||
on:mouseover
|
on:mouseover
|
||||||
on:mouseenter
|
on:mouseenter
|
||||||
on:mouseleave
|
on:mouseleave
|
||||||
on:animationend
|
on:animationend
|
||||||
on:animationend={handleAnimationEnd}>
|
on:animationend={({ animationName }) => {
|
||||||
|
if (animationName === 'hide-feedback') {
|
||||||
|
animation = undefined;
|
||||||
|
}
|
||||||
|
}}>
|
||||||
<span class={cx('--assistive-text', '--copy-btn__feedback')}>{feedback}</span>
|
<span class={cx('--assistive-text', '--copy-btn__feedback')}>{feedback}</span>
|
||||||
<Copy16 class={cx('--snippet__icon')} />
|
<Copy16 class={cx('--snippet__icon')} />
|
||||||
</button>
|
</button>
|
||||||
|
|
|
@ -3268,10 +3268,10 @@ capture-exit@^2.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
rsvp "^4.8.4"
|
rsvp "^4.8.4"
|
||||||
|
|
||||||
carbon-components@10.8.0:
|
carbon-components@10.9.0-rc.1:
|
||||||
version "10.8.0"
|
version "10.9.0-rc.1"
|
||||||
resolved "https://registry.npmjs.org/carbon-components/-/carbon-components-10.8.0.tgz#d5332b8360d93c5d12bdcfd34d8a9adc7940f194"
|
resolved "https://registry.npmjs.org/carbon-components/-/carbon-components-10.9.0-rc.1.tgz#d801a12ae1053c078d4f3e33169a71c914ae8408"
|
||||||
integrity sha512-G5/Nf7PdwPLcLazKkqemLBu7OA0e14M1AEObxbWu9/hgkI9D/3eNep8ZOG/X1Jb8Hc5HJUkGU5Mt6JHgWu1UoQ==
|
integrity sha512-JCJqKaEfttHW0Wr12JRdhRMtAg8f8Pn/ryxVQp/FAY1Z4iNNEFFS6ShVavOJMrEE28ojT7QPEhl8ruZ3THHoJg==
|
||||||
dependencies:
|
dependencies:
|
||||||
carbon-icons "^7.0.7"
|
carbon-icons "^7.0.7"
|
||||||
flatpickr "4.6.1"
|
flatpickr "4.6.1"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue