it-tools/src/tools/uuid-generator/uuid-generator.vue

54 lines
1.2 KiB
Vue
Raw Normal View History

<script setup lang="ts">
import { v4 as generateUUID } from 'uuid';
import { useCopy } from '@/composable/copy';
import { computedRefreshable } from '@/composable/computedRefreshable';
const count = useStorage('uuid-generator:quantity', 1);
const [uuids, refreshUUIDs] = computedRefreshable(() =>
Array.from({ length: count.value }, () => generateUUID()).join('\n'),
);
const { copy } = useCopy({ source: uuids, text: 'UUIDs copied to the clipboard' });
</script>
2022-04-04 21:46:35 +02:00
<template>
2023-05-27 17:36:15 +02:00
<div>
<div flex items-center justify-center gap-3>
Quantity :
<n-input-number v-model:value="count" :min="1" :max="50" placeholder="UUID quantity" />
2023-05-27 17:36:15 +02:00
</div>
<c-input-text
style="text-align: center; font-family: monospace"
:value="uuids"
multiline
placeholder="Your uuids"
autosize
rows="1"
readonly
raw-text
monospace
2023-05-27 17:36:15 +02:00
my-3
class="uuid-display"
/>
2023-05-27 17:36:15 +02:00
<div flex justify-center gap-3>
<c-button autofocus @click="copy">
Copy
</c-button>
<c-button @click="refreshUUIDs">
Refresh
</c-button>
2023-05-27 17:36:15 +02:00
</div>
</div>
2022-04-04 21:46:35 +02:00
</template>
<style scoped lang="less">
::v-deep(.uuid-display) {
textarea {
text-align: center;
}
}
</style>