feat: 添加vscode编辑器
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
||||
return function (target, key) { decorator(target, key, paramIndex); }
|
||||
};
|
||||
import { $, append, EventHelper } from '../../../base/browser/dom.js';
|
||||
import { DomEmitter } from '../../../base/browser/event.js';
|
||||
import { StandardKeyboardEvent } from '../../../base/browser/keyboardEvent.js';
|
||||
import { EventType as TouchEventType, Gesture } from '../../../base/browser/touch.js';
|
||||
import { Event } from '../../../base/common/event.js';
|
||||
import { Disposable } from '../../../base/common/lifecycle.js';
|
||||
import { IOpenerService } from '../common/opener.js';
|
||||
import { textLinkActiveForeground, textLinkForeground } from '../../theme/common/colorRegistry.js';
|
||||
import { registerThemingParticipant } from '../../theme/common/themeService.js';
|
||||
let Link = class Link extends Disposable {
|
||||
constructor(container, _link, options = {}, openerService) {
|
||||
var _a;
|
||||
super();
|
||||
this._link = _link;
|
||||
this._enabled = true;
|
||||
this.el = append(container, $('a.monaco-link', {
|
||||
tabIndex: (_a = _link.tabIndex) !== null && _a !== void 0 ? _a : 0,
|
||||
href: _link.href,
|
||||
title: _link.title
|
||||
}, _link.label));
|
||||
this.el.setAttribute('role', 'button');
|
||||
const onClickEmitter = this._register(new DomEmitter(this.el, 'click'));
|
||||
const onKeyPress = this._register(new DomEmitter(this.el, 'keypress'));
|
||||
const onEnterPress = Event.chain(onKeyPress.event)
|
||||
.map(e => new StandardKeyboardEvent(e))
|
||||
.filter(e => e.keyCode === 3 /* KeyCode.Enter */)
|
||||
.event;
|
||||
const onTap = this._register(new DomEmitter(this.el, TouchEventType.Tap)).event;
|
||||
this._register(Gesture.addTarget(this.el));
|
||||
const onOpen = Event.any(onClickEmitter.event, onEnterPress, onTap);
|
||||
this._register(onOpen(e => {
|
||||
if (!this.enabled) {
|
||||
return;
|
||||
}
|
||||
EventHelper.stop(e, true);
|
||||
if (options === null || options === void 0 ? void 0 : options.opener) {
|
||||
options.opener(this._link.href);
|
||||
}
|
||||
else {
|
||||
openerService.open(this._link.href, { allowCommands: true });
|
||||
}
|
||||
}));
|
||||
this.enabled = true;
|
||||
}
|
||||
get enabled() {
|
||||
return this._enabled;
|
||||
}
|
||||
set enabled(enabled) {
|
||||
if (enabled) {
|
||||
this.el.setAttribute('aria-disabled', 'false');
|
||||
this.el.tabIndex = 0;
|
||||
this.el.style.pointerEvents = 'auto';
|
||||
this.el.style.opacity = '1';
|
||||
this.el.style.cursor = 'pointer';
|
||||
this._enabled = false;
|
||||
}
|
||||
else {
|
||||
this.el.setAttribute('aria-disabled', 'true');
|
||||
this.el.tabIndex = -1;
|
||||
this.el.style.pointerEvents = 'none';
|
||||
this.el.style.opacity = '0.4';
|
||||
this.el.style.cursor = 'default';
|
||||
this._enabled = true;
|
||||
}
|
||||
this._enabled = enabled;
|
||||
}
|
||||
};
|
||||
Link = __decorate([
|
||||
__param(3, IOpenerService)
|
||||
], Link);
|
||||
export { Link };
|
||||
registerThemingParticipant((theme, collector) => {
|
||||
const textLinkForegroundColor = theme.getColor(textLinkForeground);
|
||||
if (textLinkForegroundColor) {
|
||||
collector.addRule(`.monaco-link { color: ${textLinkForegroundColor}; }`);
|
||||
}
|
||||
const textLinkActiveForegroundColor = theme.getColor(textLinkActiveForeground);
|
||||
if (textLinkActiveForegroundColor) {
|
||||
collector.addRule(`.monaco-link:hover { color: ${textLinkActiveForegroundColor}; }`);
|
||||
}
|
||||
});
|
||||
@@ -0,0 +1,67 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
import { Disposable } from '../../../base/common/lifecycle.js';
|
||||
import { equalsIgnoreCase, startsWithIgnoreCase } from '../../../base/common/strings.js';
|
||||
import { URI } from '../../../base/common/uri.js';
|
||||
import { createDecorator } from '../../instantiation/common/instantiation.js';
|
||||
export const IOpenerService = createDecorator('openerService');
|
||||
export const NullOpenerService = Object.freeze({
|
||||
_serviceBrand: undefined,
|
||||
registerOpener() { return Disposable.None; },
|
||||
registerValidator() { return Disposable.None; },
|
||||
registerExternalUriResolver() { return Disposable.None; },
|
||||
setDefaultExternalOpener() { },
|
||||
registerExternalOpener() { return Disposable.None; },
|
||||
open() {
|
||||
return __awaiter(this, void 0, void 0, function* () { return false; });
|
||||
},
|
||||
resolveExternalUri(uri) {
|
||||
return __awaiter(this, void 0, void 0, function* () { return { resolved: uri, dispose() { } }; });
|
||||
},
|
||||
});
|
||||
export function matchesScheme(target, scheme) {
|
||||
if (URI.isUri(target)) {
|
||||
return equalsIgnoreCase(target.scheme, scheme);
|
||||
}
|
||||
else {
|
||||
return startsWithIgnoreCase(target, scheme + ':');
|
||||
}
|
||||
}
|
||||
export function matchesSomeScheme(target, ...schemes) {
|
||||
return schemes.some(scheme => matchesScheme(target, scheme));
|
||||
}
|
||||
/**
|
||||
* file:///some/file.js#73
|
||||
* file:///some/file.js#L73
|
||||
* file:///some/file.js#73,84
|
||||
* file:///some/file.js#L73,84
|
||||
* file:///some/file.js#73-83
|
||||
* file:///some/file.js#L73-L83
|
||||
* file:///some/file.js#73,84-83,52
|
||||
* file:///some/file.js#L73,84-L83,52
|
||||
*/
|
||||
export function extractSelection(uri) {
|
||||
let selection = undefined;
|
||||
const match = /^L?(\d+)(?:,(\d+))?(-L?(\d+)(?:,(\d+))?)?/.exec(uri.fragment);
|
||||
if (match) {
|
||||
selection = {
|
||||
startLineNumber: parseInt(match[1]),
|
||||
startColumn: match[2] ? parseInt(match[2]) : 1,
|
||||
endLineNumber: match[4] ? parseInt(match[4]) : undefined,
|
||||
endColumn: match[4] ? (match[5] ? parseInt(match[5]) : 1) : undefined
|
||||
};
|
||||
uri = uri.with({ fragment: '' });
|
||||
}
|
||||
return { selection, uri };
|
||||
}
|
||||
Reference in New Issue
Block a user