From da386f2c2ee786b7675d2d39bece50df03352ab2 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 24 Nov 2017 19:51:47 +0400 Subject: [PATCH] Update user status in Info::Profile cover. --- .../SourceFiles/info/profile/info_profile_cover.cpp | 12 +++++++++--- .../SourceFiles/info/profile/info_profile_cover.h | 2 ++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Telegram/SourceFiles/info/profile/info_profile_cover.cpp b/Telegram/SourceFiles/info/profile/info_profile_cover.cpp index 292850e8a..608f16cf5 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_cover.cpp +++ b/Telegram/SourceFiles/info/profile/info_profile_cover.cpp @@ -243,7 +243,8 @@ Cover::Cover( this, _peer->isMegagroup() ? st::infoProfileMegagroupStatusLabel - : st::infoProfileStatusLabel) { + : st::infoProfileStatusLabel) +, _refreshStatusTimer([this] { refreshStatusText(); }) { _peer->updateFull(); _name->setSelectable(true); @@ -351,8 +352,13 @@ void Cover::refreshStatusText() { auto statusText = [&] { auto currentTime = unixtime(); if (auto user = _peer->asUser()) { - auto result = App::onlineText(user, currentTime, true); - return App::onlineColorUse(user, currentTime) + const auto result = App::onlineText(user, currentTime, true); + const auto showOnline = App::onlineColorUse(user, currentTime); + const auto updateIn = App::onlineWillChangeIn(user, currentTime); + if (showOnline) { + _refreshStatusTimer.callOnce(updateIn * 1000LL); + } + return showOnline ? textcmdLink(1, result) : result; } else if (auto chat = _peer->asChat()) { diff --git a/Telegram/SourceFiles/info/profile/info_profile_cover.h b/Telegram/SourceFiles/info/profile/info_profile_cover.h index 265ada5db..bb7815245 100644 --- a/Telegram/SourceFiles/info/profile/info_profile_cover.h +++ b/Telegram/SourceFiles/info/profile/info_profile_cover.h @@ -22,6 +22,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "ui/wrap/padding_wrap.h" #include "ui/widgets/checkbox.h" +#include "base/timer.h" namespace style { struct InfoToggle; @@ -95,6 +96,7 @@ private: object_ptr _verifiedCheck = { nullptr }; object_ptr _status = { nullptr }; //object_ptr _dropArea = { nullptr }; + base::Timer _refreshStatusTimer; };