mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
* chore: update ignore rules, remove unused files * refactor(icons): use icons from carbon-icons-svelte@11 * docs(time-picker): fix default value * chore: upgrade carbon-icons-svelte to v11 * docs: update examples to use icons from carbon-icons-svelte@11 * docs: update number of icons [ci skip]
253 lines
6.8 KiB
Svelte
253 lines
6.8 KiB
Svelte
<script>
|
|
/**
|
|
* Set the type of code snippet
|
|
* @type {"single" | "inline" | "multi"}
|
|
*/
|
|
export let type = "single";
|
|
|
|
/**
|
|
* Set the code snippet text
|
|
* Alternatively, use the default slot (e.g., <CodeSnippet>{`code`}</CodeSnippet>)
|
|
* You must use the `code` prop to copy the code
|
|
* @type {string}
|
|
*/
|
|
export let code = undefined;
|
|
|
|
/**
|
|
* Override the default copy behavior of using the navigator.clipboard.writeText API to copy text
|
|
* @type {(code: string) => void}
|
|
*/
|
|
export let copy = async (code) => {
|
|
try {
|
|
await navigator.clipboard.writeText(code);
|
|
} catch (e) {
|
|
console.log(e);
|
|
}
|
|
};
|
|
|
|
/** Set to `true` to expand a multi-line code snippet (type="multi") */
|
|
export let expanded = false;
|
|
|
|
/** Set to `true` to hide the copy button */
|
|
export let hideCopyButton = false;
|
|
|
|
/**
|
|
* Set to `true` for the disabled variant
|
|
* Only applies to the "single", "multi" types
|
|
*/
|
|
export let disabled = false;
|
|
|
|
/**
|
|
* Set to `true` to wrap the text
|
|
* Note that `type` must be "multi"
|
|
*/
|
|
export let wrapText = false;
|
|
|
|
/** Set to `true` to enable the light variant */
|
|
export let light = false;
|
|
|
|
/** Set to `true` to display the skeleton state */
|
|
export let skeleton = false;
|
|
|
|
/**
|
|
* Specify the ARIA label for the copy button icon
|
|
* @type {string}
|
|
*/
|
|
export let copyButtonDescription = undefined;
|
|
|
|
/**
|
|
* Specify the ARIA label of the copy button
|
|
* @type {string}
|
|
*/
|
|
export let copyLabel = undefined;
|
|
|
|
/** Specify the feedback text displayed when clicking the snippet */
|
|
export let feedback = "Copied!";
|
|
|
|
/** Set the timeout duration (ms) to display feedback text */
|
|
export let feedbackTimeout = 2000;
|
|
|
|
/**
|
|
* Specify the show less text
|
|
* `type` must be "multi"
|
|
*/
|
|
export let showLessText = "Show less";
|
|
|
|
/**
|
|
* Specify the show more text
|
|
* `type` must be "multi"
|
|
*/
|
|
export let showMoreText = "Show more";
|
|
|
|
/** Set to `true` to enable the show more/less button */
|
|
export let showMoreLess = false;
|
|
|
|
/** Set an id for the code element */
|
|
export let id = "ccs-" + Math.random().toString(36);
|
|
|
|
/** Obtain a reference to the pre HTML element */
|
|
export let ref = null;
|
|
|
|
import { createEventDispatcher, tick, onMount } from "svelte";
|
|
import ChevronDown from "../icons/ChevronDown.svelte";
|
|
import Button from "../Button/Button.svelte";
|
|
import CopyButton from "../CopyButton/CopyButton.svelte";
|
|
import CodeSnippetSkeleton from "./CodeSnippetSkeleton.svelte";
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
/** @type {"fade-in" | "fade-out"} */
|
|
let animation = undefined;
|
|
let timeout = undefined;
|
|
|
|
function setShowMoreLess() {
|
|
const { height } = ref.getBoundingClientRect();
|
|
if (height > 0) showMoreLess = ref.getBoundingClientRect().height > 255;
|
|
}
|
|
|
|
function copyCode() {
|
|
copy(code);
|
|
dispatch("copy");
|
|
}
|
|
|
|
$: expandText = expanded ? showLessText : showMoreText;
|
|
$: minHeight = expanded ? 16 * 15 : 48;
|
|
$: maxHeight = expanded ? "none" : 16 * 15 + "px";
|
|
$: if (type === "multi" && ref) {
|
|
if (code === undefined) setShowMoreLess();
|
|
if (code) tick().then(setShowMoreLess);
|
|
}
|
|
|
|
onMount(() => {
|
|
return () => clearTimeout(timeout);
|
|
});
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
|
{#if skeleton}
|
|
<CodeSnippetSkeleton
|
|
type="{type}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
/>
|
|
{:else if type === "inline"}
|
|
{#if hideCopyButton}
|
|
<span
|
|
class:bx--snippet="{true}"
|
|
class:bx--snippet--expand="{expanded}"
|
|
class:bx--snippet--light="{light}"
|
|
class:bx--snippet--no-copy="{hideCopyButton}"
|
|
class:bx--snippet--wraptext="{wrapText}"
|
|
class:bx--snippet--single="{type === 'single'}"
|
|
class:bx--snippet--inline="{type === 'inline'}"
|
|
class:bx--snippet--multi="{type === 'multi'}"
|
|
{...$$restProps}
|
|
>
|
|
<code id="{id}">
|
|
<slot>{code}</slot>
|
|
</code>
|
|
</span>
|
|
{:else}
|
|
<button
|
|
type="button"
|
|
aria-live="polite"
|
|
class:bx--copy="{true}"
|
|
class:bx--btn--copy="{true}"
|
|
class:bx--copy-btn--animating="{animation}"
|
|
class:bx--copy-btn--fade-in="{animation === 'fade-in'}"
|
|
class:bx--copy-btn--fade-out="{animation === 'fade-out'}"
|
|
class:bx--snippet="{true}"
|
|
class:bx--snippet--inline="{type === 'inline'}"
|
|
class:bx--snippet--expand="{expanded}"
|
|
class:bx--snippet--light="{light}"
|
|
class:bx--snippet--wraptext="{wrapText}"
|
|
aria-label="{copyLabel}"
|
|
{...$$restProps}
|
|
on:click
|
|
on:click="{() => {
|
|
copyCode();
|
|
if (animation === 'fade-in') return;
|
|
animation = 'fade-in';
|
|
timeout = setTimeout(() => {
|
|
animation = 'fade-out';
|
|
}, feedbackTimeout);
|
|
}}"
|
|
on:animationend="{({ animationName }) => {
|
|
if (animationName === 'hide-feedback') {
|
|
animation = undefined;
|
|
}
|
|
}}"
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<code id="{id}">
|
|
<slot>{code}</slot>
|
|
</code>
|
|
<span
|
|
aria-hidden="true"
|
|
class:bx--assistive-text="{true}"
|
|
class:bx--copy-btn__feedback="{true}"
|
|
>
|
|
{feedback}
|
|
</span>
|
|
</button>
|
|
{/if}
|
|
{:else}
|
|
<div
|
|
class:bx--snippet="{true}"
|
|
class:bx--snippet--expand="{expanded}"
|
|
class:bx--snippet--light="{light}"
|
|
class:bx--snippet--no-copy="{hideCopyButton}"
|
|
class:bx--snippet--wraptext="{wrapText}"
|
|
class:bx--snippet--single="{type === 'single'}"
|
|
class:bx--snippet--inline="{type === 'inline'}"
|
|
class:bx--snippet--multi="{type === 'multi'}"
|
|
class:bx--snippet--disabled="{type !== 'inline' && disabled}"
|
|
{...$$restProps}
|
|
on:mouseover
|
|
on:mouseenter
|
|
on:mouseleave
|
|
>
|
|
<div
|
|
role="{type === 'single' ? 'textbox' : undefined}"
|
|
tabindex="{type === 'single' && !disabled ? '0' : undefined}"
|
|
aria-label="{$$restProps['aria-label'] || copyLabel || 'code-snippet'}"
|
|
class:bx--snippet-container="{true}"
|
|
style="width: 100%; min-height: {minHeight}px; max-height: {maxHeight}"
|
|
>
|
|
<pre bind:this="{ref}"><code><slot>{code}</slot></code></pre>
|
|
</div>
|
|
{#if !hideCopyButton}
|
|
<CopyButton
|
|
disabled="{disabled}"
|
|
feedback="{feedback}"
|
|
feedbackTimeout="{feedbackTimeout}"
|
|
iconDescription="{copyButtonDescription}"
|
|
on:click
|
|
on:click="{copyCode}"
|
|
on:animationend
|
|
/>
|
|
{/if}
|
|
{#if showMoreLess}
|
|
<Button
|
|
kind="ghost"
|
|
size="field"
|
|
class="bx--snippet-btn--expand"
|
|
disabled="{disabled}"
|
|
on:click="{() => {
|
|
expanded = !expanded;
|
|
}}"
|
|
>
|
|
<span class:bx--snippet-btn--text="{true}">{expandText}</span>
|
|
<ChevronDown
|
|
class="bx--icon-chevron--down bx--snippet__icon"
|
|
aria-label="{expandText}"
|
|
/>
|
|
</Button>
|
|
{/if}
|
|
</div>
|
|
{/if}
|