mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import {
|
|
changeSettingsClicked,
|
|
closeExtensionPopup,
|
|
SettingsClicked,
|
|
} from "./Closers/closeExtensionPopup";
|
|
import { animate } from "motion";
|
|
import { settingsState } from "./listeners/SettingsState";
|
|
|
|
export function setupSettingsButton() {
|
|
var AddedSettings = document.getElementById("AddedSettings");
|
|
var extensionPopup = document.getElementById("ExtensionPopup");
|
|
|
|
AddedSettings!.addEventListener("click", async () => {
|
|
if (SettingsClicked) {
|
|
closeExtensionPopup(extensionPopup as HTMLElement);
|
|
} else {
|
|
if (settingsState.animations) {
|
|
animate(0, 1, {
|
|
onUpdate: (progress) => {
|
|
extensionPopup!.style.opacity = progress.toString();
|
|
extensionPopup!.style.transform = `scale(${progress})`;
|
|
},
|
|
type: "spring",
|
|
stiffness: 280,
|
|
damping: 20,
|
|
});
|
|
} else {
|
|
extensionPopup!.style.opacity = "1";
|
|
extensionPopup!.style.transform = "scale(1)";
|
|
extensionPopup!.style.transition =
|
|
"opacity 0s linear, transform 0s linear";
|
|
}
|
|
extensionPopup!.classList.remove("hide");
|
|
changeSettingsClicked(true);
|
|
}
|
|
});
|
|
}
|