blob: f766faf2b6b6a7841fff51ff260a9ab409376543 (
plain) (
blame)
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
|
/**
* check if message is PM
*
* @param {import('../../src/api').Message} msg message
*/
export function isPM(msg) {
return !msg.mid;
}
/**
* check if message is reply
*
* @param {import('../../src/api').Message} msg message
*/
export function isReply(msg) {
return msg.rid && msg.rid > 0;
}
/**
* check if message is service one
*
* @param {import('../../src/api').Message} msg message
*/
export function isService(msg) {
return msg.service && msg.service;
}
/**
* format notification title
*
* @param {import('../../src/api').Message} msg message
* @returns {string} formatted title
*/
export function formatTitle(msg) {
if (isReply(msg)) {
return `Reply by ${msg.user.uname}:`;
} else if (isPM(msg)) {
return `Private message from ${msg.user.uname}:`;
}
return `${msg.user.uname}`;
}
/**
* format notification quote
*
* @param { import('../../src/api').Message } msg message
* @returns {string} formatted quote line
*/
export function formatQuote(msg) {
if (isReply(msg)) {
return msg.replyQuote || '';
} else if (isPM(msg)) {
return '';
}
return (msg.tags || []).map(t => `*${t}`).join(', ');
}
/**
* format notification body
*
* @param {import('../../src/api').Message} msg message
* @returns {string} formatted body
*/
export function formatMessage(msg) {
return msg.body || 'Sent an image';
}
|