constant.js 498 B

12345678910111213141516
  1. export const EMIT_AVATAR_CLICK = "avatar-click";
  2. export const DEFAULT_MENU_LASTMESSAGES = "lastMessages";
  3. export const DEFAULT_MENU_CONTACTS = "contacts";
  4. export const DEFAULT_MENUS = [DEFAULT_MENU_LASTMESSAGES, DEFAULT_MENU_CONTACTS];
  5. /**
  6. * 聊天消息类型
  7. */
  8. export const MESSAGE_TYPE = ["voice", "file", "video", "image", "text"];
  9. /**
  10. * 聊天消息状态
  11. */
  12. export const MESSAGE_STATUS = ["going", "succeed", "failed"];
  13. export const CONTACT_TYPE = ["many", "single"];