* fix(ui): add opt-in mobile keyboard resize mode * fix(ui): stabilize touch terminal input and tab layout * fix(ui): narrow touch terminal handling to mobile and tablet * fix(ui): refine touch terminal input handling * fix(ui): re-key terminal viewport on session id * fix(ui): avoid touch-laptop terminal overlay regression * fix(ui): hide ghostty system caret surfaces * fix(settings): normalize mobile keyboard mode sanitization * fix(ui): honor terminal quick keys toggle on mobile * fix(ui): gate mobile keyboard resize mode on iOS --------- Co-authored-by: vhqtvn <8930337+vhqtvn@users.noreply.github.com> Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
97 lines
3.3 KiB
TypeScript
97 lines
3.3 KiB
TypeScript
export type MobileKeyboardMode = 'native' | 'resize-content';
|
|
|
|
export const MOBILE_KEYBOARD_MODE_STORAGE_KEY = 'openchamber.mobileKeyboardMode';
|
|
export const VIEWPORT_META_SELECTOR = 'meta[name="viewport"]';
|
|
export const VIEWPORT_CONTENT_BASE = 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover';
|
|
|
|
export const supportsMobileKeyboardResizeContent = (): boolean => {
|
|
if (typeof navigator === 'undefined') {
|
|
return true;
|
|
}
|
|
|
|
const userAgent = navigator.userAgent || '';
|
|
const platform = navigator.platform || '';
|
|
const maxTouchPoints = navigator.maxTouchPoints ?? 0;
|
|
const isIOS = /iPhone|iPad|iPod/i.test(userAgent)
|
|
|| ((/Macintosh|MacIntel/i.test(userAgent) || /MacIntel/i.test(platform)) && maxTouchPoints > 1);
|
|
|
|
return !isIOS;
|
|
};
|
|
|
|
const getSupportedMobileKeyboardMode = (mode: MobileKeyboardMode): MobileKeyboardMode => {
|
|
if (mode === 'resize-content' && !supportsMobileKeyboardResizeContent()) {
|
|
return 'native';
|
|
}
|
|
return mode;
|
|
};
|
|
|
|
export function normalizeMobileKeyboardMode(value: unknown): MobileKeyboardMode;
|
|
export function normalizeMobileKeyboardMode(value: unknown, fallback: MobileKeyboardMode): MobileKeyboardMode;
|
|
export function normalizeMobileKeyboardMode(value: unknown, fallback: undefined): MobileKeyboardMode | undefined;
|
|
export function normalizeMobileKeyboardMode(
|
|
value: unknown,
|
|
fallback: MobileKeyboardMode | undefined = 'native',
|
|
): MobileKeyboardMode | undefined {
|
|
if (value === 'native' || value === 'resize-content') {
|
|
return value;
|
|
}
|
|
return fallback;
|
|
}
|
|
|
|
export const getViewportContentForMobileKeyboardMode = (value: unknown): string => {
|
|
const mode = getSupportedMobileKeyboardMode(normalizeMobileKeyboardMode(value));
|
|
return mode === 'resize-content'
|
|
? `${VIEWPORT_CONTENT_BASE}, interactive-widget=resizes-content`
|
|
: VIEWPORT_CONTENT_BASE;
|
|
};
|
|
|
|
export const getStoredMobileKeyboardMode = (): MobileKeyboardMode => {
|
|
if (typeof window === 'undefined') {
|
|
return 'native';
|
|
}
|
|
|
|
try {
|
|
return getSupportedMobileKeyboardMode(normalizeMobileKeyboardMode(localStorage.getItem(MOBILE_KEYBOARD_MODE_STORAGE_KEY)));
|
|
} catch {
|
|
return 'native';
|
|
}
|
|
};
|
|
|
|
export const setStoredMobileKeyboardMode = (value: unknown): MobileKeyboardMode => {
|
|
const mode = getSupportedMobileKeyboardMode(normalizeMobileKeyboardMode(value));
|
|
|
|
if (typeof window !== 'undefined') {
|
|
try {
|
|
if (mode === 'native') {
|
|
localStorage.removeItem(MOBILE_KEYBOARD_MODE_STORAGE_KEY);
|
|
} else {
|
|
localStorage.setItem(MOBILE_KEYBOARD_MODE_STORAGE_KEY, mode);
|
|
}
|
|
} catch {
|
|
// Ignore storage failures in restricted browsing contexts.
|
|
}
|
|
}
|
|
|
|
return mode;
|
|
};
|
|
|
|
export const applyMobileKeyboardMode = (value: unknown): MobileKeyboardMode => {
|
|
const mode = setStoredMobileKeyboardMode(value);
|
|
|
|
if (typeof document === 'undefined') {
|
|
return mode;
|
|
}
|
|
|
|
document.documentElement.setAttribute('data-oc-mobile-keyboard-mode', mode);
|
|
|
|
const viewportMeta = document.querySelector(VIEWPORT_META_SELECTOR);
|
|
if (viewportMeta instanceof HTMLMetaElement) {
|
|
const nextContent = getViewportContentForMobileKeyboardMode(mode);
|
|
if (viewportMeta.getAttribute('content') !== nextContent) {
|
|
viewportMeta.setAttribute('content', nextContent);
|
|
}
|
|
}
|
|
|
|
return mode;
|
|
};
|