aboutsummaryrefslogtreecommitdiff
path: root/src/tools/token-generator/token-generator.tool.vue
blob: 79f3065296f863a3027e356229ee412a7af9aa41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<template>
  <div>
    <c-card>
      <n-form label-placement="left" label-width="140">
        <n-space justify="center" item-style="padding: 0" :size="0">
          <div>
            <n-form-item label="Uppercase (ABC...)">
              <n-switch v-model:value="withUppercase" />
            </n-form-item>

            <n-form-item label="Lowercase (abc...)">
              <n-switch v-model:value="withLowercase" />
            </n-form-item>
          </div>

          <div>
            <n-form-item label="Numbers (012...)">
              <n-switch v-model:value="withNumbers" />
            </n-form-item>

            <n-form-item label="Symbols (;-!...)">
              <n-switch v-model:value="withSymbols" />
            </n-form-item>
          </div>
        </n-space>
      </n-form>

      <n-form-item :label="`Length (${length})`" label-placement="left">
        <n-slider v-model:value="length" :step="1" :min="1" :max="512" />
      </n-form-item>

      <n-input
        v-model:value="token"
        style="text-align: center"
        type="textarea"
        placeholder="The token..."
        :autosize="{ minRows: 1 }"
        readonly
        autocomplete="off"
        autocorrect="off"
        autocapitalize="off"
        spellcheck="false"
      />

      <n-space justify="center" mt-5>
        <c-button @click="copy"> Copy </c-button>
        <c-button @click="refreshToken"> Refresh </c-button>
      </n-space>
    </c-card>
  </div>
</template>

<script setup lang="ts">
import { useCopy } from '@/composable/copy';
import { useQueryParam } from '@/composable/queryParams';
import { computedRefreshable } from '@/composable/computedRefreshable';
import { createToken } from './token-generator.service';

const length = useQueryParam({ name: 'length', defaultValue: 64 });
const withUppercase = useQueryParam({ name: 'uppercase', defaultValue: true });
const withLowercase = useQueryParam({ name: 'lowercase', defaultValue: true });
const withNumbers = useQueryParam({ name: 'numbers', defaultValue: true });
const withSymbols = useQueryParam({ name: 'symbols', defaultValue: false });

const [token, refreshToken] = computedRefreshable(() =>
  createToken({
    length: length.value,
    withUppercase: withUppercase.value,
    withLowercase: withLowercase.value,
    withNumbers: withNumbers.value,
    withSymbols: withSymbols.value,
  }),
);

const { copy } = useCopy({ source: token, text: 'Token copied to the clipboard' });
</script>