2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-19 09:37:43 +02:00
|
|
|
import { defaultStore } from '@/store.js';
|
2022-02-08 10:46:39 +01:00
|
|
|
|
2023-02-02 08:43:56 +01:00
|
|
|
await defaultStore.ready;
|
|
|
|
|
2022-02-08 10:46:39 +01:00
|
|
|
const ua = navigator.userAgent.toLowerCase();
|
|
|
|
const isTablet = /ipad/.test(ua) || (/mobile|iphone|android/.test(ua) && window.innerWidth > 700);
|
|
|
|
const isSmartphone = !isTablet && /mobile|iphone|android/.test(ua);
|
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
const isIPhone = /iphone|ipod/gi.test(ua) && navigator.maxTouchPoints > 1;
|
|
|
|
// navigator.platform may be deprecated but this check is still required
|
|
|
|
const isIPadOS = navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1;
|
|
|
|
const isIos = /ipad|iphone|ipod/gi.test(ua) && navigator.maxTouchPoints > 1;
|
|
|
|
|
|
|
|
export const isFullscreenNotSupported = isIPhone || isIos;
|
|
|
|
|
2023-01-27 03:16:22 +01:00
|
|
|
export const deviceKind: 'smartphone' | 'tablet' | 'desktop' = defaultStore.state.overridedDeviceKind ? defaultStore.state.overridedDeviceKind
|
2022-02-08 10:46:39 +01:00
|
|
|
: isSmartphone ? 'smartphone'
|
|
|
|
: isTablet ? 'tablet'
|
|
|
|
: 'desktop';
|