mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
314 lines
9.6 KiB
Svelte
314 lines
9.6 KiB
Svelte
<script lang="ts">
|
|
import type { iSVG } from '@/types/svg';
|
|
|
|
import { ClipboardIcon, CopyIcon, Loader, X } from 'lucide-svelte';
|
|
import { toast } from 'svelte-sonner';
|
|
|
|
import * as Popover from '@/ui/popover';
|
|
import * as Tabs from '@/ui/tabs';
|
|
|
|
// Utils:
|
|
import { getSvgContent } from '@/utils/getSvgContent';
|
|
import { getReactComponentCode } from '@/utils/getReactComponentCode';
|
|
import { clipboard } from '@/utils/clipboard';
|
|
import { copyToClipboard as figmaCopyToClipboard } from '@/figma/copy-to-clipboard';
|
|
import { buttonStyles } from '@/ui/styles';
|
|
import { cn } from '@/utils/cn';
|
|
import { componentTemplate } from '@/utils/componentTemplate';
|
|
import { generateAngularComponent } from '@/utils/generateAngularComponent';
|
|
|
|
//Icons:
|
|
import ReactIcon from './icons/reactIcon.svelte';
|
|
import VueIcon from './icons/vueIcon.svelte';
|
|
import SvelteIcon from './icons/svelteIcon.svelte';
|
|
import AngularIcon from './icons/angularIcon.svelte';
|
|
|
|
// Props:
|
|
export let iconSize = 24;
|
|
export let iconStroke = 2;
|
|
export let isInFigma = false;
|
|
export let isWordmarkSvg = false;
|
|
export let svgInfo: iSVG;
|
|
|
|
// Variables:
|
|
let optionsOpen = false;
|
|
let isLoading = false;
|
|
|
|
const getSvgUrl = () => {
|
|
let svgUrlToCopy;
|
|
const dark = document.documentElement.classList.contains('dark');
|
|
|
|
if (isWordmarkSvg) {
|
|
const svgHasTheme = typeof svgInfo.wordmark !== 'string';
|
|
if (!svgHasTheme) {
|
|
svgUrlToCopy =
|
|
typeof svgInfo.wordmark === 'string'
|
|
? svgInfo.wordmark
|
|
: "Something went wrong. Couldn't copy the SVG.";
|
|
}
|
|
|
|
svgUrlToCopy =
|
|
typeof svgInfo.wordmark !== 'string'
|
|
? dark
|
|
? svgInfo.wordmark?.dark
|
|
: svgInfo.wordmark?.light
|
|
: svgInfo.wordmark;
|
|
} else {
|
|
const svgHasTheme = typeof svgInfo.route !== 'string';
|
|
if (!svgHasTheme) {
|
|
svgUrlToCopy =
|
|
typeof svgInfo.route === 'string'
|
|
? svgInfo.route
|
|
: "Something went wrong. Couldn't copy the SVG.";
|
|
}
|
|
svgUrlToCopy =
|
|
typeof svgInfo.route !== 'string'
|
|
? dark
|
|
? svgInfo.route.dark
|
|
: svgInfo.route.light
|
|
: svgInfo.route;
|
|
}
|
|
|
|
return svgUrlToCopy;
|
|
};
|
|
|
|
// Copy SVG to clipboard:
|
|
const copyToClipboard = async () => {
|
|
const svgUrlToCopy = getSvgUrl();
|
|
optionsOpen = false;
|
|
|
|
const content = await getSvgContent(svgUrlToCopy);
|
|
|
|
if (isInFigma) {
|
|
figmaCopyToClipboard(content);
|
|
}
|
|
|
|
await clipboard(content);
|
|
|
|
const category = Array.isArray(svgInfo.category)
|
|
? svgInfo.category.sort().join(' - ')
|
|
: svgInfo.category;
|
|
|
|
if (isInFigma) {
|
|
toast.success('Ready to paste in Figma', {
|
|
description: `${svgInfo.title} - ${category}`
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (isWordmarkSvg) {
|
|
toast.success('Copied wordmark SVG to clipboard', {
|
|
description: `${svgInfo.title} - ${category}`
|
|
});
|
|
return;
|
|
}
|
|
|
|
toast.success('Copied to clipboard', {
|
|
description: `${svgInfo.title} - ${category}`
|
|
});
|
|
};
|
|
|
|
// Convert SVG as React component:
|
|
const convertSvgReactComponent = async (tsx: boolean) => {
|
|
const svgUrlToCopy = getSvgUrl();
|
|
optionsOpen = false;
|
|
|
|
isLoading = true;
|
|
|
|
const title = svgInfo.title.split(' ').join('');
|
|
const content = await getSvgContent(svgUrlToCopy);
|
|
const dataComponent = { code: content, typescript: tsx, name: title };
|
|
const { data, error } = await getReactComponentCode(dataComponent);
|
|
|
|
if (error || !data) {
|
|
toast.error('Failed to fetch React component', {
|
|
description: `${error ?? ''}`,
|
|
duration: 5000
|
|
});
|
|
isLoading = false;
|
|
return;
|
|
}
|
|
|
|
await clipboard(data);
|
|
|
|
toast.success(`Copied as React ${tsx ? 'TSX' : 'JSX'} component`, {
|
|
description: `${svgInfo.title} - ${svgInfo.category}`
|
|
});
|
|
|
|
isLoading = false;
|
|
};
|
|
|
|
// Copy as either Vue or Svelte component:
|
|
const copySvgComponent = async (ts: boolean, framework: 'Vue' | 'Svelte') => {
|
|
try {
|
|
const svgUrlToCopy = getSvgUrl();
|
|
|
|
optionsOpen = false;
|
|
|
|
const content = await getSvgContent(svgUrlToCopy);
|
|
|
|
const copyCode = componentTemplate(ts ? 'ts' : '', content, framework);
|
|
|
|
if (copyCode) {
|
|
await clipboard(copyCode);
|
|
}
|
|
|
|
const category = Array.isArray(svgInfo?.category)
|
|
? svgInfo.category.sort().join(' - ')
|
|
: svgInfo.category;
|
|
|
|
toast.success(`Copied as ${framework} ${ts ? 'TS' : 'JS'} component`, {
|
|
description: `${svgInfo?.title} - ${category}`
|
|
});
|
|
} catch (err) {
|
|
console.error(`Error copying ${framework} component:`, err);
|
|
toast.error(`Failed to copy ${framework} component`);
|
|
}
|
|
};
|
|
|
|
// Copy SVG as Standalone Angular component:
|
|
const convertSvgAngularComponent = async () => {
|
|
isLoading = true;
|
|
optionsOpen = false;
|
|
|
|
const title = svgInfo.title.split(' ').join('');
|
|
const svgUrlToCopy = getSvgUrl();
|
|
const content = await getSvgContent(svgUrlToCopy);
|
|
|
|
if (!content) {
|
|
toast.error('Failed to fetch the SVG content', {
|
|
duration: 5000
|
|
});
|
|
isLoading = false;
|
|
return;
|
|
}
|
|
|
|
const angularComponent = generateAngularComponent(content, title);
|
|
await clipboard(angularComponent);
|
|
|
|
toast.success(`Copied as Standalone Angular component`, {
|
|
description: `${svgInfo.title} - ${svgInfo.category}`
|
|
});
|
|
|
|
isLoading = false;
|
|
};
|
|
</script>
|
|
|
|
<Popover.Root open={optionsOpen} onOpenChange={(isOpen) => (optionsOpen = isOpen)}>
|
|
<Popover.Trigger
|
|
title="Copy SVG element as svg file, React TSX code, or React JSX code"
|
|
class="flex items-center space-x-2 rounded-md p-2 duration-100 hover:bg-neutral-200 dark:hover:bg-neutral-700/40"
|
|
>
|
|
{#if optionsOpen}
|
|
<X size={iconSize} strokeWidth={iconStroke} />
|
|
{:else if isLoading}
|
|
<Loader size={iconSize} strokeWidth={iconStroke} class="animate-spin" />
|
|
{:else}
|
|
<CopyIcon size={iconSize} strokeWidth={iconStroke} />
|
|
{/if}
|
|
</Popover.Trigger>
|
|
<Popover.Content class="flex flex-col space-y-2 p-3" sideOffset={2}>
|
|
<Tabs.Root value="source" class="w-full">
|
|
<Tabs.List>
|
|
<Tabs.Trigger value="source">Source</Tabs.Trigger>
|
|
<Tabs.Trigger value="react">React</Tabs.Trigger>
|
|
<Tabs.Trigger value="vue">Vue</Tabs.Trigger>
|
|
<Tabs.Trigger value="svelte">Svelte</Tabs.Trigger>
|
|
<Tabs.Trigger value="angular">Angular</Tabs.Trigger>
|
|
</Tabs.List>
|
|
<Tabs.Content value="source">
|
|
<section class="flex flex-col space-y-2">
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title={isWordmarkSvg ? 'Copy wordmark SVG to clipboard' : 'Copy SVG to clipboard'}
|
|
on:click={() => copyToClipboard()}
|
|
>
|
|
<ClipboardIcon size={16} strokeWidth={2} />
|
|
<span>Copy SVG</span>
|
|
</button>
|
|
</section>
|
|
</Tabs.Content>
|
|
<Tabs.Content value="react">
|
|
<section class="flex flex-col space-y-2">
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as React component"
|
|
disabled={isLoading}
|
|
on:click={() => convertSvgReactComponent(true)}
|
|
>
|
|
<ReactIcon iconSize={18} color="#2563eb" />
|
|
<span>Copy TSX</span>
|
|
</button>
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as React component"
|
|
disabled={isLoading}
|
|
on:click={() => convertSvgReactComponent(false)}
|
|
>
|
|
<ReactIcon iconSize={18} color="#60a5fa" />
|
|
<span>Copy JSX</span>
|
|
</button>
|
|
</section>
|
|
</Tabs.Content>
|
|
<Tabs.Content value="svelte">
|
|
<section class="flex flex-col space-y-2">
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as Svelte component"
|
|
disabled={isLoading}
|
|
on:click={() => copySvgComponent(false, 'Svelte')}
|
|
>
|
|
<SvelteIcon iconSize={18} />
|
|
<span>Copy JS</span>
|
|
</button>
|
|
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as Svelte component"
|
|
disabled={isLoading}
|
|
on:click={() => copySvgComponent(true, 'Svelte')}
|
|
>
|
|
<SvelteIcon iconSize={18} />
|
|
<span>Copy TS</span>
|
|
</button>
|
|
</section>
|
|
</Tabs.Content>
|
|
<Tabs.Content value="vue">
|
|
<section class="flex flex-col space-y-2">
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as Vue component"
|
|
disabled={isLoading}
|
|
on:click={() => copySvgComponent(false, 'Vue')}
|
|
>
|
|
<VueIcon iconSize={18} />
|
|
<span>Copy JS</span>
|
|
</button>
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as Vue component"
|
|
disabled={isLoading}
|
|
on:click={() => copySvgComponent(true, 'Vue')}
|
|
>
|
|
<VueIcon iconSize={18} />
|
|
<span>Copy TS</span>
|
|
</button>
|
|
</section>
|
|
</Tabs.Content>
|
|
<Tabs.Content value="angular">
|
|
<section class="flex flex-col space-y-2">
|
|
<button
|
|
class={cn(buttonStyles, 'w-full rounded-md')}
|
|
title="Copy as Standalone Component"
|
|
disabled={isLoading}
|
|
on:click={() => convertSvgAngularComponent()}
|
|
>
|
|
<AngularIcon iconSize={18} />
|
|
<span>Copy Standalone Component</span>
|
|
</button>
|
|
</section>
|
|
</Tabs.Content>
|
|
</Tabs.Root>
|
|
</Popover.Content>
|
|
</Popover.Root>
|