-
-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathindex.android.ts
80 lines (67 loc) · 2.29 KB
/
index.android.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
export * from './common';
import { Utils, Device } from '@nativescript/core';
import { HapticImpactType, HapticNotificationType } from './common';
export class Haptics {
static isSupported() {
return true;
}
static is6SAnd6SPlusSupported() {
return false;
}
static notification(type?: HapticNotificationType) {
trigger('notification', { notification: type });
}
static impact(type?: HapticImpactType) {
trigger('impact', { impact: type });
}
static selection() {
trigger('selection');
}
}
export class HapticsFallback {
static weakBoom() {}
static strongBoom() {}
static burst() {}
}
let vibrator: android.os.Vibrator;
function trigger(
type: 'notification' | 'impact' | 'selection',
options?: {
impact?: HapticImpactType;
notification?: HapticNotificationType;
overrideSystemSettings?: boolean;
}
) {
// TODO: check android system settings and allow overrides via options
// const hapticEnabledAndroidSystemSettings = android.provider.Settings.System.getInt(Utils.android.getApplicationContext().getContentResolver(), android.provider.Settings.System.HAPTIC_FEEDBACK_ENABLED, 0);
// if (!options?.overrideSystemSettings && hapticEnabledAndroidSystemSettings == 0) return;
if (!vibrator) {
vibrator = Utils.android.getApplicationContext().getSystemService(android.content.Context.VIBRATOR_SERVICE);
}
if (!vibrator) return;
if (parseFloat(Device.sdkVersion) >= 29 && vibrator.hasVibrator()) {
switch (type) {
case 'notification':
vibrator.vibrate(android.os.VibrationEffect.createPredefined(android.os.VibrationEffect.EFFECT_TICK));
break;
case 'impact':
if (options) {
switch (options.impact) {
case HapticImpactType.LIGHT:
vibrator.vibrate(android.os.VibrationEffect.createPredefined(android.os.VibrationEffect.EFFECT_CLICK));
break;
case HapticImpactType.MEDIUM:
vibrator.vibrate(android.os.VibrationEffect.createPredefined(android.os.VibrationEffect.EFFECT_DOUBLE_CLICK));
break;
case HapticImpactType.HEAVY:
vibrator.vibrate(android.os.VibrationEffect.createPredefined(android.os.VibrationEffect.EFFECT_HEAVY_CLICK));
break;
}
}
break;
case 'selection':
vibrator.vibrate(android.os.VibrationEffect.createPredefined(android.os.VibrationEffect.EFFECT_CLICK));
break;
}
}
}