mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-04 11:16:43 +00:00
19 lines
550 B
Svelte
19 lines
550 B
Svelte
<script lang="ts">
|
|
import Icon from "@iconify/svelte"
|
|
import { clipboard, dialog, notification, toast } from "@kksh/api/ui/custom"
|
|
import { Button } from "@kksh/svelte"
|
|
import { targetDir } from "$lib/store"
|
|
|
|
async function chooseDirectory() {
|
|
const result = await dialog.open({
|
|
directory: true
|
|
})
|
|
if (!result) return toast.warning("No directory selected")
|
|
targetDir.set(result)
|
|
}
|
|
</script>
|
|
|
|
<Button variant="outline" size="icon" on:click={chooseDirectory}>
|
|
<Icon icon="material-symbols:folder-outline" class="h-4 w-4" />
|
|
</Button>
|