FEATURE: Adds ~200 more emoji
This includes all new emoji from Unicode 7 and Unicode 8 with the exception of skin tones which will require a new interface.
|
@ -333,7 +333,7 @@ export default Ember.Component.extend({
|
|||
term = term.toLowerCase();
|
||||
|
||||
if (term === "") {
|
||||
return resolve(["slightly_smiling", "smile", "wink", "sunny", "blush"]);
|
||||
return resolve(["slight_smile", "smile", "wink", "sunny", "blush"]);
|
||||
}
|
||||
|
||||
if (Discourse.Emoji.translations[full]) {
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
// TODO @robin to move this whole thing to es6
|
||||
Discourse.Emoji = {};
|
||||
|
||||
// bump up this number to expire all emojis
|
||||
Discourse.Emoji.ImageVersion = "1"
|
||||
Discourse.Emoji.ImageVersion = "2"
|
||||
|
||||
var emoji = <%= Emoji.standard.map(&:name).flatten.inspect %>;
|
||||
var aliases = <%= Emoji.aliases.inspect.gsub("=>", ":") %>;
|
||||
|
@ -108,8 +109,8 @@ function imageFor(code) {
|
|||
|
||||
// Also support default emotions
|
||||
var translations = {
|
||||
':)' : 'slightly_smiling',
|
||||
':-)' : 'slightly_smiling',
|
||||
':)' : 'slight_smile',
|
||||
':-)' : 'slight_smile',
|
||||
':(' : 'frowning',
|
||||
':-(' : 'frowning',
|
||||
';)' : 'wink',
|
||||
|
|
|
@ -20,19 +20,19 @@ class Emoji
|
|||
end
|
||||
|
||||
def self.all
|
||||
Discourse.cache.fetch("all_emojis") { standard | custom }
|
||||
Discourse.cache.fetch("all_emojis:v2") { standard | custom }
|
||||
end
|
||||
|
||||
def self.standard
|
||||
Discourse.cache.fetch("standard_emojis") { load_standard }
|
||||
Discourse.cache.fetch("standard_emojis:v2") { load_standard }
|
||||
end
|
||||
|
||||
def self.aliases
|
||||
Discourse.cache.fetch("aliases_emojis") { load_aliases }
|
||||
Discourse.cache.fetch("aliases_emojis:v2") { load_aliases }
|
||||
end
|
||||
|
||||
def self.custom
|
||||
Discourse.cache.fetch("custom_emojis") { load_custom }
|
||||
Discourse.cache.fetch("custom_emojis:v2") { load_custom }
|
||||
end
|
||||
|
||||
def self.exists?(name)
|
||||
|
@ -52,7 +52,7 @@ class Emoji
|
|||
end
|
||||
|
||||
def self.create_from_db_item(emoji)
|
||||
name = emoji["aliases"].first
|
||||
name = emoji["name"]
|
||||
filename = "#{name}.png"
|
||||
Emoji.new.tap do |e|
|
||||
e.name = name
|
||||
|
@ -91,16 +91,19 @@ class Emoji
|
|||
end
|
||||
|
||||
def self.load_standard
|
||||
db.map { |emoji| Emoji.create_from_db_item(emoji) }
|
||||
db['emojis'].map {|e| Emoji.create_from_db_item(e) }
|
||||
end
|
||||
|
||||
def self.load_aliases
|
||||
aliases = {}
|
||||
return @aliases if @aliases
|
||||
|
||||
db.select { |emoji| emoji["aliases"].count > 1 }
|
||||
.each { |emoji| aliases[emoji["aliases"][0]] = emoji["aliases"][1..-1] }
|
||||
@aliases ||= db['aliases']
|
||||
|
||||
aliases
|
||||
# Fix how `slightly_smiling` was mislabeled
|
||||
@aliases['slight_smile'] ||= []
|
||||
@aliases['slight_smile'] << 'slightly_smiling'
|
||||
|
||||
@aliases
|
||||
end
|
||||
|
||||
def self.load_custom
|
||||
|
@ -121,10 +124,19 @@ class Emoji
|
|||
def self.unicode_replacements
|
||||
return @unicode_replacements if @unicode_replacements
|
||||
|
||||
@unicode_replacements = Hash[db.map {|e| [e['emoji'], e['aliases'][0]] }]
|
||||
|
||||
@unicode_replacements = {}
|
||||
db['emojis'].each do |e|
|
||||
hex = e['code'].hex
|
||||
# Don't replace digits or letters
|
||||
if hex > 128
|
||||
@unicode_replacements[[hex].pack('U')] = e['name']
|
||||
end
|
||||
end
|
||||
|
||||
@unicode_replacements["\u{2639}"] = 'frowning'
|
||||
@unicode_replacements["\u{263A}"] = 'slightly_smiling'
|
||||
@unicode_replacements["\u{263B}"] = 'slightly_smiling'
|
||||
@unicode_replacements["\u{263A}"] = 'slight_smile'
|
||||
@unicode_replacements["\u{263B}"] = 'slight_smile'
|
||||
@unicode_replacements["\u{2661}"] = 'heart'
|
||||
@unicode_replacements["\u{2665}"] = 'heart'
|
||||
|
||||
|
|
12593
lib/emoji/db.json
BIN
public/images/emoji/apple/airplane_arriving.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
public/images/emoji/apple/airplane_departure.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
public/images/emoji/apple/airplane_small.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
public/images/emoji/apple/alembic.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
public/images/emoji/apple/amphora.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
public/images/emoji/apple/anger_right.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
public/images/emoji/apple/atom.png
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
public/images/emoji/apple/badminton.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
public/images/emoji/apple/ballot_box.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
public/images/emoji/apple/basketball_player.png
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
public/images/emoji/apple/beach.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/emoji/apple/beach_umbrella.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
public/images/emoji/apple/bed.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
public/images/emoji/apple/bellhop.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
public/images/emoji/apple/biohazard.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
public/images/emoji/apple/bow_and_arrow.png
Normal file
After Width: | Height: | Size: 6.4 KiB |
BIN
public/images/emoji/apple/burrito.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
public/images/emoji/apple/calendar_spiral.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
public/images/emoji/apple/camera_with_flash.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
public/images/emoji/apple/camping.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
public/images/emoji/apple/candle.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
public/images/emoji/apple/card_box.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
public/images/emoji/apple/chains.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
public/images/emoji/apple/champagne.png
Normal file
After Width: | Height: | Size: 5.1 KiB |
BIN
public/images/emoji/apple/cheese.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
public/images/emoji/apple/chipmunk.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
BIN
public/images/emoji/apple/city_dusk.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
public/images/emoji/apple/cityscape.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/emoji/apple/classical_building.png
Normal file
After Width: | Height: | Size: 5.8 KiB |
BIN
public/images/emoji/apple/clock.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/images/emoji/apple/cloud_lightning.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
public/images/emoji/apple/cloud_rain.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
public/images/emoji/apple/cloud_snow.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/emoji/apple/cloud_tornado.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
public/images/emoji/apple/coffin.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
public/images/emoji/apple/comet.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
public/images/emoji/apple/compression.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/images/emoji/apple/construction_site.png
Normal file
After Width: | Height: | Size: 5.9 KiB |
BIN
public/images/emoji/apple/control_knobs.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
public/images/emoji/apple/couch.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
public/images/emoji/apple/crab.png
Normal file
After Width: | Height: | Size: 8.1 KiB |
BIN
public/images/emoji/apple/crayon.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
public/images/emoji/apple/cricket.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
public/images/emoji/apple/cross.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
public/images/emoji/apple/crossed_swords.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
public/images/emoji/apple/cruise_ship.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
public/images/emoji/apple/dagger.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
public/images/emoji/apple/dark_sunglasses.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
public/images/emoji/apple/desert.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
public/images/emoji/apple/desktop.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
public/images/emoji/apple/dividers.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
public/images/emoji/apple/dove.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
public/images/emoji/apple/eye.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
public/images/emoji/apple/ferry.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
public/images/emoji/apple/field_hockey.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
public/images/emoji/apple/file_cabinet.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
public/images/emoji/apple/film_frames.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
public/images/emoji/apple/flag_black.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
public/images/emoji/apple/flag_cn.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
public/images/emoji/apple/flag_de.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
public/images/emoji/apple/flag_es.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/images/emoji/apple/flag_fr.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
public/images/emoji/apple/flag_gb.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/images/emoji/apple/flag_it.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
public/images/emoji/apple/flag_jp.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
public/images/emoji/apple/flag_kr.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/images/emoji/apple/flag_ru.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
public/images/emoji/apple/flag_us.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/images/emoji/apple/flag_white.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
public/images/emoji/apple/fleur-de-lis.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
public/images/emoji/apple/fog.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
public/images/emoji/apple/fork_knife_plate.png
Normal file
After Width: | Height: | Size: 4.0 KiB |
BIN
public/images/emoji/apple/frame_photo.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
public/images/emoji/apple/frowning2.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
BIN
public/images/emoji/apple/gear.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
public/images/emoji/apple/golfer.png
Normal file
After Width: | Height: | Size: 4.3 KiB |
BIN
public/images/emoji/apple/hammer_pick.png
Normal file
After Width: | Height: | Size: 5.3 KiB |
BIN
public/images/emoji/apple/hand_splayed.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
BIN
public/images/emoji/apple/head_bandage.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
public/images/emoji/apple/heart_exclamation.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
public/images/emoji/apple/helmet_with_cross.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
public/images/emoji/apple/hockey.png
Normal file
After Width: | Height: | Size: 3.4 KiB |
BIN
public/images/emoji/apple/hole.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
public/images/emoji/apple/homes.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
public/images/emoji/apple/hot_pepper.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
public/images/emoji/apple/hotdog.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/images/emoji/apple/house_abandoned.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
public/images/emoji/apple/hugging.png
Normal file
After Width: | Height: | Size: 7.0 KiB |
BIN
public/images/emoji/apple/ice_skate.png
Normal file
After Width: | Height: | Size: 5.7 KiB |
BIN
public/images/emoji/apple/island.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
public/images/emoji/apple/joystick.png
Normal file
After Width: | Height: | Size: 4.8 KiB |
BIN
public/images/emoji/apple/kaaba.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
public/images/emoji/apple/key2.png
Normal file
After Width: | Height: | Size: 3.5 KiB |
BIN
public/images/emoji/apple/keyboard.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
BIN
public/images/emoji/apple/label.png
Normal file
After Width: | Height: | Size: 1.9 KiB |