-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(new-tool): add email normalizer (#1243)
- Loading branch information
1 parent
f1a5489
commit 318fb6e
Showing
6 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<script setup lang="ts"> | ||
import { normalizeEmail } from 'email-normalizer'; | ||
import { withDefaultOnError } from '@/utils/defaults'; | ||
import { useCopy } from '@/composable/copy'; | ||
const emails = ref(''); | ||
const normalizedEmails = computed(() => { | ||
if (!emails.value) { | ||
return ''; | ||
} | ||
return emails.value | ||
.split('\n') | ||
.map((email) => { | ||
return withDefaultOnError(() => normalizeEmail({ email }), `Unable to parse email: ${email}`); | ||
}) | ||
.join('\n'); | ||
}); | ||
const { copy } = useCopy({ source: normalizedEmails, text: 'Normalized emails copied to the clipboard', createToast: true }); | ||
</script> | ||
|
||
<template> | ||
<div> | ||
<div class="mb-2"> | ||
Raw emails to normalize: | ||
</div> | ||
<c-input-text | ||
v-model:value="emails" | ||
placeholder="Put your emails here (one per line)..." | ||
rows="3" | ||
multiline | ||
autocomplete="off" | ||
autocorrect="off" | ||
autocapitalize="off" | ||
spellcheck="false" | ||
autofocus | ||
monospace | ||
/> | ||
|
||
<div class="mb-2 mt-4"> | ||
Normalized emails: | ||
</div> | ||
<c-input-text | ||
:value="normalizedEmails" | ||
placeholder="Normalized emails will appear here..." | ||
rows="3" | ||
autocomplete="off" | ||
autocorrect="off" | ||
autocapitalize="off" | ||
spellcheck="false" | ||
multiline | ||
readonly | ||
monospace | ||
/> | ||
<div class="mt-4 flex justify-center gap-2"> | ||
<c-button @click="emails = ''"> | ||
Clear emails | ||
</c-button> | ||
<c-button :disabled="!normalizedEmails" @click="copy()"> | ||
Copy normalized emails | ||
</c-button> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Mail } from '@vicons/tabler'; | ||
import { defineTool } from '../tool'; | ||
|
||
export const tool = defineTool({ | ||
name: 'Email normalizer', | ||
path: '/email-normalizer', | ||
description: 'Normalize email addresses to a standard format for easier comparison. Useful for deduplication and data cleaning.', | ||
keywords: ['email', 'normalizer'], | ||
component: () => import('./email-normalizer.vue'), | ||
icon: Mail, | ||
createdAt: new Date('2024-08-15'), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters