Files
vscode/extensions/markdown-language-features/preview-src/loading.ts
Matt Bierner 7df46143a1 Experiment with switching markdown extension to use native privates
Let's try this out with one extension to start
2026-03-10 23:13:16 -07:00

43 lines
1.4 KiB
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { MessagePoster } from './messaging';
export class StyleLoadingMonitor {
readonly #unloadedStyles: string[] = [];
#finishedLoading: boolean = false;
#poster?: MessagePoster;
constructor() {
const onStyleLoadError = (event: any) => {
const source = event.target.dataset.source;
this.#unloadedStyles.push(source);
};
window.addEventListener('DOMContentLoaded', () => {
for (const link of document.getElementsByClassName('code-user-style') as HTMLCollectionOf<HTMLElement>) {
if (link.dataset.source) {
link.onerror = onStyleLoadError;
}
}
});
window.addEventListener('load', () => {
if (!this.#unloadedStyles.length) {
return;
}
this.#finishedLoading = true;
this.#poster?.postMessage('previewStyleLoadError', { unloadedStyles: this.#unloadedStyles });
});
}
public setPoster(poster: MessagePoster): void {
this.#poster = poster;
if (this.#finishedLoading) {
poster.postMessage('previewStyleLoadError', { unloadedStyles: this.#unloadedStyles });
}
}
}