forked from voximplant/react-native-foreground-service
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.ts
205 lines (179 loc) · 6.03 KB
/
index.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
//@ts-ignore
import { AppRegistry, NativeModules } from "react-native";
const ForegroundServiceModule = NativeModules.LTForegroundService;
type Importance = 1 | 2 | 3 | 4 | 5;
type Priority = 0 | -1 | -2 | 1 | 2;
export enum NotificationType {
BACKGROUND = "BACKGROUND",
FOREGROUND = "FOREGROUND",
}
/**
* @property {string} id - Unique channel ID
* @property {string} name - Notification channel name
* @property {string} [description] - Notification channel description
* @property {number} [importance] - Notification channel importance. One of:
* 1 - 'min',
* 2 - 'low' (by default),
* 3 - 'default',
* 4 - 'high',
* 5 - 'max'.
* @property {boolean} [enableVibration] - Sets whether notification posted to this channel should vibrate. False by default.
*/
export interface IChannelConfig {
id: string;
name: string;
description: string;
enableVibration?: boolean;
importance?: Importance;
}
/**
* @property {string} channelId - Notification channel id to display notification
* @property {number} id - Unique notification id
* @property {string} title - Notification title
* @property {string} text - Notification text
* @property {string} icon - Small icon name
* @property {boolean} ongoing - ongoing option true or false default : false
* @property {NotificationType} notificationType - BACKGROUND or FOREGROUND
* @property {number} [priority] - Priority of this notification. One of:
* 0 - PRIORITY_DEFAULT (by default),
* -1 - PRIORITY_LOW,
* -2 - PRIORITY_MIN,
* 1 - PRIORITY_HIGH,
* 2- PRIORITY_MAX
*/
export interface INotificationConfig {
channelId?: string;
id: number;
title: string;
text: string;
icon: string;
priority?: Priority;
ongoing?: boolean;
notificationType?: NotificationType;
}
/**
* @property {string} taskName - background Task Name
* @property {number} delay - background Task delay time
* @property {string} channelId - Notification channel id to display notification
* @property {number} id - Unique notification id
* @property {string} title - Notification title
* @property {string} text - Notification text
* @property {string} icon - Small icon name
* @property {number} [priority] - Priority of this notification. One of:
* 0 - PRIORITY_DEFAULT (by default),
* -1 - PRIORITY_LOW,
* -2 - PRIORITY_MIN,
* 1 - PRIORITY_HIGH,
* 2- PRIORITY_MAX
*/
export interface IBackgroundConfig {
taskName?: string;
delay?: number;
channelId?: string;
id: number;
title: string;
text: string;
icon: string;
priority?: Priority;
ongoing?: boolean;
}
export interface ILTForegroundService {
createNotificationChannel(channelConfig: IChannelConfig): Promise<void>;
startService(notificationConfig: INotificationConfig): Promise<void>;
stopService(): Promise<void>;
updateService(notificationConfig: INotificationConfig): Promise<void>;
backgroundStartService(
task: (taskData?: IBackgroundConfig) => Promise<void>,
backgroundConfig: IBackgroundConfig
): Promise<void>;
backgroundStopService(): Promise<void>;
getIsBackgroundRunning(): boolean;
getIsRunning(): boolean;
}
let stopTask = (_: unknown) => {};
let isRunning = false;
let isBackgroundRunning = false;
const generateTask = (
task: (taskData?: IBackgroundConfig) => Promise<void>,
parameters: IBackgroundConfig
) => {
return async () => {
await new Promise((resolve) => {
stopTask = resolve;
task(parameters).then(() => stopTask({}));
});
};
};
const LTForegroundService: ILTForegroundService = {
/**
* Create notification channel for foreground service
*
* @param {IChannelConfig} channelConfig - Notification channel configuration
* @return Promise
*/
createNotificationChannel: async (channelConfig) => {
return await ForegroundServiceModule.createNotificationChannel(
channelConfig
);
},
/**
* Start foreground service
* @param {INotificationConfig} notificationConfig - Notification config
* @return Promise
*/
startService: async (notificationConfig) => {
await ForegroundServiceModule.startService(notificationConfig);
isRunning = true;
},
/**
* Stop foreground service
*
* @return Promise
*/
stopService: async () => {
await ForegroundServiceModule.stopService();
isRunning = false;
},
/**
* Update foreground service
* @param {INotificationConfig} notificationConfig - Notification config
* @return void
*/
updateService: async (notificationConfig) => {
await ForegroundServiceModule.updateService(notificationConfig);
},
/**
* You can start background service
* @param {IBackgroundConfig} backgroundConfig - Background config
* @param {(taskData?: IBackgroundConfig) => Promise<void>} task - Background task
* @return void
*/
backgroundStartService: async (task, backgroundConfig) => {
try {
const finalTask = generateTask(task, backgroundConfig);
const taskName = backgroundConfig.taskName ?? "BackgroundTask";
AppRegistry.registerHeadlessTask(taskName, () => finalTask);
if (isRunning) {
await ForegroundServiceModule.stopService();
}
await ForegroundServiceModule.backgroundStartService(backgroundConfig);
isBackgroundRunning = true;
} catch (err) {
console.error("backgroundStartService error");
console.error(err);
}
},
backgroundStopService: async () => {
await stopTask({});
await ForegroundServiceModule.backgroundStopService();
isBackgroundRunning = false;
return;
},
getIsBackgroundRunning: () => {
return isBackgroundRunning;
},
getIsRunning: () => {
return isRunning;
},
};
export default LTForegroundService;