whisper-money/resources/js/components/automation-rules/create-automation-rule-dial...

260 lines
9.9 KiB
TypeScript

import { store } 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,
DialogTrigger,
} from '@/components/ui/dialog';
import { Input } from '@/components/ui/input';
import { Label as FormLabel } from '@/components/ui/label';
import {
buildJsonLogic,
createEmptyGroup,
isValidRuleStructure,
type RuleStructure,
} from '@/lib/rule-builder-utils';
import type { Category } from '@/types/category';
import type { Label } from '@/types/label';
import { __ } from '@/utils/i18n';
import { router } from '@inertiajs/react';
import { useState } from 'react';
interface CreateAutomationRuleDialogProps {
categories: Category[];
labels: Label[];
disabled?: boolean;
onSuccess?: () => void;
}
export function CreateAutomationRuleDialog({
categories,
labels,
disabled = false,
onSuccess,
}: CreateAutomationRuleDialogProps) {
const [open, setOpen] = useState(false);
const [title, setTitle] = useState('');
const [priority, setPriority] = useState('10');
const [ruleStructure, setRuleStructure] = useState<RuleStructure>({
groups: [createEmptyGroup()],
groupOperator: 'or',
});
const [categoryId, setCategoryId] = useState<string>('');
const [selectedLabelIds, setSelectedLabelIds] = useState<string[]>([]);
const [isSubmitting, setIsSubmitting] = useState(false);
const [errors, setErrors] = useState<Record<string, string>>({});
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.post(
store().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: () => {
setOpen(false);
setTitle('');
setPriority('10');
setRuleStructure({
groups: [createEmptyGroup()],
groupOperator: 'and',
});
setCategoryId('');
setSelectedLabelIds([]);
setErrors({});
onSuccess?.();
},
onError: (errors) => {
setErrors(errors as Record<string, string>);
},
onFinish: () => {
setIsSubmitting(false);
},
},
);
} catch (error) {
console.error('Failed to create automation rule:', error);
setIsSubmitting(false);
}
};
return (
<Dialog open={open} onOpenChange={setOpen}>
<DialogTrigger asChild>
<Button disabled={disabled}>{__('Create Rule')}</Button>
</DialogTrigger>
<DialogContent className="overflow-x-hidden sm:max-w-[600px]">
<DialogHeader>
<DialogTitle>{__('Create Automation Rule')}</DialogTitle>
<DialogDescription>
{__(
'Create a rule to automatically categorize transactions\n and add labels.',
)}
</DialogDescription>
</DialogHeader>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<FormLabel htmlFor="title">{__('Title')}</FormLabel>
<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">
<FormLabel htmlFor="priority">
{__('Priority')}
</FormLabel>
<Input
id="priority"
type="number"
min="0"
value={priority}
onChange={(e) => setPriority(e.target.value)}
placeholder="10"
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">
<FormLabel htmlFor="category">
{__('Set Category')}
</FormLabel>
<div className="mt-1">
<CategoryCombobox
value={categoryId}
onValueChange={setCategoryId}
categories={categories}
placeholder={__(
'Select a category (optional)',
)}
showUncategorized={false}
data-testid="action-category-select"
/>
</div>
</div>
<div className="space-y-2">
<FormLabel>{__('Add Labels')}</FormLabel>
<div className="mt-1">
<LabelCombobox
value={selectedLabelIds}
onValueChange={setSelectedLabelIds}
labels={labels}
placeholder={__('Select labels (optional)')}
allowCreate={true}
/>
</div>
</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={() => setOpen(false)}
disabled={isSubmitting}
>
{__('Cancel')}
</Button>
<Button
type="submit"
disabled={isSubmitting}
data-testid="submit-automation-rule"
>
{isSubmitting ? 'Creating...' : 'Create'}
</Button>
</div>
</form>
</DialogContent>
</Dialog>
);
}