2023-05-28 23:13:24 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { useCopy } from '@/composable/copy';
|
|
|
|
import { useValidation } from '@/composable/validation';
|
|
|
|
import { isNotThrowing } from '@/utils/boolean';
|
|
|
|
import { withDefaultOnError } from '@/utils/defaults';
|
|
|
|
|
|
|
|
const encodeInput = ref('Hello world :)');
|
|
|
|
const encodeOutput = computed(() => withDefaultOnError(() => encodeURIComponent(encodeInput.value), ''));
|
|
|
|
|
|
|
|
const encodedValidation = useValidation({
|
|
|
|
source: encodeInput,
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
validator: value => isNotThrowing(() => encodeURIComponent(value)),
|
|
|
|
message: 'Impossible to parse this string',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
const { copy: copyEncoded } = useCopy({ source: encodeOutput, text: 'Encoded string copied to the clipboard' });
|
|
|
|
|
|
|
|
const decodeInput = ref('Hello%20world%20%3A)');
|
|
|
|
const decodeOutput = computed(() => withDefaultOnError(() => decodeURIComponent(decodeInput.value), ''));
|
|
|
|
|
|
|
|
const decodeValidation = useValidation({
|
2024-04-29 11:58:08 +02:00
|
|
|
source: decodeInput,
|
2023-05-28 23:13:24 +02:00
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
validator: value => isNotThrowing(() => decodeURIComponent(value)),
|
|
|
|
message: 'Impossible to parse this string',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
|
|
|
|
|
|
|
const { copy: copyDecoded } = useCopy({ source: decodeOutput, text: 'Decoded string copied to the clipboard' });
|
|
|
|
</script>
|
|
|
|
|
2022-04-13 13:29:44 +02:00
|
|
|
<template>
|
2023-04-20 20:49:28 +02:00
|
|
|
<c-card title="Encode">
|
2023-06-25 15:00:50 +02:00
|
|
|
<c-input-text
|
|
|
|
v-model:value="encodeInput"
|
2022-04-24 23:09:12 +02:00
|
|
|
label="Your string :"
|
2023-06-25 15:00:50 +02:00
|
|
|
:validation="encodedValidation"
|
|
|
|
multiline
|
|
|
|
autosize
|
|
|
|
placeholder="The string to encode"
|
|
|
|
rows="2"
|
|
|
|
mb-3
|
|
|
|
/>
|
2022-04-13 13:29:44 +02:00
|
|
|
|
2023-06-25 15:00:50 +02:00
|
|
|
<c-input-text
|
|
|
|
label="Your string encoded :"
|
|
|
|
:value="encodeOutput"
|
|
|
|
multiline
|
|
|
|
autosize
|
|
|
|
readonly
|
|
|
|
placeholder="Your string encoded"
|
|
|
|
rows="2"
|
|
|
|
mb-3
|
|
|
|
/>
|
2022-04-13 13:29:44 +02:00
|
|
|
|
2023-05-27 17:36:15 +02:00
|
|
|
<div flex justify-center>
|
2023-08-10 00:07:44 +02:00
|
|
|
<c-button @click="copyEncoded()">
|
2023-05-28 23:13:24 +02:00
|
|
|
Copy
|
|
|
|
</c-button>
|
2023-05-27 17:36:15 +02:00
|
|
|
</div>
|
2023-04-20 20:49:28 +02:00
|
|
|
</c-card>
|
|
|
|
<c-card title="Decode">
|
2023-06-25 15:00:50 +02:00
|
|
|
<c-input-text
|
|
|
|
v-model:value="decodeInput"
|
2022-04-24 23:09:12 +02:00
|
|
|
label="Your encoded string :"
|
2023-06-25 15:00:50 +02:00
|
|
|
:validation="decodeValidation"
|
|
|
|
multiline
|
|
|
|
autosize
|
|
|
|
placeholder="The string to decode"
|
|
|
|
rows="2"
|
|
|
|
mb-3
|
|
|
|
/>
|
2022-04-13 13:29:44 +02:00
|
|
|
|
2023-06-25 15:00:50 +02:00
|
|
|
<c-input-text
|
|
|
|
label="Your string decoded :"
|
|
|
|
:value="decodeOutput"
|
|
|
|
multiline
|
|
|
|
autosize
|
|
|
|
readonly
|
|
|
|
placeholder="Your string decoded"
|
|
|
|
rows="2"
|
|
|
|
mb-3
|
|
|
|
/>
|
2022-04-13 13:29:44 +02:00
|
|
|
|
2023-05-27 17:36:15 +02:00
|
|
|
<div flex justify-center>
|
2023-08-10 00:07:44 +02:00
|
|
|
<c-button @click="copyDecoded()">
|
2023-05-28 23:13:24 +02:00
|
|
|
Copy
|
|
|
|
</c-button>
|
2023-05-27 17:36:15 +02:00
|
|
|
</div>
|
2023-04-20 20:49:28 +02:00
|
|
|
</c-card>
|
2022-04-13 13:29:44 +02:00
|
|
|
</template>
|