Browse Source

feat: added badge creation on space

pull/6441/head
sreehari jayaraj 1 year ago
parent
commit
41ff11f037
  1. 8
      packages/nc-gui/components/project/InviteProjectCollabSection.vue
  2. 11
      packages/nc-gui/components/workspace/InviteSection.vue

8
packages/nc-gui/components/project/InviteProjectCollabSection.vue

@ -26,7 +26,7 @@ const validateEmail = (email: string): boolean => {
// all user input emails are stored here // all user input emails are stored here
const emailBadges = ref<Array<string>>([]) const emailBadges = ref<Array<string>>([])
watch(inviteData, (newVal) => { watch(inviteData, (newVal) => {
if (newVal.email.includes(',')) { if (newVal.email.includes(' ' || ',')) {
if (inviteData.email.length < 1) { if (inviteData.email.length < 1) {
emailValidation.isError = true emailValidation.isError = true
emailValidation.message = 'email should not be empty' emailValidation.message = 'email should not be empty'
@ -39,11 +39,11 @@ watch(inviteData, (newVal) => {
} }
// if email is already enterd we just ignore the input // if email is already enterd we just ignore the input
// no error is thrown // no error is thrown
if (emailBadges.value.includes(newVal.email.split(',')[0])) { if (emailBadges.value.includes(newVal.email.split(' ' || ',')[0])) {
inviteData.email = '' inviteData.email = ''
return return
} }
const emailToAdd = newVal.email.split(',')[0].trim() const emailToAdd = newVal.email.split(' ' || ',')[0].trim()
emailBadges.value.push(emailToAdd) emailBadges.value.push(emailToAdd)
inviteData.email = '' inviteData.email = ''
} }
@ -159,7 +159,7 @@ onKeyStroke('Backspace', () => {
// when bulk email is pasted // when bulk email is pasted
const onPaste = (e: ClipboardEvent) => { const onPaste = (e: ClipboardEvent) => {
const pastedText = e.clipboardData?.getData('text') const pastedText = e.clipboardData?.getData('text')
const inputArray = pastedText?.split(',') const inputArray = pastedText?.split(' ' || ',')
inputArray?.forEach((el) => { inputArray?.forEach((el) => {
if (el.length < 1) { if (el.length < 1) {
emailValidation.isError = true emailValidation.isError = true

11
packages/nc-gui/components/workspace/InviteSection.vue

@ -32,7 +32,7 @@ const { workspaceRoles } = useRoles()
const emailBadges = ref<Array<string>>([]) const emailBadges = ref<Array<string>>([])
watch(inviteData, (newVal) => { watch(inviteData, (newVal) => {
if (newVal.email.includes(',')) { if (newVal.email.includes(' ' || ',')) {
if (newVal.email.length < 1) { if (newVal.email.length < 1) {
emailValidation.isError = true emailValidation.isError = true
emailValidation.message = 'EMAIL SHOULD NOT BE EMPTY' emailValidation.message = 'EMAIL SHOULD NOT BE EMPTY'
@ -45,13 +45,14 @@ watch(inviteData, (newVal) => {
} }
// if email is already enterd we just ignore the input // if email is already enterd we just ignore the input
// no error is thrown // no error is thrown
if (emailBadges.value.includes(inviteData.email.split(',')[0])) { if (emailBadges.value.includes(inviteData.email.split(' ' || ',')[0])) {
inviteData.email = '' inviteData.email = ''
return return
} }
if (newVal.email.includes(',')) { if (newVal.email.includes(' ' || ',')) {
const emailToAdd = newVal.email.split(',')[0].trim() const emailToAdd = newVal.email.split(' ' || ',')[0].trim()
console.log(emailToAdd)
emailBadges.value.push(emailToAdd) emailBadges.value.push(emailToAdd)
inviteData.email = '' inviteData.email = ''
} }
@ -128,7 +129,7 @@ onKeyStroke('Backspace', () => {
// when bulk email is pasted // when bulk email is pasted
const onPaste = (e: ClipboardEvent) => { const onPaste = (e: ClipboardEvent) => {
const pastedText = e.clipboardData?.getData('text') const pastedText = e.clipboardData?.getData('text')
const inputArray = pastedText?.split(',') const inputArray = pastedText?.split(' ' || ',')
inputArray?.forEach((el) => { inputArray?.forEach((el) => {
if (el.length < 1) { if (el.length < 1) {
emailValidation.isError = true emailValidation.isError = true

Loading…
Cancel
Save