|
@@ -1,35 +1,57 @@
|
|
|
'use client'
|
|
|
-import { useState } from 'react'
|
|
|
+import { Fragment, useCallback, useMemo, useState } from 'react'
|
|
|
import { useContext } from 'use-context-selector'
|
|
|
import { XMarkIcon } from '@heroicons/react/24/outline'
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
+import { ReactMultiEmail } from 'react-multi-email'
|
|
|
+import { Listbox, Transition } from '@headlessui/react'
|
|
|
+import { CheckIcon } from '@heroicons/react/20/solid'
|
|
|
+import cn from 'classnames'
|
|
|
import s from './index.module.css'
|
|
|
import Modal from '@/app/components/base/modal'
|
|
|
import Button from '@/app/components/base/button'
|
|
|
import { inviteMember } from '@/service/common'
|
|
|
import { emailRegex } from '@/config'
|
|
|
import { ToastContext } from '@/app/components/base/toast'
|
|
|
+import type { InvitationResult } from '@/models/common'
|
|
|
|
|
|
+import 'react-multi-email/dist/style.css'
|
|
|
type IInviteModalProps = {
|
|
|
onCancel: () => void
|
|
|
- onSend: (url: string) => void
|
|
|
+ onSend: (invitationResults: InvitationResult[]) => void
|
|
|
}
|
|
|
+
|
|
|
const InviteModal = ({
|
|
|
onCancel,
|
|
|
onSend,
|
|
|
}: IInviteModalProps) => {
|
|
|
const { t } = useTranslation()
|
|
|
- const [email, setEmail] = useState('')
|
|
|
+ const [emails, setEmails] = useState<string[]>([])
|
|
|
const { notify } = useContext(ToastContext)
|
|
|
|
|
|
- const handleSend = async () => {
|
|
|
- if (emailRegex.test(email)) {
|
|
|
+ const InvitingRoles = useMemo(() => [
|
|
|
+ {
|
|
|
+ name: 'normal',
|
|
|
+ description: t('common.members.normalTip'),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: 'admin',
|
|
|
+ description: t('common.members.adminTip'),
|
|
|
+ },
|
|
|
+ ], [t])
|
|
|
+ const [role, setRole] = useState(InvitingRoles[0])
|
|
|
+
|
|
|
+ const handleSend = useCallback(async () => {
|
|
|
+ if (emails.map(email => emailRegex.test(email)).every(Boolean)) {
|
|
|
try {
|
|
|
- const res = await inviteMember({ url: '/workspaces/current/members/invite-email', body: { email, role: 'admin' } })
|
|
|
+ const { result, invitation_results } = await inviteMember({
|
|
|
+ url: '/workspaces/current/members/invite-email',
|
|
|
+ body: { emails, role: role.name },
|
|
|
+ })
|
|
|
|
|
|
- if (res.result === 'success') {
|
|
|
+ if (result === 'success') {
|
|
|
onCancel()
|
|
|
- onSend(res.invite_url)
|
|
|
+ onSend(invitation_results)
|
|
|
}
|
|
|
}
|
|
|
catch (e) {}
|
|
@@ -37,11 +59,11 @@ const InviteModal = ({
|
|
|
else {
|
|
|
notify({ type: 'error', message: t('common.members.emailInvalid') })
|
|
|
}
|
|
|
- }
|
|
|
+ }, [role, emails, notify, onCancel, onSend, t])
|
|
|
|
|
|
return (
|
|
|
<div className={s.wrap}>
|
|
|
- <Modal isShow onClose={() => {}} className={s.modal}>
|
|
|
+ <Modal overflowVisible isShow onClose={() => {}} className={s.modal}>
|
|
|
<div className='flex justify-between mb-2'>
|
|
|
<div className='text-xl font-semibold text-gray-900'>{t('common.members.inviteTeamMember')}</div>
|
|
|
<XMarkIcon className='w-4 h-4 cursor-pointer' onClick={onCancel} />
|
|
@@ -49,18 +71,79 @@ const InviteModal = ({
|
|
|
<div className='mb-7 text-[13px] text-gray-500'>{t('common.members.inviteTeamMemberTip')}</div>
|
|
|
<div>
|
|
|
<div className='mb-2 text-sm font-medium text-gray-900'>{t('common.members.email')}</div>
|
|
|
- <input
|
|
|
- className='
|
|
|
- block w-full py-2 mb-9 px-3 bg-gray-50 outline-none border-none
|
|
|
- appearance-none text-sm text-gray-900 rounded-lg
|
|
|
- '
|
|
|
- value={email}
|
|
|
- onChange={e => setEmail(e.target.value)}
|
|
|
- placeholder={t('common.members.emailPlaceholder') || ''}
|
|
|
- />
|
|
|
+ <div className='mb-8 h-36 flex items-stretch'>
|
|
|
+ <ReactMultiEmail
|
|
|
+ className={cn('w-full pt-2 px-3 outline-none border-none',
|
|
|
+ 'appearance-none text-sm text-gray-900 rounded-lg overflow-y-auto',
|
|
|
+ s.emailsInput,
|
|
|
+ )}
|
|
|
+ autoFocus
|
|
|
+ emails={emails}
|
|
|
+ inputClassName='bg-transparent'
|
|
|
+ onChange={setEmails}
|
|
|
+ getLabel={(email, index, removeEmail) =>
|
|
|
+ <div data-tag key={index} className={cn(s.emailBackground)}>
|
|
|
+ <div data-tag-item>{email}</div>
|
|
|
+ <span data-tag-handle onClick={() => removeEmail(index)}>
|
|
|
+ ×
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ }
|
|
|
+ placeholder={t('common.members.emailPlaceholder') || ''}
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <Listbox value={role} onChange={setRole}>
|
|
|
+ <div className="relative pb-6">
|
|
|
+ <Listbox.Button className="relative w-full py-2 pl-3 pr-10 text-left bg-gray-100 outline-none border-none appearance-none text-sm text-gray-900 rounded-lg">
|
|
|
+ <span className="block truncate capitalize">{t('common.members.invitedAsRole', { role: t(`common.members.${role.name}`) })}</span>
|
|
|
+ </Listbox.Button>
|
|
|
+ <Transition
|
|
|
+ as={Fragment}
|
|
|
+ leave="transition ease-in duration-200"
|
|
|
+ leaveFrom="opacity-200"
|
|
|
+ leaveTo="opacity-0"
|
|
|
+ >
|
|
|
+ <Listbox.Options className="absolute w-full py-1 my-2 overflow-auto text-base bg-white rounded-md shadow-lg max-h-60 ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm">
|
|
|
+ {InvitingRoles.map(role =>
|
|
|
+ <Listbox.Option
|
|
|
+ key={role.name}
|
|
|
+ className={({ active }) =>
|
|
|
+ `${active ? ' bg-gray-50 rounded-xl' : ' bg-transparent'}
|
|
|
+ cursor-default select-none relative py-2 px-4 mx-2 flex flex-col`
|
|
|
+ }
|
|
|
+ value={role}
|
|
|
+ >
|
|
|
+ {({ selected }) => (
|
|
|
+ <div className='flex flex-row'>
|
|
|
+ <span
|
|
|
+ className={cn(
|
|
|
+ 'text-indigo-600 w-8',
|
|
|
+ 'flex items-center',
|
|
|
+ )}
|
|
|
+ >
|
|
|
+ {selected && (<CheckIcon className="h-5 w-5" aria-hidden="true" />)}
|
|
|
+ </span>
|
|
|
+ <div className=' flex flex-col flex-grow'>
|
|
|
+ <span className={`${selected ? 'font-medium' : 'font-normal'} capitalize block truncate`}>
|
|
|
+ {t(`common.members.${role.name}`)}
|
|
|
+ </span>
|
|
|
+ <span className={`${selected ? 'font-medium' : 'font-normal'} capitalize block truncate`}>
|
|
|
+ {role.description}
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+ </Listbox.Option>,
|
|
|
+ )}
|
|
|
+ </Listbox.Options>
|
|
|
+ </Transition>
|
|
|
+ </div>
|
|
|
+ </Listbox>
|
|
|
<Button
|
|
|
+ tabIndex={0}
|
|
|
className='w-full text-sm font-medium'
|
|
|
onClick={handleSend}
|
|
|
+ disabled={!emails.length}
|
|
|
type='primary'
|
|
|
>
|
|
|
{t('common.members.sendInvite')}
|