2026-03-26 17:30:30 +07:00
|
|
|
|
'use client'
|
|
|
|
|
|
|
|
|
|
|
|
import { ViolationFileDetail } from '@/app/hooks/react-query/useFileViolations';
|
2026-05-11 13:37:06 +07:00
|
|
|
|
import { useActionState, useEffect, useState, SetStateAction } from 'react';
|
2026-03-26 17:30:30 +07:00
|
|
|
|
import { useTranslations } from 'next-intl';
|
2026-04-29 15:40:34 +07:00
|
|
|
|
import { createComplaint, fetchComplainInfo, MatchStatus } from '@/app/actions/violationActions';
|
2026-03-26 17:30:30 +07:00
|
|
|
|
import { toast } from 'sonner';
|
2026-04-29 15:40:34 +07:00
|
|
|
|
import { useQuery } from '@tanstack/react-query';
|
2026-04-15 13:30:19 +07:00
|
|
|
|
import { formatDate, formatDateTime } from '@/app/lib/formatDate';
|
2026-04-29 17:09:05 +07:00
|
|
|
|
import ModalWindow from '@/app/components/ModalWindow';
|
2026-03-26 17:30:30 +07:00
|
|
|
|
|
|
|
|
|
|
interface complaintInfo {
|
|
|
|
|
|
id: number,
|
|
|
|
|
|
status: string,
|
|
|
|
|
|
complaint_text: string,
|
|
|
|
|
|
violation_id: number,
|
|
|
|
|
|
email: string,
|
|
|
|
|
|
created_at: string,
|
|
|
|
|
|
updated_at: string,
|
|
|
|
|
|
not_moderated: boolean
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-07 19:05:44 +07:00
|
|
|
|
const ENABLED_STATUSES = ['COMPLAINT_IN_WORK', 'COMPLAINT_AND_LEGAL_IN_WORK'];
|
|
|
|
|
|
type UpdateStatusHandler = (id: number, status: MatchStatus) => Promise<boolean>;
|
|
|
|
|
|
|
2026-04-30 13:37:01 +07:00
|
|
|
|
export default function CaseComplaint({ selectedViolation, updateStatusHandler, setLocalViolation }:
|
|
|
|
|
|
{
|
|
|
|
|
|
selectedViolation: ViolationFileDetail,
|
|
|
|
|
|
updateStatusHandler: UpdateStatusHandler,
|
|
|
|
|
|
setLocalViolation: React.Dispatch<SetStateAction<ViolationFileDetail>>
|
|
|
|
|
|
}
|
|
|
|
|
|
) {
|
2026-03-26 17:30:30 +07:00
|
|
|
|
const t = useTranslations('Global');
|
|
|
|
|
|
|
2026-04-14 16:01:49 +07:00
|
|
|
|
const [noteText, setNoteText] = useState('');
|
2026-03-27 15:10:06 +07:00
|
|
|
|
const [state, formAction, isPending] = useActionState(createComplaint, undefined);
|
2026-04-29 17:09:05 +07:00
|
|
|
|
const [isTemplateModalOpen, setIsTemplateModalOpen] = useState(false);
|
|
|
|
|
|
const [templateName, setTemplateName] = useState('');
|
2026-03-27 15:10:06 +07:00
|
|
|
|
|
2026-03-26 17:30:30 +07:00
|
|
|
|
const { data: complainInfo, isLoading: isLoadingComplain } = useQuery({
|
2026-04-30 13:37:01 +07:00
|
|
|
|
queryKey: ['complainInfo', selectedViolation.id],
|
|
|
|
|
|
queryFn: () => fetchComplainInfo(selectedViolation.id),
|
2026-03-26 17:30:30 +07:00
|
|
|
|
select: (data) => {
|
|
|
|
|
|
if (data) {
|
|
|
|
|
|
return data
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
2026-04-30 13:37:01 +07:00
|
|
|
|
enabled: ENABLED_STATUSES.includes(selectedViolation.status),
|
2026-03-26 17:30:30 +07:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
if (state?.success) {
|
2026-03-27 15:10:06 +07:00
|
|
|
|
toast.success(t('the-complaint-has-been-registered'));
|
|
|
|
|
|
|
2026-04-07 19:05:44 +07:00
|
|
|
|
const newStatus = selectedViolation.status === 'LEGAL_IN_WORK'
|
|
|
|
|
|
? 'COMPLAINT_AND_LEGAL_IN_WORK'
|
|
|
|
|
|
: 'COMPLAINT_IN_WORK';
|
|
|
|
|
|
|
2026-03-27 15:10:06 +07:00
|
|
|
|
setLocalViolation(prev => ({
|
|
|
|
|
|
...prev,
|
2026-04-07 19:05:44 +07:00
|
|
|
|
status: newStatus
|
2026-04-30 13:37:01 +07:00
|
|
|
|
}))
|
2026-03-27 15:10:06 +07:00
|
|
|
|
|
2026-04-07 19:05:44 +07:00
|
|
|
|
updateStatusHandler(selectedViolation.id, newStatus);
|
2026-03-26 17:30:30 +07:00
|
|
|
|
} else if (state && !state.success) {
|
2026-03-31 14:47:39 +07:00
|
|
|
|
console.log(state.errorMessage);
|
|
|
|
|
|
if (state.errorMessage?.server) {
|
|
|
|
|
|
toast.warning(t(state.errorMessage.server));
|
2026-03-27 15:10:06 +07:00
|
|
|
|
} else {
|
|
|
|
|
|
toast.warning(t('the-complaint-has-not-been-registered'));
|
|
|
|
|
|
}
|
2026-03-26 17:30:30 +07:00
|
|
|
|
}
|
2026-04-07 19:05:44 +07:00
|
|
|
|
}, [state, updateStatusHandler, selectedViolation.id]);
|
2026-03-26 17:30:30 +07:00
|
|
|
|
|
2026-04-14 16:01:49 +07:00
|
|
|
|
function templateHandler(e: React.MouseEvent<HTMLLIElement>) {
|
|
|
|
|
|
const sampleItemText = e.currentTarget.querySelector('.sample-item-text');
|
|
|
|
|
|
|
|
|
|
|
|
if (sampleItemText) {
|
|
|
|
|
|
const text = sampleItemText.textContent || '';
|
|
|
|
|
|
setNoteText(text);
|
|
|
|
|
|
}
|
2026-03-26 17:30:30 +07:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-29 17:09:05 +07:00
|
|
|
|
function openTemplateSaveModal() {
|
|
|
|
|
|
if (!noteText.trim()) {
|
|
|
|
|
|
toast.warning(t('please-enter-complaint-text-first'));
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
setTemplateName('');
|
|
|
|
|
|
setIsTemplateModalOpen(true);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function saveTemplateHandler() {
|
|
|
|
|
|
if (!templateName.trim()) {
|
|
|
|
|
|
toast.warning(t('please-enter-template-name'));
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// пока нету эндпоинта оставлю заглушку
|
|
|
|
|
|
console.log('СОХРАНЕНИЕ ШАБЛОНА');
|
|
|
|
|
|
console.log('Название шаблона:', templateName);
|
|
|
|
|
|
console.log('Текст жалобы:', noteText);
|
|
|
|
|
|
console.log('========================');
|
|
|
|
|
|
|
|
|
|
|
|
toast.success(t('template-saved-successfully') || 'Шаблон успешно сохранен');
|
|
|
|
|
|
setIsTemplateModalOpen(false);
|
|
|
|
|
|
setTemplateName('');
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-30 13:37:01 +07:00
|
|
|
|
if (!ENABLED_STATUSES.includes(selectedViolation.status)) {
|
2026-03-26 17:30:30 +07:00
|
|
|
|
return (
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<>
|
|
|
|
|
|
<div className="violation-info-case">
|
|
|
|
|
|
<div className="note-form">
|
|
|
|
|
|
<form action={formAction}>
|
2026-04-30 13:37:01 +07:00
|
|
|
|
<input type="hidden" name="violationId" value={selectedViolation.id} />
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<section
|
|
|
|
|
|
className="note-form-section"
|
2026-04-17 18:23:13 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<div
|
|
|
|
|
|
className="note-form-group"
|
2026-04-23 11:42:54 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<label
|
|
|
|
|
|
className="note-case-label"
|
|
|
|
|
|
htmlFor="note"
|
|
|
|
|
|
>
|
|
|
|
|
|
{t('text-of-the-complaint')}
|
|
|
|
|
|
</label>
|
2026-04-17 18:23:13 +07:00
|
|
|
|
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<textarea
|
|
|
|
|
|
name="note"
|
|
|
|
|
|
className="note-textarea"
|
|
|
|
|
|
placeholder={`${t('text-area-error-fill-complaint-text')}...`}
|
|
|
|
|
|
value={noteText}
|
|
|
|
|
|
onChange={(e) => setNoteText(e.target.value)}
|
|
|
|
|
|
>
|
|
|
|
|
|
</textarea>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{state?.errorMessage?.textArea && (
|
|
|
|
|
|
<p
|
|
|
|
|
|
className="text-sm text-red-500"
|
|
|
|
|
|
>
|
|
|
|
|
|
{
|
|
|
|
|
|
state?.errorMessage?.textArea.split('&').map((e, index) => {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<span key={index}>
|
|
|
|
|
|
{t(e)}
|
|
|
|
|
|
<br />
|
|
|
|
|
|
</span>
|
|
|
|
|
|
)
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="button-actions"
|
|
|
|
|
|
>
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
className="btn-s btn-primary-small"
|
|
|
|
|
|
onClick={openTemplateSaveModal}
|
2026-04-23 11:42:54 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
{t('save-template')}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="submit"
|
|
|
|
|
|
className="btn-s btn-primary-small"
|
|
|
|
|
|
disabled={isPending}
|
|
|
|
|
|
>
|
|
|
|
|
|
{t('submit-violation')}
|
|
|
|
|
|
</button>
|
2026-04-23 11:42:54 +07:00
|
|
|
|
</div>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="samples-wrapper"
|
|
|
|
|
|
>
|
|
|
|
|
|
<h5>Шаблоны</h5>
|
2026-04-23 11:42:54 +07:00
|
|
|
|
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<ul
|
|
|
|
|
|
className="samples-list"
|
2026-04-14 16:01:49 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<li
|
|
|
|
|
|
className="sample-item"
|
2026-04-14 16:01:49 +07:00
|
|
|
|
onClick={(e) => {
|
2026-04-29 17:09:05 +07:00
|
|
|
|
templateHandler(e)
|
2026-04-14 16:01:49 +07:00
|
|
|
|
}}
|
|
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-title"
|
|
|
|
|
|
>
|
|
|
|
|
|
title 1
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-text"
|
|
|
|
|
|
>
|
|
|
|
|
|
1text text text text text text text text text text text text
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li
|
|
|
|
|
|
className="sample-item"
|
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
|
templateHandler(e)
|
|
|
|
|
|
}}
|
2026-04-14 16:01:49 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-title"
|
|
|
|
|
|
>
|
|
|
|
|
|
title 2
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-text"
|
|
|
|
|
|
>
|
|
|
|
|
|
2text text text text text text text text text text text text
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li
|
|
|
|
|
|
className="sample-item"
|
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
|
templateHandler(e)
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-title"
|
|
|
|
|
|
>
|
|
|
|
|
|
title 3
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-text"
|
|
|
|
|
|
>
|
|
|
|
|
|
3text text text text text text text text text text text text
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
|
|
<li
|
|
|
|
|
|
className="sample-item"
|
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
|
templateHandler(e)
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-title"
|
|
|
|
|
|
>
|
|
|
|
|
|
title 3
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-text"
|
|
|
|
|
|
>
|
|
|
|
|
|
3text text text text text text text text text text text text
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
|
|
<li
|
|
|
|
|
|
className="sample-item"
|
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
|
templateHandler(e)
|
|
|
|
|
|
}}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-title"
|
|
|
|
|
|
>
|
|
|
|
|
|
title 3
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="sample-item-text"
|
|
|
|
|
|
>
|
|
|
|
|
|
3text text text text text text text text text text text text
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<ModalWindow
|
|
|
|
|
|
state={isTemplateModalOpen}
|
|
|
|
|
|
callBack={setIsTemplateModalOpen}
|
|
|
|
|
|
>
|
|
|
|
|
|
<div className="template-modal-content">
|
|
|
|
|
|
<div className="template-modal-header">
|
|
|
|
|
|
<h3>{t('save-template')}</h3>
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="template-modal-close"
|
|
|
|
|
|
onClick={() => setIsTemplateModalOpen(false)}
|
|
|
|
|
|
>
|
|
|
|
|
|
×
|
2026-04-14 16:01:49 +07:00
|
|
|
|
</button>
|
2026-03-26 17:30:30 +07:00
|
|
|
|
</div>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<div className="template-modal-body">
|
|
|
|
|
|
<div className="template-form-group">
|
|
|
|
|
|
<label htmlFor="templateName">
|
|
|
|
|
|
{t('template-name')}:
|
|
|
|
|
|
</label>
|
|
|
|
|
|
<input
|
|
|
|
|
|
id="templateName"
|
|
|
|
|
|
type="text"
|
|
|
|
|
|
className="template-name-input"
|
|
|
|
|
|
placeholder={t('enter-template-name')}
|
|
|
|
|
|
value={templateName}
|
|
|
|
|
|
onChange={(e) => setTemplateName(e.target.value)}
|
|
|
|
|
|
autoFocus
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
2026-04-14 16:01:49 +07:00
|
|
|
|
|
2026-04-29 17:09:05 +07:00
|
|
|
|
<div className="template-preview">
|
|
|
|
|
|
<div className="template-preview-label">
|
|
|
|
|
|
{t('complaint-text-preview')}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="template-preview-text">
|
|
|
|
|
|
{noteText || t('no-text')}
|
|
|
|
|
|
</div>
|
2026-04-14 16:01:49 +07:00
|
|
|
|
</div>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
</div>
|
|
|
|
|
|
<div className="template-modal-footer">
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="btn-s btn-primary-small"
|
|
|
|
|
|
onClick={() => setIsTemplateModalOpen(false)}
|
2026-04-14 16:01:49 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
{t('cancel')}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="btn-s btn-resolve"
|
|
|
|
|
|
onClick={saveTemplateHandler}
|
2026-04-14 16:01:49 +07:00
|
|
|
|
>
|
2026-04-29 17:09:05 +07:00
|
|
|
|
{t('save')}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</ModalWindow>
|
|
|
|
|
|
</>
|
2026-03-26 17:30:30 +07:00
|
|
|
|
);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if (isLoadingComplain) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="violation-info-case">
|
2026-04-08 13:41:56 +07:00
|
|
|
|
<div
|
|
|
|
|
|
className="loading-animation"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
className="global-spinner large"
|
|
|
|
|
|
>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-03-26 17:30:30 +07:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="violation-info-case">
|
2026-05-11 13:37:06 +07:00
|
|
|
|
{complainInfo?.body ? (
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div className="complaint-details">
|
|
|
|
|
|
<div className="complaint-details-item">
|
|
|
|
|
|
<div className="complaint-details-header">
|
|
|
|
|
|
<h5>COM-{complainInfo.body?.id}</h5>
|
2026-03-26 17:30:30 +07:00
|
|
|
|
</div>
|
2026-05-11 13:37:06 +07:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="complaint-details-item">
|
|
|
|
|
|
<div className="complaint-details-title">{t('Status')}:</div>
|
|
|
|
|
|
<div className="complaint-details-content">
|
|
|
|
|
|
{complainInfo.body?.status}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="complaint-details-item">
|
|
|
|
|
|
<div className="complaint-details-title">{t('date-of-creation')}:</div>
|
|
|
|
|
|
<div className="complaint-details-content">
|
|
|
|
|
|
{complainInfo.body?.created_at
|
|
|
|
|
|
? `${formatDate(complainInfo.body.created_at)}: ${formatDateTime(complainInfo.body.created_at)}`
|
|
|
|
|
|
: '---'}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="complaint-details-item">
|
|
|
|
|
|
<div className="complaint-details-title">{t('date-of-update')}:</div>
|
|
|
|
|
|
<div className="complaint-details-content">
|
|
|
|
|
|
{complainInfo.body?.updated_at
|
|
|
|
|
|
? `${formatDate(complainInfo.body.updated_at)}: ${formatDateTime(complainInfo.body.updated_at)}`
|
|
|
|
|
|
: '---'}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="complaint-details-item">
|
|
|
|
|
|
<div className="complaint-details-title">{t('text-of-the-complaint')}:</div>
|
|
|
|
|
|
<div className="complaint-details-content">
|
|
|
|
|
|
{complainInfo.body?.complaint_text}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-03-26 17:30:30 +07:00
|
|
|
|
) : (
|
2026-03-27 15:10:06 +07:00
|
|
|
|
<div>
|
|
|
|
|
|
{t('no-information-about-the-complaint')}
|
|
|
|
|
|
</div>
|
2026-03-26 17:30:30 +07:00
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|