Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Sep 26, 2023
1 parent b3da1cb commit e54b914
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/lib/components/colors/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
$: targetSpace = getSpaceFromFormatId(format);
$: display = serialize($color, { inGamut: false, format });
$: displayType = type === 'bg' ? 'Background' : 'Foreground';
$: editing = false;
$: inputValue = '';
let editing = false;
let inputValue = '';
let hasError = false;
// When not editing, sync input value with color (e.g. when sliders change)
Expand Down
5 changes: 3 additions & 2 deletions src/lib/components/util/CopyButton.svelte
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
<script lang="ts">
import Icon from '$lib/components/util/Icon.svelte';
export let text: string;
export let size: string | null = null;
let justCopied = false;
let timeout: ReturnType<typeof setTimeout>;
function copyOutput() {
const copyOutput = () => {
justCopied = true;
void navigator.clipboard.writeText(text);
clearTimeout(timeout);
timeout = setTimeout(() => {
justCopied = false;
}, 1000);
}
};
</script>

<button on:click={copyOutput} type="button" data-btn="icon">
Expand Down
10 changes: 10 additions & 0 deletions test/js/lib/components/CopyButton.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,29 @@ describe('Copy Button', () => {
beforeEach(() => {
vi.useFakeTimers();
});

afterEach(() => {
vi.restoreAllMocks();
});

it('renders a button', () => {
const { getByRole } = render(CopyButton, {
props: { text: 'Copy' },
});
const button = getByRole('button');

expect(button.firstChild).toHaveAttribute('data-icon', 'clipboard');
});

it('copies content', async () => {
const spy = vi.spyOn(navigator.clipboard, 'writeText');
const { getByRole } = render(CopyButton, {
props: { text: 'Copy' },
});
const button = getByRole('button');

expect(button.firstChild).toHaveAttribute('data-icon', 'clipboard');

await fireEvent.click(button);

expect(spy).toHaveBeenCalledWith('Copy');
Expand All @@ -33,9 +39,13 @@ describe('Copy Button', () => {
props: { text: 'Copy' },
});
const button = getByRole('button');

expect(button.firstChild).toHaveAttribute('data-icon', 'clipboard');

await fireEvent.click(button);

expect(button.firstChild).toHaveAttribute('data-icon', 'copy');

vi.runAllTimers();
await waitFor(() => {
expect(button.firstChild).toHaveAttribute('data-icon', 'clipboard');
Expand Down

0 comments on commit e54b914

Please sign in to comment.