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
|
odoo.define('mail.emojis', function (require) {
"use strict";
/**
* This module exports the list of all available emojis on the client side.
* An emoji object has the following properties:
*
* - {string[]} sources: the character representations of the emoji
* - {string} unicode: the unicode representation of the emoji
* - {string} description: the description of the emoji
*/
/**
* This data represent all the available emojis that are supported on the web
* client:
*
* - key: this is the source representation of an emoji, i.e. its "character"
* representation. This is a string that can be easily typed by the
* user and then translated to its unicode representation (see value)
* - value: this is the unicode representation of an emoji, i.e. its "true"
* representation in the system.
*/
var data = {
":)": "😊",
":-)": "😊", // alternative (alt.)
"=)": "😊", // alt.
":]": "😊", // alt.
":D": "😃",
":-D": "😃", // alt.
"=D": "😃", // alt.
"xD": "😆",
"XD": "😆", // alt.
"x'D": "😂",
";)": "😉",
";-)": "😉", // alt.
"B)": "😎",
"8)": "😎", // alt.
"B-)": "😎", // alt.
"8-)": "😎", // alt.
";p": "😜",
";P": "😜", // alt.
":p": "😋",
":P": "😋", // alt.
":-p": "😋", // alt.
":-P": "😋", // alt.
"=P": "😋", // alt.
"xp": "😝",
"xP": "😝", // alt.
"o_o": "😳",
":|": "😐",
":-|": "😐", // alt.
":/": "😕", // alt.
":-/": "😕", // alt.
":(": "😞",
":@": "😱",
":O": "😲",
":-O": "😲", // alt.
":o": "😲", // alt.
":-o": "😲", // alt.
":'o": "😨",
"3:(": "😠",
">:(": "😠", // alt.
"3:": "😠", // alt.
"3:)": "😈",
">:)": "😈", // alt.
":*": "😘",
":-*": "😘", // alt.
"o:)": "😇",
":'(": "😢",
":'-(": "😭",
":\"(": "😭", // alt.
"<3": "❤️",
"<3": "❤️",
":heart": "❤️", // alt.
"</3": "💔",
"</3": "💔",
":heart_eyes": "😍",
":turban": "👳",
":+1": "👍",
":-1": "👎",
":ok": "👌",
":poop": "💩",
":no_see": "🙈",
":no_hear": "🙉",
":no_speak": "🙊",
":bug": "🐞",
":kitten": "😺",
":bear": "🐻",
":snail": "🐌",
":boar": "🐗",
":clover": "🍀",
":sunflower": "🌹",
":fire": "🔥",
":sun": "☀️",
":partly_sunny:": "⛅️",
":rainbow": "🌈",
":cloud": "☁️",
":zap": "⚡️",
":star": "⭐️",
":cookie": "🍪",
":pizza": "🍕",
":hamburger": "🍔",
":fries": "🍟",
":cake": "🎂",
":cake_part": "🍰",
":coffee": "☕️",
":banana": "🍌",
":sushi": "🍣",
":rice_ball": "🍙",
":beer": "🍺",
":wine": "🍷",
":cocktail": "🍸",
":tropical": "🍹",
":beers": "🍻",
":ghost": "👻",
":skull": "💀",
":et": "👽",
":alien": "👽", // alt.
":party": "🎉",
":trophy": "🏆",
":key": "🔑",
":pin": "📌",
":postal_horn": "📯",
":music": "🎵",
":trumpet": "🎺",
":guitar": "🎸",
":run": "🏃",
":bike": "🚲",
":soccer": "⚽️",
":football": "🏈",
":8ball": "🎱",
":clapper": "🎬",
":microphone": "🎤",
":cheese": "🧀",
};
// list of emojis in a dictionary, indexed by emoji unicode
var emojiDict = {};
_.each(data, function (unicode, source) {
if (!emojiDict[unicode]) {
emojiDict[unicode] = {
sources: [source],
unicode: unicode,
description: source,
};
} else {
emojiDict[unicode].sources.push(source);
}
});
var emojis = _.values(emojiDict);
return emojis;
});
|