-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcs-loader-registry.ts
181 lines (145 loc) · 4.83 KB
/
cs-loader-registry.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
import { APP_CONFIG } from "@/app.config";
import { MaybePromise } from "@/types/utils.types";
import { isInContentScript } from "@/utils/utils";
export const LOADER_IDS = [
"lib:i18next",
"lib:dayjs",
"cache:extensionLocalStorage",
"cache:pluginsStates",
"cache:languageModels",
"cache:betterCodeBlocksFineGrainedOptions",
"messaging:namespaceSetup",
"messaging:networkIntercept",
"messaging:spaRouter",
"coreDomObserver:sidebar",
"coreDomObserver:home",
"coreDomObserver:queryBoxes",
"coreDomObserver:thread",
"coreDomObserver:thread:messageBlocks",
"coreDomObserver:thread:codeBlocks",
"coreDomObserver:spacesPage",
"coreDomObserver:settingsPage",
"networkIntercept:pplxApi",
"networkIntercept:languageModelSelector",
"plugins:core",
"plugin:cookiesNormalization",
"plugin:pplxThemeLoader",
"plugin:hideGetMobileAppCtaBtn",
"plugin:zenMode",
"plugin:blockAnalyticEvents",
"plugin:thread:canvas:resetOpenStateOnRouteChange",
"plugin:thread:canvas:codeBlockPlaceholdersData",
"plugin:thread:dragAndDropFileToUploadInThread",
"plugin:thread:rawHeadings",
"plugin:thread:customThreadContainerWidth",
"plugin:spaceNavigator:networkInterceptMiddleware",
"plugin:queryBox:initSharedStore",
"plugin:queryBox:languageModelSelector:respectSpaceModel",
"plugin:queryBox:promptHistory:networkInterceptMiddleware",
"plugin:queryBox:promptHistory:listeners",
"plugin:queryBox:noFileCreationOnPaste",
"plugin:queryBox:submitOnCtrlEnter",
"plugin:queryBox:spacesThreadsForceWritingMode",
"plugin:home:customSlogan",
"plugin:home:hideHomepageWidgets",
"store:colorScheme",
"store:pplxCookies",
"store:pluginGuards",
"csui:root",
] as const;
type LoaderId = (typeof LOADER_IDS)[number];
type LoaderDefinition = {
id: LoaderId;
loader: () => MaybePromise<void>;
dependencies?: LoaderId[];
};
class CsLoaderRegistry {
private static instance: CsLoaderRegistry;
private loaderMap = new Map<LoaderId, LoaderDefinition>();
private loadedLoaders = new Set<LoaderId>();
private loadingPromises = new Map<LoaderId, Promise<void>>();
private constructor() {
if (
APP_CONFIG.IS_DEV &&
isInContentScript() &&
!isMainWorldContext() &&
process.env.NODE_ENV !== "test"
) {
setTimeout(() => {
for (const loaderId of LOADER_IDS) {
if (!CsLoaderRegistry.getInstance().isLoaderLoaded(loaderId)) {
console.warn(
`[ContentScriptLoaderRegistry] Loader \`${loaderId}\` hasn't loaded after 5 seconds. Ensure the callback from register() is called or the file has inline registration.`,
);
}
}
}, 5000);
}
}
static getInstance() {
if (CsLoaderRegistry.instance == null) {
CsLoaderRegistry.instance = new CsLoaderRegistry();
}
return CsLoaderRegistry.instance;
}
getLoadedLoaders() {
return this.loadedLoaders;
}
isLoaderLoaded(loaderId: LoaderId): boolean {
return this.loadedLoaders.has(loaderId);
}
register(loaderConfig: LoaderDefinition) {
if (
(isMainWorldContext() && process.env.NODE_ENV !== "test") ||
(!isInContentScript() && process.env.NODE_ENV !== "test")
)
return;
if (this.loaderMap.has(loaderConfig.id)) {
throw new Error(`Loader \`${loaderConfig.id}\` is already registered`);
}
this.loaderMap.set(loaderConfig.id, loaderConfig);
}
private async loadLoader(loaderId: LoaderId): Promise<void> {
if (this.loadedLoaders.has(loaderId)) return;
const existingPromise = this.loadingPromises.get(loaderId);
if (existingPromise) {
return existingPromise;
}
const loader = this.loaderMap.get(loaderId);
if (!loader) {
throw new Error(`Loader \`${loaderId}\` is not registered`);
}
const loadingPromise = (async () => {
try {
if (loader.dependencies?.length != null) {
for (const depId of loader.dependencies) {
await this.loadLoader(depId);
}
}
await loader.loader();
this.loadedLoaders.add(loaderId);
} finally {
this.loadingPromises.delete(loaderId);
}
})();
this.loadingPromises.set(loaderId, loadingPromise);
return loadingPromise;
}
async executeAll(): Promise<void> {
const registeredLoaders = Array.from(this.loaderMap.keys());
// const timings: Record<string, number> = {};
for (const loaderId of registeredLoaders) {
// const start = performance.now();
await this.loadLoader(loaderId);
// timings[loaderId] = performance.now() - start;
}
// const sortedLoaders = Object.entries(timings)
// .sort(([, a], [, b]) => b - a)
// .map(([id, time]) => ({
// id,
// time: Math.round(time),
// }));
// console.table(sortedLoaders);
}
}
export const csLoaderRegistry = CsLoaderRegistry.getInstance();