f6e5a454ae
Mirror to GitHub / mirror (push) Successful in 31s
Test and Lint / backend-test (push) Successful in 1m27s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m22s
Version and Release / version-bump (push) Successful in 38s
Version and Release / trigger-drone (push) Successful in 3s
- Add comprehensive logging for rate limit blocks with full request details - IP address (with proper proxy detection), user agent, headers, timestamps - Rate limit info (current count, limit, remaining, reset time) - Separate tracking for auth vs general endpoints - Enhance authentication failure logging - JWT validation failures with detailed error info - Admin auth attempts without token - Failed token validation with user context - All events include IP, path, method, user agent - Improve Winston logger configuration for production - Add automatic log rotation (10MB errors, 50MB combined) - Create separate security.log for auth/rate limit events - Ensure logs directory exists automatically - Add structured JSON format for log aggregation - Support container logging with LOG_TO_CONSOLE env var - Create comprehensive documentation - Security logging guide with examples - Monitoring recommendations - Configuration reference - Add test script to verify logging functionality All rate limit settings remain configurable via admin panel: - Window duration, max requests, auth limits - Skip authenticated requests option - Public endpoints only option 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
64 lines
1.9 KiB
TypeScript
64 lines
1.9 KiB
TypeScript
import React from 'react';
|
|
import { HelpCircle } from 'lucide-react';
|
|
|
|
interface WelcomeMessageEditorProps {
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
placeholder?: string;
|
|
rows?: number;
|
|
}
|
|
|
|
export const WelcomeMessageEditor: React.FC<WelcomeMessageEditorProps> = ({
|
|
value,
|
|
onChange,
|
|
placeholder,
|
|
rows = 6
|
|
}) => {
|
|
const handleChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
|
|
onChange(e.target.value);
|
|
};
|
|
|
|
// Convert newlines to <br> tags for preview
|
|
const getPreviewHtml = () => {
|
|
return value
|
|
.split('\n')
|
|
.map(line => line.trim())
|
|
.filter(line => line.length > 0)
|
|
.join('<br />');
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-2">
|
|
<div className="relative">
|
|
<textarea
|
|
value={value}
|
|
onChange={handleChange}
|
|
placeholder={placeholder}
|
|
rows={rows}
|
|
className="w-full px-3 py-2 border border-neutral-300 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-primary-500 transition-colors resize-none font-mono text-sm"
|
|
/>
|
|
<div className="absolute top-2 right-2 text-neutral-400">
|
|
<HelpCircle className="w-4 h-4" title="Line breaks will be preserved in emails" />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="text-xs text-neutral-500">
|
|
Tip: Press Enter to create a new line. Each line will appear as a separate paragraph in emails.
|
|
</div>
|
|
|
|
{value && (
|
|
<div className="mt-4">
|
|
<p className="text-sm font-medium text-neutral-700 mb-2">Preview:</p>
|
|
<div className="p-4 bg-neutral-50 rounded-lg border border-neutral-200">
|
|
<div
|
|
className="text-sm text-neutral-700 whitespace-pre-wrap"
|
|
dangerouslySetInnerHTML={{ __html: getPreviewHtml() }}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
WelcomeMessageEditor.displayName = 'WelcomeMessageEditor'; |