This commit is contained in:
sharevb 2025-04-13 04:10:47 +02:00 committed by GitHub
commit c77b6e850f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,17 +2,35 @@
import slugify from '@sindresorhus/slugify'; import slugify from '@sindresorhus/slugify';
import { withDefaultOnError } from '@/utils/defaults'; import { withDefaultOnError } from '@/utils/defaults';
import { useCopy } from '@/composable/copy'; import { useCopy } from '@/composable/copy';
import { useQueryParamOrStorage } from '@/composable/queryParams';
const input = ref(''); const input = ref('');
const slug = computed(() => withDefaultOnError(() => slugify(input.value), '')); const separator = useQueryParamOrStorage({ name: 'sep', storageName: 'slugify:sep', defaultValue: '-' });
const slug = computed(() => withDefaultOnError(() => slugify(input.value, {
separator: separator.value,
}), ''));
const { copy } = useCopy({ source: slug, text: 'Slug copied to clipboard' }); const { copy } = useCopy({ source: slug, text: 'Slug copied to clipboard' });
</script> </script>
<template> <template>
<div> <div>
<c-input-text v-model:value="input" multiline placeholder="Put your string here (ex: My file path)" label="Your string to slugify" autofocus raw-text mb-5 /> <c-input-text
v-model:value="input" multiline
placeholder="Put your string here (ex: My file path)"
label="Your string to slugify" autofocus raw-text mb-2
/>
<c-input-text :value="slug" multiline readonly placeholder="You slug will be generated here (ex: my-file-path)" label="Your slug" mb-5 /> <c-input-text
v-model:value="separator"
placeholder="Put separator char here"
label="Separator character" raw-text mb-5
/>
<c-input-text
:value="slug" multiline readonly
placeholder="You slug will be generated here (ex: my-file-path)"
label="Your slug" mb-5
/>
<div flex justify-center> <div flex justify-center>
<c-button :disabled="slug.length === 0" @click="copy()"> <c-button :disabled="slug.length === 0" @click="copy()">