chrome-devtools-frontend
Version:
Chrome DevTools UI
56 lines (45 loc) • 1.74 kB
text/typescript
// Copyright (c) 2020 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.
/* eslint-disable rulesdir/no-lit-render-outside-of-view */
import '../../legacy/legacy.js'; // Required for <x-link>.
import {html, render} from '../../lit/lit.js';
import * as VisualLogging from '../../visual_logging/visual_logging.js';
import markdownLinkStyles from './markdownLink.css.js';
import {getMarkdownLink} from './MarkdownLinksMap.js';
export interface MarkdownLinkData {
key: string;
title: string;
}
/**
* Component to render link from parsed markdown.
* Parsed links from markdown are not directly rendered, instead they have to be added to the <key, link> map in MarkdownLinksMap.ts.
* This makes sure that all links are accounted for and no bad links are introduced to devtools via markdown.
*/
export class MarkdownLink extends HTMLElement {
readonly #shadow = this.attachShadow({mode: 'open'});
#linkText = '';
#linkUrl = '';
set data(data: MarkdownLinkData) {
const {key, title} = data;
const markdownLink = getMarkdownLink(key);
this.#linkText = title;
this.#linkUrl = markdownLink;
this.#render();
}
#render(): void {
// clang-format off
const output = html`
<style>${markdownLinkStyles}</style>
<x-link class="devtools-link" href=${this.#linkUrl} jslog=${VisualLogging.link().track({click: true})}
>${this.#linkText}</x-link>`;
render(output, this.#shadow, {host: this});
// clang-format on
}
}
customElements.define('devtools-markdown-link', MarkdownLink);
declare global {
interface HTMLElementTagNameMap {
'devtools-markdown-link': MarkdownLink;
}
}