forked from openkylin/kylin-code
关闭electron打开webview的查找功能,临时解决为能够查找到结果,但是不能高亮.
This commit is contained in:
parent
7bfa47c31a
commit
8b07c19524
|
@ -3,7 +3,7 @@
|
|||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { Delayer } from 'vs/base/common/async';
|
||||
// import { Delayer } from 'vs/base/common/async';
|
||||
import { VSBuffer, VSBufferReadableStream } from 'vs/base/common/buffer';
|
||||
import { Schemas } from 'vs/base/common/network';
|
||||
import { consumeStream } from 'vs/base/common/stream';
|
||||
|
@ -21,7 +21,7 @@ import { INotificationService } from 'vs/platform/notification/common/notificati
|
|||
import { IRemoteAuthorityResolverService } from 'vs/platform/remote/common/remoteAuthorityResolver';
|
||||
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
|
||||
import { ITunnelService } from 'vs/platform/tunnel/common/tunnel';
|
||||
import { FindInFrameOptions, IWebviewManagerService } from 'vs/platform/webview/common/webviewManagerService';
|
||||
import { IWebviewManagerService } from 'vs/platform/webview/common/webviewManagerService';
|
||||
import { WebviewThemeDataProvider } from 'vs/workbench/contrib/webview/browser/themeing';
|
||||
import { WebviewElement, WebviewInitInfo, WebviewMessageChannels } from 'vs/workbench/contrib/webview/browser/webviewElement';
|
||||
import { WindowIgnoreMenuShortcutsManager } from 'vs/workbench/contrib/webview/electron-sandbox/windowIgnoreMenuShortcutsManager';
|
||||
|
@ -38,7 +38,7 @@ export class ElectronWebviewElement extends WebviewElement {
|
|||
private _cachedHtmlContent: string | undefined;
|
||||
|
||||
private readonly _webviewMainService: IWebviewManagerService;
|
||||
private readonly _iframeDelayer = this._register(new Delayer<void>(200));
|
||||
// private readonly _iframeDelayer = this._register(new Delayer<void>(200));
|
||||
|
||||
protected override get platform() { return 'electron'; }
|
||||
|
||||
|
@ -64,7 +64,7 @@ export class ElectronWebviewElement extends WebviewElement {
|
|||
configurationService, contextMenuService, menuService, notificationService, environmentService,
|
||||
fileService, logService, remoteAuthorityResolverService, telemetryService, tunnelService, instantiationService, accessibilityService);
|
||||
|
||||
this._webviewKeyboardHandler = new WindowIgnoreMenuShortcutsManager(configurationService, mainProcessService, nativeHostService);
|
||||
this._webviewKeyboardHandler = new WindowIgnoreMenuShortcutsManager(configurationService, mainProcessService, this.nativeHostService);
|
||||
|
||||
this._webviewMainService = ProxyChannel.toService<IWebviewManagerService>(mainProcessService.getChannel('webview'));
|
||||
|
||||
|
@ -110,54 +110,54 @@ export class ElectronWebviewElement extends WebviewElement {
|
|||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Webviews expose a stateful find API.
|
||||
* Successive calls to find will move forward or backward through onFindResults
|
||||
* depending on the supplied options.
|
||||
*
|
||||
* @param value The string to search for. Empty strings are ignored.
|
||||
*/
|
||||
public override find(value: string, previous: boolean): void {
|
||||
if (!this.element) {
|
||||
return;
|
||||
}
|
||||
// /**
|
||||
// * Webviews expose a stateful find API.
|
||||
// * Successive calls to find will move forward or backward through onFindResults
|
||||
// * depending on the supplied options.
|
||||
// *
|
||||
// * @param value The string to search for. Empty strings are ignored.
|
||||
// */
|
||||
// public override find(value: string, previous: boolean): void {
|
||||
// if (!this.element) {
|
||||
// return;
|
||||
// }
|
||||
|
||||
if (!this._findStarted) {
|
||||
this.updateFind(value);
|
||||
} else {
|
||||
// continuing the find, so set findNext to false
|
||||
const options: FindInFrameOptions = { forward: !previous, findNext: false, matchCase: false };
|
||||
this._webviewMainService.findInFrame({ windowId: this.nativeHostService.windowId }, this.id, value, options);
|
||||
}
|
||||
}
|
||||
// if (!this._findStarted) {
|
||||
// this.updateFind(value);
|
||||
// } else {
|
||||
// // continuing the find, so set findNext to false
|
||||
// const options: FindInFrameOptions = { forward: !previous, findNext: false, matchCase: false };
|
||||
// this._webviewMainService.findInFrame({ windowId: this.nativeHostService.windowId }, this.id, value, options);
|
||||
// }
|
||||
// }
|
||||
|
||||
public override updateFind(value: string) {
|
||||
if (!value || !this.element) {
|
||||
return;
|
||||
}
|
||||
// public override updateFind(value: string) {
|
||||
// if (!value || !this.element) {
|
||||
// return;
|
||||
// }
|
||||
|
||||
// FindNext must be true for a first request
|
||||
const options: FindInFrameOptions = {
|
||||
forward: true,
|
||||
findNext: true,
|
||||
matchCase: false
|
||||
};
|
||||
// // FindNext must be true for a first request
|
||||
// const options: FindInFrameOptions = {
|
||||
// forward: true,
|
||||
// findNext: true,
|
||||
// matchCase: false
|
||||
// };
|
||||
|
||||
this._iframeDelayer.trigger(() => {
|
||||
this._findStarted = true;
|
||||
this._webviewMainService.findInFrame({ windowId: this.nativeHostService.windowId }, this.id, value, options);
|
||||
});
|
||||
}
|
||||
// this._iframeDelayer.trigger(() => {
|
||||
// this._findStarted = true;
|
||||
// this._webviewMainService.findInFrame({ windowId: this.nativeHostService.windowId }, this.id, value, options);
|
||||
// });
|
||||
// }
|
||||
|
||||
public override stopFind(keepSelection?: boolean): void {
|
||||
if (!this.element) {
|
||||
return;
|
||||
}
|
||||
this._iframeDelayer.cancel();
|
||||
this._findStarted = false;
|
||||
this._webviewMainService.stopFindInFrame({ windowId: this.nativeHostService.windowId }, this.id, {
|
||||
keepSelection
|
||||
});
|
||||
this._onDidStopFind.fire();
|
||||
}
|
||||
// public override stopFind(keepSelection?: boolean): void {
|
||||
// if (!this.element) {
|
||||
// return;
|
||||
// }
|
||||
// this._iframeDelayer.cancel();
|
||||
// this._findStarted = false;
|
||||
// this._webviewMainService.stopFindInFrame({ windowId: this.nativeHostService.windowId }, this.id, {
|
||||
// keepSelection
|
||||
// });
|
||||
// this._onDidStopFind.fire();
|
||||
// }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue