chrome-devtools-frontend
Version:
Chrome DevTools UI
164 lines (143 loc) • 5.52 kB
text/typescript
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import * as Host from '../../core/host/host.js';
import * as Platform from '../../core/platform/platform.js';
import * as ComponentHelpers from '../components/helpers/helpers.js';
import * as LitHtml from '../lit-html/lit-html.js';
import * as ARIAUtils from './ARIAUtils.js';
import {type ContextMenu, type Provider} from './ContextMenu.js';
import {html} from './Fragment.js';
import {Tooltip} from './Tooltip.js';
import {
addReferrerToURLIfNecessary,
copyLinkAddressLabel,
MaxLengthForDisplayedURLs,
openLinkExternallyLabel,
} from './UIUtils.js';
import {XElement} from './XElement.js';
export class XLink extends XElement {
hrefInternal: Platform.DevToolsPath.UrlString|null;
private clickable: boolean;
private readonly onClick: (arg0: Event) => void;
private readonly onKeyDown: (arg0: KeyboardEvent) => void;
static create(url: string, linkText?: string, className?: string, preventClick?: boolean): HTMLElement {
if (!linkText) {
linkText = url;
}
className = className || '';
// clang-format off
// TODO(dgozman): migrate css from 'devtools-link' to 'x-link'.
const element = html `
<x-link href='${url}' tabindex="0" class='${className} devtools-link' ${preventClick ? 'no-click' : ''}
>${Platform.StringUtilities.trimMiddle(linkText, MaxLengthForDisplayedURLs)}</x-link>`;
// clang-format on
return element as HTMLElement;
}
constructor() {
super();
this.style.setProperty('display', 'inline');
ARIAUtils.markAsLink(this);
this.setAttribute('tabindex', '0');
this.setAttribute('target', '_blank');
this.setAttribute('rel', 'noopener');
this.hrefInternal = null;
this.clickable = true;
this.onClick = (event: Event): void => {
event.consume(true);
if (this.hrefInternal) {
Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(this.hrefInternal);
}
this.dispatchEvent(new Event('x-link-invoke'));
};
this.onKeyDown = (event: KeyboardEvent): void => {
if (Platform.KeyboardUtilities.isEnterOrSpaceKey(event)) {
event.consume(true);
if (this.hrefInternal) {
Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(this.hrefInternal);
}
}
this.dispatchEvent(new Event('x-link-invoke'));
};
}
static override get observedAttributes(): string[] {
// TODO(dgozman): should be super.observedAttributes, but it does not compile.
return XElement.observedAttributes.concat(['href', 'no-click']);
}
get href(): Platform.DevToolsPath.UrlString|null {
return this.hrefInternal;
}
override attributeChangedCallback(attr: string, oldValue: string|null, newValue: string|null): void {
if (attr === 'no-click') {
this.clickable = !newValue;
this.updateClick();
return;
}
if (attr === 'href') {
// For invalid or non-absolute URLs, `href` should remain `null`.
if (!newValue) {
newValue = '';
}
let href: Platform.DevToolsPath.UrlString|null = null;
let url: URL|null = null;
try {
url = new URL(addReferrerToURLIfNecessary(newValue as Platform.DevToolsPath.UrlString));
href = url.toString() as Platform.DevToolsPath.UrlString;
} catch {
}
if (url && url.protocol === 'javascript:') {
href = null;
}
this.hrefInternal = href;
Tooltip.install(this, newValue);
this.updateClick();
return;
}
super.attributeChangedCallback(attr, oldValue, newValue);
}
private updateClick(): void {
if (this.hrefInternal !== null && this.clickable) {
this.addEventListener('click', this.onClick, false);
this.addEventListener('keydown', this.onKeyDown, false);
this.style.setProperty('cursor', 'pointer');
} else {
this.removeEventListener('click', this.onClick, false);
this.removeEventListener('keydown', this.onKeyDown, false);
this.style.removeProperty('cursor');
}
}
}
let contextMenuProviderInstance: ContextMenuProvider;
export class ContextMenuProvider implements Provider {
static instance(opts: {
forceNew: boolean|null,
} = {forceNew: null}): ContextMenuProvider {
const {forceNew} = opts;
if (!contextMenuProviderInstance || forceNew) {
contextMenuProviderInstance = new ContextMenuProvider();
}
return contextMenuProviderInstance;
}
appendApplicableItems(event: Event, contextMenu: ContextMenu, target: Object): void {
let targetNode: (Node|null) = (target as Node | null);
while (targetNode && !(targetNode instanceof XLink)) {
targetNode = targetNode.parentNodeOrShadowHost();
}
if (!targetNode || !targetNode.href) {
return;
}
const node: XLink = targetNode;
contextMenu.revealSection().appendItem(openLinkExternallyLabel(), () => {
if (node.href) {
Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(node.href);
}
});
contextMenu.revealSection().appendItem(copyLinkAddressLabel(), () => {
if (node.href) {
Host.InspectorFrontendHost.InspectorFrontendHostInstance.copyText(node.href);
}
});
}
}
ComponentHelpers.CustomElements.defineComponent('x-link', XLink);
export const sample = LitHtml.html`<p>Hello, <x-link>world!</x-link></p>`;