text-generation-webui/js/switch_tabs.js

60 lines
1.5 KiB
JavaScript
Raw Normal View History

let chat_tab = document.getElementById('chat-tab');
let main_parent = chat_tab.parentNode;
2023-08-14 03:48:15 +02:00
function scrollToTop() {
window.scrollTo({
top: 0,
// behavior: 'smooth'
});
}
2023-08-29 22:22:15 +02:00
function findButtonsByText(buttonText) {
const buttons = document.getElementsByTagName('button');
const matchingButtons = [];
buttonText = buttonText.trim();
for (let i = 0; i < buttons.length; i++) {
const button = buttons[i];
const buttonInnerText = button.textContent.trim();
if (buttonInnerText === buttonText) {
matchingButtons.push(button);
}
}
return matchingButtons;
}
function switch_to_chat() {
let chat_tab_button = main_parent.childNodes[0].childNodes[1];
chat_tab_button.click();
2023-08-14 03:48:15 +02:00
scrollToTop();
}
function switch_to_default() {
let default_tab_button = main_parent.childNodes[0].childNodes[4];
default_tab_button.click();
2023-08-14 03:48:15 +02:00
scrollToTop();
}
function switch_to_notebook() {
let notebook_tab_button = main_parent.childNodes[0].childNodes[7];
notebook_tab_button.click();
2023-08-29 22:22:15 +02:00
findButtonsByText('Raw')[1].click()
2023-08-14 03:48:15 +02:00
scrollToTop();
}
function switch_to_generation_parameters() {
let parameters_tab_button = main_parent.childNodes[0].childNodes[10];
parameters_tab_button.click();
2023-08-29 22:22:15 +02:00
findButtonsByText('Generation')[0].click()
2023-08-14 03:48:15 +02:00
scrollToTop();
}
function switch_to_character() {
let parameters_tab_button = main_parent.childNodes[0].childNodes[10];
parameters_tab_button.click();
2023-08-29 22:22:15 +02:00
findButtonsByText('Character')[0].click()
2023-08-14 03:48:15 +02:00
scrollToTop();
}