mirror of
https://github.com/rustmailer/bichon.git
synced 2026-08-03 07:48:34 +02:00
253 lines
9.9 KiB
TypeScript
253 lines
9.9 KiB
TypeScript
//
|
|
// Copyright (c) 2025 rustmailer.com (https://rustmailer.com)
|
|
//
|
|
// This file is part of the Bichon Email Archiving Project
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
} from '@/components/ui/dialog'
|
|
import { Button } from '@/components/ui/button'
|
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'
|
|
import { Loader2, CheckSquare, Square } from 'lucide-react'
|
|
import { useCallback, useMemo, useState } from 'react'
|
|
import { AccountModel } from '../data/schema'
|
|
import { toast } from '@/hooks/use-toast'
|
|
import { list_mailboxes } from '@/api/mailbox/api'
|
|
import { buildTree } from '@/lib/build-tree'
|
|
import { TreeDataItem, TreeView } from '@/components/tree-view'
|
|
import { Skeleton } from '@/components/ui/skeleton'
|
|
import { update_account } from '@/api/account/api'
|
|
import { ToastAction } from '@/components/ui/toast'
|
|
import { AxiosError } from 'axios'
|
|
import { ScrollArea } from '@/components/ui/scroll-area'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
interface Props {
|
|
open: boolean
|
|
onOpenChange: (open: boolean) => void
|
|
currentRow: AccountModel
|
|
}
|
|
|
|
export function SyncFoldersDialog({ currentRow, open, onOpenChange }: Props) {
|
|
const [selectedFolders, setSelectedFolders] = useState<string[]>(currentRow.sync_folders || []);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const queryClient = useQueryClient();
|
|
const { t } = useTranslation()
|
|
const { data: mailboxes, isLoading } = useQuery({
|
|
queryKey: ['account-mailboxes', currentRow.id],
|
|
queryFn: () => list_mailboxes(currentRow.id, true),
|
|
enabled: open,
|
|
});
|
|
|
|
// Convert mailbox names to IDs for initial selection
|
|
const initialSelectedItemIds = useMemo(() => {
|
|
if (!mailboxes) return [];
|
|
return mailboxes
|
|
.filter(mailbox => selectedFolders.includes(mailbox.name))
|
|
.map(mailbox => mailbox.id.toString());
|
|
}, [mailboxes, selectedFolders]);
|
|
|
|
const treeData = useMemo(() => {
|
|
if (!mailboxes) return [];
|
|
return buildTree(mailboxes, undefined, true, true);
|
|
}, [mailboxes]);
|
|
|
|
const handleSelectItems = useCallback((selectedItems: TreeDataItem[]) => {
|
|
const allMailboxes = mailboxes || [];
|
|
const selected = selectedItems
|
|
.map(item => mailboxes?.find(m => m.id === parseInt(item.id, 10))?.name)
|
|
.filter(Boolean) as string[];
|
|
|
|
const allMailSelected = selected.some(selectedName => {
|
|
const mailbox = allMailboxes.find(m => m.name === selectedName);
|
|
if (!mailbox) return false;
|
|
return mailbox.attributes.some(a => a.attr === 'All');
|
|
});
|
|
|
|
if (allMailSelected) {
|
|
toast({
|
|
title: t('accounts.allMailFolderSelected'),
|
|
description: t('accounts.allMailFolderSelectedDesc'),
|
|
action: <ToastAction altText={t('common.ok')}>{t('common.ok')}</ToastAction>,
|
|
});
|
|
}
|
|
setSelectedFolders(selected);
|
|
}, [mailboxes]);
|
|
|
|
|
|
const handleSelectAll = useCallback(() => {
|
|
if (!mailboxes) return;
|
|
const validFolderNames = mailboxes
|
|
.filter(mailbox => {
|
|
const isAllMail = mailbox.attributes.some(a => a.attr === 'All');
|
|
if (isAllMail) return false;
|
|
return true;
|
|
})
|
|
.map(m => m.name);
|
|
setSelectedFolders(validFolderNames);
|
|
if (validFolderNames.length < mailboxes.length) {
|
|
toast({
|
|
description: t('accounts.allMailSkipped'),
|
|
});
|
|
}
|
|
}, [mailboxes]);
|
|
|
|
const handleDeselectAll = useCallback(() => {
|
|
setSelectedFolders([]);
|
|
}, []);
|
|
|
|
|
|
const updateMutation = useMutation({
|
|
mutationFn: (data: Record<string, any>) => update_account(currentRow?.id ?? '', data),
|
|
onSuccess: handleSuccess,
|
|
onError: handleError
|
|
})
|
|
|
|
function handleSuccess() {
|
|
toast({
|
|
title: t('accounts.accountSyncFoldersUpdated'),
|
|
description: t('accounts.accountUpdatedDesc'),
|
|
action: <ToastAction altText={t('common.close')}>{t('common.close')}</ToastAction>,
|
|
});
|
|
|
|
queryClient.invalidateQueries({ queryKey: ['account-list'] });
|
|
setIsSubmitting(false);
|
|
onOpenChange(false);
|
|
}
|
|
|
|
function handleError(error: AxiosError) {
|
|
const errorMessage = (error.response?.data as { message?: string })?.message ||
|
|
error.message ||
|
|
t('accounts.updateFailed');
|
|
|
|
toast({
|
|
variant: "destructive",
|
|
title: t('accounts.accountSyncFoldersUpdateFailed'),
|
|
description: errorMessage as string,
|
|
action: <ToastAction altText={t('common.tryAgain')}>{t('common.tryAgain')}</ToastAction>,
|
|
});
|
|
setIsSubmitting(false);
|
|
console.error(error);
|
|
}
|
|
|
|
const handleSubmit = async () => {
|
|
if (selectedFolders.length === 0) {
|
|
toast({
|
|
title: t('common.error'),
|
|
description: t('accounts.selectAtLeastOneFolder'),
|
|
variant: 'destructive',
|
|
});
|
|
return;
|
|
}
|
|
setIsSubmitting(true);
|
|
updateMutation.mutate({
|
|
sync_folders: selectedFolders,
|
|
});
|
|
};
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent className="sm:max-w-2xl">
|
|
<DialogHeader>
|
|
<DialogTitle>{t('accounts.selectSyncFolders')}</DialogTitle>
|
|
<DialogDescription>
|
|
{t('accounts.chooseFoldersToSync', { "email": currentRow.email })}
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<div className="space-y-4">
|
|
<div className="flex items-center justify-between pt-2">
|
|
<div className="flex gap-2">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={handleSelectAll}
|
|
disabled={isLoading || !mailboxes || mailboxes.length === 0}
|
|
className="h-8"
|
|
>
|
|
<CheckSquare className="w-4 h-4 mr-2" />
|
|
{t('common.selectAll')}
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={handleDeselectAll}
|
|
disabled={isLoading || selectedFolders.length === 0}
|
|
className="h-8"
|
|
>
|
|
<Square className="w-4 h-4 mr-2" />
|
|
{t('common.deselectAll')}
|
|
</Button>
|
|
</div>
|
|
<div className="text-sm text-muted-foreground">
|
|
{t('accounts.foldersSelected', { count: selectedFolders.length })}
|
|
</div>
|
|
</div>
|
|
<ScrollArea className="h-[30rem] w-full pr-4 -mr-4 py-1">
|
|
{isLoading && (
|
|
<div className="p-8 space-y-8">
|
|
<div className="flex flex-col items-center gap-3 text-muted-foreground">
|
|
<Loader2 className="h-6 w-6 animate-spin" />
|
|
<span className="text-sm font-medium">Loading mailbox folders…</span>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
{[...Array(8)].map((_, i) => (
|
|
<Skeleton key={i} className="h-8 w-full" />
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
{!isLoading && (
|
|
<TreeView
|
|
key={selectedFolders.length > 0 ? `tree-${selectedFolders.length}-${selectedFolders[0]}` : 'tree-empty'}
|
|
data={treeData}
|
|
multiple
|
|
expandAll
|
|
clickRowToSelect={false}
|
|
initialSelectedItemIds={initialSelectedItemIds}
|
|
onSelectItemsChange={handleSelectItems}
|
|
/>
|
|
)}
|
|
</ScrollArea>
|
|
</div>
|
|
|
|
<DialogFooter>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => onOpenChange(false)}
|
|
disabled={isSubmitting}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
onClick={handleSubmit}
|
|
disabled={isSubmitting || isLoading}
|
|
>
|
|
{isSubmitting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
|
Save Changes
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
} |