UNPKG

monaco-editor

Version:
96 lines (93 loc) 4.35 kB
import { append, $, EventHelper } from '../../../base/browser/dom.js'; import { DomEmitter } from '../../../base/browser/event.js'; import { StandardKeyboardEvent } from '../../../base/browser/keyboardEvent.js'; import { EventType, 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 './link.css'; import { getDefaultHoverDelegate } from '../../../base/browser/ui/hover/hoverDelegateFactory.js'; import { IHoverService } from '../../hover/browser/hover.js'; /*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ var __decorate = (undefined && undefined.__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 = (undefined && undefined.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; let Link = class Link extends Disposable { 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; } constructor(container, _link, options = {}, _hoverService, openerService) { super(); this._link = _link; this._hoverService = _hoverService; this._enabled = true; this.el = append(container, $('a.monaco-link', { tabIndex: _link.tabIndex ?? 0, href: _link.href, }, _link.label)); this.hoverDelegate = options.hoverDelegate ?? getDefaultHoverDelegate('mouse'); this.setTooltip(_link.title); 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 */)); const onTap = this._register(new DomEmitter(this.el, EventType.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?.opener) { options.opener(this._link.href); } else { openerService.open(this._link.href, { allowCommands: true }); } })); this.enabled = true; } setTooltip(title) { if (!this.hover && title) { this.hover = this._register(this._hoverService.setupManagedHover(this.hoverDelegate, this.el, title)); } else if (this.hover) { this.hover.update(title); } } }; Link = __decorate([ __param(3, IHoverService), __param(4, IOpenerService) ], Link); export { Link };