mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
#include "base/timer.h"
|
|
#include "base/weak_ptr.h"
|
|
|
|
class History;
|
|
class MTPDmessage;
|
|
|
|
class HistoryStreamedDrafts final : public base::has_weak_ptr {
|
|
public:
|
|
explicit HistoryStreamedDrafts(not_null<History*> history);
|
|
~HistoryStreamedDrafts();
|
|
|
|
[[nodiscard]] rpl::producer<> destroyRequests() const;
|
|
|
|
void apply(
|
|
MsgId rootId,
|
|
PeerId fromId,
|
|
TimeId when,
|
|
const MTPDsendMessageTextDraftAction &data);
|
|
|
|
[[nodiscard]] bool hasFor(not_null<HistoryItem*> item) const;
|
|
void applyItemRemoved(not_null<HistoryItem*> item);
|
|
HistoryItem *adoptIncoming(const MTPDmessage &data);
|
|
|
|
private:
|
|
struct Draft {
|
|
not_null<HistoryItem*> message;
|
|
MsgId rootId = 0;
|
|
PeerId fromId = 0;
|
|
crl::time updated = 0;
|
|
};
|
|
|
|
bool update(uint64 randomId, const TextWithEntities &text);
|
|
void clearByRandomId(uint64 randomId);
|
|
|
|
void check();
|
|
void scheduleDestroy();
|
|
|
|
[[nodiscard]] TextWithEntities loadingEmoji();
|
|
|
|
const not_null<History*> _history;
|
|
base::flat_map<uint64, Draft> _drafts;
|
|
|
|
base::Timer _checkTimer;
|
|
|
|
rpl::event_stream<> _destroyRequests;
|
|
|
|
TextWithEntities _loadingEmoji;
|
|
|
|
};
|