2023-07-26 22:31:52 -07:00
|
|
|
/*
|
2024-02-13 07:50:11 -08:00
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-26 22:31:52 -07:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-19 00:37:43 -07:00
|
|
|
import { defaultStore } from '@/store.js';
|
2022-02-08 01:46:39 -08:00
|
|
|
|
2023-02-01 23:43:56 -08:00
|
|
|
await defaultStore.ready;
|
|
|
|
|
2022-02-08 01:46:39 -08: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 01:17:01 -08: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-26 18:16:22 -08:00
|
|
|
export const deviceKind: 'smartphone' | 'tablet' | 'desktop' = defaultStore.state.overridedDeviceKind ? defaultStore.state.overridedDeviceKind
|
2022-02-08 01:46:39 -08:00
|
|
|
: isSmartphone ? 'smartphone'
|
|
|
|
: isTablet ? 'tablet'
|
|
|
|
: 'desktop';
|