whisper-money/resources/js/components/automation-rules/edit-automation-rule-dialog...

257 lines
9.5 KiB
TypeScript

import { update } from '@/actions/App/Http/Controllers/Settings/AutomationRuleController';
import { RuleBuilder } from '@/components/automation-rules/rule-builder';
import { CategoryCombobox } from '@/components/shared/category-combobox';
import { LabelCombobox } from '@/components/shared/label-combobox';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from '@/components/ui/dialog';
import { Input } from '@/components/ui/input';
import { Label } from '@/components/ui/label';
import {
buildJsonLogic,
createEmptyGroup,
isValidRuleStructure,
parseJsonLogic,
type RuleStructure,
} from '@/lib/rule-builder-utils';
import type { AutomationRule } from '@/types/automation-rule';
import type { Category } from '@/types/category';
import type { Label as LabelType } from '@/types/label';
import { __ } from '@/utils/i18n';
import { router } from '@inertiajs/react';
import { useEffect, useState } from 'react';
interface EditAutomationRuleDialogProps {
rule: AutomationRule;
categories: Category[];
labels: LabelType[];
open: boolean;
onOpenChange: (open: boolean) => void;
onSuccess?: () => void;
}
export function EditAutomationRuleDialog({
rule,
categories,
labels,
open,
onOpenChange,
onSuccess,
}: EditAutomationRuleDialogProps) {
const [title, setTitle] = useState('');
const [priority, setPriority] = useState('0');
const [ruleStructure, setRuleStructure] = useState<RuleStructure>({
groups: [createEmptyGroup()],
groupOperator: 'and',
});
const [categoryId, setCategoryId] = useState<string>('');
const [selectedLabelIds, setSelectedLabelIds] = useState<string[]>([]);
const [isSubmitting, setIsSubmitting] = useState(false);
const [errors, setErrors] = useState<Record<string, string>>({});
useEffect(() => {
if (rule && open) {
setTitle(rule.title);
setPriority(String(rule.priority));
setRuleStructure(parseJsonLogic(rule.rules_json));
setCategoryId(
rule.action_category_id ? String(rule.action_category_id) : '',
);
setSelectedLabelIds(rule.labels?.map((l) => l.id) || []);
}
}, [rule, open]);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setErrors({});
if (!title.trim()) {
setErrors((prev) => ({ ...prev, title: 'Title is required' }));
return;
}
if (!isValidRuleStructure(ruleStructure)) {
setErrors((prev) => ({
...prev,
rules_json: 'At least one valid condition is required',
}));
return;
}
if (!categoryId && selectedLabelIds.length === 0) {
setErrors((prev) => ({
...prev,
action_category_id: 'At least one action is required',
}));
return;
}
setIsSubmitting(true);
try {
const jsonLogic = buildJsonLogic(ruleStructure);
router.patch(
update(rule.id).url,
{
title: title.trim(),
priority: parseInt(priority, 10),
rules_json: JSON.stringify(jsonLogic),
action_category_id: categoryId || null,
action_note: null,
action_note_iv: null,
action_label_ids:
selectedLabelIds.length > 0 ? selectedLabelIds : null,
},
{
preserveState: true,
preserveScroll: true,
onSuccess: () => {
onOpenChange(false);
setErrors({});
onSuccess?.();
},
onError: (errors) => {
setErrors(errors as Record<string, string>);
},
onFinish: () => {
setIsSubmitting(false);
},
},
);
} catch (error) {
console.error('Failed to update automation rule:', error);
setIsSubmitting(false);
}
};
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="overflow-x-hidden sm:max-w-[600px]">
<DialogHeader>
<DialogTitle>{__('Edit Automation Rule')}</DialogTitle>
<DialogDescription>
{__(
'Update the rule to automatically categorize transactions\n and add labels.',
)}
</DialogDescription>
</DialogHeader>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="title">{__('Title')}</Label>
<Input
id="title"
value={title}
onChange={(e) => setTitle(e.target.value)}
placeholder={__('Rule title')}
required
/>
{errors.title && (
<p className="text-sm text-red-500">
{errors.title}
</p>
)}
</div>
<div className="space-y-2">
<Label htmlFor="priority">{__('Priority')}</Label>
<Input
id="priority"
type="number"
min="0"
value={priority}
onChange={(e) => setPriority(e.target.value)}
placeholder="0"
required
/>
<p className="text-xs text-muted-foreground">
{__('Lower numbers execute first')}
</p>
{errors.priority && (
<p className="text-sm text-red-500">
{errors.priority}
</p>
)}
</div>
<RuleBuilder
value={ruleStructure}
onChange={setRuleStructure}
error={errors.rules_json}
/>
<div className="space-y-4 rounded-md border p-4">
<h4 className="font-medium">{__('Actions')}</h4>
<p className="text-sm text-muted-foreground">
{__('At least one action is required')}
</p>
<div className="space-y-2">
<Label htmlFor="category">
{__('Set Category')}
</Label>
<CategoryCombobox
value={categoryId}
onValueChange={setCategoryId}
categories={categories}
placeholder={__('Select a category (optional)')}
showUncategorized={false}
data-testid="action-category-select"
/>
</div>
<div className="space-y-2">
<Label>{__('Add Labels')}</Label>
<LabelCombobox
value={selectedLabelIds}
onValueChange={setSelectedLabelIds}
labels={labels}
placeholder={__('Select labels (optional)')}
allowCreate={true}
/>
</div>
{errors.action_category_id && (
<p className="text-sm text-red-500">
{errors.action_category_id}
</p>
)}
{(errors['action_label_ids.0'] ||
errors.action_label_ids) && (
<p className="text-sm text-red-500">
{errors['action_label_ids.0'] ||
errors.action_label_ids}
</p>
)}
</div>
<div className="flex justify-end gap-2">
<Button
type="button"
variant="outline"
onClick={() => onOpenChange(false)}
disabled={isSubmitting}
>
{__('Cancel')}
</Button>
<Button
type="submit"
disabled={isSubmitting}
data-testid="submit-automation-rule"
>
{isSubmitting ? 'Saving...' : 'Save Changes'}
</Button>
</div>
</form>
</DialogContent>
</Dialog>
);
}