12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*---------------------------------------------------------------------------------------------
- * 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 /* 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}; }`);
- }
- });
|