add mobile device detection and redirect to external site
All checks were successful
Master Build / Build and Push Docker Image (amd64) (push) Successful in 53s
Master Build / Update running container (push) Successful in 10s

This commit is contained in:
José Henrique 2025-01-24 22:16:42 -03:00
parent 8117a4870b
commit 37ac35e3f4
2 changed files with 32 additions and 5 deletions

View File

@ -2,9 +2,15 @@ import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import './index.css';
import { isMobileDevice } from './utils/deviceDetection';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
);
// Check for mobile device and redirect if necessary
if (isMobileDevice()) {
window.location.href = 'https://blog.ivanch.me';
} else {
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>
);
}

View File

@ -0,0 +1,21 @@
function isPortraitAndNarrow(): boolean {
return window.innerWidth < window.innerHeight && window.innerWidth < 768;
}
export function isMobileDevice(): boolean {
const toMatch = [
/Android/i,
/webOS/i,
/iPhone/i,
/iPad/i,
/iPod/i,
/BlackBerry/i,
/Windows Phone/i
];
const isMobileUserAgent = toMatch.some((toMatchItem) => {
return navigator.userAgent.match(toMatchItem);
});
return isMobileUserAgent || isPortraitAndNarrow();
}