comp.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. export const AddFriendQrCodePrefix = "io.openim.app/addFriend/";
  2. export const AddGroupQrCodePrefix = "io.openim.app/joinGroup/";
  3. export const ChatingFooterActionTypes = {
  4. Album: "Album",
  5. Camera: "Camera",
  6. takePhoto: "takePhoto",
  7. pickCamera: "pickCamera",
  8. Call: "Call",
  9. VideoCall: "VideoCall",
  10. File: "File",
  11. Card: "Card",
  12. Location: "Location",
  13. Order: "Order",
  14. Follow: "Follow",
  15. StoreOrder: "StoreOrder"
  16. };
  17. export const MessageMenuTypes = {
  18. Copy: "Copy",
  19. Del: "Del",
  20. Forward: "Forward",
  21. Reply: "Reply",
  22. Revoke: "Revoke",
  23. Multiple: "Multiple",
  24. };
  25. export const ContactMenuTypes = {
  26. NewFriend: "NewFriend",
  27. NewGroup: "NewGroup",
  28. MyFriend: "MyFriend",
  29. MyGroup: "MyGroup",
  30. Moments: "Moments",
  31. Lable: "Lable",
  32. };
  33. export const GroupMemberListTypes = {
  34. Preview: "Preview",
  35. Transfer: "Transfer",
  36. Kickout: "Kickout",
  37. SetAdmin: "SetAdmin",
  38. Mute: 'Mute',
  39. ChooseAt: "ChooseAt",
  40. CallInvite: "CallInvite",
  41. };
  42. export const ContactChooseTypes = {
  43. Invite: "Invite",
  44. ForWard: "ForWard",
  45. BatchForWard: "BatchForWard",
  46. MergeForWard: "MergeForWard",
  47. Card: "Card",
  48. ShareCard: "ShareCard",
  49. GetList: "GetList",
  50. GetListWithGroup: "GetListWithGroup",
  51. InviteMeeting: "InviteMeeting",
  52. SendImage: 'SendImage'
  53. };
  54. export const UpdateMessageTypes = {
  55. Overall: "Overall",
  56. KeyWords: "KeyWords",
  57. };
  58. export const SmsUserFor = {
  59. Register: 1,
  60. Reset: 2,
  61. Login: 3,
  62. };
  63. export const CommonIsAllow = {
  64. Allow: 1,
  65. NotAllow: 2,
  66. };
  67. export const GlobalSearchTypes = {
  68. Comprehensive: 0,
  69. Contacts: 1,
  70. Groups: 2,
  71. ChatLogs: 3,
  72. Documents: 4,
  73. };
  74. export const CustomMessageStatus = {
  75. Success: "success",
  76. Cancel: "cancel",
  77. Canceled: "canceled",
  78. Refuse: "refuse",
  79. Refused: "refused",
  80. Timeout: "timeout",
  81. AccessByOther: "accessByOther",
  82. RejectedByOther: "rejectedByOther",
  83. };