mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-23 06:46:09 +08:00
78 lines
2.1 KiB
TypeScript
78 lines
2.1 KiB
TypeScript
import { useState, useEffect, useMemo } from 'react';
|
|
import browserType from './index';
|
|
|
|
export const useCtx = () => {
|
|
const [width, setWidth] = useState('100%');
|
|
const [marginLeft, setMarginLeft] = useState(0);
|
|
const [marginTop, setMarginTop] = useState(-72);
|
|
const [isPhone, setIsPhone] = useState(false);
|
|
const { platform } = useMemo(() => browserType(), []);
|
|
|
|
useEffect(() => {
|
|
if (platform === 'mobile' && document.body.offsetWidth < 768) {
|
|
setWidth('auto');
|
|
setMarginLeft(0);
|
|
setMarginTop(0);
|
|
setIsPhone(true);
|
|
document.body.setAttribute('data-mode', 'phone');
|
|
} else {
|
|
setWidth('100%');
|
|
setMarginLeft(0);
|
|
setMarginTop(-72);
|
|
setIsPhone(false);
|
|
document.body.setAttribute('data-mode', 'desktop');
|
|
}
|
|
}, []);
|
|
|
|
return {
|
|
headerStyle: {
|
|
padding: '4px 16px 4px 15px',
|
|
position: 'sticky',
|
|
top: 0,
|
|
left: 0,
|
|
zIndex: 20,
|
|
marginTop,
|
|
width,
|
|
marginLeft,
|
|
} as any,
|
|
isPhone,
|
|
};
|
|
};
|
|
|
|
export const useTheme = () => {
|
|
const [theme, setTheme] = useState<'vs' | 'vs-dark'>();
|
|
|
|
const reloadTheme = () => {
|
|
const media = window.matchMedia('(prefers-color-scheme: dark)');
|
|
const storageTheme = localStorage.getItem('qinglong_dark_theme');
|
|
const isDark =
|
|
(media.matches && storageTheme !== 'light') || storageTheme === 'dark';
|
|
setTheme(isDark ? 'vs-dark' : 'vs');
|
|
};
|
|
|
|
useEffect(() => {
|
|
const media = window.matchMedia('(prefers-color-scheme: dark)');
|
|
const storageTheme = localStorage.getItem('qinglong_dark_theme');
|
|
const isDark =
|
|
(media.matches && storageTheme !== 'light') || storageTheme === 'dark';
|
|
setTheme(isDark ? 'vs-dark' : 'vs');
|
|
|
|
const cb = (e: any) => {
|
|
if (storageTheme === 'auto' || !storageTheme) {
|
|
if (e.matches) {
|
|
setTheme('vs-dark');
|
|
} else {
|
|
setTheme('vs');
|
|
}
|
|
}
|
|
};
|
|
if (typeof media.addEventListener === 'function') {
|
|
media.addEventListener('change', cb);
|
|
} else if (typeof media.addListener === 'function') {
|
|
media.addListener(cb);
|
|
}
|
|
}, []);
|
|
|
|
return { theme, reloadTheme };
|
|
};
|