refactor(dry): mutualised duplicated code with withDefaultOnError

This commit is contained in:
Corentin Thomasset 2022-08-04 22:57:24 +02:00
parent 208a373fd0
commit f6cd9b76d3
No known key found for this signature in database
GPG key ID: DBD997E935996158
4 changed files with 10 additions and 35 deletions

View file

@ -30,16 +30,12 @@
import { computed, ref } from 'vue';
import { SubdirectoryArrowRightRound } from '@vicons/material';
import { useValidation } from '@/composable/validation';
import { withDefaultOnError } from '@/utils/defaults';
import InputCopyable from '../../components/InputCopyable.vue';
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 urlParsed = computed(() => withDefaultOnError(() => new URL(urlToParse.value), undefined));
const validation = useValidation({
source: urlToParse,
rules: [