UNPKG

chrome-devtools-frontend

Version:
60 lines (48 loc) 1.88 kB
// 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. import '../../legacy/legacy.js'; // Required for <x-link>. import * as ComponentHelpers from '../../components/helpers/helpers.js'; import * as LitHtml from '../../lit-html/lit-html.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 { static readonly litTagName = LitHtml.literal`devtools-markdown-link`; readonly #shadow = this.attachShadow({mode: 'open'}); #linkText: string = ''; #linkUrl: string = ''; connectedCallback(): void { this.#shadow.adoptedStyleSheets = [markdownLinkStyles]; } 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 = LitHtml.html` <x-link class="devtools-link" href=${this.#linkUrl}>${this.#linkText}</x-link> `; LitHtml.render(output, this.#shadow, {host: this}); // clang-format on } } ComponentHelpers.CustomElements.defineComponent('devtools-markdown-link', MarkdownLink); declare global { // eslint-disable-next-line @typescript-eslint/no-unused-vars interface HTMLElementTagNameMap { 'devtools-markdown-link': MarkdownLink; } }