adjusted and added more emojis/shortcodes
All checks were successful
Release to Staging / build_and_release (push) Successful in 45s

This commit is contained in:
freakoverse 2024-09-05 09:38:15 +00:00
parent 0ac31675f9
commit 3d20163b08

View File

@ -36,18 +36,21 @@ export const LANDING_PAGE_DATA = {
} }
] ]
} }
// we use this object to check is a user has reacted positively or negatively to a post // we use this object to check if a user has reacted positively or negatively to a post
// reactions are kind 7 events and their content is either emoji icon or emoji shortcode // reactions are kind 7 events and their content is either emoji icon or emoji shortcode
// Extend the following object as per need to include more emojis and shortcodes // Extend the following object as per need to include more emojis and shortcodes
// NOTE: In following object emojis and shortcode array are not interlinked. // NOTE: In following object emojis and shortcode array are not interlinked.
// Both of these arrays can have separate items // Both of these arrays can have separate items
export const REACTIONS = { export const REACTIONS = {
positive: { positive: {
emojis: ['+', '❤️'], emojis: ['+', '❤️', '💙', '💖', '💚','⭐', '🚀', '🫂', '🎉', '🥳', '🎊', '👍', '💪', '😎'],
shortCodes: [':star_struck:', ':red_heart:'] shortCodes: [':red_heart:', ':blue_heart:', 'sparkling_heart', 'green_heart', 'star', 'rocket', 'people_hugging', 'party_popper',
'tada', 'partying_face', 'confetti_ball', 'thumbs_up', '+1', 'thumbsup', 'thumbup', 'flexed_biceps', 'muscle']
}, },
negative: { negative: {
emojis: ['-', '🥵'], emojis: ['-', '💩', '💔', '👎', '😠', '😞', '🤬', '🤢', '🤮', '🖕', '😡', '💢', '😠', '💀'],
shortCodes: [':hot_face:', ':woozy_face:', ':face_with_thermometer:'] shortCodes: ['poop', 'shit', 'poo', 'hankey', 'pile_of_poo', 'broken_heart', 'thumbsdown', 'thumbdown', 'nauseated_face', 'sick',
'face_vomiting', 'vomiting_face', 'face_with_open_mouth_vomiting', 'middle_finger', 'rage', 'anger', 'anger_symbol', 'angry_face', 'angry',
'smiling_face_with_sunglasses', 'sunglasses', 'skull', 'skeleton']
} }
} }