@streamlayer/feature-gamification 1.16.12 → 1.16.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -470,10 +470,6 @@ export class Gamification extends AbstractFeature {
470
470
  return () => { };
471
471
  }
472
472
  const openedFromBetPack = question?.openedFrom === 'bet-pack';
473
- if (!openedFromBetPack) {
474
- const query = queries.$questionByUser(questionId, this.transport);
475
- query.invalidate();
476
- }
477
473
  this.notifications.close(this.background.getCurrentSessionId({
478
474
  prefix: 'notification',
479
475
  entity: questionId,
@@ -67,14 +67,20 @@ export const questionByUser = async ($questionId, transport) => {
67
67
  });
68
68
  return res.data?.attributes?.question;
69
69
  };
70
- const storeCache = new Map();
71
70
  export const $questionByUser = ($questionId, transport) => {
72
71
  const { client, queryKey, queryKeyStr } = transport.createPromiseClient(Feed, {
73
72
  method: 'questionByUser',
74
73
  params: [$questionId],
75
74
  });
76
- if (storeCache.has(queryKeyStr)) {
77
- return storeCache.get(queryKeyStr);
75
+ let cacheKey = queryKeyStr;
76
+ if (typeof $questionId !== 'object') {
77
+ cacheKey += $questionId;
78
+ }
79
+ else {
80
+ cacheKey += 'atom';
81
+ }
82
+ if (transport.storeCache.has(cacheKey)) {
83
+ return transport.storeCache.get(cacheKey);
78
84
  }
79
85
  else {
80
86
  const store = transport.nanoquery.createFetcherStore(queryKey, {
@@ -87,7 +93,7 @@ export const $questionByUser = ($questionId, transport) => {
87
93
  dedupeTime: Infinity,
88
94
  refetchInterval: Infinity,
89
95
  });
90
- storeCache.set(queryKeyStr, store);
96
+ transport.storeCache.set(cacheKey, store);
91
97
  return store;
92
98
  }
93
99
  };
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@streamlayer/feature-gamification",
3
- "version": "1.16.12",
3
+ "version": "1.16.14",
4
4
  "peerDependencies": {
5
5
  "@bufbuild/protobuf": "^1.10.0",
6
6
  "@fastify/deepmerge": "^2.0.0",
7
7
  "@streamlayer/sl-eslib": "^5.149.1",
8
8
  "uuid": "^11.1.0",
9
9
  "nanostores": "^0.11.4",
10
- "@streamlayer/sdk-web-api": "^1.8.12",
11
- "@streamlayer/sdk-web-core": "^1.11.14",
12
- "@streamlayer/sdk-web-interfaces": "^1.5.3",
13
- "@streamlayer/sdk-web-logger": "^1.0.59",
14
- "@streamlayer/sdk-web-notifications": "^1.3.21",
15
- "@streamlayer/sdk-web-storage": "^1.0.59",
16
- "@streamlayer/sdk-web-types": "^1.10.16"
10
+ "@streamlayer/sdk-web-api": "^1.8.14",
11
+ "@streamlayer/sdk-web-core": "^1.11.16",
12
+ "@streamlayer/sdk-web-logger": "^1.0.61",
13
+ "@streamlayer/sdk-web-interfaces": "^1.5.5",
14
+ "@streamlayer/sdk-web-notifications": "^1.3.23",
15
+ "@streamlayer/sdk-web-storage": "^1.0.61",
16
+ "@streamlayer/sdk-web-types": "^1.10.18"
17
17
  },
18
18
  "devDependencies": {
19
19
  "tslib": "^2.7.0"