mirror of https://github.com/procxx/kepka.git
Don't autoread mentions with voice/video messages.
Voice/video message unread flag is the same that mention unread flag. If we mark such mentions as read together with all others we mark media as watched/listened instantly when they appear on the screen. So now we mark as read only simple mentions, without "unread" media.
This commit is contained in:
parent
874d76b16b
commit
b00ca217b3
|
@ -1172,7 +1172,8 @@ void ApiWrap::markMediaRead(
|
||||||
QVector<MTPint>>();
|
QVector<MTPint>>();
|
||||||
markedIds.reserve(items.size());
|
markedIds.reserve(items.size());
|
||||||
for (const auto item : items) {
|
for (const auto item : items) {
|
||||||
if (!item->isMediaUnread() || (item->out() && !item->mentionsMe())) {
|
if ((!item->isUnreadMedia() || item->out())
|
||||||
|
&& !item->isUnreadMention()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
item->markMediaRead();
|
item->markMediaRead();
|
||||||
|
@ -1201,7 +1202,8 @@ void ApiWrap::markMediaRead(
|
||||||
}
|
}
|
||||||
|
|
||||||
void ApiWrap::markMediaRead(not_null<HistoryItem*> item) {
|
void ApiWrap::markMediaRead(not_null<HistoryItem*> item) {
|
||||||
if (!item->isMediaUnread() || (item->out() && !item->mentionsMe())) {
|
if ((!item->isUnreadMedia() || item->out())
|
||||||
|
&& !item->isUnreadMention()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
item->markMediaRead();
|
item->markMediaRead();
|
||||||
|
@ -3290,7 +3292,7 @@ void ApiWrap::applyUpdateNoPtsCheck(const MTPUpdate &update) {
|
||||||
auto possiblyReadMentions = base::flat_set<MsgId>();
|
auto possiblyReadMentions = base::flat_set<MsgId>();
|
||||||
for (const auto &msgId : d.vmessages.v) {
|
for (const auto &msgId : d.vmessages.v) {
|
||||||
if (auto item = App::histItemById(NoChannel, msgId.v)) {
|
if (auto item = App::histItemById(NoChannel, msgId.v)) {
|
||||||
if (item->isMediaUnread()) {
|
if (item->isUnreadMedia() || item->isUnreadMention()) {
|
||||||
item->markMediaRead();
|
item->markMediaRead();
|
||||||
_session->data().requestItemRepaint(item);
|
_session->data().requestItemRepaint(item);
|
||||||
|
|
||||||
|
|
|
@ -555,8 +555,7 @@ void RowPainter::paint(
|
||||||
if (displayMentionBadge
|
if (displayMentionBadge
|
||||||
&& unreadCount == 1
|
&& unreadCount == 1
|
||||||
&& item
|
&& item
|
||||||
&& item->isMediaUnread()
|
&& item->isUnreadMention()) {
|
||||||
&& item->mentionsMe()) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return (unreadCount > 0);
|
return (unreadCount > 0);
|
||||||
|
|
|
@ -1032,7 +1032,7 @@ void History::addUnreadMentionsSlice(const MTPmessages_Messages &result) {
|
||||||
if (messages) {
|
if (messages) {
|
||||||
for (auto &message : *messages) {
|
for (auto &message : *messages) {
|
||||||
if (auto item = addToHistory(message)) {
|
if (auto item = addToHistory(message)) {
|
||||||
if (item->mentionsMe() && item->isMediaUnread()) {
|
if (item->isUnreadMention()) {
|
||||||
_unreadMentions.insert(item->id);
|
_unreadMentions.insert(item->id);
|
||||||
added = true;
|
added = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -595,7 +595,7 @@ void HistoryInner::paintEvent(QPaintEvent *e) {
|
||||||
if (item->hasViews()) {
|
if (item->hasViews()) {
|
||||||
App::main()->scheduleViewIncrement(item);
|
App::main()->scheduleViewIncrement(item);
|
||||||
}
|
}
|
||||||
if (item->mentionsMe() && item->isMediaUnread()) {
|
if (item->isUnreadMention() && !item->isUnreadMedia()) {
|
||||||
readMentions.insert(item);
|
readMentions.insert(item);
|
||||||
_widget->enqueueMessageHighlight(view);
|
_widget->enqueueMessageHighlight(view);
|
||||||
}
|
}
|
||||||
|
@ -641,7 +641,7 @@ void HistoryInner::paintEvent(QPaintEvent *e) {
|
||||||
if (item->hasViews()) {
|
if (item->hasViews()) {
|
||||||
App::main()->scheduleViewIncrement(item);
|
App::main()->scheduleViewIncrement(item);
|
||||||
}
|
}
|
||||||
if (item->mentionsMe() && item->isMediaUnread()) {
|
if (item->isUnreadMention() && !item->isUnreadMedia()) {
|
||||||
readMentions.insert(item);
|
readMentions.insert(item);
|
||||||
_widget->enqueueMessageHighlight(view);
|
_widget->enqueueMessageHighlight(view);
|
||||||
}
|
}
|
||||||
|
|
|
@ -236,9 +236,9 @@ void HistoryItem::finishEditionToEmpty() {
|
||||||
_history->itemVanished(this);
|
_history->itemVanished(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HistoryItem::isMediaUnread() const {
|
bool HistoryItem::hasUnreadMediaFlag() const {
|
||||||
if (!mentionsMe() && _history->peer->isChannel()) {
|
if (_history->peer->isChannel()) {
|
||||||
auto passed = unixtime() - date();
|
const auto passed = unixtime() - date();
|
||||||
if (passed >= Global::ChannelsReadMediaPeriod()) {
|
if (passed >= Global::ChannelsReadMediaPeriod()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -246,6 +246,23 @@ bool HistoryItem::isMediaUnread() const {
|
||||||
return _flags & MTPDmessage::Flag::f_media_unread;
|
return _flags & MTPDmessage::Flag::f_media_unread;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool HistoryItem::isUnreadMention() const {
|
||||||
|
return mentionsMe() && (_flags & MTPDmessage::Flag::f_media_unread);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool HistoryItem::isUnreadMedia() const {
|
||||||
|
if (!hasUnreadMediaFlag()) {
|
||||||
|
return false;
|
||||||
|
} else if (const auto media = this->media()) {
|
||||||
|
if (const auto document = media->document()) {
|
||||||
|
if (document->isVoiceMessage() || document->isVideoMessage()) {
|
||||||
|
return (media->webpage() == nullptr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void HistoryItem::markMediaRead() {
|
void HistoryItem::markMediaRead() {
|
||||||
_flags &= ~MTPDmessage::Flag::f_media_unread;
|
_flags &= ~MTPDmessage::Flag::f_media_unread;
|
||||||
|
|
||||||
|
|
|
@ -115,7 +115,9 @@ public:
|
||||||
bool mentionsMe() const {
|
bool mentionsMe() const {
|
||||||
return _flags & MTPDmessage::Flag::f_mentioned;
|
return _flags & MTPDmessage::Flag::f_mentioned;
|
||||||
}
|
}
|
||||||
bool isMediaUnread() const;
|
bool isUnreadMention() const;
|
||||||
|
bool isUnreadMedia() const;
|
||||||
|
bool hasUnreadMediaFlag() const;
|
||||||
void markMediaRead();
|
void markMediaRead();
|
||||||
|
|
||||||
// Zero result means this message is not self-destructing right now.
|
// Zero result means this message is not self-destructing right now.
|
||||||
|
|
|
@ -920,7 +920,7 @@ void HistoryMessage::updateSentMedia(const MTPMessageMedia *media) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryMessage::addToUnreadMentions(UnreadMentionType type) {
|
void HistoryMessage::addToUnreadMentions(UnreadMentionType type) {
|
||||||
if (IsServerMsgId(id) && mentionsMe() && isMediaUnread()) {
|
if (IsServerMsgId(id) && isUnreadMention()) {
|
||||||
if (history()->addToUnreadMentions(id, type)) {
|
if (history()->addToUnreadMentions(id, type)) {
|
||||||
Notify::peerUpdatedDelayed(
|
Notify::peerUpdatedDelayed(
|
||||||
history()->peer,
|
history()->peer,
|
||||||
|
@ -930,7 +930,7 @@ void HistoryMessage::addToUnreadMentions(UnreadMentionType type) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryMessage::eraseFromUnreadMentions() {
|
void HistoryMessage::eraseFromUnreadMentions() {
|
||||||
if (mentionsMe() && isMediaUnread()) {
|
if (isUnreadMention()) {
|
||||||
history()->eraseFromUnreadMentions(id);
|
history()->eraseFromUnreadMentions(id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2173,7 +2173,7 @@ void HistoryWidget::newUnreadMsg(
|
||||||
destroyUnreadBar();
|
destroyUnreadBar();
|
||||||
}
|
}
|
||||||
if (App::wnd()->doWeReadServerHistory()) {
|
if (App::wnd()->doWeReadServerHistory()) {
|
||||||
if (item->mentionsMe() && item->isMediaUnread()) {
|
if (item->isUnreadMention() && !item->isUnreadMedia()) {
|
||||||
Auth().api().markMediaRead(item);
|
Auth().api().markMediaRead(item);
|
||||||
}
|
}
|
||||||
Auth().api().readServerHistoryForce(history);
|
Auth().api().readServerHistoryForce(history);
|
||||||
|
|
|
@ -374,7 +374,9 @@ void HistoryDocument::draw(Painter &p, const QRect &r, TextSelection selection,
|
||||||
auto wf_size = wf ? wf->size() : Media::Player::kWaveformSamplesCount;
|
auto wf_size = wf ? wf->size() : Media::Player::kWaveformSamplesCount;
|
||||||
auto availw = namewidth + st::msgWaveformSkip;
|
auto availw = namewidth + st::msgWaveformSkip;
|
||||||
auto activew = qRound(availw * progress);
|
auto activew = qRound(availw * progress);
|
||||||
if (!outbg && !voice->_playback && _parent->data()->isMediaUnread()) {
|
if (!outbg
|
||||||
|
&& !voice->_playback
|
||||||
|
&& _parent->data()->hasUnreadMediaFlag()) {
|
||||||
activew = availw;
|
activew = availw;
|
||||||
}
|
}
|
||||||
auto bar_count = qMin(availw / (st::msgWaveformBar + st::msgWaveformSkip), wf_size);
|
auto bar_count = qMin(availw / (st::msgWaveformBar + st::msgWaveformSkip), wf_size);
|
||||||
|
@ -428,7 +430,7 @@ void HistoryDocument::draw(Painter &p, const QRect &r, TextSelection selection,
|
||||||
p.setPen(status);
|
p.setPen(status);
|
||||||
p.drawTextLeft(nameleft, statustop, width(), statusText);
|
p.drawTextLeft(nameleft, statustop, width(), statusText);
|
||||||
|
|
||||||
if (_parent->data()->isMediaUnread()) {
|
if (_parent->data()->hasUnreadMediaFlag()) {
|
||||||
auto w = st::normalFont->width(statusText);
|
auto w = st::normalFont->width(statusText);
|
||||||
if (w + st::mediaUnreadSkip + st::mediaUnreadSize <= statuswidth) {
|
if (w + st::mediaUnreadSkip + st::mediaUnreadSize <= statuswidth) {
|
||||||
p.setPen(Qt::NoPen);
|
p.setPen(Qt::NoPen);
|
||||||
|
|
|
@ -417,12 +417,12 @@ void HistoryGif::draw(Painter &p, const QRect &r, TextSelection selection, TimeM
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!inWebPage && isRound) {
|
if (!inWebPage && isRound) {
|
||||||
auto mediaUnread = item->isMediaUnread();
|
auto mediaUnread = item->hasUnreadMediaFlag();
|
||||||
auto statusW = st::normalFont->width(_statusText) + 2 * st::msgDateImgPadding.x();
|
auto statusW = st::normalFont->width(_statusText) + 2 * st::msgDateImgPadding.x();
|
||||||
auto statusH = st::normalFont->height + 2 * st::msgDateImgPadding.y();
|
auto statusH = st::normalFont->height + 2 * st::msgDateImgPadding.y();
|
||||||
auto statusX = usex + paintx + st::msgDateImgDelta + st::msgDateImgPadding.x();
|
auto statusX = usex + paintx + st::msgDateImgDelta + st::msgDateImgPadding.x();
|
||||||
auto statusY = painty + painth - st::msgDateImgDelta - statusH + st::msgDateImgPadding.y();
|
auto statusY = painty + painth - st::msgDateImgDelta - statusH + st::msgDateImgPadding.y();
|
||||||
if (item->isMediaUnread()) {
|
if (mediaUnread) {
|
||||||
statusW += st::mediaUnreadSkip + st::mediaUnreadSize;
|
statusW += st::mediaUnreadSkip + st::mediaUnreadSize;
|
||||||
}
|
}
|
||||||
App::roundRect(p, rtlrect(statusX - st::msgDateImgPadding.x(), statusY - st::msgDateImgPadding.y(), statusW, statusH, width()), selected ? st::msgServiceBgSelected : st::msgServiceBg, selected ? StickerSelectedCorners : StickerCorners);
|
App::roundRect(p, rtlrect(statusX - st::msgDateImgPadding.x(), statusY - st::msgDateImgPadding.y(), statusW, statusH, width()), selected ? st::msgServiceBgSelected : st::msgServiceBg, selected ? StickerSelectedCorners : StickerCorners);
|
||||||
|
|
|
@ -4127,7 +4127,7 @@ void MainWidget::feedUpdate(const MTPUpdate &update) {
|
||||||
auto possiblyReadMentions = base::flat_set<MsgId>();
|
auto possiblyReadMentions = base::flat_set<MsgId>();
|
||||||
for_const (auto &msgId, d.vmessages.v) {
|
for_const (auto &msgId, d.vmessages.v) {
|
||||||
if (auto item = App::histItemById(channel, msgId.v)) {
|
if (auto item = App::histItemById(channel, msgId.v)) {
|
||||||
if (item->isMediaUnread()) {
|
if (item->isUnreadMedia() || item->isUnreadMention()) {
|
||||||
item->markMediaRead();
|
item->markMediaRead();
|
||||||
Auth().data().requestItemRepaint(item);
|
Auth().data().requestItemRepaint(item);
|
||||||
}
|
}
|
||||||
|
|
|
@ -706,7 +706,7 @@ void Voice::paint(Painter &p, const QRect &clip, TextSelection selection, const
|
||||||
p.drawTextLeft(nameleft, statustop, _width, _status.text(), statusw);
|
p.drawTextLeft(nameleft, statustop, _width, _status.text(), statusw);
|
||||||
unreadx += statusw;
|
unreadx += statusw;
|
||||||
}
|
}
|
||||||
if (parent()->isMediaUnread() && unreadx + st::mediaUnreadSkip + st::mediaUnreadSize <= _width) {
|
if (parent()->hasUnreadMediaFlag() && unreadx + st::mediaUnreadSkip + st::mediaUnreadSize <= _width) {
|
||||||
p.setPen(Qt::NoPen);
|
p.setPen(Qt::NoPen);
|
||||||
p.setBrush(selected ? st::msgFileInBgSelected : st::msgFileInBg);
|
p.setBrush(selected ? st::msgFileInBgSelected : st::msgFileInBg);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue