UI: правки личного чата и настроек

This commit is contained in:
AidarKC
2026-07-22 18:59:09 +04:00
parent f640451257
commit af62b51ef5
5 changed files with 88 additions and 48 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
client.version=1.2.342 client.version=1.2.343
server.version=1.2.314 server.version=1.2.315
+7 -1
View File
@@ -6,6 +6,7 @@ export function renderHeader({ title, leftAction, leftLabel = '', rightActions =
left.className = 'header-left'; left.className = 'header-left';
if (leftAction) { if (leftAction) {
const btn = document.createElement('button'); const btn = document.createElement('button');
btn.type = 'button';
btn.className = 'icon-btn'; btn.className = 'icon-btn';
btn.textContent = leftAction.label; btn.textContent = leftAction.label;
btn.addEventListener('click', leftAction.onClick); btn.addEventListener('click', leftAction.onClick);
@@ -26,10 +27,15 @@ export function renderHeader({ title, leftAction, leftLabel = '', rightActions =
right.className = 'header-actions'; right.className = 'header-actions';
rightActions.forEach((action) => { rightActions.forEach((action) => {
const btn = document.createElement('button'); const btn = document.createElement('button');
btn.type = 'button';
btn.className = `icon-btn${action.className ? ` ${action.className}` : ''}`; btn.className = `icon-btn${action.className ? ` ${action.className}` : ''}`;
btn.textContent = action.label;
if (action.title) btn.title = action.title; if (action.title) btn.title = action.title;
if (action.ariaLabel) btn.setAttribute('aria-label', action.ariaLabel); if (action.ariaLabel) btn.setAttribute('aria-label', action.ariaLabel);
if (action.iconNode instanceof Node) {
btn.append(action.iconNode);
} else {
btn.textContent = action.label;
}
btn.addEventListener('click', action.onClick); btn.addEventListener('click', action.onClick);
right.append(btn); right.append(btn);
}); });
+32 -29
View File
@@ -24,8 +24,7 @@ import {
hasTwemojiAsset, hasTwemojiAsset,
stopAllTwemojiAnimations, stopAllTwemojiAnimations,
} from '../components/emoji-picker.js?v=202607152130'; } from '../components/emoji-picker.js?v=202607152130';
import { openSpeechInputModal } from '../components/speech-input-modal.js'; import { isTextToSpeechConfigured, speakTextBySettings } from '../services/speech-tools-service.js';
import { isSpeechToTextConfigured, isTextToSpeechConfigured, speakTextBySettings } from '../services/speech-tools-service.js';
import { showToast } from '../services/channels-ux.js'; import { showToast } from '../services/channels-ux.js';
import { buildDmReplyTechBlock, parseDmTechBlocks, sanitizeUserDmTextForSend } from '../services/dm-tech-blocks.js'; import { buildDmReplyTechBlock, parseDmTechBlocks, sanitizeUserDmTextForSend } from '../services/dm-tech-blocks.js';
@@ -343,6 +342,20 @@ function autoResizeComposer(textarea) {
textarea.style.height = `${Math.min(180, Math.max(42, textarea.scrollHeight))}px`; textarea.style.height = `${Math.min(180, Math.max(42, textarea.scrollHeight))}px`;
} }
function createHeaderPhoneHandsetIcon() {
const ns = 'http://www.w3.org/2000/svg';
const svg = document.createElementNS(ns, 'svg');
svg.setAttribute('viewBox', '0 0 24 24');
svg.setAttribute('aria-hidden', 'true');
svg.setAttribute('class', 'header-icon-svg header-icon-svg--phone');
const path = document.createElementNS(ns, 'path');
path.setAttribute('d', 'M7.62 10.79a15.1 15.1 0 0 0 5.59 5.59l1.87-1.87a1 1 0 0 1 1.02-.24c1.12.37 2.31.57 3.52.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.37a1 1 0 0 1 1 1c0 1.21.2 2.4.57 3.52a1 1 0 0 1-.24 1.02l-1.08 1.27Z');
path.setAttribute('fill', 'currentColor');
svg.append(path);
return svg;
}
function openConfirmContactModal(targetLogin = '') { function openConfirmContactModal(targetLogin = '') {
const root = document.getElementById('modal-root'); const root = document.getElementById('modal-root');
if (!root) return Promise.resolve(false); if (!root) return Promise.resolve(false);
@@ -762,7 +775,6 @@ export function render({ navigate, route }) {
const screen = document.createElement('section'); const screen = document.createElement('section');
screen.className = 'stack dm-screen dm-chat-screen'; screen.className = 'stack dm-screen dm-chat-screen';
const isSpeechToTextReady = isSpeechToTextConfigured(state.entrySettings);
const isTextToSpeechReady = isTextToSpeechConfigured(state.entrySettings); const isTextToSpeechReady = isTextToSpeechConfigured(state.entrySettings);
const isKnownContact = (state.contacts || []).some((x) => String(x || '').toLowerCase() === String(chatId || '').toLowerCase()); const isKnownContact = (state.contacts || []).some((x) => String(x || '').toLowerCase() === String(chatId || '').toLowerCase());
const hasUnreadIncoming = getChatMessages(chatId).some((msg) => msg?.from === 'in' && msg?.unread); const hasUnreadIncoming = getChatMessages(chatId).some((msg) => msg?.from === 'in' && msg?.unread);
@@ -834,10 +846,10 @@ export function render({ navigate, route }) {
leftAction: { label: '←', onClick: () => navigate('messages-list') }, leftAction: { label: '←', onClick: () => navigate('messages-list') },
rightActions: [ rightActions: [
{ {
label: '☎',
title: 'Позвонить', title: 'Позвонить',
ariaLabel: 'Позвонить', ariaLabel: 'Позвонить',
className: 'chat-header-icon-btn chat-header-call-btn', className: 'chat-header-icon-btn chat-header-call-btn',
iconNode: createHeaderPhoneHandsetIcon(),
onClick: handleStartCall, onClick: handleStartCall,
}, },
{ {
@@ -948,8 +960,7 @@ export function render({ navigate, route }) {
<div class="emoji-picker-slot" id="chat-emoji-picker-slot" hidden></div> <div class="emoji-picker-slot" id="chat-emoji-picker-slot" hidden></div>
<textarea class="input dm-input" name="message" rows="1" placeholder="Введите сообщение" maxlength="12000"></textarea> <textarea class="input dm-input" name="message" rows="1" placeholder="Введите сообщение" maxlength="12000"></textarea>
<div class="dm-actions-col"> <div class="dm-actions-col">
<button class="ghost-btn dm-emoji-btn" type="button" id="chat-emoji-toggle" aria-label="Эмодзи" title="Эмодзи"></button> <button class="ghost-btn dm-emoji-btn" type="button" id="chat-emoji-toggle" aria-label="Эмодзи" title="Эмодзи"><span class="dm-emoji-btn__glyph">☺</span></button>
${isSpeechToTextReady ? '<button class="ghost-btn dm-voice-btn" type="button" id="chat-voice-input" title="Голосовой ввод">🎤</button>' : ''}
<button class="primary-btn dm-send-btn dm-send-icon-btn" type="submit" title="Отправить">➤</button> <button class="primary-btn dm-send-btn dm-send-icon-btn" type="submit" title="Отправить">➤</button>
</div> </div>
`; `;
@@ -976,6 +987,11 @@ export function render({ navigate, route }) {
} }
}; };
const syncComposerLayout = () => {
const height = Number.parseFloat(input?.style.height || '0');
form.classList.toggle('dm-chat-input--multiline', height > 52);
};
const rememberEmojiSelection = () => { const rememberEmojiSelection = () => {
if (!input) return; if (!input) return;
const valueLength = String(input.value || '').length; const valueLength = String(input.value || '').length;
@@ -1013,6 +1029,7 @@ export function render({ navigate, route }) {
} }
} }
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
}; };
if (emojiSlot) { if (emojiSlot) {
@@ -1053,6 +1070,7 @@ export function render({ navigate, route }) {
if (restoreDraft && input) { if (restoreDraft && input) {
input.value = draftToRestore || ''; input.value = draftToRestore || '';
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
focusInputToEnd(); focusInputToEnd();
} }
}; };
@@ -1063,6 +1081,7 @@ export function render({ navigate, route }) {
syncEditBanner(); syncEditBanner();
if (restoreDraft && input) { if (restoreDraft && input) {
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
focusInputToEnd(); focusInputToEnd();
} }
}; };
@@ -1085,6 +1104,7 @@ export function render({ navigate, route }) {
if (input) { if (input) {
input.value = String(parsed?.visibleText || ''); input.value = String(parsed?.visibleText || '');
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
focusInputToEnd(); focusInputToEnd();
} }
}; };
@@ -1246,6 +1266,7 @@ export function render({ navigate, route }) {
if (input) { if (input) {
input.value = text; input.value = text;
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
focusInputToEnd(); focusInputToEnd();
} }
addChatMessage(chatId, `${activeEdit ? 'Ошибка изменения' : 'Ошибка отправки'}: ${e.message || 'unknown'}`); addChatMessage(chatId, `${activeEdit ? 'Ошибка изменения' : 'Ошибка отправки'}: ${e.message || 'unknown'}`);
@@ -1358,9 +1379,11 @@ export function render({ navigate, route }) {
}); });
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
input?.addEventListener('input', () => { input?.addEventListener('input', () => {
rememberEmojiSelection(); rememberEmojiSelection();
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
}); });
input?.addEventListener('select', rememberEmojiSelection); input?.addEventListener('select', rememberEmojiSelection);
input?.addEventListener('keyup', rememberEmojiSelection); input?.addEventListener('keyup', rememberEmojiSelection);
@@ -1403,26 +1426,12 @@ export function render({ navigate, route }) {
if (!text) return; if (!text) return;
input.value = ''; input.value = '';
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
closeEmojiPicker(); closeEmojiPicker();
await sendTextMessage(text); await sendTextMessage(text);
focusInputToEnd(); focusInputToEnd();
}); });
form.querySelector('#chat-voice-input')?.addEventListener('click', async () => {
await openSpeechInputModal({
navigate,
onTextReady: (text) => {
const prev = String(input.value || '').trim();
input.value = prev ? `${prev} ${text}` : text;
autoResizeComposer(input);
},
onSendText: async (text) => sendTextMessage(text),
onSendQueued: () => {
showToast('Сообщение будет отправлено автоматически после распознавания', { timeoutMs: 1000 });
},
});
});
form.querySelector('.dm-send-btn')?.addEventListener('pointerdown', (event) => { form.querySelector('.dm-send-btn')?.addEventListener('pointerdown', (event) => {
event.preventDefault(); event.preventDefault();
try { try {
@@ -1438,6 +1447,7 @@ export function render({ navigate, route }) {
if (!text) return; if (!text) return;
input.value = ''; input.value = '';
autoResizeComposer(input); autoResizeComposer(input);
syncComposerLayout();
closeEmojiPicker(); closeEmojiPicker();
await sendTextMessage(text); await sendTextMessage(text);
focusInputToEnd(); focusInputToEnd();
@@ -1464,13 +1474,6 @@ export function render({ navigate, route }) {
markAsRead: false, markAsRead: false,
scrollMode: hasUnreadIncoming ? 'unread' : 'latest', scrollMode: hasUnreadIncoming ? 'unread' : 'latest',
}); });
if (hasUnreadIncoming) {
window.requestAnimationFrame(() => scrollToUnreadSeparator(log));
window.setTimeout(() => scrollToUnreadSeparator(log), 180);
} else {
window.requestAnimationFrame(() => scrollToLatestMessage(log));
window.setTimeout(() => scrollToLatestMessage(log), 180);
}
window.setTimeout(() => { window.setTimeout(() => {
if (markChatRead(chatId) > 0) { if (markChatRead(chatId) > 0) {
notifyUnreadStateUpdated(); notifyUnreadStateUpdated();
@@ -1480,7 +1483,7 @@ export function render({ navigate, route }) {
window.requestAnimationFrame(() => { window.requestAnimationFrame(() => {
boundScrollContainer = log.closest('.screen-content') || wrap.parentElement || wrap; boundScrollContainer = log.closest('.screen-content') || wrap.parentElement || wrap;
boundScrollContainer?.addEventListener('scroll', handleHistoryScroll, { passive: true }); boundScrollContainer?.addEventListener('scroll', handleHistoryScroll, { passive: true });
void loadHistoryPage({ preserveScroll: false }); void loadHistoryPage({ preserveScroll: true });
}); });
screen.cleanup = () => { screen.cleanup = () => {
setChatKeyboardOpen(false); setChatKeyboardOpen(false);
-5
View File
@@ -1,6 +1,5 @@
import { renderHeader } from '../components/header.js'; import { renderHeader } from '../components/header.js';
import { addAppLogEntry, authService, closeCurrentSessionAndSignOut, state } from '../state.js'; import { addAppLogEntry, authService, closeCurrentSessionAndSignOut, state } from '../state.js';
import { makeProfileLinksRoute } from '../services/shine-routes.js';
export const pageMeta = { id: 'settings-view', title: 'Настройки' }; export const pageMeta = { id: 'settings-view', title: 'Настройки' };
@@ -41,7 +40,6 @@ export function render({ navigate }) {
const card = document.createElement('div'); const card = document.createElement('div');
card.className = 'card stack'; card.className = 'card stack';
card.innerHTML = ` card.innerHTML = `
<button class="text-btn" type="button" id="settings-links">Показать связи</button>
<button class="text-btn" type="button" id="settings-device">Устройства</button> <button class="text-btn" type="button" id="settings-device">Устройства</button>
<button class="text-btn" type="button" id="settings-remote-addblock">Remote AddBlock через homeserver</button> <button class="text-btn" type="button" id="settings-remote-addblock">Remote AddBlock через homeserver</button>
<button class="text-btn" type="button" id="settings-servers">Настройки серверов</button> <button class="text-btn" type="button" id="settings-servers">Настройки серверов</button>
@@ -50,9 +48,6 @@ export function render({ navigate }) {
<button class="text-btn" type="button" id="settings-signout">Завершить текущий сеанс</button> <button class="text-btn" type="button" id="settings-signout">Завершить текущий сеанс</button>
`; `;
card.querySelector('#settings-links').addEventListener('click', () => {
navigate(makeProfileLinksRoute(state.session.login));
});
card.querySelector('#settings-device').addEventListener('click', () => navigate('device-view')); card.querySelector('#settings-device').addEventListener('click', () => navigate('device-view'));
card.querySelector('#settings-remote-addblock').addEventListener('click', () => navigate('remote-addblock-session-view')); card.querySelector('#settings-remote-addblock').addEventListener('click', () => navigate('remote-addblock-session-view'));
card.querySelector('#settings-servers').addEventListener('click', () => navigate('server-settings-view')); card.querySelector('#settings-servers').addEventListener('click', () => navigate('server-settings-view'));
+47 -11
View File
@@ -59,6 +59,17 @@
border-radius: 12px; border-radius: 12px;
} }
.header-icon-svg {
display: block;
width: 1em;
height: 1em;
}
.header-icon-svg--phone {
width: 22px;
height: 22px;
}
.chat-header-menu-btn { .chat-header-menu-btn {
border-radius: 12px; border-radius: 12px;
font-size: 24px; font-size: 24px;
@@ -4630,6 +4641,7 @@ html, body { overflow-x: hidden; }
.screen-content:has(> .dm-chat-screen) { .screen-content:has(> .dm-chat-screen) {
padding-top: 0; padding-top: 0;
padding-bottom: 0;
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: rgba(212, 175, 55, 0.65) rgba(255, 255, 255, 0.06); scrollbar-color: rgba(212, 175, 55, 0.65) rgba(255, 255, 255, 0.06);
} }
@@ -4685,12 +4697,13 @@ html, body { overflow-x: hidden; }
.dm-chat-input { .dm-chat-input {
gap: 10px; gap: 10px;
grid-template-columns: 1fr auto; grid-template-columns: minmax(0, 1fr) auto;
align-items: end; align-items: end;
position: sticky; position: sticky;
bottom: 0; bottom: 0;
z-index: 10; z-index: 10;
padding: 10px; margin-inline: -14px;
padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
border-top: 1px solid rgba(212, 175, 55, 0.22); border-top: 1px solid rgba(212, 175, 55, 0.22);
background: rgba(8, 12, 20, 0.9); background: rgba(8, 12, 20, 0.9);
backdrop-filter: blur(12px); backdrop-filter: blur(12px);
@@ -4733,18 +4746,35 @@ html, body { overflow-x: hidden; }
.dm-actions-col { .dm-actions-col {
display: grid; display: grid;
grid-template-columns: repeat(2, 42px); grid-template-columns: repeat(2, 46px);
grid-template-rows: 42px; grid-template-rows: 46px;
grid-template-areas: "emoji send"; grid-template-areas: "emoji send";
gap: 6px; gap: 6px;
align-self: end;
}
.dm-chat-input--multiline .dm-actions-col {
grid-template-columns: 46px;
grid-template-rows: repeat(2, 46px);
grid-template-areas:
"emoji"
"send";
} }
.dm-emoji-btn { .dm-emoji-btn {
grid-area: emoji; grid-area: emoji;
min-width: 42px; min-width: 46px;
width: 42px; width: 46px;
padding: 0; padding: 0;
font-size: 20px; line-height: 1;
}
.dm-emoji-btn__glyph {
display: inline-grid;
place-items: center;
width: 100%;
height: 100%;
font-size: 27px;
line-height: 1; line-height: 1;
} }
@@ -4918,6 +4948,8 @@ html, body { overflow-x: hidden; }
.dm-chat-input .dm-input { .dm-chat-input .dm-input {
min-height: 42px; min-height: 42px;
max-height: 180px; max-height: 180px;
width: 100%;
min-width: 0;
resize: none; resize: none;
overflow-y: auto; overflow-y: auto;
scrollbar-width: none; scrollbar-width: none;
@@ -4926,6 +4958,10 @@ html, body { overflow-x: hidden; }
padding: 10px 12px; padding: 10px 12px;
} }
.dm-chat-input--multiline .dm-input {
padding-right: 14px;
}
.dm-chat-input .dm-input::-webkit-scrollbar { .dm-chat-input .dm-input::-webkit-scrollbar {
width: 0; width: 0;
height: 0; height: 0;
@@ -4970,8 +5006,8 @@ html, body { overflow-x: hidden; }
.dm-send-icon-btn { .dm-send-icon-btn {
grid-area: send; grid-area: send;
min-width: 42px; min-width: 46px;
width: 42px; width: 46px;
padding: 0; padding: 0;
font-size: 15px; font-size: 15px;
line-height: 1; line-height: 1;
@@ -5617,8 +5653,8 @@ html, body { overflow-x: hidden; }
} }
.profile-top-icon-btn img { .profile-top-icon-btn img {
width: 44px; width: 48px;
height: 44px; height: 48px;
display: block; display: block;
opacity: 0.94; opacity: 0.94;
filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.34)); filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.34));