2023-07-27 14:31:52 +09:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-09-19 16:37:43 +09:00
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2021-12-05 13:10:19 +09:00
|
|
|
|
2023-01-02 09:20:49 +09:00
|
|
|
const isTouchSupported = 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
|
2021-12-05 13:10:19 +09:00
|
|
|
|
2023-01-02 09:20:49 +09:00
|
|
|
export let isTouchUsing = deviceKind === 'tablet' || deviceKind === 'smartphone';
|
2021-12-05 13:10:19 +09:00
|
|
|
|
2023-01-02 09:20:49 +09:00
|
|
|
if (isTouchSupported && !isTouchUsing) {
|
2021-12-05 13:10:19 +09:00
|
|
|
window.addEventListener('touchstart', () => {
|
|
|
|
// maxTouchPointsなどでの判定だけだと、「タッチ機能付きディスプレイを使っているがマウスでしか操作しない」場合にも
|
|
|
|
// タッチで使っていると判定されてしまうため、実際に一度でもタッチされたらtrueにする
|
|
|
|
isTouchUsing = true;
|
|
|
|
}, { passive: true });
|
|
|
|
}
|