2026-04-18 20:55:07 +05:00
|
|
|
|
import { createSignal, Show, For } from "solid-js";
|
2026-04-18 18:25:10 +05:00
|
|
|
|
|
|
|
|
|
|
interface ValidationErrors {
|
|
|
|
|
|
content?: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
interface CommentFormProps {
|
2026-04-18 20:55:07 +05:00
|
|
|
|
onSubmit: (data: { content: string }) => void;
|
2026-04-18 18:25:10 +05:00
|
|
|
|
isReply?: boolean;
|
|
|
|
|
|
onCancel?: () => void;
|
|
|
|
|
|
user?: {
|
|
|
|
|
|
name: string;
|
|
|
|
|
|
email: string;
|
|
|
|
|
|
avatar?: string;
|
|
|
|
|
|
};
|
2026-04-18 20:55:07 +05:00
|
|
|
|
initialContent?: string;
|
|
|
|
|
|
isEdit?: boolean;
|
|
|
|
|
|
onUpdate?: (data: { content: string }) => void;
|
|
|
|
|
|
onDelete?: () => void;
|
2026-04-18 18:25:10 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-04-18 20:55:07 +05:00
|
|
|
|
const EMOJIS = [
|
|
|
|
|
|
"👍", "👎", "❤️", "😊", "😂", "🎉", "🔥", "👏",
|
|
|
|
|
|
"😢", "😮", "😡", "🙏", "⭐", "💯", "❤️🔥", "🤔",
|
|
|
|
|
|
"👀", "💪", "🚀", "✨"
|
|
|
|
|
|
];
|
2026-04-18 18:25:10 +05:00
|
|
|
|
|
|
|
|
|
|
const DANGEROUS_PATTERNS = [
|
|
|
|
|
|
/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
|
|
|
|
|
|
/javascript:/gi,
|
|
|
|
|
|
/on\w+\s*=/gi,
|
|
|
|
|
|
/<iframe\b[^<]*(?:(?!<\/iframe>)<[^<]*)*<\/iframe>/gi,
|
|
|
|
|
|
/<object\b[^<]*(?:(?!<\/object>)<[^<]*)*<\/object>/gi,
|
|
|
|
|
|
/<embed\b[^<]*>/gi,
|
|
|
|
|
|
/data:text\/html/gi,
|
|
|
|
|
|
/expression\s*\(/gi,
|
|
|
|
|
|
/url\s*\(\s*['"]*\s*javascript:/gi,
|
|
|
|
|
|
];
|
|
|
|
|
|
|
2026-04-18 20:55:07 +05:00
|
|
|
|
const MAX_MESSAGE_LENGTH = 2000;
|
|
|
|
|
|
const MIN_MESSAGE_LENGTH = 10;
|
|
|
|
|
|
|
2026-04-18 18:25:10 +05:00
|
|
|
|
export default function CommentForm(props: CommentFormProps) {
|
2026-04-18 20:55:07 +05:00
|
|
|
|
const [content, setContent] = createSignal(props.initialContent || "");
|
2026-04-18 18:25:10 +05:00
|
|
|
|
const [errors, setErrors] = createSignal<ValidationErrors>({});
|
|
|
|
|
|
const [touched, setTouched] = createSignal<{ [key: string]: boolean }>({});
|
2026-04-18 20:55:07 +05:00
|
|
|
|
const [showEmojiPicker, setShowEmojiPicker] = createSignal(false);
|
2026-05-01 23:12:00 +05:00
|
|
|
|
const [consent, setConsent] = createSignal(false);
|
2026-04-18 18:25:10 +05:00
|
|
|
|
|
|
|
|
|
|
const sanitizeInput = (input: string): string => {
|
|
|
|
|
|
return input
|
|
|
|
|
|
.replace(/[<>]/g, "")
|
|
|
|
|
|
.replace(/"/g, """)
|
|
|
|
|
|
.replace(/'/g, "'")
|
|
|
|
|
|
.replace(/&/g, "&");
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const containsDangerousContent = (input: string): boolean => {
|
|
|
|
|
|
return DANGEROUS_PATTERNS.some((pattern) => pattern.test(input));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const validateContent = (value: string): string | undefined => {
|
|
|
|
|
|
const trimmed = value.trim();
|
|
|
|
|
|
if (!trimmed) return "Комментарий обязателен";
|
|
|
|
|
|
if (trimmed.length < MIN_MESSAGE_LENGTH)
|
|
|
|
|
|
return `Минимум ${MIN_MESSAGE_LENGTH} символов`;
|
|
|
|
|
|
if (trimmed.length > MAX_MESSAGE_LENGTH)
|
|
|
|
|
|
return `Максимум ${MAX_MESSAGE_LENGTH} символов`;
|
|
|
|
|
|
if (containsDangerousContent(trimmed)) return "Обнаружен опасный контент";
|
|
|
|
|
|
return undefined;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleContentChange = (e: Event) => {
|
|
|
|
|
|
const target = e.target as HTMLTextAreaElement;
|
|
|
|
|
|
let value = target.value;
|
|
|
|
|
|
|
|
|
|
|
|
if (containsDangerousContent(value)) {
|
|
|
|
|
|
DANGEROUS_PATTERNS.forEach((pattern) => {
|
|
|
|
|
|
value = value.replace(pattern, "");
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (value.length > MAX_MESSAGE_LENGTH) {
|
|
|
|
|
|
value = value.slice(0, MAX_MESSAGE_LENGTH);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
setContent(value);
|
|
|
|
|
|
if (touched().content) {
|
|
|
|
|
|
setErrors((prev) => ({ ...prev, content: validateContent(value) }));
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-04-18 20:55:07 +05:00
|
|
|
|
const addEmoji = (emoji: string) => {
|
|
|
|
|
|
setContent((prev) => prev + emoji);
|
|
|
|
|
|
setShowEmojiPicker(false);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2026-04-18 18:25:10 +05:00
|
|
|
|
const validateForm = (): boolean => {
|
|
|
|
|
|
const contentError = validateContent(content());
|
|
|
|
|
|
setErrors({ content: contentError });
|
|
|
|
|
|
setTouched({ content: true });
|
|
|
|
|
|
return !contentError;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleSubmit = (e: Event) => {
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
if (!validateForm()) return;
|
|
|
|
|
|
|
2026-04-18 20:55:07 +05:00
|
|
|
|
if (props.isEdit && props.onUpdate) {
|
|
|
|
|
|
props.onUpdate({ content: sanitizeInput(content().trim()) });
|
|
|
|
|
|
} else {
|
|
|
|
|
|
props.onSubmit({ content: sanitizeInput(content().trim()) });
|
|
|
|
|
|
}
|
2026-04-18 18:25:10 +05:00
|
|
|
|
|
2026-04-18 20:55:07 +05:00
|
|
|
|
if (!props.isEdit) {
|
|
|
|
|
|
setContent("");
|
|
|
|
|
|
setErrors({});
|
|
|
|
|
|
setTouched({});
|
|
|
|
|
|
}
|
2026-04-18 18:25:10 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleBlur = () => {
|
|
|
|
|
|
setTouched((prev) => ({ ...prev, content: true }));
|
|
|
|
|
|
setErrors((prev) => ({ ...prev, content: validateContent(content()) }));
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const isValid = () => {
|
2026-05-01 23:12:00 +05:00
|
|
|
|
return !errors().content && content().trim() && consent();
|
2026-04-18 18:25:10 +05:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div
|
|
|
|
|
|
class={`bg-linear-to-br from-gray-50 to-gray-100 rounded-2xl border border-gray-200 ${props.isReply ? "p-4" : "p-6 md:p-8"}`}
|
|
|
|
|
|
>
|
|
|
|
|
|
<h4
|
|
|
|
|
|
class={`font-semibold text-gray-900 mb-4 flex items-center gap-2 ${props.isReply ? "text-base" : "text-lg"}`}
|
|
|
|
|
|
>
|
|
|
|
|
|
<svg
|
|
|
|
|
|
class="w-5 h-5 text-blue-600"
|
|
|
|
|
|
fill="none"
|
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
|
>
|
|
|
|
|
|
<path
|
|
|
|
|
|
stroke-linecap="round"
|
|
|
|
|
|
stroke-linejoin="round"
|
|
|
|
|
|
stroke-width="2"
|
|
|
|
|
|
d="M8 12h.01M12 12h.01M16 12h.01M21 12c0 4.418-4.03 8-9 8a9.863 9.863 0 01-4.255-.949L3 20l1.395-3.72C3.512 15.042 3 13.574 3 12c0-4.418 4.03-8 9-8s9 3.582 9 8z"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</svg>
|
2026-04-18 20:55:07 +05:00
|
|
|
|
{props.isEdit ? "Редактировать комментарий" : props.isReply ? "Написать ответ" : "Оставить комментарий"}
|
2026-04-18 18:25:10 +05:00
|
|
|
|
</h4>
|
|
|
|
|
|
|
|
|
|
|
|
<form onSubmit={handleSubmit} class="space-y-4">
|
|
|
|
|
|
<div class="space-y-1">
|
2026-04-18 20:55:07 +05:00
|
|
|
|
<div class="relative">
|
|
|
|
|
|
<textarea
|
|
|
|
|
|
placeholder={props.user ? `Написать комментарий как ${props.user.name}...` : "Ваш комментарий... *"}
|
|
|
|
|
|
value={content()}
|
|
|
|
|
|
onInput={handleContentChange}
|
|
|
|
|
|
onBlur={handleBlur}
|
|
|
|
|
|
rows={props.isReply ? 3 : props.isEdit ? 3 : 4}
|
|
|
|
|
|
class={`w-full px-4 py-3 rounded-xl border transition-all resize-none bg-white text-gray-900 placeholder-gray-400 outline-none ${
|
|
|
|
|
|
errors().content && touched().content
|
|
|
|
|
|
? "border-red-300 focus:border-red-500 focus:ring-2 focus:ring-red-200"
|
|
|
|
|
|
: "border-gray-200 focus:border-blue-500 focus:ring-2 focus:ring-blue-200"
|
|
|
|
|
|
}`}
|
|
|
|
|
|
/>
|
|
|
|
|
|
<div class="absolute bottom-3 right-3 flex items-center gap-1">
|
|
|
|
|
|
<div class="relative">
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={() => setShowEmojiPicker(!showEmojiPicker())}
|
|
|
|
|
|
class="p-2 text-gray-400 hover:text-blue-600 transition-colors rounded-lg hover:bg-gray-100"
|
|
|
|
|
|
>
|
|
|
|
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.828 14.828a4 4 0 01-5.656 0M9 10h.01M15 10h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
|
|
|
|
|
</svg>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<Show when={showEmojiPicker()}>
|
|
|
|
|
|
<div class="absolute bottom-full right-0 mb-2 bg-white rounded-xl shadow-lg border border-gray-200 p-3 z-10 w-64">
|
|
|
|
|
|
<div class="grid grid-cols-5 gap-2">
|
|
|
|
|
|
<For each={EMOJIS}>
|
|
|
|
|
|
{(emoji) => (
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={() => addEmoji(emoji)}
|
|
|
|
|
|
class="p-2 text-xl hover:bg-gray-100 rounded-lg transition-colors"
|
|
|
|
|
|
>
|
|
|
|
|
|
{emoji}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</For>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</Show>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-04-18 18:25:10 +05:00
|
|
|
|
<div class="flex justify-between items-center">
|
|
|
|
|
|
<Show when={errors().content && touched().content}>
|
|
|
|
|
|
<p class="text-sm text-red-500 flex items-center gap-1">
|
|
|
|
|
|
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
2026-04-18 20:55:07 +05:00
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/>
|
2026-04-18 18:25:10 +05:00
|
|
|
|
</svg>
|
|
|
|
|
|
{errors().content}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</Show>
|
2026-04-18 20:55:07 +05:00
|
|
|
|
<p
|
|
|
|
|
|
class={`text-xs text-right ml-auto ${content().length > MAX_MESSAGE_LENGTH * 0.9 ? "text-orange-500" : "text-gray-400"}`}
|
|
|
|
|
|
>
|
2026-04-18 18:25:10 +05:00
|
|
|
|
{content().length}/{MAX_MESSAGE_LENGTH}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-05-01 23:12:00 +05:00
|
|
|
|
<div class="flex items-center gap-3 pt-2 pb-2">
|
|
|
|
|
|
<input
|
|
|
|
|
|
type="checkbox"
|
|
|
|
|
|
id="comment-consent"
|
|
|
|
|
|
checked={consent()}
|
|
|
|
|
|
onChange={(e) => setConsent(e.currentTarget.checked)}
|
|
|
|
|
|
class="w-4 h-4 accent-blue-600 cursor-pointer"
|
|
|
|
|
|
/>
|
|
|
|
|
|
<label for="comment-consent" class="text-sm text-gray-600 cursor-pointer">
|
|
|
|
|
|
Я согласен на <a href="/privacy" class="text-blue-600 hover:underline">обработку персональных данных</a>
|
|
|
|
|
|
</label>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-04-18 18:25:10 +05:00
|
|
|
|
<div class="flex flex-col sm:flex-row items-start sm:items-center justify-between gap-4 pt-2">
|
|
|
|
|
|
<p class="text-sm text-gray-500">
|
|
|
|
|
|
{props.user
|
2026-04-18 20:55:07 +05:00
|
|
|
|
? `Вы авторизованы как ${props.user.name}`
|
2026-04-18 18:25:10 +05:00
|
|
|
|
: "Ваш email не будет опубликован"}
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div class="flex gap-2">
|
2026-04-18 20:55:07 +05:00
|
|
|
|
<Show when={props.isEdit && props.onCancel}>
|
2026-04-18 18:25:10 +05:00
|
|
|
|
<button
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
onClick={props.onCancel}
|
|
|
|
|
|
class="px-6 py-3 text-gray-600 hover:text-gray-800 font-medium transition-colors"
|
|
|
|
|
|
>
|
|
|
|
|
|
Отмена
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</Show>
|
|
|
|
|
|
<button
|
|
|
|
|
|
type="submit"
|
|
|
|
|
|
disabled={!isValid()}
|
2026-04-18 20:55:07 +05:00
|
|
|
|
class="px-8 py-3 bg-gradient-to-b from-blue-600 to-blue-800 hover:opacity-90 disabled:opacity-50 disabled:cursor-not-allowed text-white font-medium rounded-xl transition-all flex items-center gap-2 hover:cursor-pointer group"
|
2026-04-18 18:25:10 +05:00
|
|
|
|
>
|
2026-04-18 20:55:07 +05:00
|
|
|
|
<svg
|
|
|
|
|
|
class="w-5 h-5 transition-transform duration-300 group-hover:rotate-90"
|
|
|
|
|
|
fill="none"
|
|
|
|
|
|
stroke="currentColor"
|
|
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
|
|
>
|
|
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 19l9 2-9-18-9 18 9-2zm0 0v-8"/>
|
2026-04-18 18:25:10 +05:00
|
|
|
|
</svg>
|
2026-04-18 20:55:07 +05:00
|
|
|
|
{props.isEdit ? "Сохранить" : props.isReply ? "Отправить" : "Отправить комментарий"}
|
2026-04-18 18:25:10 +05:00
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</form>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|