mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-08 01:45:28 +00:00
feat: implement support for Subscribe event
This commit is contained in:
@@ -163,6 +163,7 @@ const TextChannel = observer(({ channel }: { channel: ChannelI }) => {
|
||||
|
||||
const checkUnread = () =>
|
||||
channel.unread &&
|
||||
document.hasFocus() &&
|
||||
channel.client.unreads!.markRead(
|
||||
channel._id,
|
||||
channel.last_message_id!,
|
||||
@@ -176,6 +177,45 @@ const TextChannel = observer(({ channel }: { channel: ChannelI }) => {
|
||||
);
|
||||
}, [channel]);
|
||||
|
||||
useEffect(() => {
|
||||
let lastSubscribed: number | undefined;
|
||||
function subscribe() {
|
||||
if (document.hasFocus()) {
|
||||
const tenMinutesAgo = new Date();
|
||||
tenMinutesAgo.setMinutes(tenMinutesAgo.getMinutes() - 10);
|
||||
|
||||
if (!lastSubscribed || +tenMinutesAgo > lastSubscribed) {
|
||||
channel.server?.subscribe();
|
||||
lastSubscribed = +tenMinutesAgo;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Trigger logic every minute
|
||||
const subTimer = setInterval(subscribe, 60e3);
|
||||
|
||||
function onFocus() {
|
||||
// Mark channel as read if it's unread
|
||||
if (channel.unread) {
|
||||
channel.client.unreads!.markRead(
|
||||
channel._id,
|
||||
channel.last_message_id!,
|
||||
true,
|
||||
);
|
||||
}
|
||||
|
||||
// Subscribe to channel if expired
|
||||
subscribe();
|
||||
}
|
||||
|
||||
addEventListener("focus", onFocus);
|
||||
|
||||
return () => {
|
||||
removeEventListener("focus", onFocus);
|
||||
clearInterval(subTimer);
|
||||
};
|
||||
}, [channel]);
|
||||
|
||||
return (
|
||||
<AgeGate
|
||||
type="channel"
|
||||
|
||||
@@ -103,10 +103,43 @@ export const Members = ({ server }: Props) => {
|
||||
const [query, setQuery] = useState("");
|
||||
|
||||
useEffect(() => {
|
||||
server
|
||||
.fetchMembers()
|
||||
.then((data) => data.members)
|
||||
.then(setData);
|
||||
function fetch() {
|
||||
server
|
||||
.fetchMembers()
|
||||
.then((data) => data.members)
|
||||
.then(setData);
|
||||
}
|
||||
|
||||
fetch();
|
||||
|
||||
// Members may be invalidated if we stop receiving events
|
||||
// This is not very accurate, this should be tracked within
|
||||
// revolt.js so we know the true validity.
|
||||
let valid = true,
|
||||
invalidationTimer: number;
|
||||
|
||||
function waitToInvalidate() {
|
||||
invalidationTimer = setTimeout(() => {
|
||||
valid = false;
|
||||
}, 15 * 60e3) as never; // 15 minutes
|
||||
}
|
||||
|
||||
function cancelInvalidation() {
|
||||
if (!valid) {
|
||||
fetch();
|
||||
valid = true;
|
||||
}
|
||||
|
||||
clearTimeout(invalidationTimer);
|
||||
}
|
||||
|
||||
addEventListener("blur", waitToInvalidate);
|
||||
addEventListener("focus", cancelInvalidation);
|
||||
|
||||
return () => {
|
||||
removeEventListener("blur", waitToInvalidate);
|
||||
removeEventListener("focus", cancelInvalidation);
|
||||
};
|
||||
}, [server, setData]);
|
||||
|
||||
const members = useMemo(
|
||||
|
||||
Reference in New Issue
Block a user