-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstore.ts
85 lines (72 loc) · 2.28 KB
/
store.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* Vencord, a Discord client mod
* Copyright (c) 2024 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { definePluginSettings } from "@api/Settings";
import { proxyLazy } from "@utils/lazy";
import { OptionType } from "@utils/types";
import { ChannelStore, Flux, FluxDispatcher, GuildStore, PrivateChannelsStore } from "@webpack/common";
export const settings = definePluginSettings({
persistSidebar: {
type: OptionType.BOOLEAN,
description: "Keep the sidebar chat open across Discord restarts",
default: true,
}
});
interface SidebarData {
isUser: boolean;
guildId: string;
id: string;
}
export const SidebarStore = proxyLazy(() => {
let guildId = "";
let channelId = "";
let width = 0;
class SidebarStore extends Flux.PersistedStore {
static persistKey = "SidebarStore";
initialize(previous: { guildId?: string; channelId?: string; width?: number; } | undefined) {
if (!settings.store.persistSidebar || !previous) return;
const { guildId: prevGId, channelId: prevCId, width: prevWidth } = previous;
guildId = prevGId || "";
channelId = prevCId || "";
width = prevWidth || 0;
}
getState() {
return {
guildId,
channelId,
width
};
}
getFullState() {
return {
guild: GuildStore.getGuild(guildId),
channel: ChannelStore.getChannel(channelId),
width
};
}
}
const store = new SidebarStore(FluxDispatcher, {
// @ts-ignore
async NEW_SIDEBAR_CHAT({ isUser, guildId: newGId, id }: SidebarData) {
guildId = newGId || "";
if (!isUser) {
channelId = id;
return;
}
channelId = await PrivateChannelsStore.getOrEnsurePrivateChannel(id);
store.emitChange();
},
CLOSE_SIDEBAR_CHAT() {
guildId = "";
channelId = "";
store.emitChange();
},
SIDEBAR_CHAT_WIDTH({ newWidth }: { newWidth: number; }) {
width = newWidth;
store.emitChange();
}
});
return store;
});