52 lines
1.7 KiB
JavaScript
52 lines
1.7 KiB
JavaScript
/**
|
|
* Copyright 2023 Google LLC
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
hljs.highlightAll();
|
|
hljs.addPlugin(new CopyButtonPlugin());
|
|
|
|
mdc.autoInit();
|
|
|
|
const MDCRipple = mdc.ripple.MDCRipple;
|
|
const MDCTextField = mdc.textField.MDCTextField;
|
|
const MDCSelect = mdc.select.MDCSelect;
|
|
const MDCTabBar = mdc.tabBar.MDCTabBar;
|
|
|
|
MDCRipple.attachTo(document.querySelector(".search-button"));
|
|
|
|
const select = new MDCSelect(document.querySelector(".mdc-select"));
|
|
|
|
const jsonTabSelector = document.querySelector("#json-tab-selector");
|
|
const entitiesTabSelector = document.querySelector("#entities-tab-selector");
|
|
|
|
const tabContent = document.querySelector(".tab-content");
|
|
const jsonTab = document.querySelector("#json-tab");
|
|
const entitiesTab = document.querySelector("#entities-tab");
|
|
|
|
if (jsonTabSelector) {
|
|
jsonTabSelector.onclick = () => {
|
|
jsonTab.classList.replace("tab-hidden", "tab-visible");
|
|
entitiesTab.classList.replace("tab-visible", "tab-hidden");
|
|
entitiesTab.replaceWith(jsonTab);
|
|
};
|
|
}
|
|
|
|
if (entitiesTabSelector) {
|
|
entitiesTabSelector.onclick = () => {
|
|
entitiesTab.classList.replace("tab-hidden", "tab-visible");
|
|
jsonTab.classList.replace("tab-visible", "tab-hidden");
|
|
jsonTab.replaceWith(entitiesTab);
|
|
};
|
|
}
|