Some fixes

This commit is contained in:
Eduard Kuzmenko 2022-06-26 18:38:54 +02:00
parent f17e88cccb
commit 42285dde02
2 changed files with 12 additions and 34 deletions

View File

@ -781,41 +781,18 @@ export default class ChatTopbar {
});
}
} else if(this.chat.type === 'scheduled') {
if(peerId === rootScope.myId) {
//title = [count > 1 ? count : false, 'Reminders'].filter(Boolean).join(' ');
titleEl = i18n('Reminders');
} else {
titleEl = i18n('ScheduledMessages');
//title = [count > 1 ? count : false, 'Scheduled Messages'].filter(Boolean).join(' ');
}
if(count === undefined) {
this.managers.appMessagesManager.getScheduledMessages(peerId).then((mids) => {
if(!middleware()) return;
this.setTitle(mids.length);
});
}
titleEl = i18n(peerId === rootScope.myId ? 'Reminders' : 'ScheduledMessages');
} else if(this.chat.type === 'discussion') {
if(count === undefined) {
const result = await this.managers.acknowledged.appMessagesManager.getHistory(peerId, 0, 1, 0, this.chat.threadId);
if(result.cached) {
const historyResult = await result.result;
count = historyResult.count;
} else result.result.then((historyResult) => this.setTitle(historyResult.count));
}
if(count === undefined) titleEl = i18n('Loading');
else titleEl = i18n('Chat.Title.Comments', [count]);
if(count === undefined) {
Promise.all([
this.managers.appMessagesManager.getHistory(peerId, 0, 1, 0, this.chat.threadId),
Promise.resolve()
]).then(([historyResult]) => {
if(!middleware()) return;
const count = historyResult?.count;
if(typeof(count) !== 'number') {
setTimeout(() => {
if(!middleware()) return;
this.setTitle();
}, 30);
} else {
this.setTitle(count);
}
});
}
} else if(this.chat.type === 'chat') {
[titleEl, icons] = await Promise.all([
wrapPeerTitle({

View File

@ -1495,8 +1495,10 @@ export class AppDialogsManager {
return;
}
const peerId = elem.dataset.peerId.toPeerId();
if(e.ctrlKey || e.metaKey) {
window.open((elem as HTMLAnchorElement).href, '_blank');
window.open((elem as HTMLAnchorElement).href || ('#' + peerId), '_blank');
cancelEvent(e);
return;
}
@ -1517,7 +1519,6 @@ export class AppDialogsManager {
if(elem) {
if(onFound) onFound();
const peerId = elem.dataset.peerId.toPeerId();
const lastMsgId = +elem.dataset.mid || undefined;
setPeerFunc({