@amityco/ts-sdk 7.5.2-3bdced6.0 → 7.5.2-4215b84.0
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.
- package/dist/@types/domains/post.d.ts +18 -1
- package/dist/@types/domains/post.d.ts.map +1 -1
- package/dist/communityRepository/communityMembership/observers/getMembers/enums.d.ts +2 -1
- package/dist/communityRepository/communityMembership/observers/getMembers/enums.d.ts.map +1 -1
- package/dist/communityRepository/communityMembership/observers/searchMembers/enums.d.ts +1 -0
- package/dist/communityRepository/communityMembership/observers/searchMembers/enums.d.ts.map +1 -1
- package/dist/communityRepository/joinRequest/internalAPI/cancelJoinRequest.d.ts.map +1 -1
- package/dist/communityRepository/observers/getJoinRequestList/JoinRequestListLiveCollectionController.d.ts.map +1 -1
- package/dist/communityRepository/observers/getJoinRequestList/JoinRequestListQueryStreamController.d.ts +2 -2
- package/dist/communityRepository/observers/getJoinRequestList/JoinRequestListQueryStreamController.d.ts.map +1 -1
- package/dist/communityRepository/observers/getRecommendedCommunities/RecommendedCommunitiesLiveCollectionController.d.ts.map +1 -1
- package/dist/communityRepository/observers/getRecommendedCommunities/enums.d.ts +2 -1
- package/dist/communityRepository/observers/getRecommendedCommunities/enums.d.ts.map +1 -1
- package/dist/communityRepository/observers/getTrendingCommunities/TrendingCommunitiesLiveCollectionController.d.ts.map +1 -1
- package/dist/communityRepository/observers/searchCommunities/SearchCommunitiesLiveCollectionController.d.ts.map +1 -1
- package/dist/communityRepository/observers/semanticSearch/SemanticSearchCommunityLiveCollectionController.d.ts.map +1 -1
- package/dist/index.cjs.js +39 -17
- package/dist/index.esm.js +39 -17
- package/dist/index.umd.js +1 -1
- package/dist/postRepository/api/getPost.d.ts +2 -2
- package/dist/postRepository/api/getPost.d.ts.map +1 -1
- package/dist/userRepository/observers/getBlockedUsers.d.ts +4 -4
- package/dist/userRepository/observers/getBlockedUsers.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/@types/domains/post.ts +25 -8
- package/src/commentRepository/api/createComment.ts +1 -1
- package/src/commentRepository/api/deleteComment.ts +1 -1
- package/src/communityRepository/communityMembership/observers/getMembers/enums.ts +1 -0
- package/src/communityRepository/communityMembership/observers/searchMembers/enums.ts +1 -0
- package/src/communityRepository/joinRequest/internalAPI/cancelJoinRequest.ts +5 -2
- package/src/communityRepository/observers/getJoinRequestList/JoinRequestListLiveCollectionController.ts +6 -1
- package/src/communityRepository/observers/getJoinRequestList/JoinRequestListQueryStreamController.ts +14 -10
- package/src/communityRepository/observers/getRecommendedCommunities/RecommendedCommunitiesLiveCollectionController.ts +6 -0
- package/src/communityRepository/observers/getRecommendedCommunities/enums.ts +1 -0
- package/src/communityRepository/observers/getTrendingCommunities/TrendingCommunitiesLiveCollectionController.ts +7 -0
- package/src/communityRepository/observers/searchCommunities/SearchCommunitiesLiveCollectionController.ts +6 -0
- package/src/communityRepository/observers/semanticSearch/SemanticSearchCommunityLiveCollectionController.ts +6 -0
- package/src/postRepository/api/getPost.ts +6 -4
- package/src/postRepository/observers/getPost.ts +2 -2
- package/src/userRepository/observers/getBlockedUsers.ts +4 -4
- package/src/utils/linkedObject/streamLinkedObject.ts +1 -1
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* @async
|
|
14
14
|
*/
|
|
15
15
|
export declare const getPost: {
|
|
16
|
-
(postId: Amity.Post['postId']): Promise<Amity.Cached<Amity.
|
|
16
|
+
(postId: Amity.Post['postId']): Promise<Amity.Cached<Amity.InternalPost>>;
|
|
17
17
|
/**
|
|
18
18
|
* ```js
|
|
19
19
|
* import { getPost } from '@amityco/ts-sdk'
|
|
@@ -27,6 +27,6 @@ export declare const getPost: {
|
|
|
27
27
|
*
|
|
28
28
|
* @category Post API
|
|
29
29
|
*/
|
|
30
|
-
locally(postId: Amity.Post['postId']): Amity.Cached<Amity.
|
|
30
|
+
locally(postId: Amity.Post['postId']): Amity.Cached<Amity.InternalPost> | undefined;
|
|
31
31
|
};
|
|
32
32
|
//# sourceMappingURL=getPost.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/getPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,OAAO;
|
|
1
|
+
{"version":3,"file":"getPost.d.ts","sourceRoot":"","sources":["../../../src/postRepository/api/getPost.ts"],"names":[],"mappings":"AAUA;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,OAAO;aACV,MAAM,IAAI,CAAC,QAAQ,CAAC,GAC3B,QAAQ,MAAM,MAAM,CAAC,MAAM,YAAY,CAAC,CAAC;IAqC5C;;;;;;;;;;;;OAYG;oBACwB,MAAM,IAAI,CAAC,QAAQ,CAAC,GAAG,MAAM,MAAM,CAAC,MAAM,YAAY,CAAC,GAAG,SAAS;CAf7F,CAAC"}
|
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
* const unblockedUser = await UserRepository.blockUser('userId')
|
|
5
5
|
* ```
|
|
6
6
|
*
|
|
7
|
-
* Blocks a {@link Amity.
|
|
7
|
+
* Blocks a {@link Amity.User}
|
|
8
8
|
*
|
|
9
|
-
* @param params The params to get blocked {@link Amity.
|
|
10
|
-
* @param callback to recieve updates on unblocked {@link Amity.
|
|
9
|
+
* @param params The params to get blocked {@link Amity.User}s
|
|
10
|
+
* @param callback to recieve updates on unblocked {@link Amity.User}s
|
|
11
11
|
* @returns {@link Amity.Unsubscriber} to unsubscribe from collection
|
|
12
12
|
*
|
|
13
13
|
* @category Post API
|
|
14
14
|
* @async
|
|
15
15
|
*/
|
|
16
|
-
export declare const getBlockedUsers: (params: Amity.BlockedUsersLiveCollection, callback: Amity.LiveCollectionCallback<Amity.
|
|
16
|
+
export declare const getBlockedUsers: (params: Amity.BlockedUsersLiveCollection, callback: Amity.LiveCollectionCallback<Amity.User>, config?: Amity.LiveCollectionConfig) => Amity.Unsubscriber;
|
|
17
17
|
//# sourceMappingURL=getBlockedUsers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getBlockedUsers.d.ts","sourceRoot":"","sources":["../../../src/userRepository/observers/getBlockedUsers.ts"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,eAAe,WAClB,MAAM,0BAA0B,YAC9B,MAAM,sBAAsB,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"getBlockedUsers.d.ts","sourceRoot":"","sources":["../../../src/userRepository/observers/getBlockedUsers.ts"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,eAAe,WAClB,MAAM,0BAA0B,YAC9B,MAAM,sBAAsB,CAAC,MAAM,IAAI,CAAC,WACzC,MAAM,oBAAoB,KAClC,MAAM,YAsBR,CAAC"}
|
package/package.json
CHANGED
|
@@ -40,15 +40,32 @@ declare global {
|
|
|
40
40
|
hasFlaggedChildren: false;
|
|
41
41
|
hasFlaggedComment: false;
|
|
42
42
|
editedAt: Amity.timestamp;
|
|
43
|
+
// Amity.Metadata
|
|
44
|
+
metadata?: Record<string, any>;
|
|
45
|
+
// Amity.Flaggable
|
|
46
|
+
flagCount: number;
|
|
47
|
+
hashFlag: {
|
|
48
|
+
bits: number;
|
|
49
|
+
hashes: number;
|
|
50
|
+
hash: string;
|
|
51
|
+
} | null;
|
|
52
|
+
// Amity.Taggable
|
|
53
|
+
tags?: string[];
|
|
54
|
+
// Amity.Timestamps
|
|
55
|
+
createdAt: Amity.timestamp;
|
|
56
|
+
updatedAt?: Amity.timestamp;
|
|
57
|
+
// Amity.SoftDelete
|
|
58
|
+
isDeleted?: boolean;
|
|
59
|
+
// Amity.Subscribable
|
|
60
|
+
path: string;
|
|
61
|
+
// Amity.AnalyticPostData
|
|
62
|
+
impression: number;
|
|
63
|
+
reach: number;
|
|
64
|
+
// Amity.Reactable
|
|
65
|
+
reactionsCount: number;
|
|
66
|
+
reactions: Record<string, number>;
|
|
67
|
+
myReactions?: string[];
|
|
43
68
|
} & Amity.Content<T> &
|
|
44
|
-
Amity.Metadata &
|
|
45
|
-
Amity.Flaggable &
|
|
46
|
-
Amity.Reactable &
|
|
47
|
-
Amity.Taggable &
|
|
48
|
-
Amity.Timestamps &
|
|
49
|
-
Amity.SoftDelete &
|
|
50
|
-
Amity.Subscribable &
|
|
51
|
-
Amity.AnalyticPostData &
|
|
52
69
|
Amity.Mentionable<'user'>;
|
|
53
70
|
|
|
54
71
|
type InternalPost<T extends PostContentType = any> = RawPost<T> & {
|
|
@@ -51,7 +51,7 @@ export const createComment = async (
|
|
|
51
51
|
if (client.cache) ingestInCache(data, { cachedAt });
|
|
52
52
|
|
|
53
53
|
if (['post', 'content'].includes(bundle.referenceType)) {
|
|
54
|
-
const post = pullFromCache<Amity.
|
|
54
|
+
const post = pullFromCache<Amity.InternalPost>(['post', 'get', bundle.referenceId])?.data;
|
|
55
55
|
|
|
56
56
|
if (post) {
|
|
57
57
|
post.commentsCount += 1;
|
|
@@ -62,7 +62,7 @@ export const deleteComment = async (
|
|
|
62
62
|
users: [],
|
|
63
63
|
});
|
|
64
64
|
} else {
|
|
65
|
-
const post = pullFromCache<Amity.
|
|
65
|
+
const post = pullFromCache<Amity.InternalPost>(['post', 'get', comment.data.referenceId])?.data;
|
|
66
66
|
|
|
67
67
|
if (post) {
|
|
68
68
|
let removeCount: number;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export enum EnumCommunityMemberActions {
|
|
2
2
|
OnCommunityJoined = 'onCommunityJoined',
|
|
3
|
+
OnLocalCommunityJoin = 'onLocalCommunityJoin',
|
|
3
4
|
OnCommunityLeft = 'onCommunityLeft',
|
|
4
5
|
OnCommunityUserBanned = 'onCommunityUserBanned',
|
|
5
6
|
OnCommunityUserChanged = 'onCommunityUserChanged',
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { fireEvent } from '~/core/events';
|
|
2
|
-
import {
|
|
2
|
+
import { pullFromCache, upsertInCache } from '~/cache/api';
|
|
3
3
|
import { getActiveClient } from '~/client/api/activeClient';
|
|
4
|
+
import { JoinRequestStatusEnum } from '~/@types';
|
|
4
5
|
|
|
5
6
|
/* begin_public_function
|
|
6
7
|
id: joinRequest.cancel
|
|
@@ -36,7 +37,9 @@ export const cancelJoinRequest = async (
|
|
|
36
37
|
])?.data;
|
|
37
38
|
|
|
38
39
|
if (joinRequestCache) {
|
|
39
|
-
|
|
40
|
+
upsertInCache(['joinRequest', 'get', joinRequest.joinRequestId], {
|
|
41
|
+
status: JoinRequestStatusEnum.Cancelled,
|
|
42
|
+
});
|
|
40
43
|
|
|
41
44
|
fireEvent('local.joinRequest.deleted', [joinRequestCache]);
|
|
42
45
|
}
|
|
@@ -13,6 +13,7 @@ import {
|
|
|
13
13
|
onJoinRequestDeleted,
|
|
14
14
|
onJoinRequestUpdated,
|
|
15
15
|
} from '~/communityRepository/joinRequest/events/';
|
|
16
|
+
import { onLocalCommunityJoin } from '~/communityRepository/communityMembership';
|
|
16
17
|
|
|
17
18
|
export class JoinRequestListLiveCollectionController extends LiveCollectionController<
|
|
18
19
|
'joinRequest',
|
|
@@ -75,7 +76,11 @@ export class JoinRequestListLiveCollectionController extends LiveCollectionContr
|
|
|
75
76
|
return this.queryStreamController.subscribeRTE([
|
|
76
77
|
{ fn: onJoinRequestCreated, action: EnumJoinRequestAction.OnLocalJoinRequestCreated },
|
|
77
78
|
{ fn: onJoinRequestUpdated, action: EnumJoinRequestAction.OnLocalJoinRequestUpdated },
|
|
78
|
-
{ fn: onJoinRequestDeleted, action: EnumJoinRequestAction.
|
|
79
|
+
{ fn: onJoinRequestDeleted, action: EnumJoinRequestAction.OnLocalJoinRequestUpdated },
|
|
80
|
+
{
|
|
81
|
+
fn: onLocalCommunityJoin,
|
|
82
|
+
action: EnumJoinRequestAction.OnLocalJoinRequestUpdated,
|
|
83
|
+
},
|
|
79
84
|
]);
|
|
80
85
|
}
|
|
81
86
|
|
package/src/communityRepository/observers/getJoinRequestList/JoinRequestListQueryStreamController.ts
CHANGED
|
@@ -72,28 +72,30 @@ export class JoinRequestListQueryStreamController extends QueryStreamController<
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
reactor(action: EnumJoinRequestAction) {
|
|
75
|
-
return (joinRequest: Amity.InternalJoinRequest[]) => {
|
|
75
|
+
return (joinRequest: Amity.InternalJoinRequest[] | Amity.InternalJoinRequest) => {
|
|
76
76
|
const collection = pullFromCache<Amity.JoinRequestListLiveCollectionCache>(
|
|
77
77
|
this.cacheKey,
|
|
78
78
|
)?.data;
|
|
79
79
|
if (!collection) return;
|
|
80
80
|
|
|
81
|
+
const isArrayJoinRequest = Array.isArray(joinRequest);
|
|
82
|
+
|
|
83
|
+
const joinRequestIds = (isArrayJoinRequest ? joinRequest : [joinRequest]).map(
|
|
84
|
+
jr => jr.joinRequestId,
|
|
85
|
+
);
|
|
86
|
+
|
|
81
87
|
if (action === EnumJoinRequestAction.OnLocalJoinRequestUpdated) {
|
|
82
|
-
const isExist = collection.data.find(id => id
|
|
88
|
+
const isExist = collection.data.find(id => joinRequestIds.includes(id));
|
|
89
|
+
|
|
83
90
|
if (!isExist) return;
|
|
84
91
|
}
|
|
85
92
|
|
|
86
93
|
if (action === EnumJoinRequestAction.OnLocalJoinRequestCreated) {
|
|
87
|
-
collection.data = [
|
|
88
|
-
...new Set([
|
|
89
|
-
...joinRequest.map(joinRequest => joinRequest.joinRequestId),
|
|
90
|
-
...collection.data,
|
|
91
|
-
]),
|
|
92
|
-
];
|
|
94
|
+
collection.data = [...new Set([...joinRequestIds, ...collection.data])];
|
|
93
95
|
}
|
|
94
96
|
|
|
95
97
|
if (action === EnumJoinRequestAction.OnLocalJoinRequestDeleted) {
|
|
96
|
-
collection.data = collection.data.filter(id => id
|
|
98
|
+
collection.data = collection.data.filter(id => !joinRequestIds.includes(id));
|
|
97
99
|
}
|
|
98
100
|
|
|
99
101
|
pushToCache(this.cacheKey, collection);
|
|
@@ -103,7 +105,9 @@ export class JoinRequestListQueryStreamController extends QueryStreamController<
|
|
|
103
105
|
|
|
104
106
|
subscribeRTE(
|
|
105
107
|
createSubscriber: {
|
|
106
|
-
fn: (
|
|
108
|
+
fn: (
|
|
109
|
+
reactor: Amity.Listener<Amity.InternalJoinRequest[] | Amity.InternalJoinRequest>,
|
|
110
|
+
) => Amity.Unsubscriber;
|
|
107
111
|
action: EnumJoinRequestAction;
|
|
108
112
|
}[],
|
|
109
113
|
) {
|
|
@@ -13,9 +13,11 @@ import {
|
|
|
13
13
|
onLocalCommunityJoined,
|
|
14
14
|
onLocalCommunityLeft,
|
|
15
15
|
onCommunityUserChanged,
|
|
16
|
+
onLocalCommunityJoin,
|
|
16
17
|
} from '~/communityRepository/communityMembership';
|
|
17
18
|
import { isNonNullable } from '~/utils';
|
|
18
19
|
import { communityLinkedObject } from '~/utils/linkedObject/communityLinkedObject';
|
|
20
|
+
import { convertEventPayload } from '~/utils/event';
|
|
19
21
|
|
|
20
22
|
export class RecommendedCommunityLiveCollectionController extends LiveCollectionController<
|
|
21
23
|
'community',
|
|
@@ -82,6 +84,10 @@ export class RecommendedCommunityLiveCollectionController extends LiveCollection
|
|
|
82
84
|
{ fn: onCommunityUserChanged, action: EnumCommunityMemberActions.OnMemberCountChanged },
|
|
83
85
|
{ fn: onLocalCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
|
|
84
86
|
{ fn: onLocalCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
|
|
87
|
+
{
|
|
88
|
+
fn: convertEventPayload(onLocalCommunityJoin, 'targetId', 'community'),
|
|
89
|
+
action: EnumCommunityActions.OnCommunityUpdated,
|
|
90
|
+
},
|
|
85
91
|
]);
|
|
86
92
|
}
|
|
87
93
|
|
|
@@ -13,9 +13,12 @@ import {
|
|
|
13
13
|
onLocalCommunityJoined,
|
|
14
14
|
onLocalCommunityLeft,
|
|
15
15
|
onCommunityUserChanged,
|
|
16
|
+
onLocalCommunityJoin,
|
|
16
17
|
} from '~/communityRepository/communityMembership';
|
|
18
|
+
|
|
17
19
|
import { isNonNullable } from '~/utils';
|
|
18
20
|
import { communityLinkedObject } from '~/utils/linkedObject/communityLinkedObject';
|
|
21
|
+
import { convertEventPayload } from '~/utils/event';
|
|
19
22
|
|
|
20
23
|
export class TrendingCommunityLiveCollectionController extends LiveCollectionController<
|
|
21
24
|
'community',
|
|
@@ -82,6 +85,10 @@ export class TrendingCommunityLiveCollectionController extends LiveCollectionCon
|
|
|
82
85
|
{ fn: onCommunityUserChanged, action: EnumCommunityMemberActions.OnMemberCountChanged },
|
|
83
86
|
{ fn: onLocalCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
|
|
84
87
|
{ fn: onLocalCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
|
|
88
|
+
{
|
|
89
|
+
fn: convertEventPayload(onLocalCommunityJoin, 'targetId', 'community'),
|
|
90
|
+
action: EnumCommunityActions.OnCommunityUpdated,
|
|
91
|
+
},
|
|
85
92
|
]);
|
|
86
93
|
}
|
|
87
94
|
|
|
@@ -15,8 +15,10 @@ import {
|
|
|
15
15
|
onCommunityLeft,
|
|
16
16
|
onLocalCommunityLeft,
|
|
17
17
|
onCommunityUserChanged,
|
|
18
|
+
onLocalCommunityJoin,
|
|
18
19
|
} from '~/communityRepository/communityMembership';
|
|
19
20
|
import { isNonNullable } from '~/utils';
|
|
21
|
+
import { convertEventPayload } from '~/utils/event';
|
|
20
22
|
|
|
21
23
|
export class SearchCommunityLiveCollectionController extends LiveCollectionController<
|
|
22
24
|
'community',
|
|
@@ -81,6 +83,10 @@ export class SearchCommunityLiveCollectionController extends LiveCollectionContr
|
|
|
81
83
|
{ fn: onCommunityUserChanged, action: EnumCommunityMemberActions.OnMemberCountChanged },
|
|
82
84
|
{ fn: onLocalCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
|
|
83
85
|
{ fn: onLocalCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
|
|
86
|
+
{
|
|
87
|
+
fn: convertEventPayload(onLocalCommunityJoin, 'targetId', 'community'),
|
|
88
|
+
action: EnumCommunityActions.OnCommunityUpdated,
|
|
89
|
+
},
|
|
84
90
|
]);
|
|
85
91
|
}
|
|
86
92
|
|
|
@@ -15,6 +15,7 @@ import {
|
|
|
15
15
|
onLocalCommunityJoined,
|
|
16
16
|
onLocalCommunityLeft,
|
|
17
17
|
onCommunityUserChanged,
|
|
18
|
+
onLocalCommunityJoin,
|
|
18
19
|
} from '~/communityRepository/communityMembership';
|
|
19
20
|
|
|
20
21
|
import { isNonNullable } from '~/utils';
|
|
@@ -24,6 +25,7 @@ import { prepareSemanticSearchCommunityPayload } from '~/communityRepository/uti
|
|
|
24
25
|
import { getActiveClient } from '~/client';
|
|
25
26
|
import { EnumCommunityMemberActions } from '~/communityRepository/communityMembership/observers/getMembers/enums';
|
|
26
27
|
import { filterByCommunityMembership } from '~/core/query';
|
|
28
|
+
import { convertEventPayload } from '~/utils/event';
|
|
27
29
|
|
|
28
30
|
export class SemanticSearchCommunityLiveCollectionController extends LiveCollectionController<
|
|
29
31
|
'semanticSearchCommunity',
|
|
@@ -94,6 +96,10 @@ export class SemanticSearchCommunityLiveCollectionController extends LiveCollect
|
|
|
94
96
|
{ fn: onCommunityUserChanged, action: EnumCommunityMemberActions.OnMemberCountChanged },
|
|
95
97
|
{ fn: onLocalCommunityJoined, action: EnumCommunityMemberActions.OnCommunityJoined },
|
|
96
98
|
{ fn: onLocalCommunityLeft, action: EnumCommunityMemberActions.OnCommunityLeft },
|
|
99
|
+
{
|
|
100
|
+
fn: convertEventPayload(onLocalCommunityJoin, 'targetId', 'community'),
|
|
101
|
+
action: EnumCommunityActions.OnCommunityUpdated,
|
|
102
|
+
},
|
|
97
103
|
]);
|
|
98
104
|
}
|
|
99
105
|
|
|
@@ -22,7 +22,9 @@ import { LinkedObject } from '~/utils/linkedObject';
|
|
|
22
22
|
* @category Post API
|
|
23
23
|
* @async
|
|
24
24
|
*/
|
|
25
|
-
export const getPost = async (
|
|
25
|
+
export const getPost = async (
|
|
26
|
+
postId: Amity.Post['postId'],
|
|
27
|
+
): Promise<Amity.Cached<Amity.InternalPost>> => {
|
|
26
28
|
const client = getActiveClient();
|
|
27
29
|
client.log('post/getPost', postId);
|
|
28
30
|
|
|
@@ -54,7 +56,7 @@ export const getPost = async (postId: Amity.Post['postId']): Promise<Amity.Cache
|
|
|
54
56
|
const result = posts.find(post => post.postId === postId)!;
|
|
55
57
|
|
|
56
58
|
return {
|
|
57
|
-
data:
|
|
59
|
+
data: result,
|
|
58
60
|
cachedAt,
|
|
59
61
|
};
|
|
60
62
|
};
|
|
@@ -72,7 +74,7 @@ export const getPost = async (postId: Amity.Post['postId']): Promise<Amity.Cache
|
|
|
72
74
|
*
|
|
73
75
|
* @category Post API
|
|
74
76
|
*/
|
|
75
|
-
getPost.locally = (postId: Amity.Post['postId']): Amity.Cached<Amity.
|
|
77
|
+
getPost.locally = (postId: Amity.Post['postId']): Amity.Cached<Amity.InternalPost> | undefined => {
|
|
76
78
|
const client = getActiveClient();
|
|
77
79
|
client.log('post/getPost.locally', postId);
|
|
78
80
|
|
|
@@ -83,7 +85,7 @@ getPost.locally = (postId: Amity.Post['postId']): Amity.Cached<Amity.Post> | und
|
|
|
83
85
|
if (!cached) return;
|
|
84
86
|
|
|
85
87
|
return {
|
|
86
|
-
data:
|
|
88
|
+
data: cached.data,
|
|
87
89
|
cachedAt: cached.cachedAt,
|
|
88
90
|
};
|
|
89
91
|
};
|
|
@@ -85,12 +85,12 @@ export const getPost = (
|
|
|
85
85
|
onPostFlagged,
|
|
86
86
|
(callback: Amity.Listener<Amity.InternalPost>) => {
|
|
87
87
|
return onPostReactionAdded((post: Amity.InternalPost) => {
|
|
88
|
-
callback(
|
|
88
|
+
callback(post);
|
|
89
89
|
});
|
|
90
90
|
},
|
|
91
91
|
(callback: Amity.Listener<Amity.InternalPost>) => {
|
|
92
92
|
return onPostReactionRemoved((post: Amity.InternalPost) => {
|
|
93
|
-
callback(
|
|
93
|
+
callback(post);
|
|
94
94
|
});
|
|
95
95
|
},
|
|
96
96
|
onPostUnflagged,
|
|
@@ -12,10 +12,10 @@ import { BlockedUserLiveCollectionController } from './getBlockedUsers/BlockedUs
|
|
|
12
12
|
* const unblockedUser = await UserRepository.blockUser('userId')
|
|
13
13
|
* ```
|
|
14
14
|
*
|
|
15
|
-
* Blocks a {@link Amity.
|
|
15
|
+
* Blocks a {@link Amity.User}
|
|
16
16
|
*
|
|
17
|
-
* @param params The params to get blocked {@link Amity.
|
|
18
|
-
* @param callback to recieve updates on unblocked {@link Amity.
|
|
17
|
+
* @param params The params to get blocked {@link Amity.User}s
|
|
18
|
+
* @param callback to recieve updates on unblocked {@link Amity.User}s
|
|
19
19
|
* @returns {@link Amity.Unsubscriber} to unsubscribe from collection
|
|
20
20
|
*
|
|
21
21
|
* @category Post API
|
|
@@ -23,7 +23,7 @@ import { BlockedUserLiveCollectionController } from './getBlockedUsers/BlockedUs
|
|
|
23
23
|
*/
|
|
24
24
|
export const getBlockedUsers = (
|
|
25
25
|
params: Amity.BlockedUsersLiveCollection,
|
|
26
|
-
callback: Amity.LiveCollectionCallback<Amity.
|
|
26
|
+
callback: Amity.LiveCollectionCallback<Amity.User>,
|
|
27
27
|
config?: Amity.LiveCollectionConfig,
|
|
28
28
|
): Amity.Unsubscriber => {
|
|
29
29
|
const { log, cache } = getActiveClient();
|
|
@@ -9,7 +9,7 @@ export const streamLinkedObject = (stream: Amity.InternalStream): Amity.Stream =
|
|
|
9
9
|
},
|
|
10
10
|
get post() {
|
|
11
11
|
if (stream.referenceType !== 'post') return;
|
|
12
|
-
return pullFromCache<Amity.
|
|
12
|
+
return pullFromCache<Amity.InternalPost>(['post', 'get', stream.referenceId])?.data;
|
|
13
13
|
},
|
|
14
14
|
get community() {
|
|
15
15
|
if (stream.targetType !== 'community') return;
|