|
|
|
@@ -4,134 +4,72 @@ import { useRouter } from 'next/navigation'
|
|
|
|
|
import { useEffect, useMemo, useState } from 'react'
|
|
|
|
|
import { authFetch, clearToken, getApiBase, getToken } from '../../lib/auth'
|
|
|
|
|
|
|
|
|
|
type ProfileInfo = {
|
|
|
|
|
username: string
|
|
|
|
|
role: string
|
|
|
|
|
auth_provider: string
|
|
|
|
|
invite_management_enabled?: boolean
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ProfileResponse = {
|
|
|
|
|
user: ProfileInfo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ProfileInfo = { username: string; role: string; invite_management_enabled?: boolean }
|
|
|
|
|
type OwnedInvite = {
|
|
|
|
|
id: number
|
|
|
|
|
code: string
|
|
|
|
|
label?: string | null
|
|
|
|
|
description?: string | null
|
|
|
|
|
recipient_email?: string | null
|
|
|
|
|
max_uses?: number | null
|
|
|
|
|
use_count: number
|
|
|
|
|
remaining_uses?: number | null
|
|
|
|
|
enabled: boolean
|
|
|
|
|
expires_at?: string | null
|
|
|
|
|
is_expired?: boolean
|
|
|
|
|
is_usable?: boolean
|
|
|
|
|
created_at?: string | null
|
|
|
|
|
updated_at?: string | null
|
|
|
|
|
id: number; code: string; label?: string | null; description?: string | null
|
|
|
|
|
recipient_email?: string | null; max_uses?: number | null; use_count: number
|
|
|
|
|
remaining_uses?: number | null; enabled: boolean; expires_at?: string | null
|
|
|
|
|
is_usable?: boolean; created_at?: string | null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type OwnedInvitesResponse = {
|
|
|
|
|
invites?: OwnedInvite[]
|
|
|
|
|
count?: number
|
|
|
|
|
invite_access?: {
|
|
|
|
|
enabled?: boolean
|
|
|
|
|
managed_by_master?: boolean
|
|
|
|
|
}
|
|
|
|
|
master_invite?: {
|
|
|
|
|
id: number
|
|
|
|
|
code: string
|
|
|
|
|
label?: string | null
|
|
|
|
|
description?: string | null
|
|
|
|
|
max_uses?: number | null
|
|
|
|
|
enabled?: boolean
|
|
|
|
|
expires_at?: string | null
|
|
|
|
|
is_usable?: boolean
|
|
|
|
|
} | null
|
|
|
|
|
invite_access?: { enabled?: boolean; managed_by_master?: boolean }
|
|
|
|
|
master_invite?: { id: number; code: string; label?: string | null; max_uses?: number | null; expires_at?: string | null } | null
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type OwnedInviteForm = {
|
|
|
|
|
code: string
|
|
|
|
|
label: string
|
|
|
|
|
description: string
|
|
|
|
|
recipient_email: string
|
|
|
|
|
max_uses: string
|
|
|
|
|
expires_at: string
|
|
|
|
|
enabled: boolean
|
|
|
|
|
send_email: boolean
|
|
|
|
|
message: string
|
|
|
|
|
type InviteForm = {
|
|
|
|
|
code: string; label: string; description: string; recipient_email: string
|
|
|
|
|
enabled: boolean; message: string
|
|
|
|
|
}
|
|
|
|
|
type DeliveryMethod = '' | 'manual' | 'email'
|
|
|
|
|
|
|
|
|
|
const defaultOwnedInviteForm = (): OwnedInviteForm => ({
|
|
|
|
|
code: '',
|
|
|
|
|
label: '',
|
|
|
|
|
description: '',
|
|
|
|
|
recipient_email: '',
|
|
|
|
|
max_uses: '',
|
|
|
|
|
expires_at: '',
|
|
|
|
|
enabled: true,
|
|
|
|
|
send_email: false,
|
|
|
|
|
message: '',
|
|
|
|
|
const defaultInviteForm = (): InviteForm => ({
|
|
|
|
|
code: '', label: '', description: '', recipient_email: '', enabled: true, message: '',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const formatDate = (value?: string | null) => {
|
|
|
|
|
if (!value) return 'Never'
|
|
|
|
|
const date = new Date(value)
|
|
|
|
|
if (Number.isNaN(date.valueOf())) return value
|
|
|
|
|
return date.toLocaleString()
|
|
|
|
|
return Number.isNaN(date.valueOf()) ? value : date.toLocaleString()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const isValidEmail = (value: string) => /^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(value.trim())
|
|
|
|
|
|
|
|
|
|
export default function ProfileInvitesPage() {
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
const [profile, setProfile] = useState<ProfileInfo | null>(null)
|
|
|
|
|
const [inviteStatus, setInviteStatus] = useState<string | null>(null)
|
|
|
|
|
const [inviteError, setInviteError] = useState<string | null>(null)
|
|
|
|
|
const [invites, setInvites] = useState<OwnedInvite[]>([])
|
|
|
|
|
const [inviteSaving, setInviteSaving] = useState(false)
|
|
|
|
|
const [inviteEditingId, setInviteEditingId] = useState<number | null>(null)
|
|
|
|
|
const [inviteForm, setInviteForm] = useState<OwnedInviteForm>(defaultOwnedInviteForm())
|
|
|
|
|
const [inviteAccessEnabled, setInviteAccessEnabled] = useState(false)
|
|
|
|
|
const [inviteManagedByMaster, setInviteManagedByMaster] = useState(false)
|
|
|
|
|
const [masterInviteTemplate, setMasterInviteTemplate] = useState<OwnedInvitesResponse['master_invite']>(null)
|
|
|
|
|
const [masterInvite, setMasterInvite] = useState<OwnedInvitesResponse['master_invite']>(null)
|
|
|
|
|
const [loading, setLoading] = useState(true)
|
|
|
|
|
const [saving, setSaving] = useState(false)
|
|
|
|
|
const [error, setError] = useState<string | null>(null)
|
|
|
|
|
const [status, setStatus] = useState<string | null>(null)
|
|
|
|
|
const [editingId, setEditingId] = useState<number | null>(null)
|
|
|
|
|
const [flowStep, setFlowStep] = useState(1)
|
|
|
|
|
const [useCustomCode, setUseCustomCode] = useState(false)
|
|
|
|
|
const [deliveryMethod, setDeliveryMethod] = useState<DeliveryMethod>('')
|
|
|
|
|
const [inviteForm, setInviteForm] = useState<InviteForm>(defaultInviteForm())
|
|
|
|
|
const [createdInvite, setCreatedInvite] = useState<OwnedInvite | null>(null)
|
|
|
|
|
|
|
|
|
|
const signupBaseUrl = useMemo(() => {
|
|
|
|
|
if (typeof window === 'undefined') return '/signup'
|
|
|
|
|
return `${window.location.origin}/signup`
|
|
|
|
|
}, [])
|
|
|
|
|
|
|
|
|
|
const loadPage = async () => {
|
|
|
|
|
const baseUrl = getApiBase()
|
|
|
|
|
const [profileResponse, invitesResponse] = await Promise.all([
|
|
|
|
|
authFetch(`${baseUrl}/auth/profile`),
|
|
|
|
|
authFetch(`${baseUrl}/auth/profile/invites`),
|
|
|
|
|
])
|
|
|
|
|
if (!profileResponse.ok || !invitesResponse.ok) {
|
|
|
|
|
if (profileResponse.status === 401 || invitesResponse.status === 401) {
|
|
|
|
|
const loadInvites = async () => {
|
|
|
|
|
const response = await authFetch(`${getApiBase()}/auth/profile/invites`)
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
if (response.status === 401) {
|
|
|
|
|
clearToken()
|
|
|
|
|
router.push('/login')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
throw new Error('Could not load invite tools.')
|
|
|
|
|
throw new Error('Could not load your invite workspace.')
|
|
|
|
|
}
|
|
|
|
|
const [profileData, inviteData] = (await Promise.all([
|
|
|
|
|
profileResponse.json(),
|
|
|
|
|
invitesResponse.json(),
|
|
|
|
|
])) as [ProfileResponse, OwnedInvitesResponse]
|
|
|
|
|
const user = profileData?.user ?? {}
|
|
|
|
|
setProfile({
|
|
|
|
|
username: user?.username ?? 'Unknown',
|
|
|
|
|
role: user?.role ?? 'user',
|
|
|
|
|
auth_provider: user?.auth_provider ?? 'local',
|
|
|
|
|
invite_management_enabled: Boolean(user?.invite_management_enabled ?? false),
|
|
|
|
|
})
|
|
|
|
|
setInvites(Array.isArray(inviteData?.invites) ? inviteData.invites : [])
|
|
|
|
|
setInviteAccessEnabled(Boolean(inviteData?.invite_access?.enabled ?? false))
|
|
|
|
|
setInviteManagedByMaster(Boolean(inviteData?.invite_access?.managed_by_master ?? false))
|
|
|
|
|
setMasterInviteTemplate(inviteData?.master_invite ?? null)
|
|
|
|
|
const data = (await response.json()) as OwnedInvitesResponse
|
|
|
|
|
setInvites(Array.isArray(data.invites) ? data.invites : [])
|
|
|
|
|
setInviteAccessEnabled(Boolean(data.invite_access?.enabled))
|
|
|
|
|
setInviteManagedByMaster(Boolean(data.invite_access?.managed_by_master))
|
|
|
|
|
setMasterInvite(data.master_invite ?? null)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
@@ -141,10 +79,21 @@ export default function ProfileInvitesPage() {
|
|
|
|
|
}
|
|
|
|
|
const load = async () => {
|
|
|
|
|
try {
|
|
|
|
|
await loadPage()
|
|
|
|
|
const profileResponse = await authFetch(`${getApiBase()}/auth/profile`)
|
|
|
|
|
if (!profileResponse.ok) {
|
|
|
|
|
if (profileResponse.status === 401) {
|
|
|
|
|
clearToken()
|
|
|
|
|
router.push('/login')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
throw new Error('Could not load your profile.')
|
|
|
|
|
}
|
|
|
|
|
const profileData = await profileResponse.json()
|
|
|
|
|
setProfile(profileData?.user ?? null)
|
|
|
|
|
await loadInvites()
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err)
|
|
|
|
|
setInviteError(err instanceof Error ? err.message : 'Could not load invite tools.')
|
|
|
|
|
setError(err instanceof Error ? err.message : 'Could not load your invite workspace.')
|
|
|
|
|
} finally {
|
|
|
|
|
setLoading(false)
|
|
|
|
|
}
|
|
|
|
@@ -152,80 +101,65 @@ export default function ProfileInvitesPage() {
|
|
|
|
|
void load()
|
|
|
|
|
}, [router])
|
|
|
|
|
|
|
|
|
|
const resetInviteEditor = () => {
|
|
|
|
|
setInviteEditingId(null)
|
|
|
|
|
setInviteForm(defaultOwnedInviteForm())
|
|
|
|
|
const resetFlow = () => {
|
|
|
|
|
setEditingId(null)
|
|
|
|
|
setFlowStep(1)
|
|
|
|
|
setUseCustomCode(false)
|
|
|
|
|
setDeliveryMethod('')
|
|
|
|
|
setInviteForm(defaultInviteForm())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const editInvite = (invite: OwnedInvite) => {
|
|
|
|
|
setInviteEditingId(invite.id)
|
|
|
|
|
setInviteError(null)
|
|
|
|
|
setInviteStatus(null)
|
|
|
|
|
setEditingId(invite.id)
|
|
|
|
|
setCreatedInvite(null)
|
|
|
|
|
setFlowStep(4)
|
|
|
|
|
setUseCustomCode(true)
|
|
|
|
|
setDeliveryMethod(invite.recipient_email ? 'email' : 'manual')
|
|
|
|
|
setInviteForm({
|
|
|
|
|
code: invite.code ?? '',
|
|
|
|
|
code: invite.code,
|
|
|
|
|
label: invite.label ?? '',
|
|
|
|
|
description: invite.description ?? '',
|
|
|
|
|
recipient_email: invite.recipient_email ?? '',
|
|
|
|
|
max_uses: typeof invite.max_uses === 'number' ? String(invite.max_uses) : '',
|
|
|
|
|
expires_at: invite.expires_at ?? '',
|
|
|
|
|
enabled: invite.enabled !== false,
|
|
|
|
|
send_email: false,
|
|
|
|
|
message: '',
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const reloadInvites = async () => {
|
|
|
|
|
const baseUrl = getApiBase()
|
|
|
|
|
const response = await authFetch(`${baseUrl}/auth/profile/invites`)
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
if (response.status === 401) {
|
|
|
|
|
clearToken()
|
|
|
|
|
router.push('/login')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
throw new Error(`Invite refresh failed: ${response.status}`)
|
|
|
|
|
}
|
|
|
|
|
const data = (await response.json()) as OwnedInvitesResponse
|
|
|
|
|
setInvites(Array.isArray(data?.invites) ? data.invites : [])
|
|
|
|
|
setInviteAccessEnabled(Boolean(data?.invite_access?.enabled ?? false))
|
|
|
|
|
setInviteManagedByMaster(Boolean(data?.invite_access?.managed_by_master ?? false))
|
|
|
|
|
setMasterInviteTemplate(data?.master_invite ?? null)
|
|
|
|
|
setError(null)
|
|
|
|
|
setStatus(null)
|
|
|
|
|
window.scrollTo({ top: 0, behavior: 'smooth' })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const saveInvite = async (event: React.FormEvent) => {
|
|
|
|
|
event.preventDefault()
|
|
|
|
|
const inviteName = inviteForm.label.trim()
|
|
|
|
|
const recipientEmail = inviteForm.recipient_email.trim()
|
|
|
|
|
if (!recipientEmail) {
|
|
|
|
|
setInviteError('Recipient email is required.')
|
|
|
|
|
setInviteStatus(null)
|
|
|
|
|
if (!inviteName) {
|
|
|
|
|
setError('Give this invite a name so you can recognise it later.')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if (!isValidEmail(recipientEmail)) {
|
|
|
|
|
setInviteError('Recipient email must be valid.')
|
|
|
|
|
setInviteStatus(null)
|
|
|
|
|
if (!deliveryMethod) {
|
|
|
|
|
setError('Choose how you want to deliver the invite.')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
setInviteSaving(true)
|
|
|
|
|
setInviteError(null)
|
|
|
|
|
setInviteStatus(null)
|
|
|
|
|
if (deliveryMethod === 'email' && !isValidEmail(recipientEmail)) {
|
|
|
|
|
setError('Enter a valid recipient email address.')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
setSaving(true)
|
|
|
|
|
setError(null)
|
|
|
|
|
setStatus(null)
|
|
|
|
|
try {
|
|
|
|
|
const baseUrl = getApiBase()
|
|
|
|
|
const response = await authFetch(
|
|
|
|
|
inviteEditingId == null
|
|
|
|
|
? `${baseUrl}/auth/profile/invites`
|
|
|
|
|
: `${baseUrl}/auth/profile/invites/${inviteEditingId}`,
|
|
|
|
|
editingId == null ? `${getApiBase()}/auth/profile/invites` : `${getApiBase()}/auth/profile/invites/${editingId}`,
|
|
|
|
|
{
|
|
|
|
|
method: inviteEditingId == null ? 'POST' : 'PUT',
|
|
|
|
|
method: editingId == null ? 'POST' : 'PUT',
|
|
|
|
|
headers: { 'Content-Type': 'application/json' },
|
|
|
|
|
body: JSON.stringify({
|
|
|
|
|
code: inviteForm.code || null,
|
|
|
|
|
label: inviteForm.label || null,
|
|
|
|
|
code: useCustomCode ? inviteForm.code || null : null,
|
|
|
|
|
label: inviteName,
|
|
|
|
|
description: inviteForm.description || null,
|
|
|
|
|
recipient_email: recipientEmail,
|
|
|
|
|
max_uses: inviteForm.max_uses || null,
|
|
|
|
|
expires_at: inviteForm.expires_at || null,
|
|
|
|
|
recipient_email: deliveryMethod === 'email' ? recipientEmail : null,
|
|
|
|
|
enabled: inviteForm.enabled,
|
|
|
|
|
send_email: inviteForm.send_email,
|
|
|
|
|
send_email: editingId == null && deliveryMethod === 'email',
|
|
|
|
|
message: inviteForm.message || null,
|
|
|
|
|
}),
|
|
|
|
|
}
|
|
|
|
@@ -236,362 +170,136 @@ export default function ProfileInvitesPage() {
|
|
|
|
|
router.push('/login')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const text = await response.text()
|
|
|
|
|
throw new Error(text || 'Invite save failed')
|
|
|
|
|
throw new Error((await response.text()) || 'Could not save the invite.')
|
|
|
|
|
}
|
|
|
|
|
const data = await response.json().catch(() => ({}))
|
|
|
|
|
if (data?.email?.status === 'ok') {
|
|
|
|
|
setInviteStatus(
|
|
|
|
|
`${inviteEditingId == null ? 'Invite created' : 'Invite updated'} and email sent to ${data.email.recipient_email}.`
|
|
|
|
|
)
|
|
|
|
|
} else if (data?.email?.status === 'error') {
|
|
|
|
|
setInviteStatus(
|
|
|
|
|
`${inviteEditingId == null ? 'Invite created' : 'Invite updated'}, but email failed: ${data.email.detail}`
|
|
|
|
|
)
|
|
|
|
|
} else {
|
|
|
|
|
setInviteStatus(inviteEditingId == null ? 'Invite created.' : 'Invite updated.')
|
|
|
|
|
}
|
|
|
|
|
resetInviteEditor()
|
|
|
|
|
await reloadInvites()
|
|
|
|
|
const data = await response.json()
|
|
|
|
|
const savedInvite = data?.invite as OwnedInvite | undefined
|
|
|
|
|
setStatus(
|
|
|
|
|
data?.email?.status === 'ok'
|
|
|
|
|
? `Invite created and emailed to ${data.email.recipient_email}.`
|
|
|
|
|
: data?.email?.status === 'error'
|
|
|
|
|
? `Invite created, but the email could not be sent: ${data.email.detail}`
|
|
|
|
|
: editingId == null ? 'Invite link created and ready to share.' : 'Invite updated.'
|
|
|
|
|
)
|
|
|
|
|
resetFlow()
|
|
|
|
|
if (editingId == null && savedInvite) setCreatedInvite(savedInvite)
|
|
|
|
|
await loadInvites()
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err)
|
|
|
|
|
setInviteError(err instanceof Error ? err.message : 'Could not save invite.')
|
|
|
|
|
setError(err instanceof Error ? err.message : 'Could not save the invite.')
|
|
|
|
|
} finally {
|
|
|
|
|
setInviteSaving(false)
|
|
|
|
|
setSaving(false)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const deleteInvite = async (invite: OwnedInvite) => {
|
|
|
|
|
if (!window.confirm(`Delete invite "${invite.code}"?`)) return
|
|
|
|
|
setInviteError(null)
|
|
|
|
|
setInviteStatus(null)
|
|
|
|
|
if (!window.confirm(`Delete invite “${invite.label || invite.code}”?`)) return
|
|
|
|
|
setError(null)
|
|
|
|
|
try {
|
|
|
|
|
const baseUrl = getApiBase()
|
|
|
|
|
const response = await authFetch(`${baseUrl}/auth/profile/invites/${invite.id}`, {
|
|
|
|
|
method: 'DELETE',
|
|
|
|
|
})
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
if (response.status === 401) {
|
|
|
|
|
clearToken()
|
|
|
|
|
router.push('/login')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
const text = await response.text()
|
|
|
|
|
throw new Error(text || 'Invite delete failed')
|
|
|
|
|
}
|
|
|
|
|
if (inviteEditingId === invite.id) {
|
|
|
|
|
resetInviteEditor()
|
|
|
|
|
}
|
|
|
|
|
setInviteStatus(`Deleted invite ${invite.code}.`)
|
|
|
|
|
await reloadInvites()
|
|
|
|
|
const response = await authFetch(`${getApiBase()}/auth/profile/invites/${invite.id}`, { method: 'DELETE' })
|
|
|
|
|
if (!response.ok) throw new Error((await response.text()) || 'Could not delete the invite.')
|
|
|
|
|
if (editingId === invite.id) resetFlow()
|
|
|
|
|
setStatus(`Deleted ${invite.label || invite.code}.`)
|
|
|
|
|
await loadInvites()
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err)
|
|
|
|
|
setInviteError(err instanceof Error ? err.message : 'Could not delete invite.')
|
|
|
|
|
setError(err instanceof Error ? err.message : 'Could not delete the invite.')
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const copyInviteLink = async (invite: OwnedInvite) => {
|
|
|
|
|
const url = `${signupBaseUrl}?code=${encodeURIComponent(invite.code)}`
|
|
|
|
|
try {
|
|
|
|
|
if (navigator.clipboard?.writeText) {
|
|
|
|
|
await navigator.clipboard.writeText(url)
|
|
|
|
|
setInviteStatus(`Copied invite link for ${invite.code}.`)
|
|
|
|
|
} else {
|
|
|
|
|
window.prompt('Copy invite link', url)
|
|
|
|
|
}
|
|
|
|
|
} catch (err) {
|
|
|
|
|
console.error(err)
|
|
|
|
|
await navigator.clipboard.writeText(url)
|
|
|
|
|
setStatus(`Copied the link for ${invite.label || invite.code}.`)
|
|
|
|
|
} catch {
|
|
|
|
|
window.prompt('Copy invite link', url)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const codeCharacters = inviteForm.code.replace(/[^a-z0-9]/gi, '')
|
|
|
|
|
const identityReady = Boolean(inviteForm.label.trim() && (!useCustomCode || codeCharacters.length >= 6))
|
|
|
|
|
const canManageInvites = profile?.role === 'admin' || inviteAccessEnabled
|
|
|
|
|
const createdInviteUrl = createdInvite ? `${signupBaseUrl}?code=${encodeURIComponent(createdInvite.code)}` : ''
|
|
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
|
return <main className="card">Loading invite tools...</main>
|
|
|
|
|
}
|
|
|
|
|
if (loading) return <main className="card">Loading invite workspace…</main>
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<main className="card">
|
|
|
|
|
<div className="user-directory-panel-header profile-page-header">
|
|
|
|
|
<div>
|
|
|
|
|
<h1>Invites</h1>
|
|
|
|
|
<p className="lede">Create invite links, email them directly, and track who you have invited.</p>
|
|
|
|
|
<span className="section-kicker">04 · Invites</span>
|
|
|
|
|
<h1>Invite someone to Grizzlyflix</h1>
|
|
|
|
|
<p className="lede">Create a secure invitation one simple decision at a time.</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{inviteError && <div className="error-banner">{inviteError}</div>}
|
|
|
|
|
{inviteStatus && <div className="status-banner">{inviteStatus}</div>}
|
|
|
|
|
{error && <div className="error-banner">{error}</div>}
|
|
|
|
|
{status && <div className="status-banner">{status}</div>}
|
|
|
|
|
|
|
|
|
|
{!canManageInvites ? (
|
|
|
|
|
<section className="profile-section profile-tab-panel">
|
|
|
|
|
<h2>Invite access is disabled</h2>
|
|
|
|
|
<p className="lede">
|
|
|
|
|
Your account is not currently allowed to create self-service invites. Ask an administrator to enable invite access for your profile.
|
|
|
|
|
</p>
|
|
|
|
|
<div className="admin-inline-actions">
|
|
|
|
|
<button type="button" onClick={() => router.push('/profile')}>
|
|
|
|
|
Return to profile
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<h2>Invites are not enabled for your account</h2>
|
|
|
|
|
<p className="lede">Ask an administrator if you need permission to invite someone.</p>
|
|
|
|
|
</section>
|
|
|
|
|
) : (
|
|
|
|
|
<section className="profile-section profile-invites-section profile-tab-panel">
|
|
|
|
|
<div className="user-directory-panel-header">
|
|
|
|
|
<div>
|
|
|
|
|
<h2>Invite workspace</h2>
|
|
|
|
|
<p className="lede">
|
|
|
|
|
{inviteManagedByMaster
|
|
|
|
|
? 'Create and manage invite links you have issued. New invites use the admin master invite rule.'
|
|
|
|
|
: 'Create and manage invite links you have issued. New invites use your account defaults.'}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="invite-flow-heading">
|
|
|
|
|
<div><span className="eyebrow">Invite flow</span><h2>{editingId == null ? 'Create an invite' : `Edit ${inviteForm.label || 'invite'}`}</h2><p className="lede">Set up the invite one decision at a time.</p></div>
|
|
|
|
|
{editingId != null && <button type="button" className="ghost-button" onClick={resetFlow}>Cancel edit</button>}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="profile-invites-layout">
|
|
|
|
|
<div className="profile-invite-form-card">
|
|
|
|
|
<h3>{inviteEditingId == null ? 'Create invite' : 'Edit invite'}</h3>
|
|
|
|
|
<p className="meta profile-invite-form-lede">
|
|
|
|
|
Save a recipient email, send the invite immediately, and keep the generated link ready to copy.
|
|
|
|
|
</p>
|
|
|
|
|
{inviteManagedByMaster && masterInviteTemplate ? (
|
|
|
|
|
<div className="status-banner profile-invite-master-banner">
|
|
|
|
|
Using master invite rule <code>{masterInviteTemplate.code}</code>
|
|
|
|
|
{masterInviteTemplate.label ? ` (${masterInviteTemplate.label})` : ''}. Limits and status are managed by admin.
|
|
|
|
|
</div>
|
|
|
|
|
) : null}
|
|
|
|
|
<form onSubmit={saveInvite} className="admin-form compact-form invite-form-layout profile-form-layout">
|
|
|
|
|
<div className="invite-form-row">
|
|
|
|
|
<div className="invite-form-row-label">
|
|
|
|
|
<span>Identity</span>
|
|
|
|
|
<small>Optional code and label for easier tracking.</small>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="invite-form-row-control invite-form-row-grid">
|
|
|
|
|
<label>
|
|
|
|
|
<span>Code (optional)</span>
|
|
|
|
|
<input
|
|
|
|
|
value={inviteForm.code}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({ ...current, code: event.target.value }))
|
|
|
|
|
}
|
|
|
|
|
placeholder="Leave blank to auto-generate"
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<span>Label</span>
|
|
|
|
|
<input
|
|
|
|
|
value={inviteForm.label}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({ ...current, label: event.target.value }))
|
|
|
|
|
}
|
|
|
|
|
placeholder="Family invite"
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="invite-form-row">
|
|
|
|
|
<div className="invite-form-row-label">
|
|
|
|
|
<span>Description</span>
|
|
|
|
|
<small>Optional note shown on the signup page.</small>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="invite-form-row-control">
|
|
|
|
|
<textarea
|
|
|
|
|
rows={3}
|
|
|
|
|
value={inviteForm.description}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({
|
|
|
|
|
...current,
|
|
|
|
|
description: event.target.value,
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
placeholder="Optional note shown on the signup page"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="invite-form-row">
|
|
|
|
|
<div className="invite-form-row-label">
|
|
|
|
|
<span>Delivery</span>
|
|
|
|
|
<small>Recipient email is required. You can also send the invite immediately after saving.</small>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="invite-form-row-control invite-form-row-control--stacked">
|
|
|
|
|
<label>
|
|
|
|
|
<span>Recipient email (required)</span>
|
|
|
|
|
<input
|
|
|
|
|
type="email"
|
|
|
|
|
required
|
|
|
|
|
value={inviteForm.recipient_email}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({
|
|
|
|
|
...current,
|
|
|
|
|
recipient_email: event.target.value,
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
placeholder="Required recipient email"
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<span>Delivery note</span>
|
|
|
|
|
<textarea
|
|
|
|
|
rows={3}
|
|
|
|
|
value={inviteForm.message}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({
|
|
|
|
|
...current,
|
|
|
|
|
message: event.target.value,
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
placeholder="Optional note to include in the email"
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
<label className="inline-checkbox">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
checked={inviteForm.send_email}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({
|
|
|
|
|
...current,
|
|
|
|
|
send_email: event.target.checked,
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
/>
|
|
|
|
|
Send "You have been invited" email after saving
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="invite-form-row">
|
|
|
|
|
<div className="invite-form-row-label">
|
|
|
|
|
<span>Limits</span>
|
|
|
|
|
<small>Usage cap and optional expiry date/time.</small>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="invite-form-row-control invite-form-row-grid">
|
|
|
|
|
<label>
|
|
|
|
|
<span>Max uses</span>
|
|
|
|
|
<input
|
|
|
|
|
value={inviteForm.max_uses}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({ ...current, max_uses: event.target.value }))
|
|
|
|
|
}
|
|
|
|
|
inputMode="numeric"
|
|
|
|
|
placeholder="Blank = unlimited"
|
|
|
|
|
disabled={inviteManagedByMaster}
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
<label>
|
|
|
|
|
<span>Invite expiry (ISO datetime)</span>
|
|
|
|
|
<input
|
|
|
|
|
value={inviteForm.expires_at}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({ ...current, expires_at: event.target.value }))
|
|
|
|
|
}
|
|
|
|
|
placeholder="2026-03-01T12:00:00+00:00"
|
|
|
|
|
disabled={inviteManagedByMaster}
|
|
|
|
|
/>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="invite-form-row">
|
|
|
|
|
<div className="invite-form-row-label">
|
|
|
|
|
<span>Status</span>
|
|
|
|
|
<small>Enable or disable this invite before sharing.</small>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="invite-form-row-control invite-form-row-control--stacked">
|
|
|
|
|
<label className="inline-checkbox">
|
|
|
|
|
<input
|
|
|
|
|
type="checkbox"
|
|
|
|
|
checked={inviteForm.enabled}
|
|
|
|
|
onChange={(event) =>
|
|
|
|
|
setInviteForm((current) => ({
|
|
|
|
|
...current,
|
|
|
|
|
enabled: event.target.checked,
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
disabled={inviteManagedByMaster}
|
|
|
|
|
/>
|
|
|
|
|
Invite is enabled
|
|
|
|
|
</label>
|
|
|
|
|
<div className="admin-inline-actions">
|
|
|
|
|
<button type="submit" disabled={inviteSaving}>
|
|
|
|
|
{inviteSaving
|
|
|
|
|
? 'Saving…'
|
|
|
|
|
: inviteEditingId == null
|
|
|
|
|
? 'Create invite'
|
|
|
|
|
: 'Save invite'}
|
|
|
|
|
</button>
|
|
|
|
|
{inviteEditingId != null && (
|
|
|
|
|
<button type="button" className="ghost-button" onClick={resetInviteEditor}>
|
|
|
|
|
Cancel edit
|
|
|
|
|
</button>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
<div className="meta profile-invite-hint">
|
|
|
|
|
Invite URL format: <code>{signupBaseUrl}?code=INVITECODE</code>
|
|
|
|
|
</div>
|
|
|
|
|
{createdInvite && editingId == null ? (
|
|
|
|
|
<div className="invite-created-card" role="status">
|
|
|
|
|
<span className="eyebrow">Invite ready</span><h3>{createdInvite.label || 'Your invite'}</h3>
|
|
|
|
|
<p>{createdInvite.recipient_email ? `The invite was emailed to ${createdInvite.recipient_email}.` : 'Copy this link and send it to the person you are inviting.'}</p>
|
|
|
|
|
<div className="invite-created-link"><input value={createdInviteUrl} readOnly aria-label="Created invite link" /><button type="button" onClick={() => void copyInviteLink(createdInvite)}>Copy link</button></div>
|
|
|
|
|
<button type="button" className="ghost-button" onClick={() => { setCreatedInvite(null); resetFlow() }}>Create another invite</button>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<form onSubmit={saveInvite} className="invite-flow-form">
|
|
|
|
|
<ol className="invite-flow-route" aria-label="Invite creation progress">
|
|
|
|
|
{['Identity', 'Description', 'Access', 'Delivery'].map((label, index) => {
|
|
|
|
|
const step = index + 1
|
|
|
|
|
return <li key={label} className={step === flowStep ? 'is-active' : step < flowStep ? 'is-complete' : ''}><span>{String(step).padStart(2, '0')}</span><strong>{label}</strong></li>
|
|
|
|
|
})}
|
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
|
|
<div className="profile-invites-list">
|
|
|
|
|
{invites.length === 0 ? (
|
|
|
|
|
<div className="status-banner">You have not created any invites yet.</div>
|
|
|
|
|
) : (
|
|
|
|
|
<div className="admin-list">
|
|
|
|
|
{invites.map((invite) => (
|
|
|
|
|
<div key={invite.id} className="admin-list-item">
|
|
|
|
|
<div className="admin-list-item-main">
|
|
|
|
|
<div className="admin-list-item-title-row">
|
|
|
|
|
<code className="invite-code">{invite.code}</code>
|
|
|
|
|
<span className={`small-pill ${invite.is_usable ? '' : 'is-muted'}`}>
|
|
|
|
|
{invite.is_usable ? 'Usable' : 'Unavailable'}
|
|
|
|
|
</span>
|
|
|
|
|
<span className="small-pill is-muted">
|
|
|
|
|
{invite.remaining_uses == null ? 'Unlimited' : `${invite.remaining_uses} left`}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
{invite.label && <p className="admin-list-item-text">{invite.label}</p>}
|
|
|
|
|
{invite.description && (
|
|
|
|
|
<p className="admin-list-item-text admin-list-item-text--muted">
|
|
|
|
|
{invite.description}
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
<div className="admin-meta-row">
|
|
|
|
|
<span>Recipient: {invite.recipient_email || 'Not set'}</span>
|
|
|
|
|
<span>
|
|
|
|
|
Uses: {invite.use_count}
|
|
|
|
|
{typeof invite.max_uses === 'number' ? ` / ${invite.max_uses}` : ''}
|
|
|
|
|
</span>
|
|
|
|
|
<span>Expires: {formatDate(invite.expires_at)}</span>
|
|
|
|
|
<span>Created: {formatDate(invite.created_at)}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="admin-inline-actions">
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
className="ghost-button"
|
|
|
|
|
onClick={() => copyInviteLink(invite)}
|
|
|
|
|
>
|
|
|
|
|
Copy link
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
className="ghost-button"
|
|
|
|
|
onClick={() => editInvite(invite)}
|
|
|
|
|
>
|
|
|
|
|
Edit
|
|
|
|
|
</button>
|
|
|
|
|
<button type="button" onClick={() => deleteInvite(invite)}>
|
|
|
|
|
Delete
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
<section className={`invite-flow-step ${flowStep > 1 ? 'is-complete' : 'is-active'}`}>
|
|
|
|
|
<header><span className="invite-flow-number">01</span><div><span className="eyebrow">Identity</span><h3>Who is this invite for?</h3><p>Give it a name that will make sense when you return later.</p></div></header>
|
|
|
|
|
<div className="invite-flow-fields">
|
|
|
|
|
<label><span>Invite name</span><input value={inviteForm.label} onChange={(event) => setInviteForm((current) => ({ ...current, label: event.target.value }))} placeholder="Family, that guy from work, the neighbour" /></label>
|
|
|
|
|
<label className="invite-flow-choice-line"><input type="checkbox" checked={useCustomCode} disabled={editingId != null} onChange={(event) => { setUseCustomCode(event.target.checked); if (!event.target.checked) setInviteForm((current) => ({ ...current, code: '' })) }} /><span><strong>Choose a custom invite code</strong><small>The code appears at the end of the sign-up link. Leave this off and Magent will create a secure code for you.</small></span></label>
|
|
|
|
|
{useCustomCode && <label><span>Custom code</span><input value={inviteForm.code} disabled={editingId != null} onChange={(event) => setInviteForm((current) => ({ ...current, code: event.target.value }))} placeholder="At least 6 letters or numbers" /><small>This becomes <code>/signup?code={inviteForm.code || 'YOUR-CODE'}</code>.</small></label>}
|
|
|
|
|
{flowStep === 1 && <div className="invite-flow-actions"><button type="button" disabled={!identityReady} onClick={() => setFlowStep(2)}>Continue to description</button></div>}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
{flowStep >= 2 && <section className={`invite-flow-step ${flowStep > 2 ? 'is-complete' : 'is-active'}`}>
|
|
|
|
|
<header><span className="invite-flow-number">02</span><div><span className="eyebrow">Description</span><h3>Add a welcome note</h3><p>This optional message is shown on the sign-up page.</p></div></header>
|
|
|
|
|
<div className="invite-flow-fields"><label><span>Welcome note (optional)</span><textarea rows={3} value={inviteForm.description} onChange={(event) => setInviteForm((current) => ({ ...current, description: event.target.value }))} placeholder="Welcome to Grizzlyflix. Use this link to create your account." /></label>{flowStep === 2 && <div className="invite-flow-actions"><button type="button" className="ghost-button" onClick={() => setFlowStep(1)}>Back</button><button type="button" className="ghost-button" onClick={() => { setInviteForm((current) => ({ ...current, description: '' })); setFlowStep(3) }}>Skip</button><button type="button" onClick={() => setFlowStep(3)}>Continue</button></div>}</div>
|
|
|
|
|
</section>}
|
|
|
|
|
|
|
|
|
|
{flowStep >= 3 && <section className={`invite-flow-step ${flowStep > 3 ? 'is-complete' : 'is-active'}`}>
|
|
|
|
|
<header><span className="invite-flow-number">03</span><div><span className="eyebrow">Access</span><h3>Account access is applied automatically</h3><p>Magent uses the safe invite policy configured by an administrator.</p></div></header>
|
|
|
|
|
<div className="invite-flow-fields"><div className="invite-policy-note"><strong>Standard user access</strong><span>{inviteManagedByMaster && masterInvite ? `Using the “${masterInvite.label || masterInvite.code}” invite policy. Usage and expiry limits are automatic.` : 'This invite creates a standard user account using your configured defaults.'}</span></div>{flowStep === 3 && <div className="invite-flow-actions"><button type="button" className="ghost-button" onClick={() => setFlowStep(2)}>Back</button><button type="button" onClick={() => setFlowStep(4)}>Continue to delivery</button></div>}</div>
|
|
|
|
|
</section>}
|
|
|
|
|
|
|
|
|
|
{flowStep >= 4 && <section className="invite-flow-step is-active">
|
|
|
|
|
<header><span className="invite-flow-number">04</span><div><span className="eyebrow">Delivery</span><h3>How will they receive it?</h3><p>Copy the link yourself, or let Magent email it directly.</p></div></header>
|
|
|
|
|
<div className="invite-flow-fields">
|
|
|
|
|
<div className="invite-delivery-grid"><button type="button" className={deliveryMethod === 'manual' ? 'is-selected' : ''} onClick={() => { setDeliveryMethod('manual'); setInviteForm((current) => ({ ...current, recipient_email: '', message: '' })) }}><span className="eyebrow">Manual</span><strong>Give me a link</strong><small>Magent creates the URL. You copy and share it yourself.</small></button><button type="button" className={deliveryMethod === 'email' ? 'is-selected' : ''} onClick={() => setDeliveryMethod('email')}><span className="eyebrow">Email</span><strong>Send it for me</strong><small>Magent emails the invitation and still gives you a copyable URL.</small></button></div>
|
|
|
|
|
{deliveryMethod === 'manual' && <div className="invite-delivery-summary"><strong>Your link will appear as soon as the invite is created.</strong><span>No email address is required and Magent will not send a message.</span></div>}
|
|
|
|
|
{deliveryMethod === 'email' && <div className="invite-flow-field-grid"><label><span>Recipient email</span><input type="email" value={inviteForm.recipient_email} onChange={(event) => setInviteForm((current) => ({ ...current, recipient_email: event.target.value }))} placeholder="person@example.com" /></label><label><span>Email note (optional)</span><textarea rows={3} value={inviteForm.message} onChange={(event) => setInviteForm((current) => ({ ...current, message: event.target.value }))} placeholder="A short personal message" /></label></div>}
|
|
|
|
|
{editingId != null && <label className="invite-status-control"><input type="checkbox" checked={inviteForm.enabled} onChange={(event) => setInviteForm((current) => ({ ...current, enabled: event.target.checked }))} /><span><strong>{inviteForm.enabled ? 'Invite enabled' : 'Invite disabled'}</strong><small>Disable this existing invite to stop its link from accepting sign-ups.</small></span></label>}
|
|
|
|
|
<div className="invite-flow-actions"><button type="button" className="ghost-button" onClick={() => setFlowStep(3)}>Back</button><button type="submit" disabled={saving || !deliveryMethod || (deliveryMethod === 'email' && !isValidEmail(inviteForm.recipient_email))}>{saving ? 'Saving…' : editingId != null ? 'Save invite' : deliveryMethod === 'email' ? 'Create and email invite' : 'Create invite link'}</button></div>
|
|
|
|
|
</div>
|
|
|
|
|
</section>}
|
|
|
|
|
</form>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
<div className="profile-invites-list">
|
|
|
|
|
<div className="invite-flow-heading"><div><span className="eyebrow">Your invites</span><h2>Created invites</h2><p className="lede">Copy, edit, disable, or remove invitations you have made.</p></div></div>
|
|
|
|
|
{invites.length === 0 ? <div className="status-banner">You have not created any invites yet.</div> : <div className="admin-list">{invites.map((invite) => <div key={invite.id} className="admin-list-item"><div className="admin-list-item-main"><div className="admin-list-item-title-row"><strong>{invite.label || 'Unnamed invite'}</strong><code className="invite-code">{invite.code}</code><span className={`small-pill ${invite.is_usable ? '' : 'is-muted'}`}>{invite.is_usable ? 'Ready' : 'Unavailable'}</span></div>{invite.description && <p className="admin-list-item-text admin-list-item-text--muted">{invite.description}</p>}<div className="admin-meta-row"><span>Delivery: {invite.recipient_email || 'Manual link'}</span><span>Uses: {invite.use_count}{typeof invite.max_uses === 'number' ? ` / ${invite.max_uses}` : ''}</span><span>Expires: {formatDate(invite.expires_at)}</span><span>Created: {formatDate(invite.created_at)}</span></div></div><div className="admin-inline-actions"><button type="button" className="ghost-button" onClick={() => void copyInviteLink(invite)}>Copy link</button><button type="button" className="ghost-button" onClick={() => editInvite(invite)}>Edit</button><button type="button" onClick={() => void deleteInvite(invite)}>Delete</button></div></div>)}</div>}
|
|
|
|
|
</div>
|
|
|
|
|
</section>
|
|
|
|
|
)}
|
|
|
|
|