@bitsocial/bitsocial-react-hooks 0.1.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/LICENSE +674 -0
- package/README.md +1365 -0
- package/dist/hooks/accounts/accounts.d.ts +64 -0
- package/dist/hooks/accounts/accounts.d.ts.map +1 -0
- package/dist/hooks/accounts/accounts.js +706 -0
- package/dist/hooks/accounts/accounts.js.map +1 -0
- package/dist/hooks/accounts/index.d.ts +2 -0
- package/dist/hooks/accounts/index.d.ts.map +1 -0
- package/dist/hooks/accounts/index.js +2 -0
- package/dist/hooks/accounts/index.js.map +1 -0
- package/dist/hooks/accounts/utils.d.ts +6 -0
- package/dist/hooks/accounts/utils.d.ts.map +1 -0
- package/dist/hooks/accounts/utils.js +226 -0
- package/dist/hooks/accounts/utils.js.map +1 -0
- package/dist/hooks/actions/actions.d.ts +19 -0
- package/dist/hooks/actions/actions.d.ts.map +1 -0
- package/dist/hooks/actions/actions.js +552 -0
- package/dist/hooks/actions/actions.js.map +1 -0
- package/dist/hooks/actions/index.d.ts +2 -0
- package/dist/hooks/actions/index.d.ts.map +1 -0
- package/dist/hooks/actions/index.js +2 -0
- package/dist/hooks/actions/index.js.map +1 -0
- package/dist/hooks/authors/author-avatars.d.ts +28 -0
- package/dist/hooks/authors/author-avatars.d.ts.map +1 -0
- package/dist/hooks/authors/author-avatars.js +191 -0
- package/dist/hooks/authors/author-avatars.js.map +1 -0
- package/dist/hooks/authors/authors.d.ts +37 -0
- package/dist/hooks/authors/authors.d.ts.map +1 -0
- package/dist/hooks/authors/authors.js +509 -0
- package/dist/hooks/authors/authors.js.map +1 -0
- package/dist/hooks/authors/index.d.ts +2 -0
- package/dist/hooks/authors/index.d.ts.map +1 -0
- package/dist/hooks/authors/index.js +2 -0
- package/dist/hooks/authors/index.js.map +1 -0
- package/dist/hooks/authors/utils.d.ts +4 -0
- package/dist/hooks/authors/utils.d.ts.map +1 -0
- package/dist/hooks/authors/utils.js +21 -0
- package/dist/hooks/authors/utils.js.map +1 -0
- package/dist/hooks/comments.d.ts +17 -0
- package/dist/hooks/comments.d.ts.map +1 -0
- package/dist/hooks/comments.js +351 -0
- package/dist/hooks/comments.js.map +1 -0
- package/dist/hooks/communities.d.ts +31 -0
- package/dist/hooks/communities.d.ts.map +1 -0
- package/dist/hooks/communities.js +389 -0
- package/dist/hooks/communities.js.map +1 -0
- package/dist/hooks/feeds/feeds.d.ts +18 -0
- package/dist/hooks/feeds/feeds.d.ts.map +1 -0
- package/dist/hooks/feeds/feeds.js +315 -0
- package/dist/hooks/feeds/feeds.js.map +1 -0
- package/dist/hooks/feeds/index.d.ts +2 -0
- package/dist/hooks/feeds/index.d.ts.map +1 -0
- package/dist/hooks/feeds/index.js +2 -0
- package/dist/hooks/feeds/index.js.map +1 -0
- package/dist/hooks/pkc-rpc.d.ts +7 -0
- package/dist/hooks/pkc-rpc.d.ts.map +1 -0
- package/dist/hooks/pkc-rpc.js +88 -0
- package/dist/hooks/pkc-rpc.js.map +1 -0
- package/dist/hooks/replies.d.ts +5 -0
- package/dist/hooks/replies.d.ts.map +1 -0
- package/dist/hooks/replies.js +155 -0
- package/dist/hooks/replies.js.map +1 -0
- package/dist/hooks/states.d.ts +15 -0
- package/dist/hooks/states.d.ts.map +1 -0
- package/dist/hooks/states.js +213 -0
- package/dist/hooks/states.js.map +1 -0
- package/dist/hooks/utils/use-interval.d.ts +3 -0
- package/dist/hooks/utils/use-interval.d.ts.map +1 -0
- package/dist/hooks/utils/use-interval.js +36 -0
- package/dist/hooks/utils/use-interval.js.map +1 -0
- package/dist/hooks/utils/use-previous.d.ts +1 -0
- package/dist/hooks/utils/use-previous.js +10 -0
- package/dist/index.d.ts +82 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +128 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/chain/chain.d.ts +36 -0
- package/dist/lib/chain/chain.d.ts.map +1 -0
- package/dist/lib/chain/chain.js +195 -0
- package/dist/lib/chain/chain.js.map +1 -0
- package/dist/lib/chain/index.d.ts +4 -0
- package/dist/lib/chain/index.d.ts.map +1 -0
- package/dist/lib/chain/index.js +4 -0
- package/dist/lib/chain/index.js.map +1 -0
- package/dist/lib/community-address.d.ts +6 -0
- package/dist/lib/community-address.d.ts.map +1 -0
- package/dist/lib/community-address.js +26 -0
- package/dist/lib/community-address.js.map +1 -0
- package/dist/lib/community-ref.d.ts +23 -0
- package/dist/lib/community-ref.d.ts.map +1 -0
- package/dist/lib/community-ref.js +113 -0
- package/dist/lib/community-ref.js.map +1 -0
- package/dist/lib/debug-utils.d.ts +9 -0
- package/dist/lib/debug-utils.d.ts.map +1 -0
- package/dist/lib/debug-utils.js +21 -0
- package/dist/lib/debug-utils.js.map +1 -0
- package/dist/lib/feed-sort-type.d.ts +2 -0
- package/dist/lib/feed-sort-type.d.ts.map +1 -0
- package/dist/lib/feed-sort-type.js +22 -0
- package/dist/lib/feed-sort-type.js.map +1 -0
- package/dist/lib/localforage-lru/index.d.ts +3 -0
- package/dist/lib/localforage-lru/index.d.ts.map +1 -0
- package/dist/lib/localforage-lru/index.js +46 -0
- package/dist/lib/localforage-lru/index.js.map +1 -0
- package/dist/lib/localforage-lru/localforage-lru.d.ts +6 -0
- package/dist/lib/localforage-lru/localforage-lru.d.ts.map +1 -0
- package/dist/lib/localforage-lru/localforage-lru.js +182 -0
- package/dist/lib/localforage-lru/localforage-lru.js.map +1 -0
- package/dist/lib/pkc-compat.d.ts +25 -0
- package/dist/lib/pkc-compat.d.ts.map +1 -0
- package/dist/lib/pkc-compat.js +131 -0
- package/dist/lib/pkc-compat.js.map +1 -0
- package/dist/lib/pkc-js/fixtures/markdown-example.d.ts +3 -0
- package/dist/lib/pkc-js/fixtures/markdown-example.d.ts.map +1 -0
- package/dist/lib/pkc-js/fixtures/markdown-example.js +280 -0
- package/dist/lib/pkc-js/fixtures/markdown-example.js.map +1 -0
- package/dist/lib/pkc-js/index.d.ts +11 -0
- package/dist/lib/pkc-js/index.d.ts.map +1 -0
- package/dist/lib/pkc-js/index.js +85 -0
- package/dist/lib/pkc-js/index.js.map +1 -0
- package/dist/lib/pkc-js/pkc-js-mock-content.d.ts +3 -0
- package/dist/lib/pkc-js/pkc-js-mock-content.d.ts.map +1 -0
- package/dist/lib/pkc-js/pkc-js-mock-content.js +1235 -0
- package/dist/lib/pkc-js/pkc-js-mock-content.js.map +1 -0
- package/dist/lib/pkc-js/pkc-js-mock.d.ts +137 -0
- package/dist/lib/pkc-js/pkc-js-mock.d.ts.map +1 -0
- package/dist/lib/pkc-js/pkc-js-mock.js +644 -0
- package/dist/lib/pkc-js/pkc-js-mock.js.map +1 -0
- package/dist/lib/polyfill.d.ts +3 -0
- package/dist/lib/polyfill.d.ts.map +1 -0
- package/dist/lib/polyfill.js +14 -0
- package/dist/lib/polyfill.js.map +1 -0
- package/dist/lib/protocol-compat.d.ts +14 -0
- package/dist/lib/protocol-compat.d.ts.map +1 -0
- package/dist/lib/protocol-compat.js +67 -0
- package/dist/lib/protocol-compat.js.map +1 -0
- package/dist/lib/test-utils.d.ts +29 -0
- package/dist/lib/test-utils.d.ts.map +1 -0
- package/dist/lib/test-utils.js +184 -0
- package/dist/lib/test-utils.js.map +1 -0
- package/dist/lib/utils/comment-moderation.d.ts +4 -0
- package/dist/lib/utils/comment-moderation.d.ts.map +1 -0
- package/dist/lib/utils/comment-moderation.js +56 -0
- package/dist/lib/utils/comment-moderation.js.map +1 -0
- package/dist/lib/utils/index.d.ts +4 -0
- package/dist/lib/utils/index.d.ts.map +1 -0
- package/dist/lib/utils/index.js +4 -0
- package/dist/lib/utils/index.js.map +1 -0
- package/dist/lib/utils/utils.d.ts +23 -0
- package/dist/lib/utils/utils.d.ts.map +1 -0
- package/dist/lib/utils/utils.js +375 -0
- package/dist/lib/utils/utils.js.map +1 -0
- package/dist/lib/validator.d.ts +30 -0
- package/dist/lib/validator.d.ts.map +1 -0
- package/dist/lib/validator.js +307 -0
- package/dist/lib/validator.js.map +1 -0
- package/dist/stores/accounts/account-generator.d.ts +51 -0
- package/dist/stores/accounts/account-generator.d.ts.map +1 -0
- package/dist/stores/accounts/account-generator.js +160 -0
- package/dist/stores/accounts/account-generator.js.map +1 -0
- package/dist/stores/accounts/accounts-actions-internal.d.ts +8 -0
- package/dist/stores/accounts/accounts-actions-internal.d.ts.map +1 -0
- package/dist/stores/accounts/accounts-actions-internal.js +403 -0
- package/dist/stores/accounts/accounts-actions-internal.js.map +1 -0
- package/dist/stores/accounts/accounts-actions.d.ts +46 -0
- package/dist/stores/accounts/accounts-actions.d.ts.map +1 -0
- package/dist/stores/accounts/accounts-actions.js +1341 -0
- package/dist/stores/accounts/accounts-actions.js.map +1 -0
- package/dist/stores/accounts/accounts-database.d.ts +34 -0
- package/dist/stores/accounts/accounts-database.d.ts.map +1 -0
- package/dist/stores/accounts/accounts-database.js +685 -0
- package/dist/stores/accounts/accounts-database.js.map +1 -0
- package/dist/stores/accounts/accounts-store.d.ts +32 -0
- package/dist/stores/accounts/accounts-store.d.ts.map +1 -0
- package/dist/stores/accounts/accounts-store.js +169 -0
- package/dist/stores/accounts/accounts-store.js.map +1 -0
- package/dist/stores/accounts/index.d.ts +4 -0
- package/dist/stores/accounts/index.d.ts.map +1 -0
- package/dist/stores/accounts/index.js +4 -0
- package/dist/stores/accounts/index.js.map +1 -0
- package/dist/stores/accounts/utils.d.ts +49 -0
- package/dist/stores/accounts/utils.d.ts.map +1 -0
- package/dist/stores/accounts/utils.js +419 -0
- package/dist/stores/accounts/utils.js.map +1 -0
- package/dist/stores/authors-comments/authors-comments-store.d.ts +37 -0
- package/dist/stores/authors-comments/authors-comments-store.d.ts.map +1 -0
- package/dist/stores/authors-comments/authors-comments-store.js +338 -0
- package/dist/stores/authors-comments/authors-comments-store.js.map +1 -0
- package/dist/stores/authors-comments/index.d.ts +4 -0
- package/dist/stores/authors-comments/index.d.ts.map +1 -0
- package/dist/stores/authors-comments/index.js +4 -0
- package/dist/stores/authors-comments/index.js.map +1 -0
- package/dist/stores/authors-comments/utils.d.ts +14 -0
- package/dist/stores/authors-comments/utils.d.ts.map +1 -0
- package/dist/stores/authors-comments/utils.js +81 -0
- package/dist/stores/authors-comments/utils.js.map +1 -0
- package/dist/stores/comments/comments-store.d.ts +19 -0
- package/dist/stores/comments/comments-store.d.ts.map +1 -0
- package/dist/stores/comments/comments-store.js +385 -0
- package/dist/stores/comments/comments-store.js.map +1 -0
- package/dist/stores/comments/index.d.ts +4 -0
- package/dist/stores/comments/index.d.ts.map +1 -0
- package/dist/stores/comments/index.js +4 -0
- package/dist/stores/comments/index.js.map +1 -0
- package/dist/stores/communities/communities-store.d.ts +17 -0
- package/dist/stores/communities/communities-store.d.ts.map +1 -0
- package/dist/stores/communities/communities-store.js +304 -0
- package/dist/stores/communities/communities-store.js.map +1 -0
- package/dist/stores/communities/index.d.ts +4 -0
- package/dist/stores/communities/index.d.ts.map +1 -0
- package/dist/stores/communities/index.js +4 -0
- package/dist/stores/communities/index.js.map +1 -0
- package/dist/stores/communities-pages/communities-pages-store.d.ts +23 -0
- package/dist/stores/communities-pages/communities-pages-store.d.ts.map +1 -0
- package/dist/stores/communities-pages/communities-pages-store.js +316 -0
- package/dist/stores/communities-pages/communities-pages-store.js.map +1 -0
- package/dist/stores/communities-pages/index.d.ts +4 -0
- package/dist/stores/communities-pages/index.d.ts.map +1 -0
- package/dist/stores/communities-pages/index.js +4 -0
- package/dist/stores/communities-pages/index.js.map +1 -0
- package/dist/stores/feeds/feed-sorter.d.ts +5 -0
- package/dist/stores/feeds/feed-sorter.d.ts.map +1 -0
- package/dist/stores/feeds/feed-sorter.js +135 -0
- package/dist/stores/feeds/feed-sorter.js.map +1 -0
- package/dist/stores/feeds/feeds-store.d.ts +25 -0
- package/dist/stores/feeds/feeds-store.d.ts.map +1 -0
- package/dist/stores/feeds/feeds-store.js +459 -0
- package/dist/stores/feeds/feeds-store.js.map +1 -0
- package/dist/stores/feeds/index.d.ts +4 -0
- package/dist/stores/feeds/index.d.ts.map +1 -0
- package/dist/stores/feeds/index.js +4 -0
- package/dist/stores/feeds/index.js.map +1 -0
- package/dist/stores/feeds/utils.d.ts +43 -0
- package/dist/stores/feeds/utils.d.ts.map +1 -0
- package/dist/stores/feeds/utils.js +736 -0
- package/dist/stores/feeds/utils.js.map +1 -0
- package/dist/stores/replies/index.d.ts +4 -0
- package/dist/stores/replies/index.d.ts.map +1 -0
- package/dist/stores/replies/index.js +4 -0
- package/dist/stores/replies/index.js.map +1 -0
- package/dist/stores/replies/replies-comments-store.d.ts +8 -0
- package/dist/stores/replies/replies-comments-store.d.ts.map +1 -0
- package/dist/stores/replies/replies-comments-store.js +23 -0
- package/dist/stores/replies/replies-comments-store.js.map +1 -0
- package/dist/stores/replies/replies-store.d.ts +29 -0
- package/dist/stores/replies/replies-store.d.ts.map +1 -0
- package/dist/stores/replies/replies-store.js +413 -0
- package/dist/stores/replies/replies-store.js.map +1 -0
- package/dist/stores/replies/utils.d.ts +25 -0
- package/dist/stores/replies/utils.d.ts.map +1 -0
- package/dist/stores/replies/utils.js +549 -0
- package/dist/stores/replies/utils.js.map +1 -0
- package/dist/stores/replies-pages/index.d.ts +4 -0
- package/dist/stores/replies-pages/index.d.ts.map +1 -0
- package/dist/stores/replies-pages/index.js +4 -0
- package/dist/stores/replies-pages/index.js.map +1 -0
- package/dist/stores/replies-pages/replies-pages-store.d.ts +20 -0
- package/dist/stores/replies-pages/replies-pages-store.d.ts.map +1 -0
- package/dist/stores/replies-pages/replies-pages-store.js +270 -0
- package/dist/stores/replies-pages/replies-pages-store.js.map +1 -0
- package/dist/stores/replies-pages/utils.d.ts +3 -0
- package/dist/stores/replies-pages/utils.d.ts.map +1 -0
- package/dist/stores/replies-pages/utils.js +43 -0
- package/dist/stores/replies-pages/utils.js.map +1 -0
- package/dist/types.d.ts +638 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -0
- package/package.json +160 -0
|
@@ -0,0 +1,549 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { getRepliesPages, getRepliesFirstPageCid } from "../replies-pages/index.js";
|
|
11
|
+
import repliesSorter from "../feeds/feed-sorter.js";
|
|
12
|
+
import accountsStore from "../accounts/index.js";
|
|
13
|
+
import { flattenCommentsPages, commentIsValid, removeInvalidComments } from "../../lib/utils/index.js";
|
|
14
|
+
import { areEquivalentCommunityAddresses } from "../../lib/community-address.js";
|
|
15
|
+
import Logger from "@pkcprotocol/pkc-logger";
|
|
16
|
+
const log = Logger("bitsocial-react-hooks:replies:stores");
|
|
17
|
+
/**
|
|
18
|
+
* Calculate the feeds from all the loaded replies pages, filter and sort them
|
|
19
|
+
*/
|
|
20
|
+
export const getFilteredSortedFeeds = (feedsOptions, comments, repliesPages, accounts) => {
|
|
21
|
+
// calculate each feed
|
|
22
|
+
let feeds = {};
|
|
23
|
+
for (const feedName in feedsOptions) {
|
|
24
|
+
let { commentCid, sortType, accountId, filter, flat } = feedsOptions[feedName];
|
|
25
|
+
// find all fetched replies
|
|
26
|
+
let bufferedFeedReplies = [];
|
|
27
|
+
const comment = comments[commentCid];
|
|
28
|
+
sortType = getSortTypeFromComment(comment, feedsOptions[feedName]);
|
|
29
|
+
// comment has loaded and cache not expired
|
|
30
|
+
if (comment) {
|
|
31
|
+
// use comment preloaded replies if any
|
|
32
|
+
const preloadedReplies = getPreloadedReplies(comment, sortType);
|
|
33
|
+
if (preloadedReplies) {
|
|
34
|
+
for (const reply of preloadedReplies) {
|
|
35
|
+
// replies are manually validated, could have fake communityAddress
|
|
36
|
+
if (!areEquivalentCommunityAddresses(reply.communityAddress, comment.communityAddress)) {
|
|
37
|
+
break;
|
|
38
|
+
}
|
|
39
|
+
bufferedFeedReplies.push(reply);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
// add all replies from comment replies pages
|
|
43
|
+
const _repliesPages = getRepliesPages(comment, sortType, repliesPages);
|
|
44
|
+
for (const repliesPage of _repliesPages) {
|
|
45
|
+
if (repliesPage === null || repliesPage === void 0 ? void 0 : repliesPage.comments) {
|
|
46
|
+
for (const reply of repliesPage.comments) {
|
|
47
|
+
// replies are manually validated, could have fake communityAddress
|
|
48
|
+
if (!areEquivalentCommunityAddresses(reply.communityAddress, comment.communityAddress)) {
|
|
49
|
+
break;
|
|
50
|
+
}
|
|
51
|
+
bufferedFeedReplies.push(reply);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
if (flat) {
|
|
57
|
+
bufferedFeedReplies = flattenCommentsPages({ comments: bufferedFeedReplies });
|
|
58
|
+
}
|
|
59
|
+
// sort the feed before filtering to get more accurate results
|
|
60
|
+
const sortedBufferedFeedReplies = repliesSorter.sort(sortType, bufferedFeedReplies);
|
|
61
|
+
// filter the feed
|
|
62
|
+
const filteredSortedBufferedFeedReplies = [];
|
|
63
|
+
for (const reply of sortedBufferedFeedReplies) {
|
|
64
|
+
// TODO: maybe skip if comment community address, comment cid or comment author is blocked?
|
|
65
|
+
// feedOptions filter function
|
|
66
|
+
if (filter && !filter.filter(reply)) {
|
|
67
|
+
continue;
|
|
68
|
+
}
|
|
69
|
+
filteredSortedBufferedFeedReplies.push(reply);
|
|
70
|
+
}
|
|
71
|
+
feeds[feedName] = filteredSortedBufferedFeedReplies;
|
|
72
|
+
}
|
|
73
|
+
return feeds;
|
|
74
|
+
};
|
|
75
|
+
const getPreloadedReplies = (comment, sortType) => {
|
|
76
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
77
|
+
let preloadedReplies = (_c = (_b = (_a = comment.replies) === null || _a === void 0 ? void 0 : _a.pages) === null || _b === void 0 ? void 0 : _b[sortType]) === null || _c === void 0 ? void 0 : _c.comments;
|
|
78
|
+
if (preloadedReplies) {
|
|
79
|
+
return preloadedReplies;
|
|
80
|
+
}
|
|
81
|
+
// TODO: should we check pageCids? it's possible to have pageCids
|
|
82
|
+
// and use 'best' preloadedReplies, if they have no nextCid (all replies are preloaded)
|
|
83
|
+
// changing this might bug out nested immediate react renders
|
|
84
|
+
// only check on comment.depth: 0 for now
|
|
85
|
+
const hasPageCids = Object.keys(((_d = comment.replies) === null || _d === void 0 ? void 0 : _d.pageCids) || {}).length !== 0;
|
|
86
|
+
if (hasPageCids && comment.depth === 0) {
|
|
87
|
+
return;
|
|
88
|
+
}
|
|
89
|
+
const pages = Object.values(((_e = comment.replies) === null || _e === void 0 ? void 0 : _e.pages) || {});
|
|
90
|
+
if (!pages.length) {
|
|
91
|
+
return;
|
|
92
|
+
}
|
|
93
|
+
const nextCids = pages.map((page) => page === null || page === void 0 ? void 0 : page.nextCid).filter((nextCid) => !!nextCid);
|
|
94
|
+
if (nextCids.length > 0) {
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
// if has a preloaded page, but no pageCids and no nextCids, it means all replies fit in a single preloaded page
|
|
98
|
+
// so any sort type can be used, and later be resorted by the client
|
|
99
|
+
if ((_g = (_f = pages[0]) === null || _f === void 0 ? void 0 : _f.comments) === null || _g === void 0 ? void 0 : _g.length) {
|
|
100
|
+
return pages[0].comments;
|
|
101
|
+
}
|
|
102
|
+
};
|
|
103
|
+
const previousPageNumbers = {};
|
|
104
|
+
const pageNumberIncreased = (feedName, pageNumber, loadedFeed, bufferedFeed) => {
|
|
105
|
+
const isFirstPage = !loadedFeed && (bufferedFeed === null || bufferedFeed === void 0 ? void 0 : bufferedFeed.length);
|
|
106
|
+
// first page should always update
|
|
107
|
+
// pageNumber has changed should always update
|
|
108
|
+
if (isFirstPage || previousPageNumbers[feedName] !== pageNumber) {
|
|
109
|
+
previousPageNumbers[feedName] = pageNumber;
|
|
110
|
+
return true;
|
|
111
|
+
}
|
|
112
|
+
return false;
|
|
113
|
+
};
|
|
114
|
+
const alwaysStreamPage = (feedOptions) => {
|
|
115
|
+
// feedOptions.streamPage set to true means always stream page
|
|
116
|
+
if (feedOptions.streamPage) {
|
|
117
|
+
return true;
|
|
118
|
+
}
|
|
119
|
+
// always stream top level replies and/or flat
|
|
120
|
+
return feedOptions.commentDepth > 0 && !feedOptions.flat ? false : true;
|
|
121
|
+
};
|
|
122
|
+
export const getLoadedFeeds = (feedsOptions, loadedFeeds, bufferedFeeds, accounts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
123
|
+
var _a;
|
|
124
|
+
const loadedFeedsMissingReplies = {};
|
|
125
|
+
for (const feedName in feedsOptions) {
|
|
126
|
+
const { pageNumber, repliesPerPage, accountId, streamPage } = feedsOptions[feedName];
|
|
127
|
+
// TODO: fix design issue, pageNumber shouldnt be increased when loadMore is called and repliesPerPage not reached
|
|
128
|
+
// if not always streaming replies, and page number didn't increase, skip updating
|
|
129
|
+
// so UI isn't displaced when new nested replies are added
|
|
130
|
+
if (!alwaysStreamPage(feedsOptions[feedName]) &&
|
|
131
|
+
!pageNumberIncreased(feedName, pageNumber, loadedFeeds[feedName], bufferedFeeds[feedName])) {
|
|
132
|
+
continue;
|
|
133
|
+
}
|
|
134
|
+
const pkc = (_a = accounts[accountId]) === null || _a === void 0 ? void 0 : _a.pkc;
|
|
135
|
+
const loadedFeedReplyCount = pageNumber * repliesPerPage;
|
|
136
|
+
const currentLoadedFeed = loadedFeeds[feedName] || [];
|
|
137
|
+
// don't count account replies
|
|
138
|
+
const missingRepliesCount = loadedFeedReplyCount - currentLoadedFeed.filter((reply) => reply.index === undefined).length;
|
|
139
|
+
// get new replies from buffered feed
|
|
140
|
+
const bufferedFeed = bufferedFeeds[feedName] || [];
|
|
141
|
+
let missingReplies = [];
|
|
142
|
+
for (const reply of bufferedFeed) {
|
|
143
|
+
if (missingReplies.length >= missingRepliesCount) {
|
|
144
|
+
missingReplies = yield removeInvalidComments(missingReplies, { validateReplies: false }, pkc);
|
|
145
|
+
// only stop if there were no invalid comments
|
|
146
|
+
if (missingReplies.length >= missingRepliesCount) {
|
|
147
|
+
break;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
missingReplies.push(reply);
|
|
151
|
+
}
|
|
152
|
+
// the current loaded feed already exist and doesn't need new replies
|
|
153
|
+
if (missingReplies.length === 0 && loadedFeeds[feedName]) {
|
|
154
|
+
continue;
|
|
155
|
+
}
|
|
156
|
+
loadedFeedsMissingReplies[feedName] = missingReplies;
|
|
157
|
+
}
|
|
158
|
+
let newLoadedFeeds = {};
|
|
159
|
+
for (const feedName in loadedFeedsMissingReplies) {
|
|
160
|
+
newLoadedFeeds[feedName] = [
|
|
161
|
+
...(loadedFeeds[feedName] || []),
|
|
162
|
+
...loadedFeedsMissingReplies[feedName],
|
|
163
|
+
];
|
|
164
|
+
}
|
|
165
|
+
// add account comments
|
|
166
|
+
newLoadedFeeds = Object.assign(Object.assign({}, loadedFeeds), newLoadedFeeds);
|
|
167
|
+
const accountCommentsChangedFeeds = addAccountsComments(feedsOptions, newLoadedFeeds);
|
|
168
|
+
// do nothing if there are no missing replies
|
|
169
|
+
if (Object.keys(loadedFeedsMissingReplies).length === 0 && !accountCommentsChangedFeeds) {
|
|
170
|
+
return loadedFeeds;
|
|
171
|
+
}
|
|
172
|
+
return newLoadedFeeds;
|
|
173
|
+
});
|
|
174
|
+
export const addAccountsComments = (feedsOptions, loadedFeeds) => {
|
|
175
|
+
let loadedFeedsChanged = false;
|
|
176
|
+
const accountsComments = accountsStore.getState().accountsComments || {};
|
|
177
|
+
for (const feedName in feedsOptions) {
|
|
178
|
+
const { accountId, accountComments: accountCommentsOptions, commentCid, postCid, commentDepth, flat, } = feedsOptions[feedName];
|
|
179
|
+
const { newerThan, append } = accountCommentsOptions || {};
|
|
180
|
+
if (!newerThan) {
|
|
181
|
+
continue;
|
|
182
|
+
}
|
|
183
|
+
const newerThanTimestamp = newerThan === Infinity ? 0 : Math.floor(Date.now() / 1000) - newerThan;
|
|
184
|
+
const isNewerThan = (reply) => reply.timestamp > newerThanTimestamp;
|
|
185
|
+
const accountComments = accountsComments[accountId] || [];
|
|
186
|
+
const accountReplies = accountComments.filter((reply) => {
|
|
187
|
+
if (!isNewerThan(reply)) {
|
|
188
|
+
return false;
|
|
189
|
+
}
|
|
190
|
+
if (flat) {
|
|
191
|
+
// if flat, add all account replies with greater comment depth
|
|
192
|
+
return reply.postCid === postCid && reply.depth > commentDepth;
|
|
193
|
+
}
|
|
194
|
+
return reply.parentCid === commentCid;
|
|
195
|
+
});
|
|
196
|
+
const validAccountIndices = new Set(accountReplies.map((r) => r.index));
|
|
197
|
+
const accountCidToReply = new Map();
|
|
198
|
+
for (const r of accountReplies) {
|
|
199
|
+
if (r.cid)
|
|
200
|
+
accountCidToReply.set(r.cid, r);
|
|
201
|
+
}
|
|
202
|
+
let loadedFeed = loadedFeeds[feedName] || [];
|
|
203
|
+
// prune stale local-account entries and replace when cid matches but index changed
|
|
204
|
+
const prunedLoadedFeed = [];
|
|
205
|
+
for (const reply of loadedFeed) {
|
|
206
|
+
if (reply.index === undefined) {
|
|
207
|
+
prunedLoadedFeed.push(reply);
|
|
208
|
+
continue;
|
|
209
|
+
}
|
|
210
|
+
if (!validAccountIndices.has(reply.index)) {
|
|
211
|
+
loadedFeedsChanged = true;
|
|
212
|
+
continue;
|
|
213
|
+
}
|
|
214
|
+
if (reply.cid) {
|
|
215
|
+
const freshAccountReply = accountCidToReply.get(reply.cid);
|
|
216
|
+
if (freshAccountReply && freshAccountReply.index !== reply.index) {
|
|
217
|
+
prunedLoadedFeed.push(freshAccountReply);
|
|
218
|
+
loadedFeedsChanged = true;
|
|
219
|
+
continue;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
prunedLoadedFeed.push(reply);
|
|
223
|
+
}
|
|
224
|
+
loadedFeed = loadedFeeds[feedName] = prunedLoadedFeed;
|
|
225
|
+
if (!accountReplies.length) {
|
|
226
|
+
continue;
|
|
227
|
+
}
|
|
228
|
+
// if a loaded comment doesn't have a cid, then it's pending
|
|
229
|
+
// and pending account comments should always have unique timestamps
|
|
230
|
+
const loadedFeedMap = new Map();
|
|
231
|
+
loadedFeed.forEach((reply, loadedFeedIndex) => {
|
|
232
|
+
if (reply.cid)
|
|
233
|
+
loadedFeedMap.set(reply.cid, loadedFeedIndex);
|
|
234
|
+
if (reply.index)
|
|
235
|
+
loadedFeedMap.set(reply.index, loadedFeedIndex);
|
|
236
|
+
if (!reply.cid)
|
|
237
|
+
loadedFeedMap.set(reply.timestamp, loadedFeedIndex);
|
|
238
|
+
});
|
|
239
|
+
for (const accountReply of accountReplies) {
|
|
240
|
+
// account reply with cid already added
|
|
241
|
+
if (accountReply.cid && loadedFeedMap.has(accountReply.cid)) {
|
|
242
|
+
continue;
|
|
243
|
+
}
|
|
244
|
+
// account reply without cid already added, but now we have the cid
|
|
245
|
+
if (accountReply.cid && loadedFeedMap.has(accountReply.index)) {
|
|
246
|
+
const loadedFeedIndex = loadedFeedMap.get(accountReply.index);
|
|
247
|
+
// update the feed with the accountReply.cid now that we have it
|
|
248
|
+
loadedFeed[loadedFeedIndex] = accountReply;
|
|
249
|
+
loadedFeedsChanged = true;
|
|
250
|
+
continue;
|
|
251
|
+
}
|
|
252
|
+
if (loadedFeedMap.has(accountReply.index)) {
|
|
253
|
+
continue;
|
|
254
|
+
}
|
|
255
|
+
// pending account reply without cid already added
|
|
256
|
+
if (!accountReply.cid && loadedFeedMap.has(accountReply.timestamp)) {
|
|
257
|
+
continue;
|
|
258
|
+
}
|
|
259
|
+
if (append) {
|
|
260
|
+
loadedFeed.push(accountReply);
|
|
261
|
+
}
|
|
262
|
+
else {
|
|
263
|
+
loadedFeed.unshift(accountReply);
|
|
264
|
+
}
|
|
265
|
+
loadedFeedsChanged = true;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
return loadedFeedsChanged;
|
|
269
|
+
};
|
|
270
|
+
export const getBufferedFeedsWithoutLoadedFeeds = (bufferedFeeds, loadedFeeds) => {
|
|
271
|
+
var _a, _b, _c, _d, _e;
|
|
272
|
+
// contruct a list of replies already loaded to remove them from buffered feeds
|
|
273
|
+
const loadedFeedsReplies = {};
|
|
274
|
+
for (const feedName in loadedFeeds) {
|
|
275
|
+
loadedFeedsReplies[feedName] = new Set();
|
|
276
|
+
for (const reply of loadedFeeds[feedName]) {
|
|
277
|
+
loadedFeedsReplies[feedName].add(reply.cid);
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
const newBufferedFeeds = {};
|
|
281
|
+
for (const feedName in bufferedFeeds) {
|
|
282
|
+
newBufferedFeeds[feedName] = [];
|
|
283
|
+
let bufferedFeedReplyChanged = false;
|
|
284
|
+
for (const [i, reply] of bufferedFeeds[feedName].entries()) {
|
|
285
|
+
if ((_a = loadedFeedsReplies[feedName]) === null || _a === void 0 ? void 0 : _a.has(reply.cid)) {
|
|
286
|
+
continue;
|
|
287
|
+
}
|
|
288
|
+
newBufferedFeeds[feedName].push(reply);
|
|
289
|
+
if (!bufferedFeedReplyChanged &&
|
|
290
|
+
(((_b = newBufferedFeeds[feedName][i]) === null || _b === void 0 ? void 0 : _b.cid) !== ((_c = bufferedFeeds[feedName][i]) === null || _c === void 0 ? void 0 : _c.cid) ||
|
|
291
|
+
(((_d = newBufferedFeeds[feedName][i]) === null || _d === void 0 ? void 0 : _d.updatedAt) || 0) >
|
|
292
|
+
(((_e = bufferedFeeds[feedName][i]) === null || _e === void 0 ? void 0 : _e.updatedAt) || 0))) {
|
|
293
|
+
bufferedFeedReplyChanged = true;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
if (!bufferedFeedReplyChanged &&
|
|
297
|
+
newBufferedFeeds[feedName].length === bufferedFeeds[feedName].length) {
|
|
298
|
+
newBufferedFeeds[feedName] = bufferedFeeds[feedName];
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
return newBufferedFeeds;
|
|
302
|
+
};
|
|
303
|
+
export const getUpdatedFeeds = (feedsOptions, filteredSortedFeeds, updatedFeeds, loadedFeeds, accounts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
304
|
+
var _a, _b, _c;
|
|
305
|
+
const newUpdatedFeeds = Object.assign({}, updatedFeeds);
|
|
306
|
+
const feedNames = new Set([
|
|
307
|
+
...Object.keys(filteredSortedFeeds || {}),
|
|
308
|
+
...Object.keys(loadedFeeds || {}),
|
|
309
|
+
...Object.keys(updatedFeeds || {}),
|
|
310
|
+
]);
|
|
311
|
+
for (const feedName of feedNames) {
|
|
312
|
+
const pkc = (_b = accounts[(_a = feedsOptions[feedName]) === null || _a === void 0 ? void 0 : _a.accountId]) === null || _b === void 0 ? void 0 : _b.pkc;
|
|
313
|
+
const loadedFeed = loadedFeeds[feedName] || [];
|
|
314
|
+
const previousUpdatedFeed = updatedFeeds[feedName] || [];
|
|
315
|
+
const updatedFeed = [...loadedFeed];
|
|
316
|
+
let updatedFeedChanged = false;
|
|
317
|
+
// Keep updated feeds in lock-step with loaded feeds so local deletions
|
|
318
|
+
// (e.g. abandoned pending replies) disappear without requiring a feed reset.
|
|
319
|
+
if (previousUpdatedFeed.length !== updatedFeed.length) {
|
|
320
|
+
updatedFeedChanged = true;
|
|
321
|
+
}
|
|
322
|
+
const filteredRepliesByCid = new Map();
|
|
323
|
+
for (const reply of filteredSortedFeeds[feedName] || []) {
|
|
324
|
+
if (reply === null || reply === void 0 ? void 0 : reply.cid) {
|
|
325
|
+
filteredRepliesByCid.set(reply.cid, reply);
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
for (let i = 0; i < updatedFeed.length; i++) {
|
|
329
|
+
const loadedReply = updatedFeed[i];
|
|
330
|
+
if (!(loadedReply === null || loadedReply === void 0 ? void 0 : loadedReply.cid)) {
|
|
331
|
+
continue;
|
|
332
|
+
}
|
|
333
|
+
const previousUpdatedReply = previousUpdatedFeed[i];
|
|
334
|
+
if ((previousUpdatedReply === null || previousUpdatedReply === void 0 ? void 0 : previousUpdatedReply.cid) === loadedReply.cid &&
|
|
335
|
+
(previousUpdatedReply.updatedAt || 0) > (loadedReply.updatedAt || 0)) {
|
|
336
|
+
updatedFeed[i] = previousUpdatedReply;
|
|
337
|
+
updatedFeedChanged = true;
|
|
338
|
+
}
|
|
339
|
+
const candidateReply = filteredRepliesByCid.get(loadedReply.cid);
|
|
340
|
+
if (!candidateReply) {
|
|
341
|
+
continue;
|
|
342
|
+
}
|
|
343
|
+
if ((candidateReply.updatedAt || 0) <= (((_c = updatedFeed[i]) === null || _c === void 0 ? void 0 : _c.updatedAt) || 0)) {
|
|
344
|
+
continue;
|
|
345
|
+
}
|
|
346
|
+
if (!(yield commentIsValid(candidateReply, { validateReplies: false }, pkc))) {
|
|
347
|
+
continue;
|
|
348
|
+
}
|
|
349
|
+
updatedFeed[i] = candidateReply;
|
|
350
|
+
updatedFeedChanged = true;
|
|
351
|
+
}
|
|
352
|
+
if (updatedFeedChanged) {
|
|
353
|
+
newUpdatedFeeds[feedName] = updatedFeed;
|
|
354
|
+
continue;
|
|
355
|
+
}
|
|
356
|
+
if (!updatedFeeds[feedName]) {
|
|
357
|
+
newUpdatedFeeds[feedName] = updatedFeed;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
return newUpdatedFeeds;
|
|
361
|
+
});
|
|
362
|
+
// find how many replies are in each comments in a buffereds feeds
|
|
363
|
+
// NOTE: not useful, could use feed.length, copied over from useFeed and easier to keep it
|
|
364
|
+
export const getFeedsReplyCounts = (feedsOptions, feeds) => {
|
|
365
|
+
var _a;
|
|
366
|
+
const feedsReplyCounts = {};
|
|
367
|
+
for (const feedName in feedsOptions) {
|
|
368
|
+
feedsReplyCounts[feedName] = ((_a = feeds[feedName]) === null || _a === void 0 ? void 0 : _a.length) || 0;
|
|
369
|
+
}
|
|
370
|
+
return feedsReplyCounts;
|
|
371
|
+
};
|
|
372
|
+
/**
|
|
373
|
+
* Get which feeds have more replies, i.e. have not reached the final page of all comments
|
|
374
|
+
*/
|
|
375
|
+
export const getFeedsHaveMore = (feedsOptions, bufferedFeeds, comments, repliesPages, accounts) => {
|
|
376
|
+
var _a;
|
|
377
|
+
const feedsHaveMore = {};
|
|
378
|
+
for (const feedName in feedsOptions) {
|
|
379
|
+
// if the feed still has buffered replies, then it still has more
|
|
380
|
+
if ((_a = bufferedFeeds[feedName]) === null || _a === void 0 ? void 0 : _a.length) {
|
|
381
|
+
feedsHaveMore[feedName] = true;
|
|
382
|
+
continue;
|
|
383
|
+
}
|
|
384
|
+
let { commentCid, sortType, onlyIfCached } = feedsOptions[feedName];
|
|
385
|
+
// TODO: maybe skip if comment cid is blocked?
|
|
386
|
+
const comment = comments[commentCid];
|
|
387
|
+
// if at least comment hasn't loaded yet, then the feed still has more
|
|
388
|
+
if (!(comment === null || comment === void 0 ? void 0 : comment.updatedAt)) {
|
|
389
|
+
feedsHaveMore[feedName] = !onlyIfCached;
|
|
390
|
+
continue;
|
|
391
|
+
}
|
|
392
|
+
sortType = getSortTypeFromComment(comment, feedsOptions[feedName]);
|
|
393
|
+
const firstPageCid = getRepliesFirstPageCid(comment, sortType);
|
|
394
|
+
// TODO: if a loaded comment doesn't have a first page, it's unclear what we should do
|
|
395
|
+
// should we try to use another sort type by default, like 'best', or should we just ignore it?
|
|
396
|
+
// 'continue' to ignore it for now
|
|
397
|
+
if (!firstPageCid) {
|
|
398
|
+
feedsHaveMore[feedName] = false;
|
|
399
|
+
continue;
|
|
400
|
+
}
|
|
401
|
+
const pages = getRepliesPages(comment, sortType, repliesPages);
|
|
402
|
+
// if first page isn't loaded yet, then the feed still has more
|
|
403
|
+
if (!pages.length) {
|
|
404
|
+
feedsHaveMore[feedName] = !onlyIfCached;
|
|
405
|
+
continue;
|
|
406
|
+
}
|
|
407
|
+
const lastPage = pages[pages.length - 1];
|
|
408
|
+
if (lastPage.nextCid) {
|
|
409
|
+
feedsHaveMore[feedName] = !onlyIfCached;
|
|
410
|
+
continue;
|
|
411
|
+
}
|
|
412
|
+
// if buffered feeds are empty and no last page of any comment has a next page, then has more is false
|
|
413
|
+
feedsHaveMore[feedName] = false;
|
|
414
|
+
}
|
|
415
|
+
return feedsHaveMore;
|
|
416
|
+
};
|
|
417
|
+
// get all comments replies pages cids of all feeds, use to check if a commentsStore change should trigger updateFeeds
|
|
418
|
+
export const getFeedsComments = (feedsOptions, comments) => {
|
|
419
|
+
const feedsComments = new Map();
|
|
420
|
+
for (const feedName in feedsOptions) {
|
|
421
|
+
feedsComments.set(feedsOptions[feedName].commentCid, comments[feedsOptions[feedName].commentCid]);
|
|
422
|
+
}
|
|
423
|
+
return feedsComments;
|
|
424
|
+
};
|
|
425
|
+
export const feedsCommentsChanged = (previousFeedsComments, feedsComments) => {
|
|
426
|
+
if (previousFeedsComments.size !== feedsComments.size) {
|
|
427
|
+
return true;
|
|
428
|
+
}
|
|
429
|
+
for (let commentCid of previousFeedsComments.keys()) {
|
|
430
|
+
// check if the object is still the same
|
|
431
|
+
if (previousFeedsComments.get(commentCid) !== feedsComments.get(commentCid)) {
|
|
432
|
+
return true;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
return false;
|
|
436
|
+
};
|
|
437
|
+
// get all comments replies pages cids of all feeds, use to check if a commentsStore change should trigger updateFeeds
|
|
438
|
+
export const getFeedsCommentsFirstPageCids = (feedsComments) => {
|
|
439
|
+
// find all the feeds comments first page cids
|
|
440
|
+
const feedsCommentsFirstPageCids = new Set();
|
|
441
|
+
for (const comment of feedsComments.values()) {
|
|
442
|
+
if (!(comment === null || comment === void 0 ? void 0 : comment.replies)) {
|
|
443
|
+
continue;
|
|
444
|
+
}
|
|
445
|
+
// check pages
|
|
446
|
+
if (comment.replies.pages) {
|
|
447
|
+
for (const page of Object.values(comment.replies.pages)) {
|
|
448
|
+
if (page === null || page === void 0 ? void 0 : page.nextCid) {
|
|
449
|
+
feedsCommentsFirstPageCids.add(page === null || page === void 0 ? void 0 : page.nextCid);
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
}
|
|
453
|
+
// check pageCids
|
|
454
|
+
if (comment.replies.pageCids) {
|
|
455
|
+
for (const pageCid of Object.values(comment.replies.pageCids)) {
|
|
456
|
+
if (pageCid) {
|
|
457
|
+
feedsCommentsFirstPageCids.add(pageCid);
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
return [...feedsCommentsFirstPageCids].sort();
|
|
463
|
+
};
|
|
464
|
+
// get all comments replies pages first reply updatedAts, use to check if a commentsStore change should trigger updateFeeds
|
|
465
|
+
export const getFeedsCommentsRepliesPagesFirstUpdatedAts = (feedsComments) => {
|
|
466
|
+
var _a, _b, _c;
|
|
467
|
+
let feedsCommentsRepliesPagesFirstUpdatedAts = "";
|
|
468
|
+
for (const comment of feedsComments.values()) {
|
|
469
|
+
for (const page of Object.values(((_a = comment === null || comment === void 0 ? void 0 : comment.replies) === null || _a === void 0 ? void 0 : _a.pages) || {})) {
|
|
470
|
+
if ((_c = (_b = page === null || page === void 0 ? void 0 : page.comments) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.updatedAt) {
|
|
471
|
+
feedsCommentsRepliesPagesFirstUpdatedAts +=
|
|
472
|
+
page.comments[0].cid + page.comments[0].updatedAt;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
return feedsCommentsRepliesPagesFirstUpdatedAts;
|
|
477
|
+
};
|
|
478
|
+
// get number of feeds comments that are loaded
|
|
479
|
+
export const getFeedsCommentsLoadedCount = (feedsComments) => {
|
|
480
|
+
let count = 0;
|
|
481
|
+
for (const comment of feedsComments.values()) {
|
|
482
|
+
if (comment === null || comment === void 0 ? void 0 : comment.updatedAt) {
|
|
483
|
+
count++;
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
return count;
|
|
487
|
+
};
|
|
488
|
+
// selected sort type could be missing from comment, or not optimized
|
|
489
|
+
export const getSortTypeFromComment = (comment, feedOptions) => {
|
|
490
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15;
|
|
491
|
+
let { sortType, flat } = feedOptions;
|
|
492
|
+
if (!comment) {
|
|
493
|
+
return sortType;
|
|
494
|
+
}
|
|
495
|
+
// 'topAll' and 'best' are similar enough to be used interchangeably
|
|
496
|
+
if (sortType === "best" &&
|
|
497
|
+
!((_b = (_a = comment.replies) === null || _a === void 0 ? void 0 : _a.pages) === null || _b === void 0 ? void 0 : _b.best) &&
|
|
498
|
+
!((_d = (_c = comment.replies) === null || _c === void 0 ? void 0 : _c.pageCids) === null || _d === void 0 ? void 0 : _d.best) &&
|
|
499
|
+
(((_f = (_e = comment.replies) === null || _e === void 0 ? void 0 : _e.pages) === null || _f === void 0 ? void 0 : _f.topAll) || ((_h = (_g = comment.replies) === null || _g === void 0 ? void 0 : _g.pageCids) === null || _h === void 0 ? void 0 : _h.topAll))) {
|
|
500
|
+
sortType = "topAll";
|
|
501
|
+
}
|
|
502
|
+
else if (sortType === "topAll" &&
|
|
503
|
+
!((_k = (_j = comment.replies) === null || _j === void 0 ? void 0 : _j.pages) === null || _k === void 0 ? void 0 : _k.topAll) &&
|
|
504
|
+
!((_m = (_l = comment.replies) === null || _l === void 0 ? void 0 : _l.pageCids) === null || _m === void 0 ? void 0 : _m.topAll) &&
|
|
505
|
+
(((_p = (_o = comment.replies) === null || _o === void 0 ? void 0 : _o.pages) === null || _p === void 0 ? void 0 : _p.best) || ((_r = (_q = comment.replies) === null || _q === void 0 ? void 0 : _q.pageCids) === null || _r === void 0 ? void 0 : _r.best))) {
|
|
506
|
+
sortType = "best";
|
|
507
|
+
}
|
|
508
|
+
// if 'new' sort type and flat: true, use 'newFlat'
|
|
509
|
+
else if (sortType === "new" &&
|
|
510
|
+
flat &&
|
|
511
|
+
(((_t = (_s = comment.replies) === null || _s === void 0 ? void 0 : _s.pages) === null || _t === void 0 ? void 0 : _t.newFlat) || ((_v = (_u = comment.replies) === null || _u === void 0 ? void 0 : _u.pageCids) === null || _v === void 0 ? void 0 : _v.newFlat))) {
|
|
512
|
+
sortType = "newFlat";
|
|
513
|
+
}
|
|
514
|
+
// if 'old' sort type and flat: true, use 'oldFlat'
|
|
515
|
+
else if (sortType === "old" &&
|
|
516
|
+
flat &&
|
|
517
|
+
(((_x = (_w = comment.replies) === null || _w === void 0 ? void 0 : _w.pages) === null || _x === void 0 ? void 0 : _x.oldFlat) || ((_z = (_y = comment.replies) === null || _y === void 0 ? void 0 : _y.pageCids) === null || _z === void 0 ? void 0 : _z.oldFlat))) {
|
|
518
|
+
sortType = "oldFlat";
|
|
519
|
+
}
|
|
520
|
+
// if 'newFlat' is missing, use 'new'
|
|
521
|
+
else if (sortType === "newFlat" &&
|
|
522
|
+
!((_1 = (_0 = comment.replies) === null || _0 === void 0 ? void 0 : _0.pages) === null || _1 === void 0 ? void 0 : _1.newFlat) &&
|
|
523
|
+
!((_3 = (_2 = comment.replies) === null || _2 === void 0 ? void 0 : _2.pageCids) === null || _3 === void 0 ? void 0 : _3.newFlat) &&
|
|
524
|
+
(((_5 = (_4 = comment.replies) === null || _4 === void 0 ? void 0 : _4.pages) === null || _5 === void 0 ? void 0 : _5.new) || ((_7 = (_6 = comment.replies) === null || _6 === void 0 ? void 0 : _6.pageCids) === null || _7 === void 0 ? void 0 : _7.new))) {
|
|
525
|
+
sortType = "new";
|
|
526
|
+
}
|
|
527
|
+
// if 'oldFlat' is missing, use 'old'
|
|
528
|
+
else if (sortType === "oldFlat" &&
|
|
529
|
+
!((_9 = (_8 = comment.replies) === null || _8 === void 0 ? void 0 : _8.pages) === null || _9 === void 0 ? void 0 : _9.oldFlat) &&
|
|
530
|
+
!((_11 = (_10 = comment.replies) === null || _10 === void 0 ? void 0 : _10.pageCids) === null || _11 === void 0 ? void 0 : _11.oldFlat) &&
|
|
531
|
+
(((_13 = (_12 = comment.replies) === null || _12 === void 0 ? void 0 : _12.pages) === null || _13 === void 0 ? void 0 : _13.old) || ((_15 = (_14 = comment.replies) === null || _14 === void 0 ? void 0 : _14.pageCids) === null || _15 === void 0 ? void 0 : _15.old))) {
|
|
532
|
+
sortType = "old";
|
|
533
|
+
}
|
|
534
|
+
// TODO: if sort type doesn't exist on comment, maybe use first existing?
|
|
535
|
+
// else if (!comment.replies?.pages?.[sortType] && !comment.replies?.pageCids?.[sortType]) {
|
|
536
|
+
// const firstPageSortType = comment.replies?.pages && Object.keys(comment.replies.pages)[0]
|
|
537
|
+
// if (firstPageSortType) {
|
|
538
|
+
// sortType = firstPageSortType
|
|
539
|
+
// }
|
|
540
|
+
// else {
|
|
541
|
+
// const firstPageCidSortType = comment.replies?.pageCids && Object.keys(comment.replies.pageCids)[0]
|
|
542
|
+
// if (firstPageCidSortType) {
|
|
543
|
+
// sortType = firstPageCidSortType
|
|
544
|
+
// }
|
|
545
|
+
// }
|
|
546
|
+
// }
|
|
547
|
+
return sortType;
|
|
548
|
+
};
|
|
549
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/stores/replies/utils.ts"],"names":[],"mappings":";;;;;;;;;AAaA,OAAO,EAAE,eAAe,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAC3E,OAAO,aAAa,MAAM,sBAAsB,CAAC;AACjD,OAAO,aAAa,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,qBAAqB,EAAE,MAAM,iBAAiB,CAAC;AAC9F,OAAO,EAAE,+BAA+B,EAAE,MAAM,6BAA6B,CAAC;AAC9E,OAAO,MAAM,MAAM,yBAAyB,CAAC;AAC7C,MAAM,GAAG,GAAG,MAAM,CAAC,sCAAsC,CAAC,CAAC;AAE3D;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CACpC,YAAiC,EACjC,QAAkB,EAClB,YAA0B,EAC1B,QAAkB,EAClB,EAAE;IACF,sBAAsB;IACtB,IAAI,KAAK,GAAU,EAAE,CAAC;IACtB,KAAK,MAAM,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;QAE/E,2BAA2B;QAC3B,IAAI,mBAAmB,GAAG,EAAE,CAAC;QAC7B,MAAM,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC;QAErC,QAAQ,GAAG,sBAAsB,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC;QAEnE,2CAA2C;QAC3C,IAAI,OAAO,EAAE,CAAC;YACZ,uCAAuC;YACvC,MAAM,gBAAgB,GAAG,mBAAmB,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;YAChE,IAAI,gBAAgB,EAAE,CAAC;gBACrB,KAAK,MAAM,KAAK,IAAI,gBAAgB,EAAE,CAAC;oBACrC,mEAAmE;oBACnE,IAAI,CAAC,+BAA+B,CAAC,KAAK,CAAC,gBAAgB,EAAE,OAAO,CAAC,gBAAgB,CAAC,EAAE,CAAC;wBACvF,MAAM;oBACR,CAAC;oBACD,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBAClC,CAAC;YACH,CAAC;YAED,6CAA6C;YAC7C,MAAM,aAAa,GAAG,eAAe,CAAC,OAAO,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;YACvE,KAAK,MAAM,WAAW,IAAI,aAAa,EAAE,CAAC;gBACxC,IAAI,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,QAAQ,EAAE,CAAC;oBAC1B,KAAK,MAAM,KAAK,IAAI,WAAW,CAAC,QAAQ,EAAE,CAAC;wBACzC,mEAAmE;wBACnE,IACE,CAAC,+BAA+B,CAAC,KAAK,CAAC,gBAAgB,EAAE,OAAO,CAAC,gBAAgB,CAAC,EAClF,CAAC;4BACD,MAAM;wBACR,CAAC;wBACD,mBAAmB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;oBAClC,CAAC;gBACH,CAAC;YACH,CAAC;QACH,CAAC;QAED,IAAI,IAAI,EAAE,CAAC;YACT,mBAAmB,GAAG,oBAAoB,CAAC,EAAE,QAAQ,EAAE,mBAAmB,EAAE,CAAC,CAAC;QAChF,CAAC;QAED,8DAA8D;QAC9D,MAAM,yBAAyB,GAAG,aAAa,CAAC,IAAI,CAAC,QAAQ,EAAE,mBAAmB,CAAC,CAAC;QAEpF,kBAAkB;QAClB,MAAM,iCAAiC,GAAG,EAAE,CAAC;QAC7C,KAAK,MAAM,KAAK,IAAI,yBAAyB,EAAE,CAAC;YAC9C,2FAA2F;YAE3F,8BAA8B;YAC9B,IAAI,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC;gBACpC,SAAS;YACX,CAAC;YAED,iCAAiC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAChD,CAAC;QAED,KAAK,CAAC,QAAQ,CAAC,GAAG,iCAAiC,CAAC;IACtD,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,MAAM,mBAAmB,GAAG,CAAC,OAAgB,EAAE,QAAgB,EAAE,EAAE;;IACjE,IAAI,gBAAgB,GAAG,MAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAG,QAAQ,CAAC,0CAAE,QAAQ,CAAC;IACpE,IAAI,gBAAgB,EAAE,CAAC;QACrB,OAAO,gBAAgB,CAAC;IAC1B,CAAC;IACD,iEAAiE;IACjE,uFAAuF;IACvF,6DAA6D;IAC7D,yCAAyC;IACzC,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,CAAC,CAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,KAAI,EAAE,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC;IAC9E,IAAI,WAAW,IAAI,OAAO,CAAC,KAAK,KAAK,CAAC,EAAE,CAAC;QACvC,OAAO;IACT,CAAC;IACD,MAAM,KAAK,GAAU,MAAM,CAAC,MAAM,CAAC,CAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,KAAI,EAAE,CAAC,CAAC;IACjE,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;QAClB,OAAO;IACT,CAAC;IACD,MAAM,QAAQ,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC;IACxF,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACxB,OAAO;IACT,CAAC;IACD,gHAAgH;IAChH,oEAAoE;IACpE,IAAI,MAAA,MAAA,KAAK,CAAC,CAAC,CAAC,0CAAE,QAAQ,0CAAE,MAAM,EAAE,CAAC;QAC/B,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC;IAC3B,CAAC;AACH,CAAC,CAAC;AAEF,MAAM,mBAAmB,GAAmC,EAAE,CAAC;AAC/D,MAAM,mBAAmB,GAAG,CAC1B,QAAgB,EAChB,UAAkB,EAClB,UAAqB,EACrB,YAAuB,EACvB,EAAE;IACF,MAAM,WAAW,GAAG,CAAC,UAAU,KAAI,YAAY,aAAZ,YAAY,uBAAZ,YAAY,CAAE,MAAM,CAAA,CAAC;IACxD,kCAAkC;IAClC,8CAA8C;IAC9C,IAAI,WAAW,IAAI,mBAAmB,CAAC,QAAQ,CAAC,KAAK,UAAU,EAAE,CAAC;QAChE,mBAAmB,CAAC,QAAQ,CAAC,GAAG,UAAU,CAAC;QAC3C,OAAO,IAAI,CAAC;IACd,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,MAAM,gBAAgB,GAAG,CAAC,WAA+B,EAAE,EAAE;IAC3D,8DAA8D;IAC9D,IAAI,WAAW,CAAC,UAAU,EAAE,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;IACD,8CAA8C;IAC9C,OAAO,WAAW,CAAC,YAAY,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC;AAC1E,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAC5B,YAAiC,EACjC,WAAkB,EAClB,aAAoB,EACpB,QAAkB,EAClB,EAAE;;IACF,MAAM,yBAAyB,GAAU,EAAE,CAAC;IAC5C,KAAK,MAAM,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,MAAM,EAAE,UAAU,EAAE,cAAc,EAAE,SAAS,EAAE,UAAU,EAAE,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;QAErF,kHAAkH;QAClH,kFAAkF;QAClF,0DAA0D;QAC1D,IACE,CAAC,gBAAgB,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC;YACzC,CAAC,mBAAmB,CAAC,QAAQ,EAAE,UAAU,EAAE,WAAW,CAAC,QAAQ,CAAC,EAAE,aAAa,CAAC,QAAQ,CAAC,CAAC,EAC1F,CAAC;YACD,SAAS;QACX,CAAC;QAED,MAAM,GAAG,GAAG,MAAA,QAAQ,CAAC,SAAS,CAAC,0CAAE,GAAG,CAAC;QACrC,MAAM,oBAAoB,GAAG,UAAU,GAAG,cAAc,CAAC;QACzD,MAAM,iBAAiB,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QACtD,8BAA8B;QAC9B,MAAM,mBAAmB,GACvB,oBAAoB,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,MAAM,CAAC;QAE/F,qCAAqC;QACrC,MAAM,YAAY,GAAG,aAAa,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QAEnD,IAAI,cAAc,GAAU,EAAE,CAAC;QAC/B,KAAK,MAAM,KAAK,IAAI,YAAY,EAAE,CAAC;YACjC,IAAI,cAAc,CAAC,MAAM,IAAI,mBAAmB,EAAE,CAAC;gBACjD,cAAc,GAAG,MAAM,qBAAqB,CAC1C,cAAc,EACd,EAAE,eAAe,EAAE,KAAK,EAAE,EAC1B,GAAG,CACJ,CAAC;gBACF,8CAA8C;gBAC9C,IAAI,cAAc,CAAC,MAAM,IAAI,mBAAmB,EAAE,CAAC;oBACjD,MAAM;gBACR,CAAC;YACH,CAAC;YACD,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC7B,CAAC;QAED,qEAAqE;QACrE,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,IAAI,WAAW,CAAC,QAAQ,CAAC,EAAE,CAAC;YACzD,SAAS;QACX,CAAC;QACD,yBAAyB,CAAC,QAAQ,CAAC,GAAG,cAAc,CAAC;IACvD,CAAC;IAED,IAAI,cAAc,GAAU,EAAE,CAAC;IAC/B,KAAK,MAAM,QAAQ,IAAI,yBAAyB,EAAE,CAAC;QACjD,cAAc,CAAC,QAAQ,CAAC,GAAG;YACzB,GAAG,CAAC,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;YAChC,GAAG,yBAAyB,CAAC,QAAQ,CAAC;SACvC,CAAC;IACJ,CAAC;IAED,uBAAuB;IACvB,cAAc,mCAAQ,WAAW,GAAK,cAAc,CAAE,CAAC;IACvD,MAAM,2BAA2B,GAAG,mBAAmB,CAAC,YAAY,EAAE,cAAc,CAAC,CAAC;IAEtF,6CAA6C;IAC7C,IAAI,MAAM,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,2BAA2B,EAAE,CAAC;QACxF,OAAO,WAAW,CAAC;IACrB,CAAC;IACD,OAAO,cAAc,CAAC;AACxB,CAAC,CAAA,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,YAAiC,EAAE,WAAkB,EAAE,EAAE;IAC3F,IAAI,kBAAkB,GAAG,KAAK,CAAC;IAC/B,MAAM,gBAAgB,GAAG,aAAa,CAAC,QAAQ,EAAE,CAAC,gBAAgB,IAAI,EAAE,CAAC;IACzE,KAAK,MAAM,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,MAAM,EACJ,SAAS,EACT,eAAe,EAAE,sBAAsB,EACvC,UAAU,EACV,OAAO,EACP,YAAY,EACZ,IAAI,GACL,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;QAC3B,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,sBAAsB,IAAI,EAAE,CAAC;QAC3D,IAAI,CAAC,SAAS,EAAE,CAAC;YACf,SAAS;QACX,CAAC;QACD,MAAM,kBAAkB,GACtB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,GAAG,EAAE,GAAG,IAAI,CAAC,GAAG,SAAS,CAAC;QACzE,MAAM,WAAW,GAAG,CAAC,KAAc,EAAE,EAAE,CAAC,KAAK,CAAC,SAAS,GAAG,kBAAkB,CAAC;QAE7E,MAAM,eAAe,GAAG,gBAAgB,CAAC,SAAS,CAAC,IAAI,EAAE,CAAC;QAC1D,MAAM,cAAc,GAAG,eAAe,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE;YACtD,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,EAAE,CAAC;gBACxB,OAAO,KAAK,CAAC;YACf,CAAC;YACD,IAAI,IAAI,EAAE,CAAC;gBACT,8DAA8D;gBAC9D,OAAO,KAAK,CAAC,OAAO,KAAK,OAAO,IAAI,KAAK,CAAC,KAAK,GAAG,YAAY,CAAC;YACjE,CAAC;YACD,OAAO,KAAK,CAAC,SAAS,KAAK,UAAU,CAAC;QACxC,CAAC,CAAC,CAAC;QACH,MAAM,mBAAmB,GAAG,IAAI,GAAG,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC;QACxE,MAAM,iBAAiB,GAAG,IAAI,GAAG,EAAmB,CAAC;QACrD,KAAK,MAAM,CAAC,IAAI,cAAc,EAAE,CAAC;YAC/B,IAAI,CAAC,CAAC,GAAG;gBAAE,iBAAiB,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QAC7C,CAAC;QAED,IAAI,UAAU,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QAC7C,mFAAmF;QACnF,MAAM,gBAAgB,GAAc,EAAE,CAAC;QACvC,KAAK,MAAM,KAAK,IAAI,UAAU,EAAE,CAAC;YAC/B,IAAI,KAAK,CAAC,KAAK,KAAK,SAAS,EAAE,CAAC;gBAC9B,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;gBAC7B,SAAS;YACX,CAAC;YACD,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC1C,kBAAkB,GAAG,IAAI,CAAC;gBAC1B,SAAS;YACX,CAAC;YACD,IAAI,KAAK,CAAC,GAAG,EAAE,CAAC;gBACd,MAAM,iBAAiB,GAAG,iBAAiB,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;gBAC3D,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,KAAK,KAAK,KAAK,CAAC,KAAK,EAAE,CAAC;oBACjE,gBAAgB,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;oBACzC,kBAAkB,GAAG,IAAI,CAAC;oBAC1B,SAAS;gBACX,CAAC;YACH,CAAC;YACD,gBAAgB,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QAC/B,CAAC;QACD,UAAU,GAAG,WAAW,CAAC,QAAQ,CAAC,GAAG,gBAAgB,CAAC;QAEtD,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,CAAC;YAC3B,SAAS;QACX,CAAC;QACD,4DAA4D;QAC5D,oEAAoE;QACpE,MAAM,aAAa,GAAG,IAAI,GAAG,EAAE,CAAC;QAChC,UAAU,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,eAAe,EAAE,EAAE;YAC5C,IAAI,KAAK,CAAC,GAAG;gBAAE,aAAa,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,EAAE,eAAe,CAAC,CAAC;YAC7D,IAAI,KAAK,CAAC,KAAK;gBAAE,aAAa,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC;YACjE,IAAI,CAAC,KAAK,CAAC,GAAG;gBAAE,aAAa,CAAC,GAAG,CAAC,KAAK,CAAC,SAAS,EAAE,eAAe,CAAC,CAAC;QACtE,CAAC,CAAC,CAAC;QACH,KAAK,MAAM,YAAY,IAAI,cAAc,EAAE,CAAC;YAC1C,uCAAuC;YACvC,IAAI,YAAY,CAAC,GAAG,IAAI,aAAa,CAAC,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,EAAE,CAAC;gBAC5D,SAAS;YACX,CAAC;YACD,mEAAmE;YACnE,IAAI,YAAY,CAAC,GAAG,IAAI,aAAa,CAAC,GAAG,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC9D,MAAM,eAAe,GAAG,aAAa,CAAC,GAAG,CAAC,YAAY,CAAC,KAAK,CAAC,CAAC;gBAC9D,gEAAgE;gBAChE,UAAU,CAAC,eAAe,CAAC,GAAG,YAAY,CAAC;gBAC3C,kBAAkB,GAAG,IAAI,CAAC;gBAC1B,SAAS;YACX,CAAC;YACD,IAAI,aAAa,CAAC,GAAG,CAAC,YAAY,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC1C,SAAS;YACX,CAAC;YACD,kDAAkD;YAClD,IAAI,CAAC,YAAY,CAAC,GAAG,IAAI,aAAa,CAAC,GAAG,CAAC,YAAY,CAAC,SAAS,CAAC,EAAE,CAAC;gBACnE,SAAS;YACX,CAAC;YACD,IAAI,MAAM,EAAE,CAAC;gBACX,UAAU,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;YAChC,CAAC;iBAAM,CAAC;gBACN,UAAU,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;YACnC,CAAC;YACD,kBAAkB,GAAG,IAAI,CAAC;QAC5B,CAAC;IACH,CAAC;IACD,OAAO,kBAAkB,CAAC;AAC5B,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,aAAoB,EAAE,WAAkB,EAAE,EAAE;;IAC7F,+EAA+E;IAC/E,MAAM,kBAAkB,GAAmC,EAAE,CAAC;IAC9D,KAAK,MAAM,QAAQ,IAAI,WAAW,EAAE,CAAC;QACnC,kBAAkB,CAAC,QAAQ,CAAC,GAAG,IAAI,GAAG,EAAE,CAAC;QACzC,KAAK,MAAM,KAAK,IAAI,WAAW,CAAC,QAAQ,CAAC,EAAE,CAAC;YAC1C,kBAAkB,CAAC,QAAQ,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;QAC9C,CAAC;IACH,CAAC;IAED,MAAM,gBAAgB,GAAU,EAAE,CAAC;IACnC,KAAK,MAAM,QAAQ,IAAI,aAAa,EAAE,CAAC;QACrC,gBAAgB,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC;QAChC,IAAI,wBAAwB,GAAG,KAAK,CAAC;QACrC,KAAK,MAAM,CAAC,CAAC,EAAE,KAAK,CAAC,IAAI,aAAa,CAAC,QAAQ,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC;YAC3D,IAAI,MAAA,kBAAkB,CAAC,QAAQ,CAAC,0CAAE,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,EAAE,CAAC;gBACjD,SAAS;YACX,CAAC;YACD,gBAAgB,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;YACvC,IACE,CAAC,wBAAwB;gBACzB,CAAC,CAAA,MAAA,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,0CAAE,GAAG,OAAK,MAAA,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,0CAAE,GAAG,CAAA;oBACrE,CAAC,CAAA,MAAA,gBAAgB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,0CAAE,SAAS,KAAI,CAAC,CAAC;wBAC7C,CAAC,CAAA,MAAA,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,0CAAE,SAAS,KAAI,CAAC,CAAC,CAAC,EACjD,CAAC;gBACD,wBAAwB,GAAG,IAAI,CAAC;YAClC,CAAC;QACH,CAAC;QACD,IACE,CAAC,wBAAwB;YACzB,gBAAgB,CAAC,QAAQ,CAAC,CAAC,MAAM,KAAK,aAAa,CAAC,QAAQ,CAAC,CAAC,MAAM,EACpE,CAAC;YACD,gBAAgB,CAAC,QAAQ,CAAC,GAAG,aAAa,CAAC,QAAQ,CAAC,CAAC;QACvD,CAAC;IACH,CAAC;IACD,OAAO,gBAAgB,CAAC;AAC1B,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,CAC7B,YAAiC,EACjC,mBAA0B,EAC1B,YAAmB,EACnB,WAAkB,EAClB,QAAkB,EAClB,EAAE;;IACF,MAAM,eAAe,qBAAe,YAAY,CAAE,CAAC;IACnD,MAAM,SAAS,GAAG,IAAI,GAAG,CAAC;QACxB,GAAG,MAAM,CAAC,IAAI,CAAC,mBAAmB,IAAI,EAAE,CAAC;QACzC,GAAG,MAAM,CAAC,IAAI,CAAC,WAAW,IAAI,EAAE,CAAC;QACjC,GAAG,MAAM,CAAC,IAAI,CAAC,YAAY,IAAI,EAAE,CAAC;KACnC,CAAC,CAAC;IACH,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE,CAAC;QACjC,MAAM,GAAG,GAAG,MAAA,QAAQ,CAAC,MAAA,YAAY,CAAC,QAAQ,CAAC,0CAAE,SAAS,CAAC,0CAAE,GAAG,CAAC;QAC7D,MAAM,UAAU,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QAC/C,MAAM,mBAAmB,GAAG,YAAY,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QACzD,MAAM,WAAW,GAAG,CAAC,GAAG,UAAU,CAAC,CAAC;QACpC,IAAI,kBAAkB,GAAG,KAAK,CAAC;QAE/B,uEAAuE;QACvE,6EAA6E;QAC7E,IAAI,mBAAmB,CAAC,MAAM,KAAK,WAAW,CAAC,MAAM,EAAE,CAAC;YACtD,kBAAkB,GAAG,IAAI,CAAC;QAC5B,CAAC;QAED,MAAM,oBAAoB,GAAG,IAAI,GAAG,EAAmB,CAAC;QACxD,KAAK,MAAM,KAAK,IAAI,mBAAmB,CAAC,QAAQ,CAAC,IAAI,EAAE,EAAE,CAAC;YACxD,IAAI,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,GAAG,EAAE,CAAC;gBACf,oBAAoB,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC;YAC7C,CAAC;QACH,CAAC;QAED,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,WAAW,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YAC5C,MAAM,WAAW,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC;YACnC,IAAI,CAAC,CAAA,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,GAAG,CAAA,EAAE,CAAC;gBACtB,SAAS;YACX,CAAC;YAED,MAAM,oBAAoB,GAAG,mBAAmB,CAAC,CAAC,CAAC,CAAC;YACpD,IACE,CAAA,oBAAoB,aAApB,oBAAoB,uBAApB,oBAAoB,CAAE,GAAG,MAAK,WAAW,CAAC,GAAG;gBAC7C,CAAC,oBAAoB,CAAC,SAAS,IAAI,CAAC,CAAC,GAAG,CAAC,WAAW,CAAC,SAAS,IAAI,CAAC,CAAC,EACpE,CAAC;gBACD,WAAW,CAAC,CAAC,CAAC,GAAG,oBAAoB,CAAC;gBACtC,kBAAkB,GAAG,IAAI,CAAC;YAC5B,CAAC;YAED,MAAM,cAAc,GAAG,oBAAoB,CAAC,GAAG,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC;YACjE,IAAI,CAAC,cAAc,EAAE,CAAC;gBACpB,SAAS;YACX,CAAC;YACD,IAAI,CAAC,cAAc,CAAC,SAAS,IAAI,CAAC,CAAC,IAAI,CAAC,CAAA,MAAA,WAAW,CAAC,CAAC,CAAC,0CAAE,SAAS,KAAI,CAAC,CAAC,EAAE,CAAC;gBACxE,SAAS;YACX,CAAC;YACD,IAAI,CAAC,CAAC,MAAM,cAAc,CAAC,cAAc,EAAE,EAAE,eAAe,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC,EAAE,CAAC;gBAC7E,SAAS;YACX,CAAC;YACD,WAAW,CAAC,CAAC,CAAC,GAAG,cAAc,CAAC;YAChC,kBAAkB,GAAG,IAAI,CAAC;QAC5B,CAAC;QAED,IAAI,kBAAkB,EAAE,CAAC;YACvB,eAAe,CAAC,QAAQ,CAAC,GAAG,WAAW,CAAC;YACxC,SAAS;QACX,CAAC;QAED,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,EAAE,CAAC;YAC5B,eAAe,CAAC,QAAQ,CAAC,GAAG,WAAW,CAAC;QAC1C,CAAC;IACH,CAAC;IACD,OAAO,eAAe,CAAC;AACzB,CAAC,CAAA,CAAC;AAEF,kEAAkE;AAClE,0FAA0F;AAC1F,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,YAAiC,EAAE,KAAY,EAAE,EAAE;;IACrF,MAAM,gBAAgB,GAAmC,EAAE,CAAC;IAC5D,KAAK,MAAM,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,gBAAgB,CAAC,QAAQ,CAAC,GAAG,CAAA,MAAA,KAAK,CAAC,QAAQ,CAAC,0CAAE,MAAM,KAAI,CAAC,CAAC;IAC5D,CAAC;IACD,OAAO,gBAAgB,CAAC;AAC1B,CAAC,CAAC;AAEF;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAC9B,YAAiC,EACjC,aAAoB,EACpB,QAAkB,EAClB,YAA0B,EAC1B,QAAkB,EAClB,EAAE;;IACF,MAAM,aAAa,GAAoC,EAAE,CAAC;IAC1D,KAAK,MAAM,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,iEAAiE;QACjE,IAAI,MAAA,aAAa,CAAC,QAAQ,CAAC,0CAAE,MAAM,EAAE,CAAC;YACpC,aAAa,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;YAC/B,SAAS;QACX,CAAC;QAED,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,GAAG,YAAY,CAAC,QAAQ,CAAC,CAAC;QAEpE,8CAA8C;QAE9C,MAAM,OAAO,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC;QACrC,sEAAsE;QACtE,IAAI,CAAC,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,CAAA,EAAE,CAAC;YACxB,aAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC;YACxC,SAAS;QACX,CAAC;QAED,QAAQ,GAAG,sBAAsB,CAAC,OAAO,EAAE,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC;QAEnE,MAAM,YAAY,GAAG,sBAAsB,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;QAC/D,sFAAsF;QACtF,+FAA+F;QAC/F,kCAAkC;QAClC,IAAI,CAAC,YAAY,EAAE,CAAC;YAClB,aAAa,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC;YAChC,SAAS;QACX,CAAC;QACD,MAAM,KAAK,GAAG,eAAe,CAAC,OAAO,EAAE,QAAQ,EAAE,YAAY,CAAC,CAAC;QAC/D,+DAA+D;QAC/D,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;YAClB,aAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC;YACxC,SAAS;QACX,CAAC;QACD,MAAM,QAAQ,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QACzC,IAAI,QAAQ,CAAC,OAAO,EAAE,CAAC;YACrB,aAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,YAAY,CAAC;YACxC,SAAS;QACX,CAAC;QAED,sGAAsG;QACtG,aAAa,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC;IAClC,CAAC;IACD,OAAO,aAAa,CAAC;AACvB,CAAC,CAAC;AAEF,sHAAsH;AACtH,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,YAAiC,EAAE,QAAkB,EAAE,EAAE;IACxF,MAAM,aAAa,GAAG,IAAI,GAAG,EAAmB,CAAC;IACjD,KAAK,MAAM,QAAQ,IAAI,YAAY,EAAE,CAAC;QACpC,aAAa,CAAC,GAAG,CACf,YAAY,CAAC,QAAQ,CAAC,CAAC,UAAU,EACjC,QAAQ,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,UAAU,CAAC,CAC5C,CAAC;IACJ,CAAC;IACD,OAAO,aAAa,CAAC;AACvB,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAClC,qBAA2C,EAC3C,aAAmC,EACnC,EAAE;IACF,IAAI,qBAAqB,CAAC,IAAI,KAAK,aAAa,CAAC,IAAI,EAAE,CAAC;QACtD,OAAO,IAAI,CAAC;IACd,CAAC;IACD,KAAK,IAAI,UAAU,IAAI,qBAAqB,CAAC,IAAI,EAAE,EAAE,CAAC;QACpD,wCAAwC;QACxC,IAAI,qBAAqB,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,aAAa,CAAC,GAAG,CAAC,UAAU,CAAC,EAAE,CAAC;YAC5E,OAAO,IAAI,CAAC;QACd,CAAC;IACH,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,sHAAsH;AACtH,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,aAAmC,EAAY,EAAE;IAC7F,8CAA8C;IAC9C,MAAM,0BAA0B,GAAG,IAAI,GAAG,EAAU,CAAC;IACrD,KAAK,MAAM,OAAO,IAAI,aAAa,CAAC,MAAM,EAAE,EAAE,CAAC;QAC7C,IAAI,CAAC,CAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,CAAA,EAAE,CAAC;YACtB,SAAS;QACX,CAAC;QAED,cAAc;QACd,IAAI,OAAO,CAAC,OAAO,CAAC,KAAK,EAAE,CAAC;YAC1B,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,MAAM,CAAc,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;gBACrE,IAAI,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,EAAE,CAAC;oBAClB,0BAA0B,CAAC,GAAG,CAAC,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,OAAO,CAAC,CAAC;gBAChD,CAAC;YACH,CAAC;QACH,CAAC;QAED,iBAAiB;QACjB,IAAI,OAAO,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;YAC7B,KAAK,MAAM,OAAO,IAAI,MAAM,CAAC,MAAM,CAAS,OAAO,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAC;gBACtE,IAAI,OAAO,EAAE,CAAC;oBACZ,0BAA0B,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;gBAC1C,CAAC;YACH,CAAC;QACH,CAAC;IACH,CAAC;IAED,OAAO,CAAC,GAAG,0BAA0B,CAAC,CAAC,IAAI,EAAE,CAAC;AAChD,CAAC,CAAC;AAEF,2HAA2H;AAC3H,MAAM,CAAC,MAAM,2CAA2C,GAAG,CACzD,aAAmC,EAC3B,EAAE;;IACV,IAAI,wCAAwC,GAAG,EAAE,CAAC;IAClD,KAAK,MAAM,OAAO,IAAI,aAAa,CAAC,MAAM,EAAE,EAAE,CAAC;QAC7C,KAAK,MAAM,IAAI,IAAI,MAAM,CAAC,MAAM,CAAc,CAAA,MAAA,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,OAAO,0CAAE,KAAK,KAAI,EAAE,CAAC,EAAE,CAAC;YAC7E,IAAI,MAAA,MAAA,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,QAAQ,0CAAG,CAAC,CAAC,0CAAE,SAAS,EAAE,CAAC;gBACnC,wCAAwC;oBACtC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,GAAG,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,CAAC;QACH,CAAC;IACH,CAAC;IACD,OAAO,wCAAwC,CAAC;AAClD,CAAC,CAAC;AAEF,+CAA+C;AAC/C,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,aAAmC,EAAU,EAAE;IACzF,IAAI,KAAK,GAAG,CAAC,CAAC;IACd,KAAK,MAAM,OAAO,IAAI,aAAa,CAAC,MAAM,EAAE,EAAE,CAAC;QAC7C,IAAI,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,SAAS,EAAE,CAAC;YACvB,KAAK,EAAE,CAAC;QACV,CAAC;IACH,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC,CAAC;AAEF,qEAAqE;AACrE,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,OAAgB,EAAE,WAA+B,EAAE,EAAE;;IAC1F,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,WAAW,CAAC;IAErC,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,oEAAoE;IACpE,IACE,QAAQ,KAAK,MAAM;QACnB,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,IAAI,CAAA;QAC7B,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,IAAI,CAAA;QAChC,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,MAAM,MAAI,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,MAAM,CAAA,CAAC,EACrE,CAAC;QACD,QAAQ,GAAG,QAAQ,CAAC;IACtB,CAAC;SAAM,IACL,QAAQ,KAAK,QAAQ;QACrB,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,MAAM,CAAA;QAC/B,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,MAAM,CAAA;QAClC,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,IAAI,MAAI,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,IAAI,CAAA,CAAC,EACjE,CAAC;QACD,QAAQ,GAAG,MAAM,CAAC;IACpB,CAAC;IAED,mDAAmD;SAC9C,IACH,QAAQ,KAAK,KAAK;QAClB,IAAI;QACJ,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,OAAO,MAAI,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,OAAO,CAAA,CAAC,EACvE,CAAC;QACD,QAAQ,GAAG,SAAS,CAAC;IACvB,CAAC;IACD,mDAAmD;SAC9C,IACH,QAAQ,KAAK,KAAK;QAClB,IAAI;QACJ,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,OAAO,MAAI,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,OAAO,CAAA,CAAC,EACvE,CAAC;QACD,QAAQ,GAAG,SAAS,CAAC;IACvB,CAAC;IAED,qCAAqC;SAChC,IACH,QAAQ,KAAK,SAAS;QACtB,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,OAAO,CAAA;QAChC,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,OAAO,CAAA;QACnC,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,GAAG,MAAI,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,QAAQ,0CAAE,GAAG,CAAA,CAAC,EAC/D,CAAC;QACD,QAAQ,GAAG,KAAK,CAAC;IACnB,CAAC;IACD,qCAAqC;SAChC,IACH,QAAQ,KAAK,SAAS;QACtB,CAAC,CAAA,MAAA,MAAA,OAAO,CAAC,OAAO,0CAAE,KAAK,0CAAE,OAAO,CAAA;QAChC,CAAC,CAAA,OAAA,OAAA,OAAO,CAAC,OAAO,4CAAE,QAAQ,4CAAE,OAAO,CAAA;QACnC,CAAC,CAAA,OAAA,OAAA,OAAO,CAAC,OAAO,4CAAE,KAAK,4CAAE,GAAG,MAAI,OAAA,OAAA,OAAO,CAAC,OAAO,4CAAE,QAAQ,4CAAE,GAAG,CAAA,CAAC,EAC/D,CAAC;QACD,QAAQ,GAAG,KAAK,CAAC;IACnB,CAAC;IAED,yEAAyE;IACzE,4FAA4F;IAC5F,8FAA8F;IAC9F,6BAA6B;IAC7B,mCAAmC;IACnC,MAAM;IACN,WAAW;IACX,yGAAyG;IACzG,kCAAkC;IAClC,wCAAwC;IACxC,QAAQ;IACR,MAAM;IACN,IAAI;IACJ,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC","sourcesContent":["import assert from \"assert\";\nimport {\n Feed,\n Feeds,\n RepliesFeedOptions,\n RepliesFeedsOptions,\n Comment,\n Comments,\n Account,\n Accounts,\n RepliesPage,\n RepliesPages,\n} from \"../../types\";\nimport { getRepliesPages, getRepliesFirstPageCid } from \"../replies-pages\";\nimport repliesSorter from \"../feeds/feed-sorter\";\nimport accountsStore from \"../accounts\";\nimport { flattenCommentsPages, commentIsValid, removeInvalidComments } from \"../../lib/utils\";\nimport { areEquivalentCommunityAddresses } from \"../../lib/community-address\";\nimport Logger from \"@pkcprotocol/pkc-logger\";\nconst log = Logger(\"bitsocial-react-hooks:replies:stores\");\n\n/**\n * Calculate the feeds from all the loaded replies pages, filter and sort them\n */\nexport const getFilteredSortedFeeds = (\n feedsOptions: RepliesFeedsOptions,\n comments: Comments,\n repliesPages: RepliesPages,\n accounts: Accounts,\n) => {\n // calculate each feed\n let feeds: Feeds = {};\n for (const feedName in feedsOptions) {\n let { commentCid, sortType, accountId, filter, flat } = feedsOptions[feedName];\n\n // find all fetched replies\n let bufferedFeedReplies = [];\n const comment = comments[commentCid];\n\n sortType = getSortTypeFromComment(comment, feedsOptions[feedName]);\n\n // comment has loaded and cache not expired\n if (comment) {\n // use comment preloaded replies if any\n const preloadedReplies = getPreloadedReplies(comment, sortType);\n if (preloadedReplies) {\n for (const reply of preloadedReplies) {\n // replies are manually validated, could have fake communityAddress\n if (!areEquivalentCommunityAddresses(reply.communityAddress, comment.communityAddress)) {\n break;\n }\n bufferedFeedReplies.push(reply);\n }\n }\n\n // add all replies from comment replies pages\n const _repliesPages = getRepliesPages(comment, sortType, repliesPages);\n for (const repliesPage of _repliesPages) {\n if (repliesPage?.comments) {\n for (const reply of repliesPage.comments) {\n // replies are manually validated, could have fake communityAddress\n if (\n !areEquivalentCommunityAddresses(reply.communityAddress, comment.communityAddress)\n ) {\n break;\n }\n bufferedFeedReplies.push(reply);\n }\n }\n }\n }\n\n if (flat) {\n bufferedFeedReplies = flattenCommentsPages({ comments: bufferedFeedReplies });\n }\n\n // sort the feed before filtering to get more accurate results\n const sortedBufferedFeedReplies = repliesSorter.sort(sortType, bufferedFeedReplies);\n\n // filter the feed\n const filteredSortedBufferedFeedReplies = [];\n for (const reply of sortedBufferedFeedReplies) {\n // TODO: maybe skip if comment community address, comment cid or comment author is blocked?\n\n // feedOptions filter function\n if (filter && !filter.filter(reply)) {\n continue;\n }\n\n filteredSortedBufferedFeedReplies.push(reply);\n }\n\n feeds[feedName] = filteredSortedBufferedFeedReplies;\n }\n return feeds;\n};\n\nconst getPreloadedReplies = (comment: Comment, sortType: string) => {\n let preloadedReplies = comment.replies?.pages?.[sortType]?.comments;\n if (preloadedReplies) {\n return preloadedReplies;\n }\n // TODO: should we check pageCids? it's possible to have pageCids\n // and use 'best' preloadedReplies, if they have no nextCid (all replies are preloaded)\n // changing this might bug out nested immediate react renders\n // only check on comment.depth: 0 for now\n const hasPageCids = Object.keys(comment.replies?.pageCids || {}).length !== 0;\n if (hasPageCids && comment.depth === 0) {\n return;\n }\n const pages: any[] = Object.values(comment.replies?.pages || {});\n if (!pages.length) {\n return;\n }\n const nextCids = pages.map((page: any) => page?.nextCid).filter((nextCid) => !!nextCid);\n if (nextCids.length > 0) {\n return;\n }\n // if has a preloaded page, but no pageCids and no nextCids, it means all replies fit in a single preloaded page\n // so any sort type can be used, and later be resorted by the client\n if (pages[0]?.comments?.length) {\n return pages[0].comments;\n }\n};\n\nconst previousPageNumbers: { [feedName: string]: number } = {};\nconst pageNumberIncreased = (\n feedName: string,\n pageNumber: number,\n loadedFeed: Comment[],\n bufferedFeed: Comment[],\n) => {\n const isFirstPage = !loadedFeed && bufferedFeed?.length;\n // first page should always update\n // pageNumber has changed should always update\n if (isFirstPage || previousPageNumbers[feedName] !== pageNumber) {\n previousPageNumbers[feedName] = pageNumber;\n return true;\n }\n return false;\n};\n\nconst alwaysStreamPage = (feedOptions: RepliesFeedOptions) => {\n // feedOptions.streamPage set to true means always stream page\n if (feedOptions.streamPage) {\n return true;\n }\n // always stream top level replies and/or flat\n return feedOptions.commentDepth > 0 && !feedOptions.flat ? false : true;\n};\n\nexport const getLoadedFeeds = async (\n feedsOptions: RepliesFeedsOptions,\n loadedFeeds: Feeds,\n bufferedFeeds: Feeds,\n accounts: Accounts,\n) => {\n const loadedFeedsMissingReplies: Feeds = {};\n for (const feedName in feedsOptions) {\n const { pageNumber, repliesPerPage, accountId, streamPage } = feedsOptions[feedName];\n\n // TODO: fix design issue, pageNumber shouldnt be increased when loadMore is called and repliesPerPage not reached\n // if not always streaming replies, and page number didn't increase, skip updating\n // so UI isn't displaced when new nested replies are added\n if (\n !alwaysStreamPage(feedsOptions[feedName]) &&\n !pageNumberIncreased(feedName, pageNumber, loadedFeeds[feedName], bufferedFeeds[feedName])\n ) {\n continue;\n }\n\n const pkc = accounts[accountId]?.pkc;\n const loadedFeedReplyCount = pageNumber * repliesPerPage;\n const currentLoadedFeed = loadedFeeds[feedName] || [];\n // don't count account replies\n const missingRepliesCount =\n loadedFeedReplyCount - currentLoadedFeed.filter((reply) => reply.index === undefined).length;\n\n // get new replies from buffered feed\n const bufferedFeed = bufferedFeeds[feedName] || [];\n\n let missingReplies: any[] = [];\n for (const reply of bufferedFeed) {\n if (missingReplies.length >= missingRepliesCount) {\n missingReplies = await removeInvalidComments(\n missingReplies,\n { validateReplies: false },\n pkc,\n );\n // only stop if there were no invalid comments\n if (missingReplies.length >= missingRepliesCount) {\n break;\n }\n }\n missingReplies.push(reply);\n }\n\n // the current loaded feed already exist and doesn't need new replies\n if (missingReplies.length === 0 && loadedFeeds[feedName]) {\n continue;\n }\n loadedFeedsMissingReplies[feedName] = missingReplies;\n }\n\n let newLoadedFeeds: Feeds = {};\n for (const feedName in loadedFeedsMissingReplies) {\n newLoadedFeeds[feedName] = [\n ...(loadedFeeds[feedName] || []),\n ...loadedFeedsMissingReplies[feedName],\n ];\n }\n\n // add account comments\n newLoadedFeeds = { ...loadedFeeds, ...newLoadedFeeds };\n const accountCommentsChangedFeeds = addAccountsComments(feedsOptions, newLoadedFeeds);\n\n // do nothing if there are no missing replies\n if (Object.keys(loadedFeedsMissingReplies).length === 0 && !accountCommentsChangedFeeds) {\n return loadedFeeds;\n }\n return newLoadedFeeds;\n};\n\nexport const addAccountsComments = (feedsOptions: RepliesFeedsOptions, loadedFeeds: Feeds) => {\n let loadedFeedsChanged = false;\n const accountsComments = accountsStore.getState().accountsComments || {};\n for (const feedName in feedsOptions) {\n const {\n accountId,\n accountComments: accountCommentsOptions,\n commentCid,\n postCid,\n commentDepth,\n flat,\n } = feedsOptions[feedName];\n const { newerThan, append } = accountCommentsOptions || {};\n if (!newerThan) {\n continue;\n }\n const newerThanTimestamp =\n newerThan === Infinity ? 0 : Math.floor(Date.now() / 1000) - newerThan;\n const isNewerThan = (reply: Comment) => reply.timestamp > newerThanTimestamp;\n\n const accountComments = accountsComments[accountId] || [];\n const accountReplies = accountComments.filter((reply) => {\n if (!isNewerThan(reply)) {\n return false;\n }\n if (flat) {\n // if flat, add all account replies with greater comment depth\n return reply.postCid === postCid && reply.depth > commentDepth;\n }\n return reply.parentCid === commentCid;\n });\n const validAccountIndices = new Set(accountReplies.map((r) => r.index));\n const accountCidToReply = new Map<string, Comment>();\n for (const r of accountReplies) {\n if (r.cid) accountCidToReply.set(r.cid, r);\n }\n\n let loadedFeed = loadedFeeds[feedName] || [];\n // prune stale local-account entries and replace when cid matches but index changed\n const prunedLoadedFeed: Comment[] = [];\n for (const reply of loadedFeed) {\n if (reply.index === undefined) {\n prunedLoadedFeed.push(reply);\n continue;\n }\n if (!validAccountIndices.has(reply.index)) {\n loadedFeedsChanged = true;\n continue;\n }\n if (reply.cid) {\n const freshAccountReply = accountCidToReply.get(reply.cid);\n if (freshAccountReply && freshAccountReply.index !== reply.index) {\n prunedLoadedFeed.push(freshAccountReply);\n loadedFeedsChanged = true;\n continue;\n }\n }\n prunedLoadedFeed.push(reply);\n }\n loadedFeed = loadedFeeds[feedName] = prunedLoadedFeed;\n\n if (!accountReplies.length) {\n continue;\n }\n // if a loaded comment doesn't have a cid, then it's pending\n // and pending account comments should always have unique timestamps\n const loadedFeedMap = new Map();\n loadedFeed.forEach((reply, loadedFeedIndex) => {\n if (reply.cid) loadedFeedMap.set(reply.cid, loadedFeedIndex);\n if (reply.index) loadedFeedMap.set(reply.index, loadedFeedIndex);\n if (!reply.cid) loadedFeedMap.set(reply.timestamp, loadedFeedIndex);\n });\n for (const accountReply of accountReplies) {\n // account reply with cid already added\n if (accountReply.cid && loadedFeedMap.has(accountReply.cid)) {\n continue;\n }\n // account reply without cid already added, but now we have the cid\n if (accountReply.cid && loadedFeedMap.has(accountReply.index)) {\n const loadedFeedIndex = loadedFeedMap.get(accountReply.index);\n // update the feed with the accountReply.cid now that we have it\n loadedFeed[loadedFeedIndex] = accountReply;\n loadedFeedsChanged = true;\n continue;\n }\n if (loadedFeedMap.has(accountReply.index)) {\n continue;\n }\n // pending account reply without cid already added\n if (!accountReply.cid && loadedFeedMap.has(accountReply.timestamp)) {\n continue;\n }\n if (append) {\n loadedFeed.push(accountReply);\n } else {\n loadedFeed.unshift(accountReply);\n }\n loadedFeedsChanged = true;\n }\n }\n return loadedFeedsChanged;\n};\n\nexport const getBufferedFeedsWithoutLoadedFeeds = (bufferedFeeds: Feeds, loadedFeeds: Feeds) => {\n // contruct a list of replies already loaded to remove them from buffered feeds\n const loadedFeedsReplies: { [key: string]: Set<string> } = {};\n for (const feedName in loadedFeeds) {\n loadedFeedsReplies[feedName] = new Set();\n for (const reply of loadedFeeds[feedName]) {\n loadedFeedsReplies[feedName].add(reply.cid);\n }\n }\n\n const newBufferedFeeds: Feeds = {};\n for (const feedName in bufferedFeeds) {\n newBufferedFeeds[feedName] = [];\n let bufferedFeedReplyChanged = false;\n for (const [i, reply] of bufferedFeeds[feedName].entries()) {\n if (loadedFeedsReplies[feedName]?.has(reply.cid)) {\n continue;\n }\n newBufferedFeeds[feedName].push(reply);\n if (\n !bufferedFeedReplyChanged &&\n (newBufferedFeeds[feedName][i]?.cid !== bufferedFeeds[feedName][i]?.cid ||\n (newBufferedFeeds[feedName][i]?.updatedAt || 0) >\n (bufferedFeeds[feedName][i]?.updatedAt || 0))\n ) {\n bufferedFeedReplyChanged = true;\n }\n }\n if (\n !bufferedFeedReplyChanged &&\n newBufferedFeeds[feedName].length === bufferedFeeds[feedName].length\n ) {\n newBufferedFeeds[feedName] = bufferedFeeds[feedName];\n }\n }\n return newBufferedFeeds;\n};\n\nexport const getUpdatedFeeds = async (\n feedsOptions: RepliesFeedsOptions,\n filteredSortedFeeds: Feeds,\n updatedFeeds: Feeds,\n loadedFeeds: Feeds,\n accounts: Accounts,\n) => {\n const newUpdatedFeeds: Feeds = { ...updatedFeeds };\n const feedNames = new Set([\n ...Object.keys(filteredSortedFeeds || {}),\n ...Object.keys(loadedFeeds || {}),\n ...Object.keys(updatedFeeds || {}),\n ]);\n for (const feedName of feedNames) {\n const pkc = accounts[feedsOptions[feedName]?.accountId]?.pkc;\n const loadedFeed = loadedFeeds[feedName] || [];\n const previousUpdatedFeed = updatedFeeds[feedName] || [];\n const updatedFeed = [...loadedFeed];\n let updatedFeedChanged = false;\n\n // Keep updated feeds in lock-step with loaded feeds so local deletions\n // (e.g. abandoned pending replies) disappear without requiring a feed reset.\n if (previousUpdatedFeed.length !== updatedFeed.length) {\n updatedFeedChanged = true;\n }\n\n const filteredRepliesByCid = new Map<string, Comment>();\n for (const reply of filteredSortedFeeds[feedName] || []) {\n if (reply?.cid) {\n filteredRepliesByCid.set(reply.cid, reply);\n }\n }\n\n for (let i = 0; i < updatedFeed.length; i++) {\n const loadedReply = updatedFeed[i];\n if (!loadedReply?.cid) {\n continue;\n }\n\n const previousUpdatedReply = previousUpdatedFeed[i];\n if (\n previousUpdatedReply?.cid === loadedReply.cid &&\n (previousUpdatedReply.updatedAt || 0) > (loadedReply.updatedAt || 0)\n ) {\n updatedFeed[i] = previousUpdatedReply;\n updatedFeedChanged = true;\n }\n\n const candidateReply = filteredRepliesByCid.get(loadedReply.cid);\n if (!candidateReply) {\n continue;\n }\n if ((candidateReply.updatedAt || 0) <= (updatedFeed[i]?.updatedAt || 0)) {\n continue;\n }\n if (!(await commentIsValid(candidateReply, { validateReplies: false }, pkc))) {\n continue;\n }\n updatedFeed[i] = candidateReply;\n updatedFeedChanged = true;\n }\n\n if (updatedFeedChanged) {\n newUpdatedFeeds[feedName] = updatedFeed;\n continue;\n }\n\n if (!updatedFeeds[feedName]) {\n newUpdatedFeeds[feedName] = updatedFeed;\n }\n }\n return newUpdatedFeeds;\n};\n\n// find how many replies are in each comments in a buffereds feeds\n// NOTE: not useful, could use feed.length, copied over from useFeed and easier to keep it\nexport const getFeedsReplyCounts = (feedsOptions: RepliesFeedsOptions, feeds: Feeds) => {\n const feedsReplyCounts: { [feedName: string]: number } = {};\n for (const feedName in feedsOptions) {\n feedsReplyCounts[feedName] = feeds[feedName]?.length || 0;\n }\n return feedsReplyCounts;\n};\n\n/**\n * Get which feeds have more replies, i.e. have not reached the final page of all comments\n */\nexport const getFeedsHaveMore = (\n feedsOptions: RepliesFeedsOptions,\n bufferedFeeds: Feeds,\n comments: Comments,\n repliesPages: RepliesPages,\n accounts: Accounts,\n) => {\n const feedsHaveMore: { [feedName: string]: boolean } = {};\n for (const feedName in feedsOptions) {\n // if the feed still has buffered replies, then it still has more\n if (bufferedFeeds[feedName]?.length) {\n feedsHaveMore[feedName] = true;\n continue;\n }\n\n let { commentCid, sortType, onlyIfCached } = feedsOptions[feedName];\n\n // TODO: maybe skip if comment cid is blocked?\n\n const comment = comments[commentCid];\n // if at least comment hasn't loaded yet, then the feed still has more\n if (!comment?.updatedAt) {\n feedsHaveMore[feedName] = !onlyIfCached;\n continue;\n }\n\n sortType = getSortTypeFromComment(comment, feedsOptions[feedName]);\n\n const firstPageCid = getRepliesFirstPageCid(comment, sortType);\n // TODO: if a loaded comment doesn't have a first page, it's unclear what we should do\n // should we try to use another sort type by default, like 'best', or should we just ignore it?\n // 'continue' to ignore it for now\n if (!firstPageCid) {\n feedsHaveMore[feedName] = false;\n continue;\n }\n const pages = getRepliesPages(comment, sortType, repliesPages);\n // if first page isn't loaded yet, then the feed still has more\n if (!pages.length) {\n feedsHaveMore[feedName] = !onlyIfCached;\n continue;\n }\n const lastPage = pages[pages.length - 1];\n if (lastPage.nextCid) {\n feedsHaveMore[feedName] = !onlyIfCached;\n continue;\n }\n\n // if buffered feeds are empty and no last page of any comment has a next page, then has more is false\n feedsHaveMore[feedName] = false;\n }\n return feedsHaveMore;\n};\n\n// get all comments replies pages cids of all feeds, use to check if a commentsStore change should trigger updateFeeds\nexport const getFeedsComments = (feedsOptions: RepliesFeedsOptions, comments: Comments) => {\n const feedsComments = new Map<string, Comment>();\n for (const feedName in feedsOptions) {\n feedsComments.set(\n feedsOptions[feedName].commentCid,\n comments[feedsOptions[feedName].commentCid],\n );\n }\n return feedsComments;\n};\n\nexport const feedsCommentsChanged = (\n previousFeedsComments: Map<string, Comment>,\n feedsComments: Map<string, Comment>,\n) => {\n if (previousFeedsComments.size !== feedsComments.size) {\n return true;\n }\n for (let commentCid of previousFeedsComments.keys()) {\n // check if the object is still the same\n if (previousFeedsComments.get(commentCid) !== feedsComments.get(commentCid)) {\n return true;\n }\n }\n return false;\n};\n\n// get all comments replies pages cids of all feeds, use to check if a commentsStore change should trigger updateFeeds\nexport const getFeedsCommentsFirstPageCids = (feedsComments: Map<string, Comment>): string[] => {\n // find all the feeds comments first page cids\n const feedsCommentsFirstPageCids = new Set<string>();\n for (const comment of feedsComments.values()) {\n if (!comment?.replies) {\n continue;\n }\n\n // check pages\n if (comment.replies.pages) {\n for (const page of Object.values<RepliesPage>(comment.replies.pages)) {\n if (page?.nextCid) {\n feedsCommentsFirstPageCids.add(page?.nextCid);\n }\n }\n }\n\n // check pageCids\n if (comment.replies.pageCids) {\n for (const pageCid of Object.values<string>(comment.replies.pageCids)) {\n if (pageCid) {\n feedsCommentsFirstPageCids.add(pageCid);\n }\n }\n }\n }\n\n return [...feedsCommentsFirstPageCids].sort();\n};\n\n// get all comments replies pages first reply updatedAts, use to check if a commentsStore change should trigger updateFeeds\nexport const getFeedsCommentsRepliesPagesFirstUpdatedAts = (\n feedsComments: Map<string, Comment>,\n): string => {\n let feedsCommentsRepliesPagesFirstUpdatedAts = \"\";\n for (const comment of feedsComments.values()) {\n for (const page of Object.values<RepliesPage>(comment?.replies?.pages || {})) {\n if (page?.comments?.[0]?.updatedAt) {\n feedsCommentsRepliesPagesFirstUpdatedAts +=\n page.comments[0].cid + page.comments[0].updatedAt;\n }\n }\n }\n return feedsCommentsRepliesPagesFirstUpdatedAts;\n};\n\n// get number of feeds comments that are loaded\nexport const getFeedsCommentsLoadedCount = (feedsComments: Map<string, Comment>): number => {\n let count = 0;\n for (const comment of feedsComments.values()) {\n if (comment?.updatedAt) {\n count++;\n }\n }\n return count;\n};\n\n// selected sort type could be missing from comment, or not optimized\nexport const getSortTypeFromComment = (comment: Comment, feedOptions: RepliesFeedOptions) => {\n let { sortType, flat } = feedOptions;\n\n if (!comment) {\n return sortType;\n }\n\n // 'topAll' and 'best' are similar enough to be used interchangeably\n if (\n sortType === \"best\" &&\n !comment.replies?.pages?.best &&\n !comment.replies?.pageCids?.best &&\n (comment.replies?.pages?.topAll || comment.replies?.pageCids?.topAll)\n ) {\n sortType = \"topAll\";\n } else if (\n sortType === \"topAll\" &&\n !comment.replies?.pages?.topAll &&\n !comment.replies?.pageCids?.topAll &&\n (comment.replies?.pages?.best || comment.replies?.pageCids?.best)\n ) {\n sortType = \"best\";\n }\n\n // if 'new' sort type and flat: true, use 'newFlat'\n else if (\n sortType === \"new\" &&\n flat &&\n (comment.replies?.pages?.newFlat || comment.replies?.pageCids?.newFlat)\n ) {\n sortType = \"newFlat\";\n }\n // if 'old' sort type and flat: true, use 'oldFlat'\n else if (\n sortType === \"old\" &&\n flat &&\n (comment.replies?.pages?.oldFlat || comment.replies?.pageCids?.oldFlat)\n ) {\n sortType = \"oldFlat\";\n }\n\n // if 'newFlat' is missing, use 'new'\n else if (\n sortType === \"newFlat\" &&\n !comment.replies?.pages?.newFlat &&\n !comment.replies?.pageCids?.newFlat &&\n (comment.replies?.pages?.new || comment.replies?.pageCids?.new)\n ) {\n sortType = \"new\";\n }\n // if 'oldFlat' is missing, use 'old'\n else if (\n sortType === \"oldFlat\" &&\n !comment.replies?.pages?.oldFlat &&\n !comment.replies?.pageCids?.oldFlat &&\n (comment.replies?.pages?.old || comment.replies?.pageCids?.old)\n ) {\n sortType = \"old\";\n }\n\n // TODO: if sort type doesn't exist on comment, maybe use first existing?\n // else if (!comment.replies?.pages?.[sortType] && !comment.replies?.pageCids?.[sortType]) {\n // const firstPageSortType = comment.replies?.pages && Object.keys(comment.replies.pages)[0]\n // if (firstPageSortType) {\n // sortType = firstPageSortType\n // }\n // else {\n // const firstPageCidSortType = comment.replies?.pageCids && Object.keys(comment.replies.pageCids)[0]\n // if (firstPageCidSortType) {\n // sortType = firstPageCidSortType\n // }\n // }\n // }\n return sortType;\n};\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/stores/replies-pages/index.ts"],"names":[],"mappings":"AAAA,OAAO,iBAAiB,MAAM,uBAAuB,CAAC;AACtD,cAAc,uBAAuB,CAAC;AACtC,eAAe,iBAAiB,CAAC"}
|