mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-08 17:19:48 +01:00
dd3fa1dcc3
Fixes #228971
79 lines
2.1 KiB
TypeScript
79 lines
2.1 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 { FastDomNode } from '../../../base/browser/fastDomNode.js';
|
|
import { RenderingContext, RestrictedRenderingContext } from './renderingContext.js';
|
|
import { ViewContext } from '../../common/viewModel/viewContext.js';
|
|
import { ViewEventHandler } from '../../common/viewEventHandler.js';
|
|
|
|
export abstract class ViewPart extends ViewEventHandler {
|
|
|
|
_context: ViewContext;
|
|
|
|
constructor(context: ViewContext) {
|
|
super();
|
|
this._context = context;
|
|
this._context.addEventHandler(this);
|
|
}
|
|
|
|
public override dispose(): void {
|
|
this._context.removeEventHandler(this);
|
|
super.dispose();
|
|
}
|
|
|
|
public abstract prepareRender(ctx: RenderingContext): void;
|
|
public abstract render(ctx: RestrictedRenderingContext): void;
|
|
}
|
|
|
|
export const enum PartFingerprint {
|
|
None,
|
|
ContentWidgets,
|
|
OverflowingContentWidgets,
|
|
OverflowGuard,
|
|
OverlayWidgets,
|
|
OverflowingOverlayWidgets,
|
|
ScrollableElement,
|
|
TextArea,
|
|
ViewLines,
|
|
Minimap,
|
|
ViewLinesGpu
|
|
}
|
|
|
|
export class PartFingerprints {
|
|
|
|
public static write(target: Element | FastDomNode<HTMLElement>, partId: PartFingerprint) {
|
|
target.setAttribute('data-mprt', String(partId));
|
|
}
|
|
|
|
public static read(target: Element): PartFingerprint {
|
|
const r = target.getAttribute('data-mprt');
|
|
if (r === null) {
|
|
return PartFingerprint.None;
|
|
}
|
|
return parseInt(r, 10);
|
|
}
|
|
|
|
public static collect(child: Element | null, stopAt: Element): Uint8Array {
|
|
const result: PartFingerprint[] = [];
|
|
let resultLen = 0;
|
|
|
|
while (child && child !== child.ownerDocument.body) {
|
|
if (child === stopAt) {
|
|
break;
|
|
}
|
|
if (child.nodeType === child.ELEMENT_NODE) {
|
|
result[resultLen++] = this.read(child);
|
|
}
|
|
child = child.parentElement;
|
|
}
|
|
|
|
const r = new Uint8Array(resultLen);
|
|
for (let i = 0; i < resultLen; i++) {
|
|
r[i] = result[resultLen - i - 1];
|
|
}
|
|
return r;
|
|
}
|
|
}
|