open-vault/ui/lib/core/addon/components/doc-link.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

27 lines
669 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import ExternalLink from './external-link';
/**
* @module DocLink
* `DocLink` components are used to render anchor links to relevant Vault documentation at developer.hashicorp.com.
*
* @example
* ```js
<DocLink @path="/docs/secrets/kv/kv-v2.html">Learn about KV v2</DocLink>
* ```
*
* @param {string} path="/" - The path to documentation on developer.hashicorp.com that the component should link to.
*
*/
export default class DocLinkComponent extends ExternalLink {
host = 'https://developer.hashicorp.com';
get href() {
return `${this.host}${this.args.path}`;
}
}