This commit is contained in:
Комаров Данил Анатольевич 6
2026-05-29 04:59:58 +03:00
commit 83ef0d5ab3
28 changed files with 3027 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body, #root {
height: 100%;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, sans-serif;
background: #1a1a2e;
color: #e0e0e0;
}
a {
color: #7ec8e3;
}
+75
View File
@@ -0,0 +1,75 @@
import React, { useState, useRef, useCallback, useEffect } from 'react';
import Login from './components/Login';
import Chat from './components/Chat';
const WS_URL = import.meta.env.VITE_WS_URL || 'ws://localhost:8080';
export default function App() {
const [loggedIn, setLoggedIn] = useState(false);
const [login, setLogin] = useState('');
const [error, setError] = useState('');
const wsRef = useRef(null);
const handleLogin = useCallback((userLogin, password) => {
setError('');
const ws = new WebSocket(WS_URL);
ws.onopen = () => {
ws.send(JSON.stringify({ type: 'auth', login: userLogin, password }));
};
ws.onmessage = (event) => {
let msg;
try {
msg = JSON.parse(event.data);
} catch {
return;
}
if (msg.type === 'auth_result') {
if (msg.success) {
setLogin(userLogin);
setLoggedIn(true);
} else {
setError(msg.reason || 'Authentication failed');
ws.close();
}
}
};
ws.onerror = () => {
setError('Cannot connect to server');
};
ws.onclose = () => {
if (!loggedIn) {
setError('Connection closed');
}
};
wsRef.current = ws;
}, [loggedIn]);
const handleLogout = useCallback(() => {
if (wsRef.current) {
wsRef.current.close();
wsRef.current = null;
}
setLoggedIn(false);
setLogin('');
}, []);
useEffect(() => {
return () => {
if (wsRef.current) {
wsRef.current.close();
}
};
}, []);
if (!loggedIn) {
return <Login onLogin={handleLogin} error={error} />;
}
return <Chat ws={wsRef.current} login={login} onLogout={handleLogout} />;
}
+52
View File
@@ -0,0 +1,52 @@
.chat-container {
display: flex;
flex-direction: column;
height: 100%;
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
}
.chat-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 0;
border-bottom: 1px solid #2a2a4a;
}
.chat-header h2 {
font-size: 1.1rem;
font-weight: 500;
}
.logout-btn {
padding: 0.4rem 1rem;
border: 1px solid #5c5c7a;
border-radius: 6px;
background: transparent;
color: #e0e0e0;
cursor: pointer;
font-size: 0.85rem;
transition: background 0.2s;
}
.logout-btn:hover {
background: #2a2a4a;
}
.chat-error {
background: #5c1a1a;
color: #ff8a8a;
padding: 0.5rem 1rem;
text-align: center;
font-size: 0.9rem;
}
.chat-notification {
background: #1a3a5c;
color: #8ab8ff;
padding: 0.5rem 1rem;
text-align: center;
font-size: 0.9rem;
}
+137
View File
@@ -0,0 +1,137 @@
import React, { useState, useEffect, useRef, useCallback } from 'react';
import MessageList from './MessageList';
import MessageInput from './MessageInput';
import './Chat.css';
function setFavicon(hasNotification) {
const canvas = document.createElement('canvas');
canvas.width = 32;
canvas.height = 32;
const ctx = canvas.getContext('2d');
ctx.fillStyle = '#4a9eff';
ctx.beginPath();
ctx.arc(16, 16, 14, 0, 2 * Math.PI);
ctx.fill();
ctx.fillStyle = '#fff';
ctx.font = 'bold 18px sans-serif';
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
ctx.fillText('CH', 16, 16);
if (hasNotification) {
ctx.fillStyle = '#ff4444';
ctx.beginPath();
ctx.arc(26, 6, 5, 0, 2 * Math.PI);
ctx.fill();
ctx.strokeStyle = '#1a1a2e';
ctx.lineWidth = 2;
ctx.stroke();
}
let link = document.querySelector('link[rel="icon"]');
if (!link) {
link = document.createElement('link');
link.rel = 'icon';
document.head.appendChild(link);
}
link.href = canvas.toDataURL();
}
export default function Chat({ ws, login, onLogout }) {
const [messages, setMessages] = useState([]);
const [connected, setConnected] = useState(true);
const [error, setError] = useState('');
const hasNotifRef = useRef(false);
const messagesRef = useRef(messages);
messagesRef.current = messages;
const addMessage = useCallback((msg) => {
setMessages(prev => [...prev, { ...msg, id: Date.now() + Math.random() }]);
if (
document.hidden &&
msg.from &&
msg.from !== login &&
(msg.type === 'text' || msg.type === 'file')
) {
if (!hasNotifRef.current) {
hasNotifRef.current = true;
setFavicon(true);
}
try {
const ctx = new (window.AudioContext || window.webkitAudioContext)();
const osc = ctx.createOscillator();
const gain = ctx.createGain();
osc.connect(gain);
gain.connect(ctx.destination);
osc.frequency.value = 520;
gain.gain.value = 0.15;
osc.start();
gain.gain.exponentialRampToValueAtTime(0.001, ctx.currentTime + 0.15);
osc.stop(ctx.currentTime + 0.15);
osc.onended = () => ctx.close();
} catch {}
}
}, [login]);
useEffect(() => {
setFavicon(false);
const onVisible = () => {
if (hasNotifRef.current) {
hasNotifRef.current = false;
setFavicon(false);
}
};
document.addEventListener('visibilitychange', onVisible);
return () => {
document.removeEventListener('visibilitychange', onVisible);
};
}, []);
useEffect(() => {
if (!ws) return;
ws.onmessage = (event) => {
let msg;
try {
msg = JSON.parse(event.data);
} catch {
return;
}
if (msg.type === 'text') {
addMessage(msg);
} else if (msg.type === 'file') {
addMessage(msg);
} else if (msg.type === 'system') {
addMessage(msg);
} else if (msg.type === 'error') {
setError(msg.message);
}
};
ws.onclose = () => {
setConnected(false);
setError('Connection lost');
};
ws.onerror = () => {
setConnected(false);
setError('Connection error');
};
}, [ws, addMessage]);
return (
<div className="chat-container">
<div className="chat-header">
<h2>Chat room logged in as <strong>{login}</strong></h2>
<button className="logout-btn" onClick={onLogout}>Logout</button>
</div>
{error && !connected && <div className="chat-error">{error}</div>}
{error && connected && <div className="chat-notification">{error}</div>}
<MessageList messages={messages} currentUser={login} />
<MessageInput ws={ws} />
</div>
);
}
+65
View File
@@ -0,0 +1,65 @@
.login-container {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
.login-form {
background: #16213e;
padding: 2.5rem;
border-radius: 12px;
width: 100%;
max-width: 360px;
display: flex;
flex-direction: column;
gap: 1rem;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.login-form h1 {
text-align: center;
margin-bottom: 0.5rem;
font-size: 1.6rem;
color: #e0e0e0;
}
.login-error {
background: #5c1a1a;
color: #ff8a8a;
padding: 0.6rem 1rem;
border-radius: 8px;
font-size: 0.9rem;
text-align: center;
}
.login-form input {
padding: 0.75rem 1rem;
border: 1px solid #2a2a4a;
border-radius: 8px;
background: #1a1a2e;
color: #e0e0e0;
font-size: 1rem;
outline: none;
transition: border-color 0.2s;
}
.login-form input:focus {
border-color: #4a9eff;
}
.login-form button {
padding: 0.75rem;
border: none;
border-radius: 8px;
background: #4a9eff;
color: #fff;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
}
.login-form button:hover {
background: #357abd;
}
+36
View File
@@ -0,0 +1,36 @@
import React, { useState } from 'react';
import './Login.css';
export default function Login({ onLogin, error }) {
const [login, setLogin] = useState('');
const [password, setPassword] = useState('');
const handleSubmit = (e) => {
e.preventDefault();
if (!login.trim() || !password.trim()) return;
onLogin(login.trim(), password);
};
return (
<div className="login-container">
<form className="login-form" onSubmit={handleSubmit}>
<h1>Chat Login</h1>
{error && <div className="login-error">{error}</div>}
<input
type="text"
placeholder="Login"
value={login}
onChange={(e) => setLogin(e.target.value)}
autoFocus
/>
<input
type="password"
placeholder="Password"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
<button type="submit">Sign In</button>
</form>
</div>
);
}
+129
View File
@@ -0,0 +1,129 @@
.message-list {
flex: 1;
overflow-y: auto;
padding: 1rem 0;
display: flex;
flex-direction: column;
gap: 0.5rem;
scrollbar-width: thin;
scrollbar-color: #3a3a5a transparent;
}
.message-list::-webkit-scrollbar {
width: 6px;
}
.message-list::-webkit-scrollbar-track {
background: transparent;
}
.message-list::-webkit-scrollbar-thumb {
background: #3a3a5a;
border-radius: 3px;
}
.message-list::-webkit-scrollbar-thumb:hover {
background: #4a4a6a;
}
.message-list-empty {
text-align: center;
color: #6a6a8a;
margin-top: 3rem;
font-size: 0.95rem;
}
.message-system {
text-align: center;
color: #6a6a8a;
font-size: 0.85rem;
padding: 0.3rem 0;
font-style: italic;
}
.message {
max-width: 75%;
padding: 0.6rem 1rem;
border-radius: 12px;
word-wrap: break-word;
}
.message-own {
align-self: flex-end;
background: #2b4a7a;
border-bottom-right-radius: 4px;
}
.message-other {
align-self: flex-start;
background: #2a2a4a;
border-bottom-left-radius: 4px;
}
.message-header {
display: flex;
align-items: baseline;
gap: 0.5rem;
margin-bottom: 0.3rem;
}
.message-author {
font-weight: 600;
font-size: 0.85rem;
color: #8ab8ff;
}
.message-time {
font-size: 0.7rem;
color: #6a6a8a;
}
.message-body p {
margin-bottom: 0.3rem;
line-height: 1.4;
}
.message-body p:last-child {
margin-bottom: 0;
}
.message-image {
max-width: 100%;
max-height: 300px;
border-radius: 8px;
cursor: pointer;
display: block;
margin-top: 0.3rem;
transition: opacity 0.2s;
}
.message-image:hover {
opacity: 0.9;
}
.message-file-link {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.4rem 0.6rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 6px;
text-decoration: none;
color: #7ec8e3;
font-size: 0.9rem;
margin-top: 0.3rem;
}
.message-file-link:hover {
background: rgba(255, 255, 255, 0.1);
}
.file-icon {
font-size: 1.1rem;
}
.message-file-error {
color: #ff6a6a;
font-size: 0.85rem;
margin-top: 0.3rem;
}
+113
View File
@@ -0,0 +1,113 @@
import React, { useMemo } from 'react';
import './Message.css';
function formatTime(ts) {
const d = new Date(ts);
return d.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' });
}
const URL_REGEX = /(https?:\/\/[^\s<]+[^\s<.,!?)}\]"'\\])/gi;
function linkifyText(text) {
const parts = [];
let lastIndex = 0;
let match;
URL_REGEX.lastIndex = 0;
while ((match = URL_REGEX.exec(text)) !== null) {
if (match.index > lastIndex) {
parts.push(text.slice(lastIndex, match.index));
}
parts.push(
<a key={match.index} href={match[0]} target="_blank" rel="noopener noreferrer">
{match[0]}
</a>
);
lastIndex = match.index + match[0].length;
}
if (lastIndex < text.length) {
parts.push(text.slice(lastIndex));
}
return parts.length ? parts : text;
}
function dataURLToBlobUrl(dataUrl) {
try {
const arr = dataUrl.split(',');
const mime = arr[0].match(/:(.*?);/)[1];
const bstr = atob(arr[1]);
const n = bstr.length;
const u8arr = new Uint8Array(n);
for (let i = 0; i < n; i++) {
u8arr[i] = bstr.charCodeAt(i);
}
const blob = new Blob([u8arr], { type: mime });
return URL.createObjectURL(blob);
} catch {
return null;
}
}
export default function Message({ message, isOwn }) {
const isImage = message.mime && message.mime.startsWith('image/');
const isSystem = message.type === 'system';
const isFile = message.type === 'file';
const blobUrl = useMemo(() => {
if (isFile && message.data) {
return dataURLToBlobUrl(`data:${message.mime};base64,${message.data}`);
}
return null;
}, [isFile, message.data, message.mime]);
const downloadUrl = useMemo(() => {
if (isFile && message.data && !isImage) {
return dataURLToBlobUrl(`data:${message.mime};base64,${message.data}`);
}
return null;
}, [isFile, message.data, message.mime, isImage]);
if (isSystem) {
return (
<div className="message-system">
<span>{message.text}</span>
</div>
);
}
return (
<div className={`message ${isOwn ? 'message-own' : 'message-other'}`}>
<div className="message-header">
<span className="message-author">{message.from}</span>
<span className="message-time">{formatTime(message.timestamp)}</span>
</div>
<div className="message-body">
{message.text && <p>{linkifyText(message.text)}</p>}
{isFile && isImage && blobUrl && (
<a href={blobUrl} target="_blank" rel="noreferrer">
<img
className="message-image"
src={blobUrl}
alt={message.filename}
/>
</a>
)}
{isFile && isImage && !blobUrl && (
<div className="message-file-error">Failed to load image</div>
)}
{isFile && !isImage && downloadUrl && (
<a
className="message-file-link"
href={downloadUrl}
download={message.filename}
>
<span className="file-icon">&#128206;</span>
{message.filename}
</a>
)}
{isFile && !isImage && !downloadUrl && (
<div className="message-file-error">Failed to load file</div>
)}
</div>
</div>
);
}
+58
View File
@@ -0,0 +1,58 @@
.message-input-container {
padding: 1rem 0;
border-top: 1px solid #2a2a4a;
}
.message-input-form {
display: flex;
gap: 0.5rem;
}
.message-input-field {
flex: 1;
padding: 0.7rem 1rem;
border: 1px solid #2a2a4a;
border-radius: 8px;
background: #16213e;
color: #e0e0e0;
font-size: 0.95rem;
outline: none;
transition: border-color 0.2s;
}
.message-input-field:focus {
border-color: #4a9eff;
}
.attach-btn, .send-btn {
padding: 0.7rem 1.2rem;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 0.95rem;
transition: background 0.2s;
}
.attach-btn {
background: #2a2a4a;
color: #e0e0e0;
font-size: 1.1rem;
}
.attach-btn:hover {
background: #3a3a5a;
}
.send-btn {
background: #4a9eff;
color: #fff;
font-weight: 600;
}
.send-btn:hover {
background: #357abd;
}
.file-input-hidden {
display: none;
}
+71
View File
@@ -0,0 +1,71 @@
import React, { useState, useRef } from 'react';
import './MessageInput.css';
const MAX_FILE_SIZE = 10 * 1024 * 1024;
export default function MessageInput({ ws }) {
const [text, setText] = useState('');
const fileInputRef = useRef(null);
const sendText = (e) => {
e.preventDefault();
if (!text.trim()) return;
ws.send(JSON.stringify({ type: 'text', text: text.trim() }));
setText('');
};
const handleFileSelect = (e) => {
const file = e.target.files[0];
if (!file) return;
if (file.size > MAX_FILE_SIZE) {
alert('File too large. Maximum is 10 MB.');
e.target.value = '';
return;
}
const reader = new FileReader();
reader.onload = () => {
const base64 = reader.result.split(',')[1];
ws.send(JSON.stringify({
type: 'file',
filename: file.name,
mime: file.type || 'application/octet-stream',
data: base64
}));
};
reader.onerror = () => {
alert('Failed to read file');
};
reader.readAsDataURL(file);
e.target.value = '';
};
const handleAttachClick = () => {
fileInputRef.current?.click();
};
return (
<div className="message-input-container">
<form className="message-input-form" onSubmit={sendText}>
<input
className="message-input-field"
type="text"
placeholder="Type a message..."
value={text}
onChange={(e) => setText(e.target.value)}
/>
<button type="button" className="attach-btn" onClick={handleAttachClick} title="Attach file">
&#128206;
</button>
<button type="submit" className="send-btn">Send</button>
</form>
<input
ref={fileInputRef}
type="file"
className="file-input-hidden"
onChange={handleFileSelect}
/>
</div>
);
}
+22
View File
@@ -0,0 +1,22 @@
import React, { useRef, useEffect } from 'react';
import Message from './Message';
export default function MessageList({ messages, currentUser }) {
const bottomRef = useRef(null);
useEffect(() => {
bottomRef.current?.scrollIntoView({ behavior: 'smooth' });
}, [messages]);
return (
<div className="message-list">
{messages.length === 0 && (
<div className="message-list-empty">No messages yet. Start chatting!</div>
)}
{messages.map((msg) => (
<Message key={msg.id} message={msg} isOwn={msg.from === currentUser} />
))}
<div ref={bottomRef} />
</div>
);
}
+10
View File
@@ -0,0 +1,10 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './App.css';
ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<App />
</React.StrictMode>
);