"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getTemplateListLink = exports.getTemplateEditLink = exports.getTemplateDetailsLink = exports.getTemplateCloneLink = exports.getIndexListUri = exports.getILMPolicyPath = exports.getDataStreamDetailsLink = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const getTemplateListLink = () => `/templates`; exports.getTemplateListLink = getTemplateListLink; const getTemplateDetailsLink = (name, isLegacy) => { let url = `/templates/${encodeURIComponent(name)}`; if (isLegacy) { url = `${url}?legacy=${isLegacy}`; } return encodeURI(url); }; exports.getTemplateDetailsLink = getTemplateDetailsLink; const getTemplateEditLink = (name, isLegacy) => { let url = `/edit_template/${encodeURIComponent(name)}`; if (isLegacy) { url = `${url}?legacy=true`; } return encodeURI(url); }; exports.getTemplateEditLink = getTemplateEditLink; const getTemplateCloneLink = (name, isLegacy) => { let url = `/clone_template/${encodeURIComponent(name)}`; if (isLegacy) { url = `${url}?legacy=true`; } return encodeURI(url); }; exports.getTemplateCloneLink = getTemplateCloneLink; const getILMPolicyPath = policyName => { return `/data/index_lifecycle_management/policies/edit/${encodeURIComponent(policyName)}`; }; exports.getILMPolicyPath = getILMPolicyPath; const getIndexListUri = (filter, includeHiddenIndices) => { const hiddenIndicesParam = typeof includeHiddenIndices !== 'undefined' ? includeHiddenIndices : false; if (filter) { // React router tries to decode url params but it can't because the browser partially // decodes them. So we have to encode both the URL and the filter to get it all to // work correctly for filters with URL unsafe characters in them. return encodeURI(`/indices?includeHiddenIndices=${hiddenIndicesParam}&filter=${encodeURIComponent(filter)}`); } // If no filter, URI is already safe so no need to encode. return '/indices'; }; exports.getIndexListUri = getIndexListUri; const getDataStreamDetailsLink = name => { return encodeURI(`/data_streams/${encodeURIComponent(name)}`); }; exports.getDataStreamDetailsLink = getDataStreamDetailsLink;