mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
9953a6edd9
This moves chat tracking state calculation for channels and threads into a central Chat::TrackingStateManager service, that serves a similar purpose to the TopicTrackingState model in core. This service calls down to these query classes: * ThreadUnreadsQuery * ChannelUnreadsQuery To get the unread_count and mention_count for the appropriate channels and threads. As well as this, this commit refactors the client-side chat tracking state. Now, there is a central ChatTrackingStateManager Ember Service so all tracking is accessible and can be counted from one place, which can also initialize tracking from an initial payload. The actual tracking counts are now maintained in a ChatTrackingState class that is initialized on the `.tracking` property of both channel and thread objects. This removes the attributes on UserChatChannelMembership and decoration of said membership from ChannelFetcher, preferring instead to have an additional object for tracking in the JSON.
163 lines
4.5 KiB
JavaScript
163 lines
4.5 KiB
JavaScript
import {
|
|
chatChannels,
|
|
directMessageChannels,
|
|
generateChatView,
|
|
} from "discourse/plugins/chat/chat-fixtures";
|
|
|
|
import { cloneJSON } from "discourse-common/lib/object";
|
|
import User from "discourse/models/user";
|
|
|
|
export function baseChatPretenders(server, helper) {
|
|
server.get("/chat/:chatChannelId/messages.json", () =>
|
|
helper.response(generateChatView(User.current()))
|
|
);
|
|
|
|
server.post("/chat/:chatChannelId.json", () => {
|
|
return helper.response({ success: "OK" });
|
|
});
|
|
|
|
server.get("/notifications", () => {
|
|
return helper.response({
|
|
notifications: [
|
|
{
|
|
id: 42,
|
|
user_id: 1,
|
|
notification_type: 29,
|
|
read: false,
|
|
high_priority: true,
|
|
created_at: "2021-01-01 12:00:00 UTC",
|
|
fancy_title: "First notification",
|
|
post_number: null,
|
|
topic_id: null,
|
|
slug: null,
|
|
data: {
|
|
chat_message_id: 174,
|
|
chat_channel_id: 9,
|
|
chat_channel_title: "Site",
|
|
mentioned_by_username: "hawk",
|
|
},
|
|
},
|
|
{
|
|
id: 43,
|
|
user_id: 1,
|
|
notification_type: 29,
|
|
read: false,
|
|
high_priority: true,
|
|
created_at: "2021-01-01 12:00:00 UTC",
|
|
fancy_title: "Second notification",
|
|
post_number: null,
|
|
topic_id: null,
|
|
slug: null,
|
|
data: {
|
|
identifier: "engineers",
|
|
is_group: true,
|
|
chat_message_id: 174,
|
|
chat_channel_id: 9,
|
|
chat_channel_title: "Site",
|
|
mentioned_by_username: "hawk",
|
|
},
|
|
},
|
|
{
|
|
id: 44,
|
|
user_id: 1,
|
|
notification_type: 29,
|
|
read: false,
|
|
high_priority: true,
|
|
created_at: "2021-01-01 12:00:00 UTC",
|
|
fancy_title: "Third notification",
|
|
post_number: null,
|
|
topic_id: null,
|
|
slug: null,
|
|
data: {
|
|
identifier: "all",
|
|
chat_message_id: 174,
|
|
chat_channel_id: 9,
|
|
chat_channel_title: "Site",
|
|
mentioned_by_username: "hawk",
|
|
},
|
|
},
|
|
{
|
|
id: 45,
|
|
user_id: 1,
|
|
notification_type: 31,
|
|
read: false,
|
|
high_priority: true,
|
|
created_at: "2021-01-01 12:00:00 UTC",
|
|
fancy_title: "Fourth notification",
|
|
post_number: null,
|
|
topic_id: null,
|
|
slug: null,
|
|
data: {
|
|
message: "chat.invitation_notification",
|
|
chat_message_id: 174,
|
|
chat_channel_id: 9,
|
|
chat_channel_title: "Site",
|
|
invited_by_username: "hawk",
|
|
},
|
|
},
|
|
{
|
|
id: 46,
|
|
user_id: 1,
|
|
notification_type: 29,
|
|
read: false,
|
|
high_priority: true,
|
|
created_at: "2021-01-01 12:00:00 UTC",
|
|
fancy_title: "Fifth notification",
|
|
post_number: null,
|
|
topic_id: null,
|
|
slug: null,
|
|
data: {
|
|
chat_message_id: 174,
|
|
chat_channel_id: 9,
|
|
chat_channel_title: "Site",
|
|
is_direct_message_channel: true,
|
|
mentioned_by_username: "hawk",
|
|
},
|
|
},
|
|
],
|
|
seen_notification_id: null,
|
|
});
|
|
});
|
|
|
|
server.get("/chat/lookup/:messageId.json", () =>
|
|
helper.response(generateChatView(User.current()))
|
|
);
|
|
|
|
server.post("/uploads/lookup-urls", () => {
|
|
return helper.response([]);
|
|
});
|
|
|
|
server.get("/chat/api/category-chatables/:categoryId/permissions.json", () =>
|
|
helper.response({ allowed_groups: ["@everyone"], private: false })
|
|
);
|
|
}
|
|
|
|
export function directMessageChannelPretender(
|
|
server,
|
|
helper,
|
|
opts = { unread_count: 0, muted: false }
|
|
) {
|
|
let copy = cloneJSON(directMessageChannels[0]);
|
|
copy.chat_channel.currentUserMembership.muted = opts.muted;
|
|
server.get("/chat/chat_channels/75.json", () => helper.response(copy));
|
|
}
|
|
|
|
export function chatChannelPretender(server, helper, changes = []) {
|
|
// changes is [{ id: X, unread_count: Y, muted: true}]
|
|
let copy = cloneJSON(chatChannels);
|
|
changes.forEach((change) => {
|
|
let found;
|
|
found = copy.public_channels.find((c) => c.id === change.id);
|
|
if (found) {
|
|
found.currentUserMembership.muted = change.muted;
|
|
}
|
|
if (!found) {
|
|
found = copy.direct_message_channels.find((c) => c.id === change.id);
|
|
if (found) {
|
|
found.currentUserMembership.muted = change.muted;
|
|
}
|
|
}
|
|
});
|
|
server.get("/chat/chat_channels.json", () => helper.response(copy));
|
|
}
|