comp.js 1.9 KB

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