summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/helpers/help_page_helper.js
blob: 0e8245486462cef7f4a4bc20b196d460adc35900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { joinPaths, setUrlFragment } from '~/lib/utils/url_utility';

const HELP_PAGE_URL_ROOT = '/help/';

/**
 * Generate link to a GitLab documentation page.
 *
 * This is designed to mirror the Ruby `help_page_path` helper function, so that
 * the two can be used interchangeably.
 * @param {String} path           - Path to doc file relative to the doc/ directory in the GitLab repository.
 *                                  Optionally, including `.md` or `.html` prefix
 * @param {String} options.anchor - Name of the anchor to scroll to on the documentation page.
 */
export const helpPagePath = (path, { anchor = '' } = {}) => {
  let helpPath = joinPaths(gon.relative_url_root || '/', HELP_PAGE_URL_ROOT, path);
  if (anchor) {
    helpPath = setUrlFragment(helpPath, anchor);
  }

  return helpPath;
};