feat: add persistence for tenant email status field
- Add tenantEmailStatus hidden field to LocationEditForm - Update locationActions to persist email status across all scopes - Add reset button for unsubscribed email status - Improve email status display with new/modified indicators - Update translations for email status messages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
import { getDbClient } from '../dbClient';
|
import { getDbClient } from '../dbClient';
|
||||||
import { BillingLocation, FileAttachment, YearMonth } from '../db-types';
|
import { BillingLocation, FileAttachment, YearMonth, EmailStatus } from '../db-types';
|
||||||
import { ObjectId } from 'mongodb';
|
import { ObjectId } from 'mongodb';
|
||||||
import { withUser } from '@/app/lib/auth';
|
import { withUser } from '@/app/lib/auth';
|
||||||
import { AuthenticatedUser } from '../types/next-auth';
|
import { AuthenticatedUser } from '../types/next-auth';
|
||||||
@@ -22,6 +22,7 @@ export type State = {
|
|||||||
tenantTown?: string[];
|
tenantTown?: string[];
|
||||||
autoBillFwd?: string[];
|
autoBillFwd?: string[];
|
||||||
tenantEmail?: string[];
|
tenantEmail?: string[];
|
||||||
|
tenantEmailStatus?: string[];
|
||||||
billFwdStrategy?: string[];
|
billFwdStrategy?: string[];
|
||||||
rentDueNotification?: string[];
|
rentDueNotification?: string[];
|
||||||
rentDueDay?: string[];
|
rentDueDay?: string[];
|
||||||
@@ -44,6 +45,7 @@ const FormSchema = (t:IntlTemplateFn) => z.object({
|
|||||||
tenantTown: z.string().max(27).optional().nullable(),
|
tenantTown: z.string().max(27).optional().nullable(),
|
||||||
autoBillFwd: z.boolean().optional().nullable(),
|
autoBillFwd: z.boolean().optional().nullable(),
|
||||||
tenantEmail: z.string().email(t("tenant-email-invalid")).optional().or(z.literal("")).nullable(),
|
tenantEmail: z.string().email(t("tenant-email-invalid")).optional().or(z.literal("")).nullable(),
|
||||||
|
tenantEmailStatus: z.enum([EmailStatus.Unverified, EmailStatus.VerificationPending, EmailStatus.Verified, EmailStatus.Unsubscribed]).optional().nullable(),
|
||||||
billFwdStrategy: z.enum(["when-payed", "when-attached"]).optional().nullable(),
|
billFwdStrategy: z.enum(["when-payed", "when-attached"]).optional().nullable(),
|
||||||
rentDueNotification: z.boolean().optional().nullable(),
|
rentDueNotification: z.boolean().optional().nullable(),
|
||||||
rentDueDay: z.coerce.number().min(1).max(31).optional().nullable(),
|
rentDueDay: z.coerce.number().min(1).max(31).optional().nullable(),
|
||||||
@@ -122,6 +124,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown: formData.get('tenantTown') || null,
|
tenantTown: formData.get('tenantTown') || null,
|
||||||
autoBillFwd: formData.get('autoBillFwd') === 'on',
|
autoBillFwd: formData.get('autoBillFwd') === 'on',
|
||||||
tenantEmail: formData.get('tenantEmail') || null,
|
tenantEmail: formData.get('tenantEmail') || null,
|
||||||
|
tenantEmailStatus: formData.get('tenantEmailStatus') as "unverified" | "verification-pending" | "verified" | "unsubscribed" | undefined,
|
||||||
billFwdStrategy: formData.get('billFwdStrategy') as "when-payed" | "when-attached" | undefined,
|
billFwdStrategy: formData.get('billFwdStrategy') as "when-payed" | "when-attached" | undefined,
|
||||||
rentDueNotification: formData.get('rentDueNotification') === 'on',
|
rentDueNotification: formData.get('rentDueNotification') === 'on',
|
||||||
rentDueDay: formData.get('rentDueDay') || null,
|
rentDueDay: formData.get('rentDueDay') || null,
|
||||||
@@ -147,6 +150,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown,
|
tenantTown,
|
||||||
autoBillFwd,
|
autoBillFwd,
|
||||||
tenantEmail,
|
tenantEmail,
|
||||||
|
tenantEmailStatus,
|
||||||
billFwdStrategy,
|
billFwdStrategy,
|
||||||
rentDueNotification,
|
rentDueNotification,
|
||||||
rentDueDay,
|
rentDueDay,
|
||||||
@@ -190,6 +194,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown: tenantTown || null,
|
tenantTown: tenantTown || null,
|
||||||
autoBillFwd: autoBillFwd || false,
|
autoBillFwd: autoBillFwd || false,
|
||||||
tenantEmail: tenantEmail || null,
|
tenantEmail: tenantEmail || null,
|
||||||
|
tenantEmailStatus: tenantEmailStatus as EmailStatus || EmailStatus.Unverified,
|
||||||
billFwdStrategy: billFwdStrategy || "when-payed",
|
billFwdStrategy: billFwdStrategy || "when-payed",
|
||||||
rentDueNotification: rentDueNotification || false,
|
rentDueNotification: rentDueNotification || false,
|
||||||
rentDueDay: rentDueDay || null,
|
rentDueDay: rentDueDay || null,
|
||||||
@@ -221,6 +226,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown: tenantTown || null,
|
tenantTown: tenantTown || null,
|
||||||
autoBillFwd: autoBillFwd || false,
|
autoBillFwd: autoBillFwd || false,
|
||||||
tenantEmail: tenantEmail || null,
|
tenantEmail: tenantEmail || null,
|
||||||
|
tenantEmailStatus: tenantEmailStatus as EmailStatus || EmailStatus.Unverified,
|
||||||
billFwdStrategy: billFwdStrategy || "when-payed",
|
billFwdStrategy: billFwdStrategy || "when-payed",
|
||||||
rentDueNotification: rentDueNotification || false,
|
rentDueNotification: rentDueNotification || false,
|
||||||
rentDueDay: rentDueDay || null,
|
rentDueDay: rentDueDay || null,
|
||||||
@@ -245,6 +251,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown: tenantTown || null,
|
tenantTown: tenantTown || null,
|
||||||
autoBillFwd: autoBillFwd || false,
|
autoBillFwd: autoBillFwd || false,
|
||||||
tenantEmail: tenantEmail || null,
|
tenantEmail: tenantEmail || null,
|
||||||
|
tenantEmailStatus: tenantEmailStatus as EmailStatus || EmailStatus.Unverified,
|
||||||
billFwdStrategy: billFwdStrategy || "when-payed",
|
billFwdStrategy: billFwdStrategy || "when-payed",
|
||||||
rentDueNotification: rentDueNotification || false,
|
rentDueNotification: rentDueNotification || false,
|
||||||
rentDueDay: rentDueDay || null,
|
rentDueDay: rentDueDay || null,
|
||||||
@@ -268,6 +275,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown: tenantTown || null,
|
tenantTown: tenantTown || null,
|
||||||
autoBillFwd: autoBillFwd || false,
|
autoBillFwd: autoBillFwd || false,
|
||||||
tenantEmail: tenantEmail || null,
|
tenantEmail: tenantEmail || null,
|
||||||
|
tenantEmailStatus: tenantEmailStatus as EmailStatus || EmailStatus.Unverified,
|
||||||
billFwdStrategy: billFwdStrategy || "when-payed",
|
billFwdStrategy: billFwdStrategy || "when-payed",
|
||||||
rentDueNotification: rentDueNotification || false,
|
rentDueNotification: rentDueNotification || false,
|
||||||
rentDueDay: rentDueDay || null,
|
rentDueDay: rentDueDay || null,
|
||||||
@@ -343,6 +351,7 @@ export const updateOrAddLocation = withUser(async (user:AuthenticatedUser, locat
|
|||||||
tenantTown: tenantTown || null,
|
tenantTown: tenantTown || null,
|
||||||
autoBillFwd: autoBillFwd || false,
|
autoBillFwd: autoBillFwd || false,
|
||||||
tenantEmail: tenantEmail || null,
|
tenantEmail: tenantEmail || null,
|
||||||
|
tenantEmailStatus: tenantEmailStatus as EmailStatus || EmailStatus.Unverified,
|
||||||
billFwdStrategy: billFwdStrategy || "when-payed",
|
billFwdStrategy: billFwdStrategy || "when-payed",
|
||||||
rentDueNotification: rentDueNotification || false,
|
rentDueNotification: rentDueNotification || false,
|
||||||
rentDueDay: rentDueDay || null,
|
rentDueDay: rentDueDay || null,
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { TrashIcon, ExclamationTriangleIcon, ClockIcon, EnvelopeIcon, CheckCircleIcon } from "@heroicons/react/24/outline";
|
import { TrashIcon, ExclamationTriangleIcon, ClockIcon, EnvelopeIcon, CheckCircleIcon, PencilSquareIcon } from "@heroicons/react/24/outline";
|
||||||
import { FC, useState } from "react";
|
import { FC, useState } from "react";
|
||||||
import { BillingLocation, UserSettings, YearMonth, EmailStatus } from "../lib/db-types";
|
import { BillingLocation, UserSettings, YearMonth, EmailStatus } from "../lib/db-types";
|
||||||
import { updateOrAddLocation } from "../lib/actions/locationActions";
|
import { updateOrAddLocation } from "../lib/actions/locationActions";
|
||||||
@@ -41,6 +41,7 @@ export const LocationEditForm: FC<LocationEditFormProps> = ({ location, yearMont
|
|||||||
tenantStreet: location?.tenantStreet ?? "",
|
tenantStreet: location?.tenantStreet ?? "",
|
||||||
tenantTown: location?.tenantTown ?? "",
|
tenantTown: location?.tenantTown ?? "",
|
||||||
tenantEmail: location?.tenantEmail ?? "",
|
tenantEmail: location?.tenantEmail ?? "",
|
||||||
|
tenantEmailStatus: location?.tenantEmailStatus ?? EmailStatus.Unverified,
|
||||||
tenantPaymentMethod: location?.tenantPaymentMethod ?? "none",
|
tenantPaymentMethod: location?.tenantPaymentMethod ?? "none",
|
||||||
proofOfPaymentType: location?.proofOfPaymentType ?? "none",
|
proofOfPaymentType: location?.proofOfPaymentType ?? "none",
|
||||||
autoBillFwd: location?.autoBillFwd ?? false,
|
autoBillFwd: location?.autoBillFwd ?? false,
|
||||||
@@ -50,10 +51,21 @@ export const LocationEditForm: FC<LocationEditFormProps> = ({ location, yearMont
|
|||||||
rentDueDay: location?.rentDueDay ?? 1,
|
rentDueDay: location?.rentDueDay ?? 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// tenant e-mail fetched from database
|
||||||
|
const [dbTenantEmail, setDbTenantEmail] = useState(location?.tenantEmail ?? "");
|
||||||
|
|
||||||
const handleInputChange = (field: keyof typeof formValues, value: string | boolean | number) => {
|
const handleInputChange = (field: keyof typeof formValues, value: string | boolean | number) => {
|
||||||
setFormValues(prev => ({ ...prev, [field]: value }));
|
setFormValues(prev => ({ ...prev, [field]: value }));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleResetEmailStatus = () => {
|
||||||
|
// this will simulate that the email
|
||||||
|
// is new and needs verification
|
||||||
|
setDbTenantEmail("");
|
||||||
|
// reset the email status to unverified
|
||||||
|
setFormValues(prev => ({ ...prev, tenantEmailStatus: EmailStatus.Unverified }));
|
||||||
|
};
|
||||||
|
|
||||||
let { year, month } = location ? location.yearMonth : yearMonth;
|
let { year, month } = location ? location.yearMonth : yearMonth;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -355,37 +367,45 @@ export const LocationEditForm: FC<LocationEditFormProps> = ({ location, yearMont
|
|||||||
defaultValue={formValues.tenantEmail}
|
defaultValue={formValues.tenantEmail}
|
||||||
onChange={(e) => handleInputChange("tenantEmail", e.target.value)}
|
onChange={(e) => handleInputChange("tenantEmail", e.target.value)}
|
||||||
/>
|
/>
|
||||||
{location?.tenantEmail && location?.tenantEmail === formValues.tenantEmail && location?.tenantEmailStatus ? (
|
<input
|
||||||
|
id="tenantEmailStatus"
|
||||||
|
name="tenantEmailStatus"
|
||||||
|
type="hidden"
|
||||||
|
maxLength={30}
|
||||||
|
defaultValue={formValues.tenantEmailStatus}
|
||||||
|
/>
|
||||||
|
{dbTenantEmail === formValues.tenantEmail ? (
|
||||||
<div className="flex items-center gap-2 mt-2 ml-2">
|
<div className="flex items-center gap-2 mt-2 ml-2">
|
||||||
{location.tenantEmailStatus === EmailStatus.Unverified && (
|
{location?.tenantEmailStatus === EmailStatus.Unverified && (
|
||||||
<>
|
<>
|
||||||
<ExclamationTriangleIcon className="h-5 w-5 text-warning" />
|
<ExclamationTriangleIcon className="h-5 w-5 text-warning" />
|
||||||
<span className="text-sm text-warning">{t("email-status.unverified")}</span>
|
<span className="text-sm text-warning">{t("email-status.unverified")}</span>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{location.tenantEmailStatus === EmailStatus.VerificationPending && (
|
{location?.tenantEmailStatus === EmailStatus.VerificationPending && (
|
||||||
<>
|
<>
|
||||||
<ClockIcon className="h-5 w-5 text-info" />
|
<ClockIcon className="h-5 w-5 text-info" />
|
||||||
<span className="text-sm text-info">{t("email-status.verification-pending")}</span>
|
<span className="text-sm text-info">{t("email-status.verification-pending")}</span>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{location.tenantEmailStatus === EmailStatus.Verified && (
|
{location?.tenantEmailStatus === EmailStatus.Verified && (
|
||||||
<>
|
<>
|
||||||
<CheckCircleIcon className="h-5 w-5 text-success" />
|
<CheckCircleIcon className="h-5 w-5 text-success" />
|
||||||
<span className="text-sm text-success">{t("email-status.verified")}</span>
|
<span className="text-sm text-success">{t("email-status.verified")}</span>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{location.tenantEmailStatus === EmailStatus.Unsubscribed && (
|
{location?.tenantEmailStatus === EmailStatus.Unsubscribed && (
|
||||||
<>
|
<>
|
||||||
<EnvelopeIcon className="h-5 w-5 text-error" />
|
<EnvelopeIcon className="h-5 w-5 text-error" />
|
||||||
<span className="text-sm text-error">{t("email-status.unsubscribed")}</span>
|
<span className="text-sm text-error">{t("email-status.unsubscribed")}</span>
|
||||||
|
<button className="btn btn-neutral min-h-0 h-[1.5rem]" onClick={ handleResetEmailStatus }>{t("email-status.reset-button-label")}</button>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
):(
|
):(
|
||||||
<div className="flex items-center gap-2 mt-2 ml-2">
|
<div className="flex items-center gap-2 mt-2 ml-2">
|
||||||
<ExclamationTriangleIcon className="h-5 w-5 text-warning" />
|
<PencilSquareIcon className="h-5 w-5 text-primary" />
|
||||||
<span className="text-sm text-warning">{t("email-status.unverified")}</span>
|
<span className="text-sm text-primary">{t("email-status.new")}</span>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div id="tenantEmail-error" aria-live="polite" aria-atomic="true">
|
<div id="tenantEmail-error" aria-live="polite" aria-atomic="true">
|
||||||
|
|||||||
@@ -196,10 +196,12 @@
|
|||||||
"tenant-email-legend": "TENANT EMAIL",
|
"tenant-email-legend": "TENANT EMAIL",
|
||||||
"tenant-email-placeholder": "enter tenant's email",
|
"tenant-email-placeholder": "enter tenant's email",
|
||||||
"email-status": {
|
"email-status": {
|
||||||
|
"reset-button-label": "Reset",
|
||||||
|
"new": "a new e-mail address will need to be verified by the tenant",
|
||||||
"unverified": "this e-mail address will need to be verified by the tenant",
|
"unverified": "this e-mail address will need to be verified by the tenant",
|
||||||
"verification-pending": "waiting for tenant to verify this email address",
|
"verification-pending": "waiting for tenant to verify this email address",
|
||||||
"verified": "this e-mail address has been verified",
|
"verified": "this e-mail address has been verified",
|
||||||
"unsubscribed": "tenant unsubscribed this address e-mail address from receiving emails"
|
"unsubscribed": "tenant unsubscribed this address from receiving emails"
|
||||||
},
|
},
|
||||||
"warning-missing-tenant-names": "Warning: Tenant first and last name are missing. The 2D barcode will not be displayed to the tenant when they open the shared link until both fields are filled in.",
|
"warning-missing-tenant-names": "Warning: Tenant first and last name are missing. The 2D barcode will not be displayed to the tenant when they open the shared link until both fields are filled in.",
|
||||||
"save-button": "Save",
|
"save-button": "Save",
|
||||||
|
|||||||
@@ -195,7 +195,9 @@
|
|||||||
"tenant-email-legend": "EMAIL PODSTANARA",
|
"tenant-email-legend": "EMAIL PODSTANARA",
|
||||||
"tenant-email-placeholder": "unesite email podstanara",
|
"tenant-email-placeholder": "unesite email podstanara",
|
||||||
"email-status": {
|
"email-status": {
|
||||||
"unverified": "podstanar će morati potvrditi ovu e-mail adresu",
|
"reset-button-label": "Reset",
|
||||||
|
"new": "nova e-mail adresa - podstanar će je morati potvrditi",
|
||||||
|
"unverified": "čeka se da podstanar potvrdi e-mail",
|
||||||
"verification-pending": "čeka se da podstanar potvrdi e-mail",
|
"verification-pending": "čeka se da podstanar potvrdi e-mail",
|
||||||
"verified": "podstanar je potvrdio ovu e-mail adresu",
|
"verified": "podstanar je potvrdio ovu e-mail adresu",
|
||||||
"unsubscribed": "podstanar je odjavio ovu e-mail adresu"
|
"unsubscribed": "podstanar je odjavio ovu e-mail adresu"
|
||||||
|
|||||||
Reference in New Issue
Block a user