service.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import { getConversationKey } from "./utils";
  2. let myProfileCache;
  3. const profileCache = {};
  4. const groupMembersCache = {};
  5. export default class Service {
  6. constructor(config) {
  7. this.config = config;
  8. }
  9. getUserProfile(id) {
  10. if (!this.config.getUserProfile) {
  11. return Promise.reject(new Error("Method getUserProfile is not defined!"));
  12. }
  13. if (myProfileCache) {
  14. return Promise.resolve(myProfileCache);
  15. }
  16. return this.config.getUserProfile(id).then(res => {
  17. myProfileCache = res;
  18. return myProfileCache;
  19. });
  20. }
  21. getConversationProfile(conversations) {
  22. if (!this.config.getConversationProfile) {
  23. return Promise.reject(
  24. new Error("Method getConversationProfile is not defined!")
  25. );
  26. }
  27. // 临时存放从缓存取出的数据
  28. const temp = [];
  29. for (let i = 0; i < conversations.length; i++) {
  30. const conversation = conversations[i];
  31. const key = getConversationKey(conversation);
  32. const profile = profileCache[key];
  33. if (profile) {
  34. // 缓存中存在的数据,不再查询
  35. conversations.splice(i, 1);
  36. temp.push(profile);
  37. i--;
  38. }
  39. }
  40. return this.config.getConversationProfile(conversations).then(profiles => {
  41. // 对数据进行缓存
  42. profiles.forEach(profile => {
  43. if (profile && profile.targetId && profile.conversationType) {
  44. const key = getConversationKey(profile);
  45. profileCache[key] = profile;
  46. }
  47. });
  48. // 将之前的临时数据合并
  49. return [...profiles, ...temp];
  50. });
  51. }
  52. getGroupMembers(conversation) {
  53. if (!this.config.getGroupMembers) {
  54. return Promise.reject(
  55. new Error("Method getGroupMembers is not defined!")
  56. );
  57. }
  58. const key = getConversationKey(conversation);
  59. if (groupMembersCache[key]) {
  60. return Promise.resolve(groupMembersCache[key]);
  61. }
  62. return this.config.getGroupMembers(conversation).then(res => {
  63. console.log(res, "res");
  64. const key = getConversationKey(conversation);
  65. if (res) {
  66. groupMembersCache[key] = res;
  67. return groupMembersCache[key];
  68. }
  69. return null;
  70. });
  71. }
  72. clearMyProfileCache() {
  73. myProfileCache = null;
  74. }
  75. }