mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 17:26:15 -04:00
feat(tool): uuid v4 generator
This commit is contained in:
parent
40e9af06cf
commit
3ae61147a9
5 changed files with 83 additions and 4 deletions
12
src/tools/uuid-generator/index.ts
Normal file
12
src/tools/uuid-generator/index.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { Fingerprint } from '@vicons/tabler';
|
||||
import type { ITool } from '../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'UUIDs v4 generator',
|
||||
path: '/uuid-generator',
|
||||
description:
|
||||
'A universally unique identifier (UUID) is a 128-bit number used to identify information in computer systems. The number of possible UUIDs is 16^32, which is 2^128 or about 3.4x10^38 (which is a lot !).',
|
||||
keywords: ['uuid', 'v4', 'random', 'id', 'alphanumeric', 'identity', 'token', 'string', 'identifier', 'unique'],
|
||||
component: () => import('./uuid-generator.vue'),
|
||||
icon: Fingerprint,
|
||||
};
|
52
src/tools/uuid-generator/uuid-generator.vue
Normal file
52
src/tools/uuid-generator/uuid-generator.vue
Normal file
|
@ -0,0 +1,52 @@
|
|||
<template>
|
||||
<div>
|
||||
<n-card>
|
||||
<n-space align="center" justify="center">
|
||||
Quantity :
|
||||
<n-input-number v-model:value="count" :min="1" :max="50" />
|
||||
</n-space>
|
||||
<br />
|
||||
<n-input
|
||||
style="text-align: center; font-family: monospace;"
|
||||
:value="uuids"
|
||||
type="textarea"
|
||||
placeholder="Your uuids"
|
||||
:autosize="{ minRows: 1 }"
|
||||
readonly
|
||||
autocomplete="off"
|
||||
autocorrect="off"
|
||||
autocapitalize="off"
|
||||
spellcheck="false"
|
||||
/>
|
||||
<br />
|
||||
<br />
|
||||
<n-space justify="center">
|
||||
<n-button @click="copy" secondary autofocus>Copy</n-button>
|
||||
<n-button @click="refreshUUIDs" secondary>Refresh</n-button>
|
||||
</n-space>
|
||||
</n-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useCopy } from '@/composable/copy';
|
||||
import { ref, watch } from 'vue'
|
||||
import { v4 as generateUUID } from 'uuid';
|
||||
|
||||
const count = ref(1)
|
||||
|
||||
const uuids = ref('')
|
||||
|
||||
function refreshUUIDs() {
|
||||
uuids.value = Array.from({ length: count.value }, () => generateUUID()).join('\n')
|
||||
}
|
||||
|
||||
watch([count], refreshUUIDs)
|
||||
|
||||
const { copy } = useCopy({ source: uuids, text: 'UUIDs copied to the clipboard' })
|
||||
|
||||
refreshUUIDs()
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue