open-vault/ui/lib/core/addon/components/doc-link.js
claire bontempo 032ccc2373
UI: Remove LearnLink, use DocLink! (#18641)
* delete learn link, update links

* update documentation

* update test

* Update ui/app/templates/components/wizard/replication-setup.hbs
2023-01-10 17:07:08 +00:00

22 lines
591 B
JavaScript

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}`;
}
}