1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

re-add supported query details

This commit is contained in:
checktheroads
2019-08-21 08:23:33 -07:00
parent bfb89a5e5a
commit b75e6cb8ba
4 changed files with 48 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ const ClipboardJS = require('clipboard');
const queryLocation = $('#location');
const queryType = $('#query_type');
const queryTarget = $('#query_target');
const queryTargetAppend = $('#hg-target-append');
const resultsContainer = $('#hg-results');
const formContainer = $('#hg-form');
const resultsAccordion = $('#hg-accordion');
@@ -96,6 +97,21 @@ $(document).ready(() => {
formContainer.animsition('in');
});
const supportedBtn = qt => `<button class="btn btn-dark hg-info-btn" id="hg-info-btn-${qt}" data-hg-type="${qt}" type="button"><div id="hg-info-icon-${qt}"><i class="remixicon-information-line"></i></div></button>`;
queryType.on('changed.bs.select', () => {
const queryTypeId = queryType.val();
if ((queryTypeId === 'bgp_community') || (queryTypeId === 'bgp_aspath')) {
$('.hg-info-btn').remove();
queryTargetAppend.prepend(supportedBtn(queryTypeId));
}
});
queryTargetAppend.on('click', '.hg-info-btn', () => {
const queryTypeId = $('.hg-info-btn').data('hg-type');
$(`#hg-info-${queryTypeId}`).modal('show');
});
const queryApp = (queryType, queryTypeName, locationList, queryTarget) => {
const resultsTitle = `${queryTypeName} Query for ${queryTarget}`;