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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
<template>
<n-card>
<n-form-item
label="Your url to parse:"
:feedback="validation.message"
:validation-status="validation.status"
>
<n-input
v-model:value="urlToParse"
placeholder="Your url to parse..."
/>
</n-form-item>
<n-divider style="margin-top: 0;" />
<n-form>
<n-input-group
v-for="{title, key} in properties"
:key="key"
>
<n-input-group-label
style="flex: 0 0 120px;"
>
{{ title }}:
</n-input-group-label>
<input-copyable
:value="(urlParsed?.[key] as string) ?? ''"
readonly
placeholder=" "
/>
</n-input-group>
<n-input-group
v-for="[k, v] in Object.entries(Object.fromEntries(urlParsed?.searchParams.entries() ?? []))"
:key="k"
>
<n-input-group-label
style="flex: 0 0 120px;"
>
<n-icon :component="SubdirectoryArrowRightRound" />
</n-input-group-label>
<input-copyable
:value="k"
readonly
/>
<input-copyable
:value="v"
readonly
/>
</n-input-group>
</n-form>
</n-card>
</template>
<script setup lang="ts">
import { computed, ref } from 'vue';
import { SubdirectoryArrowRightRound } from '@vicons/material';
import InputCopyable from '../../components/InputCopyable.vue';
import { useValidation } from '@/composable/validation';
const urlToParse = ref('https://me:pwd@it-tools.tech:3000/url-parser?key1=value&key2=value2#the-hash')
const urlParsed = computed<URL | undefined>(() => {
try {
return new URL(urlToParse.value)
} catch (_) {
return undefined
}
})
const validation = useValidation({source: urlToParse, rules: [
{validator: (value) => {
try {
new URL(value)
return true;
} catch (_) {
return false
}
}, message: 'Invalid url'}
]})
const properties: {title: string, key: keyof URL}[] = [
{title: 'Protocol', key: 'protocol'},
{title: 'Username', key: 'username'},
{title: 'Password', key: 'password'},
{title: 'Hostname', key: 'hostname'},
{title: 'Port', key: 'port'},
{title: 'Path', key: 'pathname'},
{title: 'Params', key: 'search'},
]
</script>
<style lang="less" scoped>
.n-input-group-label {
text-align: right;
}
.n-input-group {
margin: 2px 0;
}
</style>
|