comp.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. CouponPackage:"CouponPackage",
  17. InquirySelect:"InquirySelect",
  18. Live: "Live",
  19. LuckyBag: "LuckyBag",
  20. };
  21. export const MessageMenuTypes = {
  22. Copy: "Copy",
  23. Del: "Del",
  24. Forward: "Forward",
  25. Reply: "Reply",
  26. Revoke: "Revoke",
  27. Multiple: "Multiple",
  28. };
  29. export const ContactMenuTypes = {
  30. NewFriend: "NewFriend",
  31. NewGroup: "NewGroup",
  32. MyFriend: "MyFriend",
  33. MyGroup: "MyGroup",
  34. Moments: "Moments",
  35. Lable: "Lable",
  36. };
  37. export const GroupMemberListTypes = {
  38. Preview: "Preview",
  39. Transfer: "Transfer",
  40. Kickout: "Kickout",
  41. SetAdmin: "SetAdmin",
  42. Mute: 'Mute',
  43. ChooseAt: "ChooseAt",
  44. CallInvite: "CallInvite",
  45. };
  46. export const ContactChooseTypes = {
  47. Invite: "Invite",
  48. ForWard: "ForWard",
  49. BatchForWard: "BatchForWard",
  50. MergeForWard: "MergeForWard",
  51. Card: "Card",
  52. ShareCard: "ShareCard",
  53. GetList: "GetList",
  54. GetListWithGroup: "GetListWithGroup",
  55. InviteMeeting: "InviteMeeting",
  56. SendCourse: "SendCourse",
  57. SendImage: 'SendImage'
  58. };
  59. export const UpdateMessageTypes = {
  60. Overall: "Overall",
  61. KeyWords: "KeyWords",
  62. };
  63. export const SmsUserFor = {
  64. Register: 1,
  65. Reset: 2,
  66. Login: 3,
  67. };
  68. export const CommonIsAllow = {
  69. Allow: 1,
  70. NotAllow: 2,
  71. };
  72. export const GlobalSearchTypes = {
  73. Comprehensive: 0,
  74. Contacts: 1,
  75. Groups: 2,
  76. ChatLogs: 3,
  77. Documents: 4,
  78. };
  79. export const CustomMessageStatus = {
  80. Success: "success",
  81. Cancel: "cancel",
  82. Canceled: "canceled",
  83. Refuse: "refuse",
  84. Refused: "refused",
  85. Timeout: "timeout",
  86. AccessByOther: "accessByOther",
  87. RejectedByOther: "rejectedByOther",
  88. };