fix: Settings panel overflows screen on certain sizes #90

This commit is contained in:
SethBurkart123
2024-02-12 18:03:23 +11:00
parent 6906245e4c
commit 0a850e5b27
4 changed files with 56 additions and 2 deletions
+4 -1
View File
@@ -29,6 +29,7 @@ import { onError } from './seqta/utils/onError'
import stringToHTML from './seqta/utils/stringToHTML' import stringToHTML from './seqta/utils/stringToHTML'
import { updateAllColors } from './seqta/ui/colors/Manager' import { updateAllColors } from './seqta/ui/colors/Manager'
import { updateBgDurations } from './seqta/ui/Animation' import { updateBgDurations } from './seqta/ui/Animation'
import { SettingsResizer } from "./seqta/ui/SettingsResizer";
declare global { declare global {
interface Window { interface Window {
@@ -890,11 +891,13 @@ function addExtensionSettings() {
extensionIframe.setAttribute('allowTransparency', 'true') extensionIframe.setAttribute('allowTransparency', 'true')
extensionIframe.setAttribute('excludeDarkCheck', 'true') extensionIframe.setAttribute('excludeDarkCheck', 'true')
extensionIframe.style.width = '384px' extensionIframe.style.width = '384px'
extensionIframe.style.height = '600px' extensionIframe.style.height = '100%'
extensionIframe.style.border = 'none' extensionIframe.style.border = 'none'
extensionPopup.appendChild(extensionIframe) extensionPopup.appendChild(extensionIframe)
const container = document.getElementById('container') const container = document.getElementById('container')
new SettingsResizer();
const closeExtensionPopup = () => { const closeExtensionPopup = () => {
const ExtensionIframe = document.getElementById('ExtensionIframe') as HTMLIFrameElement const ExtensionIframe = document.getElementById('ExtensionIframe') as HTMLIFrameElement
+1 -1
View File
@@ -30,7 +30,7 @@ const SettingsPage = ({ standalone }: SettingsPage) => {
]; ];
return ( return (
<div className={`flex flex-col w-[384px] shadow-2xl gap-2 bg-white ${ standalone ? '' : 'rounded-xl' } h-[600px] overflow-clip dark:bg-zinc-800 dark:text-white`}> <div className={`flex flex-col w-[384px] shadow-2xl gap-2 bg-white ${ standalone ? '' : 'rounded-xl' } h-[100vh] overflow-clip dark:bg-zinc-800 dark:text-white`}>
<div className="grid border-b border-b-zinc-200/40 place-items-center"> <div className="grid border-b border-b-zinc-200/40 place-items-center">
<img src={logo} className="w-4/5 dark:hidden" /> <img src={logo} className="w-4/5 dark:hidden" />
<img src={logoDark} className="hidden w-4/5 dark:block" /> <img src={logoDark} className="hidden w-4/5 dark:block" />
+26
View File
@@ -0,0 +1,26 @@
import { debounce } from "../utils/debounce";
/**
* Automatically resizes the popup to fit the screen, checks on resize but is debounced to prevent intense utilisation.
*/
export class SettingsResizer {
constructor() {
this.adjustPopupHeight();
window.addEventListener('resize', debounce(this.adjustPopupHeight, 250) as EventListener);
document.addEventListener('DOMContentLoaded', this.adjustPopupHeight);
}
private adjustPopupHeight() {
const iframePopup = document.getElementById('ExtensionPopup');
if (!iframePopup) return;
const viewportHeight = window.innerHeight;
const idealHeight = viewportHeight - 80 - 15; // -80px for the top of the popup
if (idealHeight > 600) {
iframePopup.style.height = '600px';
} else {
iframePopup.style.height = `${idealHeight}px`;
}
}
}
+25
View File
@@ -0,0 +1,25 @@
/**
* Creates a debounced function that delays invoking the provided function until after `wait` milliseconds have elapsed
* since the last time it was invoked. The debounced function will only be invoked once during the `wait` period.
*
* @param func - The function to debounce.
* @param wait - The number of milliseconds to delay.
* @param immediate - If `true`, the function will be invoked immediately on the leading edge instead of the trailing edge.
* If not provided, it is disabled by default.
* @returns A debounced function.
*/
export function debounce(func: Function, wait: number, immediate?: boolean): Function {
let timeout: number | undefined;
return function(this: any) {
const context = this;
const args = arguments;
const later = function() {
timeout = undefined;
if (!immediate) func.apply(context, args);
};
const callNow = immediate && !timeout;
clearTimeout(timeout);
timeout = setTimeout(later, wait);
if (callNow) func.apply(context, args);
};
}