diff --git a/src/constants.ts b/src/constants.ts index a611b6c..3b60501 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -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 // Extend the following object as per need to include more emojis and shortcodes // NOTE: In following object emojis and shortcode array are not interlinked. // Both of these arrays can have separate items export const REACTIONS = { positive: { - emojis: ['+', '❤️'], - shortCodes: [':star_struck:', ':red_heart:'] + emojis: ['+', '❤️', '💙', '💖', '💚','⭐', '🚀', '🫂', '🎉', '🥳', '🎊', '👍', '💪', '😎'], + 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: { - emojis: ['-', '🥵'], - shortCodes: [':hot_face:', ':woozy_face:', ':face_with_thermometer:'] + emojis: ['-', '💩', '💔', '👎', '😠', '😞', '🤬', '🤢', '🤮', '🖕', '😡', '💢', '😠', '💀'], + 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'] } }