Hackers' Pub에 리액션 기능 만들고 있는데, 선택 가능한 에모지 세트를 이 정도로 대충 정해봤습니다. 더하거나 뺄 게 있을까요? 그리고 5 종류인 게 많다고 보시나요 적다고 보시나요?

const REACTION_EMOJIS = ["❤️", "😕", "😮", "🤔", "👀"];
const DEFAULT_REACTION_EMOJI = REACTION_EMOJIS[0];
0

If you have a fediverse account, you can reply to this note from your own instance. Search https://hackers.pub/ap/notes/01960f4a-cba0-7ab9-8932-179c6fefa632 on your instance and reply to it.

@hongminhee@hackers.pub洪 民憙 (Hong Minhee) 버그질라의 경우 이렇게 되어 있는데 저기서 😭의 부재를 많이 느꼈습니다

0

@hongminhee洪 民憙 (Hong Minhee) 리액션에 웃는 표현과 우는 표현은 있었으면 좋겠다는 개인적인 작은 바램은 있습니다. 😂

0

일단 이 정도로 가기로 했습니다.

export const REACTION_EMOJIS: readonly string[] = [
  "❤️",
  "🎉",
  "😂",
  "😲",
  "🤔",
  "😢",
  "👀",
];
export type ReactionEmoji = (typeof REACTION_EMOJIS)[number];
0