META-INF.dirigible.dev-tools.ui.XLink.js Maven / Gradle / Ivy
// 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 '../host/host.js';
import * as ARIAUtils from './ARIAUtils.js';
import {ContextMenu, Provider} from './ContextMenu.js'; // eslint-disable-line no-unused-vars
import {html} from './Fragment.js';
import {addReferrerToURLIfNecessary, copyLinkAddressLabel, MaxLengthForDisplayedURLs, openLinkExternallyLabel} from './UIUtils.js';
import {XElement} from './XElement.js';
/**
* @extends {XElement}
*/
export class XLink extends XElement {
/**
* @param {string} url
* @param {string=} linkText
* @param {string=} className
* @param {boolean=} preventClick
* @return {!Element}
*/
static create(url, linkText, className, preventClick) {
if (!linkText) {
linkText = url;
}
className = className || '';
url = addReferrerToURLIfNecessary(url);
// clang-format off
// TODO(dgozman): migrate css from 'devtools-link' to 'x-link'.
return html`
${linkText.trimMiddle(MaxLengthForDisplayedURLs)} `;
// clang-format on
}
constructor() {
super();
this.style.setProperty('display', 'inline');
ARIAUtils.markAsLink(this);
this.tabIndex = 0;
this.target = '_blank';
this.rel = 'noopener';
/** @type {?string} */
this._href = null;
this._clickable = true;
this._onClick = event => {
event.consume(true);
Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(/** @type {string} */ (this._href));
};
this._onKeyDown = event => {
if (isEnterOrSpaceKey(event)) {
event.consume(true);
Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(/** @type {string} */ (this._href));
}
};
}
/**
* @override
* @return {!Array}
*/
static get observedAttributes() {
// TODO(dgozman): should be super.observedAttributes, but it does not compile.
return XElement.observedAttributes.concat(['href', 'no-click']);
}
/**
* @param {string} attr
* @param {?string} oldValue
* @param {?string} newValue
* @override
*/
attributeChangedCallback(attr, oldValue, newValue) {
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 = null;
let url = null;
try {
url = new URL(newValue);
href = url.toString();
} catch (error) {
}
if (url && url.protocol === 'javascript:') {
href = null;
}
this._href = href;
this.title = newValue;
this._updateClick();
return;
}
super.attributeChangedCallback(attr, oldValue, newValue);
}
_updateClick() {
if (this._href !== 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');
}
}
}
/**
* @implements {Provider}
*/
export class ContextMenuProvider {
/**
* @override
* @param {!Event} event
* @param {!ContextMenu} contextMenu
* @param {!Object} target
*/
appendApplicableItems(event, contextMenu, target) {
let targetNode = /** @type {!Node} */ (target);
while (targetNode && !(targetNode instanceof XLink)) {
targetNode = targetNode.parentNodeOrShadowHost();
}
if (!targetNode || !targetNode._href) {
return;
}
contextMenu.revealSection().appendItem(
openLinkExternallyLabel(),
() => Host.InspectorFrontendHost.InspectorFrontendHostInstance.openInNewTab(targetNode._href));
contextMenu.revealSection().appendItem(
copyLinkAddressLabel(),
() => Host.InspectorFrontendHost.InspectorFrontendHostInstance.copyText(targetNode._href));
}
}
self.customElements.define('x-link', XLink);