@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.
Files changed (269) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +1365 -0
  3. package/dist/hooks/accounts/accounts.d.ts +64 -0
  4. package/dist/hooks/accounts/accounts.d.ts.map +1 -0
  5. package/dist/hooks/accounts/accounts.js +706 -0
  6. package/dist/hooks/accounts/accounts.js.map +1 -0
  7. package/dist/hooks/accounts/index.d.ts +2 -0
  8. package/dist/hooks/accounts/index.d.ts.map +1 -0
  9. package/dist/hooks/accounts/index.js +2 -0
  10. package/dist/hooks/accounts/index.js.map +1 -0
  11. package/dist/hooks/accounts/utils.d.ts +6 -0
  12. package/dist/hooks/accounts/utils.d.ts.map +1 -0
  13. package/dist/hooks/accounts/utils.js +226 -0
  14. package/dist/hooks/accounts/utils.js.map +1 -0
  15. package/dist/hooks/actions/actions.d.ts +19 -0
  16. package/dist/hooks/actions/actions.d.ts.map +1 -0
  17. package/dist/hooks/actions/actions.js +552 -0
  18. package/dist/hooks/actions/actions.js.map +1 -0
  19. package/dist/hooks/actions/index.d.ts +2 -0
  20. package/dist/hooks/actions/index.d.ts.map +1 -0
  21. package/dist/hooks/actions/index.js +2 -0
  22. package/dist/hooks/actions/index.js.map +1 -0
  23. package/dist/hooks/authors/author-avatars.d.ts +28 -0
  24. package/dist/hooks/authors/author-avatars.d.ts.map +1 -0
  25. package/dist/hooks/authors/author-avatars.js +191 -0
  26. package/dist/hooks/authors/author-avatars.js.map +1 -0
  27. package/dist/hooks/authors/authors.d.ts +37 -0
  28. package/dist/hooks/authors/authors.d.ts.map +1 -0
  29. package/dist/hooks/authors/authors.js +509 -0
  30. package/dist/hooks/authors/authors.js.map +1 -0
  31. package/dist/hooks/authors/index.d.ts +2 -0
  32. package/dist/hooks/authors/index.d.ts.map +1 -0
  33. package/dist/hooks/authors/index.js +2 -0
  34. package/dist/hooks/authors/index.js.map +1 -0
  35. package/dist/hooks/authors/utils.d.ts +4 -0
  36. package/dist/hooks/authors/utils.d.ts.map +1 -0
  37. package/dist/hooks/authors/utils.js +21 -0
  38. package/dist/hooks/authors/utils.js.map +1 -0
  39. package/dist/hooks/comments.d.ts +17 -0
  40. package/dist/hooks/comments.d.ts.map +1 -0
  41. package/dist/hooks/comments.js +351 -0
  42. package/dist/hooks/comments.js.map +1 -0
  43. package/dist/hooks/communities.d.ts +31 -0
  44. package/dist/hooks/communities.d.ts.map +1 -0
  45. package/dist/hooks/communities.js +389 -0
  46. package/dist/hooks/communities.js.map +1 -0
  47. package/dist/hooks/feeds/feeds.d.ts +18 -0
  48. package/dist/hooks/feeds/feeds.d.ts.map +1 -0
  49. package/dist/hooks/feeds/feeds.js +315 -0
  50. package/dist/hooks/feeds/feeds.js.map +1 -0
  51. package/dist/hooks/feeds/index.d.ts +2 -0
  52. package/dist/hooks/feeds/index.d.ts.map +1 -0
  53. package/dist/hooks/feeds/index.js +2 -0
  54. package/dist/hooks/feeds/index.js.map +1 -0
  55. package/dist/hooks/pkc-rpc.d.ts +7 -0
  56. package/dist/hooks/pkc-rpc.d.ts.map +1 -0
  57. package/dist/hooks/pkc-rpc.js +88 -0
  58. package/dist/hooks/pkc-rpc.js.map +1 -0
  59. package/dist/hooks/replies.d.ts +5 -0
  60. package/dist/hooks/replies.d.ts.map +1 -0
  61. package/dist/hooks/replies.js +155 -0
  62. package/dist/hooks/replies.js.map +1 -0
  63. package/dist/hooks/states.d.ts +15 -0
  64. package/dist/hooks/states.d.ts.map +1 -0
  65. package/dist/hooks/states.js +213 -0
  66. package/dist/hooks/states.js.map +1 -0
  67. package/dist/hooks/utils/use-interval.d.ts +3 -0
  68. package/dist/hooks/utils/use-interval.d.ts.map +1 -0
  69. package/dist/hooks/utils/use-interval.js +36 -0
  70. package/dist/hooks/utils/use-interval.js.map +1 -0
  71. package/dist/hooks/utils/use-previous.d.ts +1 -0
  72. package/dist/hooks/utils/use-previous.js +10 -0
  73. package/dist/index.d.ts +82 -0
  74. package/dist/index.d.ts.map +1 -0
  75. package/dist/index.js +128 -0
  76. package/dist/index.js.map +1 -0
  77. package/dist/lib/chain/chain.d.ts +36 -0
  78. package/dist/lib/chain/chain.d.ts.map +1 -0
  79. package/dist/lib/chain/chain.js +195 -0
  80. package/dist/lib/chain/chain.js.map +1 -0
  81. package/dist/lib/chain/index.d.ts +4 -0
  82. package/dist/lib/chain/index.d.ts.map +1 -0
  83. package/dist/lib/chain/index.js +4 -0
  84. package/dist/lib/chain/index.js.map +1 -0
  85. package/dist/lib/community-address.d.ts +6 -0
  86. package/dist/lib/community-address.d.ts.map +1 -0
  87. package/dist/lib/community-address.js +26 -0
  88. package/dist/lib/community-address.js.map +1 -0
  89. package/dist/lib/community-ref.d.ts +23 -0
  90. package/dist/lib/community-ref.d.ts.map +1 -0
  91. package/dist/lib/community-ref.js +113 -0
  92. package/dist/lib/community-ref.js.map +1 -0
  93. package/dist/lib/debug-utils.d.ts +9 -0
  94. package/dist/lib/debug-utils.d.ts.map +1 -0
  95. package/dist/lib/debug-utils.js +21 -0
  96. package/dist/lib/debug-utils.js.map +1 -0
  97. package/dist/lib/feed-sort-type.d.ts +2 -0
  98. package/dist/lib/feed-sort-type.d.ts.map +1 -0
  99. package/dist/lib/feed-sort-type.js +22 -0
  100. package/dist/lib/feed-sort-type.js.map +1 -0
  101. package/dist/lib/localforage-lru/index.d.ts +3 -0
  102. package/dist/lib/localforage-lru/index.d.ts.map +1 -0
  103. package/dist/lib/localforage-lru/index.js +46 -0
  104. package/dist/lib/localforage-lru/index.js.map +1 -0
  105. package/dist/lib/localforage-lru/localforage-lru.d.ts +6 -0
  106. package/dist/lib/localforage-lru/localforage-lru.d.ts.map +1 -0
  107. package/dist/lib/localforage-lru/localforage-lru.js +182 -0
  108. package/dist/lib/localforage-lru/localforage-lru.js.map +1 -0
  109. package/dist/lib/pkc-compat.d.ts +25 -0
  110. package/dist/lib/pkc-compat.d.ts.map +1 -0
  111. package/dist/lib/pkc-compat.js +131 -0
  112. package/dist/lib/pkc-compat.js.map +1 -0
  113. package/dist/lib/pkc-js/fixtures/markdown-example.d.ts +3 -0
  114. package/dist/lib/pkc-js/fixtures/markdown-example.d.ts.map +1 -0
  115. package/dist/lib/pkc-js/fixtures/markdown-example.js +280 -0
  116. package/dist/lib/pkc-js/fixtures/markdown-example.js.map +1 -0
  117. package/dist/lib/pkc-js/index.d.ts +11 -0
  118. package/dist/lib/pkc-js/index.d.ts.map +1 -0
  119. package/dist/lib/pkc-js/index.js +85 -0
  120. package/dist/lib/pkc-js/index.js.map +1 -0
  121. package/dist/lib/pkc-js/pkc-js-mock-content.d.ts +3 -0
  122. package/dist/lib/pkc-js/pkc-js-mock-content.d.ts.map +1 -0
  123. package/dist/lib/pkc-js/pkc-js-mock-content.js +1235 -0
  124. package/dist/lib/pkc-js/pkc-js-mock-content.js.map +1 -0
  125. package/dist/lib/pkc-js/pkc-js-mock.d.ts +137 -0
  126. package/dist/lib/pkc-js/pkc-js-mock.d.ts.map +1 -0
  127. package/dist/lib/pkc-js/pkc-js-mock.js +644 -0
  128. package/dist/lib/pkc-js/pkc-js-mock.js.map +1 -0
  129. package/dist/lib/polyfill.d.ts +3 -0
  130. package/dist/lib/polyfill.d.ts.map +1 -0
  131. package/dist/lib/polyfill.js +14 -0
  132. package/dist/lib/polyfill.js.map +1 -0
  133. package/dist/lib/protocol-compat.d.ts +14 -0
  134. package/dist/lib/protocol-compat.d.ts.map +1 -0
  135. package/dist/lib/protocol-compat.js +67 -0
  136. package/dist/lib/protocol-compat.js.map +1 -0
  137. package/dist/lib/test-utils.d.ts +29 -0
  138. package/dist/lib/test-utils.d.ts.map +1 -0
  139. package/dist/lib/test-utils.js +184 -0
  140. package/dist/lib/test-utils.js.map +1 -0
  141. package/dist/lib/utils/comment-moderation.d.ts +4 -0
  142. package/dist/lib/utils/comment-moderation.d.ts.map +1 -0
  143. package/dist/lib/utils/comment-moderation.js +56 -0
  144. package/dist/lib/utils/comment-moderation.js.map +1 -0
  145. package/dist/lib/utils/index.d.ts +4 -0
  146. package/dist/lib/utils/index.d.ts.map +1 -0
  147. package/dist/lib/utils/index.js +4 -0
  148. package/dist/lib/utils/index.js.map +1 -0
  149. package/dist/lib/utils/utils.d.ts +23 -0
  150. package/dist/lib/utils/utils.d.ts.map +1 -0
  151. package/dist/lib/utils/utils.js +375 -0
  152. package/dist/lib/utils/utils.js.map +1 -0
  153. package/dist/lib/validator.d.ts +30 -0
  154. package/dist/lib/validator.d.ts.map +1 -0
  155. package/dist/lib/validator.js +307 -0
  156. package/dist/lib/validator.js.map +1 -0
  157. package/dist/stores/accounts/account-generator.d.ts +51 -0
  158. package/dist/stores/accounts/account-generator.d.ts.map +1 -0
  159. package/dist/stores/accounts/account-generator.js +160 -0
  160. package/dist/stores/accounts/account-generator.js.map +1 -0
  161. package/dist/stores/accounts/accounts-actions-internal.d.ts +8 -0
  162. package/dist/stores/accounts/accounts-actions-internal.d.ts.map +1 -0
  163. package/dist/stores/accounts/accounts-actions-internal.js +403 -0
  164. package/dist/stores/accounts/accounts-actions-internal.js.map +1 -0
  165. package/dist/stores/accounts/accounts-actions.d.ts +46 -0
  166. package/dist/stores/accounts/accounts-actions.d.ts.map +1 -0
  167. package/dist/stores/accounts/accounts-actions.js +1341 -0
  168. package/dist/stores/accounts/accounts-actions.js.map +1 -0
  169. package/dist/stores/accounts/accounts-database.d.ts +34 -0
  170. package/dist/stores/accounts/accounts-database.d.ts.map +1 -0
  171. package/dist/stores/accounts/accounts-database.js +685 -0
  172. package/dist/stores/accounts/accounts-database.js.map +1 -0
  173. package/dist/stores/accounts/accounts-store.d.ts +32 -0
  174. package/dist/stores/accounts/accounts-store.d.ts.map +1 -0
  175. package/dist/stores/accounts/accounts-store.js +169 -0
  176. package/dist/stores/accounts/accounts-store.js.map +1 -0
  177. package/dist/stores/accounts/index.d.ts +4 -0
  178. package/dist/stores/accounts/index.d.ts.map +1 -0
  179. package/dist/stores/accounts/index.js +4 -0
  180. package/dist/stores/accounts/index.js.map +1 -0
  181. package/dist/stores/accounts/utils.d.ts +49 -0
  182. package/dist/stores/accounts/utils.d.ts.map +1 -0
  183. package/dist/stores/accounts/utils.js +419 -0
  184. package/dist/stores/accounts/utils.js.map +1 -0
  185. package/dist/stores/authors-comments/authors-comments-store.d.ts +37 -0
  186. package/dist/stores/authors-comments/authors-comments-store.d.ts.map +1 -0
  187. package/dist/stores/authors-comments/authors-comments-store.js +338 -0
  188. package/dist/stores/authors-comments/authors-comments-store.js.map +1 -0
  189. package/dist/stores/authors-comments/index.d.ts +4 -0
  190. package/dist/stores/authors-comments/index.d.ts.map +1 -0
  191. package/dist/stores/authors-comments/index.js +4 -0
  192. package/dist/stores/authors-comments/index.js.map +1 -0
  193. package/dist/stores/authors-comments/utils.d.ts +14 -0
  194. package/dist/stores/authors-comments/utils.d.ts.map +1 -0
  195. package/dist/stores/authors-comments/utils.js +81 -0
  196. package/dist/stores/authors-comments/utils.js.map +1 -0
  197. package/dist/stores/comments/comments-store.d.ts +19 -0
  198. package/dist/stores/comments/comments-store.d.ts.map +1 -0
  199. package/dist/stores/comments/comments-store.js +385 -0
  200. package/dist/stores/comments/comments-store.js.map +1 -0
  201. package/dist/stores/comments/index.d.ts +4 -0
  202. package/dist/stores/comments/index.d.ts.map +1 -0
  203. package/dist/stores/comments/index.js +4 -0
  204. package/dist/stores/comments/index.js.map +1 -0
  205. package/dist/stores/communities/communities-store.d.ts +17 -0
  206. package/dist/stores/communities/communities-store.d.ts.map +1 -0
  207. package/dist/stores/communities/communities-store.js +304 -0
  208. package/dist/stores/communities/communities-store.js.map +1 -0
  209. package/dist/stores/communities/index.d.ts +4 -0
  210. package/dist/stores/communities/index.d.ts.map +1 -0
  211. package/dist/stores/communities/index.js +4 -0
  212. package/dist/stores/communities/index.js.map +1 -0
  213. package/dist/stores/communities-pages/communities-pages-store.d.ts +23 -0
  214. package/dist/stores/communities-pages/communities-pages-store.d.ts.map +1 -0
  215. package/dist/stores/communities-pages/communities-pages-store.js +316 -0
  216. package/dist/stores/communities-pages/communities-pages-store.js.map +1 -0
  217. package/dist/stores/communities-pages/index.d.ts +4 -0
  218. package/dist/stores/communities-pages/index.d.ts.map +1 -0
  219. package/dist/stores/communities-pages/index.js +4 -0
  220. package/dist/stores/communities-pages/index.js.map +1 -0
  221. package/dist/stores/feeds/feed-sorter.d.ts +5 -0
  222. package/dist/stores/feeds/feed-sorter.d.ts.map +1 -0
  223. package/dist/stores/feeds/feed-sorter.js +135 -0
  224. package/dist/stores/feeds/feed-sorter.js.map +1 -0
  225. package/dist/stores/feeds/feeds-store.d.ts +25 -0
  226. package/dist/stores/feeds/feeds-store.d.ts.map +1 -0
  227. package/dist/stores/feeds/feeds-store.js +459 -0
  228. package/dist/stores/feeds/feeds-store.js.map +1 -0
  229. package/dist/stores/feeds/index.d.ts +4 -0
  230. package/dist/stores/feeds/index.d.ts.map +1 -0
  231. package/dist/stores/feeds/index.js +4 -0
  232. package/dist/stores/feeds/index.js.map +1 -0
  233. package/dist/stores/feeds/utils.d.ts +43 -0
  234. package/dist/stores/feeds/utils.d.ts.map +1 -0
  235. package/dist/stores/feeds/utils.js +736 -0
  236. package/dist/stores/feeds/utils.js.map +1 -0
  237. package/dist/stores/replies/index.d.ts +4 -0
  238. package/dist/stores/replies/index.d.ts.map +1 -0
  239. package/dist/stores/replies/index.js +4 -0
  240. package/dist/stores/replies/index.js.map +1 -0
  241. package/dist/stores/replies/replies-comments-store.d.ts +8 -0
  242. package/dist/stores/replies/replies-comments-store.d.ts.map +1 -0
  243. package/dist/stores/replies/replies-comments-store.js +23 -0
  244. package/dist/stores/replies/replies-comments-store.js.map +1 -0
  245. package/dist/stores/replies/replies-store.d.ts +29 -0
  246. package/dist/stores/replies/replies-store.d.ts.map +1 -0
  247. package/dist/stores/replies/replies-store.js +413 -0
  248. package/dist/stores/replies/replies-store.js.map +1 -0
  249. package/dist/stores/replies/utils.d.ts +25 -0
  250. package/dist/stores/replies/utils.d.ts.map +1 -0
  251. package/dist/stores/replies/utils.js +549 -0
  252. package/dist/stores/replies/utils.js.map +1 -0
  253. package/dist/stores/replies-pages/index.d.ts +4 -0
  254. package/dist/stores/replies-pages/index.d.ts.map +1 -0
  255. package/dist/stores/replies-pages/index.js +4 -0
  256. package/dist/stores/replies-pages/index.js.map +1 -0
  257. package/dist/stores/replies-pages/replies-pages-store.d.ts +20 -0
  258. package/dist/stores/replies-pages/replies-pages-store.d.ts.map +1 -0
  259. package/dist/stores/replies-pages/replies-pages-store.js +270 -0
  260. package/dist/stores/replies-pages/replies-pages-store.js.map +1 -0
  261. package/dist/stores/replies-pages/utils.d.ts +3 -0
  262. package/dist/stores/replies-pages/utils.d.ts.map +1 -0
  263. package/dist/stores/replies-pages/utils.js +43 -0
  264. package/dist/stores/replies-pages/utils.js.map +1 -0
  265. package/dist/types.d.ts +638 -0
  266. package/dist/types.d.ts.map +1 -0
  267. package/dist/types.js +3 -0
  268. package/dist/types.js.map +1 -0
  269. package/package.json +160 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/stores/feeds/utils.ts"],"names":[],"mappings":"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","sourcesContent":["import assert from \"assert\";\nimport {\n Comment,\n Feed,\n Feeds,\n FeedOptions,\n FeedsOptions,\n Community,\n Communities,\n Account,\n Accounts,\n CommunityPage,\n CommunitiesPages,\n FeedsCommunitiesPostCounts,\n} from \"../../types\";\nimport { getCommunityPages, getCommunityFirstPageCid } from \"../communities-pages\";\nimport accountsStore from \"../accounts\";\nimport feedSorter from \"./feed-sorter\";\nimport { communityPostsCacheExpired, commentIsValid, removeInvalidComments } from \"../../lib/utils\";\nimport { getCommentCommunityAddress, normalizeCommentCommunityAddress } from \"../../lib/pkc-compat\";\nimport {\n CommunityLookupRef,\n doesAddressMatchCommunityRef,\n getCommunityRefKeys,\n getMatchingCommunityRefKeys,\n} from \"../../lib/community-ref\";\nimport Logger from \"@pkcprotocol/pkc-logger\";\nconst log = Logger(\"bitsocial-react-hooks:feeds:stores\");\n\nconst getFeedCommunityRefs = (feedOptions: Partial<FeedOptions>): CommunityLookupRef[] =>\n feedOptions.communities || [];\n\nconst getFeedCommunityKeys = (feedOptions: Partial<FeedOptions>) =>\n feedOptions.communityKeys || getCommunityRefKeys(getFeedCommunityRefs(feedOptions));\n\nconst getCommentFreshness = (comment: Comment | undefined) =>\n Math.max(comment?.updatedAt ?? 0, comment?.timestamp ?? 0, 0);\n\nconst commentMatchesModQueue = (comment: Comment | undefined, modQueue?: string[]) => {\n const modQueueName = modQueue?.[0];\n if (!modQueueName) {\n return true;\n }\n if (modQueueName === \"pendingApproval\") {\n return comment?.pendingApproval === true;\n }\n return true;\n};\n\nconst getFeedPost = (\n post: Comment,\n communityRef: CommunityLookupRef,\n community: Community,\n modQueue?: string[],\n freshestComments?: { [commentCid: string]: Comment },\n) => {\n const normalizedPost = normalizeCommentCommunityAddress(post) as Comment;\n const freshestComment = post.cid\n ? normalizeCommentCommunityAddress(freshestComments?.[post.cid])\n : undefined;\n const postCommunityAddress = getCommentCommunityAddress(normalizedPost);\n if (!doesAddressMatchCommunityRef(postCommunityAddress, communityRef, community)) {\n return;\n }\n if (!commentMatchesModQueue(normalizedPost, modQueue)) {\n return;\n }\n if (\n !freshestComment ||\n getCommentFreshness(freshestComment) <= getCommentFreshness(normalizedPost)\n ) {\n return normalizedPost;\n }\n if (!commentMatchesModQueue(freshestComment, modQueue)) {\n return;\n }\n if (\n !doesAddressMatchCommunityRef(\n getCommentCommunityAddress(freshestComment),\n communityRef,\n community,\n )\n ) {\n return;\n }\n return freshestComment;\n};\n\nconst reconcileLoadedModQueueFeed = (\n feedOptions: FeedOptions,\n loadedFeed: Feed,\n filteredSortedFeed: Feed,\n) => {\n if (!feedOptions?.modQueue?.[0] || !loadedFeed?.length) {\n return loadedFeed;\n }\n\n const filteredSortedFeedByCid = new Map<string, Comment>();\n for (const post of filteredSortedFeed) {\n if (post.cid) {\n filteredSortedFeedByCid.set(post.cid, post);\n }\n }\n\n let changed = false;\n const nextLoadedFeed: Comment[] = [];\n for (const post of loadedFeed) {\n if (!post.cid) {\n nextLoadedFeed.push(post);\n continue;\n }\n\n const sourcePost = filteredSortedFeedByCid.get(post.cid);\n if (!sourcePost) {\n changed = true;\n continue;\n }\n\n if (getCommentFreshness(sourcePost) > getCommentFreshness(post)) {\n nextLoadedFeed.push(sourcePost);\n changed = true;\n continue;\n }\n\n nextLoadedFeed.push(post);\n }\n\n return changed ? nextLoadedFeed : loadedFeed;\n};\n\n/**\n * Calculate the feeds from all the loaded community pages, filter and sort them\n */\nexport const getFilteredSortedFeeds = (\n feedsOptions: FeedsOptions,\n communities: Communities,\n communitiesPages: CommunitiesPages,\n accounts: Accounts,\n freshestComments?: { [commentCid: string]: Comment },\n) => {\n // calculate each feed\n let feeds: Feeds = {};\n for (const feedName in feedsOptions) {\n const communityRefs = getFeedCommunityRefs(feedsOptions[feedName]);\n const communityKeys = getFeedCommunityKeys(feedsOptions[feedName]);\n let { sortType, accountId, filter, newerThan, modQueue } = feedsOptions[feedName];\n const newerThanTimestamp = newerThan ? Math.floor(Date.now() / 1000) - newerThan : undefined;\n\n let pageType = \"posts\";\n if (modQueue?.[0]) {\n // TODO: allow multiple modQueue at once, fow now only use first in array\n sortType = modQueue[0];\n pageType = \"modQueue\";\n }\n\n // find all fetched posts\n const bufferedFeedPosts = [];\n\n // add each comment from each page, do not filter at this stage, filter after sorting\n for (const [communityIndex, communityKey] of communityKeys.entries()) {\n const communityRef = communityRefs[communityIndex];\n // community hasn't loaded yet\n const community = communities[communityKey];\n if (!community || !communityRef) {\n continue;\n }\n\n // if cache is expired and has internet access, don't use, wait for next community update\n if (communityPostsCacheExpired(community) && window.navigator.onLine) {\n continue;\n }\n\n // use community preloaded posts if any\n const preloadedPosts = getPreloadedPosts(community, sortType);\n if (preloadedPosts) {\n for (const post of preloadedPosts) {\n // posts are manually validated, could have fake communityAddress\n if (\n !doesAddressMatchCommunityRef(getCommentCommunityAddress(post), communityRef, community)\n ) {\n break;\n }\n const nextPost = getFeedPost(post, communityRef, community, modQueue, freshestComments);\n if (nextPost) {\n bufferedFeedPosts.push(nextPost);\n }\n }\n }\n\n // add all posts from community pages\n const communityPages = getCommunityPages(\n community,\n sortType,\n communitiesPages,\n pageType,\n accountId,\n );\n for (const communityPage of communityPages) {\n if (communityPage?.comments) {\n for (const post of communityPage.comments) {\n // posts are manually validated, could have fake communityAddress\n if (\n !doesAddressMatchCommunityRef(\n getCommentCommunityAddress(post),\n communityRef,\n community,\n )\n ) {\n break;\n }\n const nextPost = getFeedPost(post, communityRef, community, modQueue, freshestComments);\n if (nextPost) {\n bufferedFeedPosts.push(nextPost);\n }\n }\n }\n }\n }\n\n // sort the feed before filtering to get more accurate results\n const originalSortType = feedsOptions[feedName].sortType;\n const sortedBufferedFeedPosts = feedSorter.sort(originalSortType, bufferedFeedPosts);\n\n // filter the feed\n const filteredSortedBufferedFeedPosts = [];\n for (const post of sortedBufferedFeedPosts) {\n // address is blocked\n if (\n accounts[accountId]?.blockedAddresses[getCommentCommunityAddress(post) || \"\"] ||\n (post.author?.address && accounts[accountId]?.blockedAddresses[post.author.address])\n ) {\n continue;\n }\n\n // comment cid is blocked\n if (accounts[accountId]?.blockedCids[post.cid]) {\n continue;\n }\n\n // if a feed has more than 1 sub, don't include pinned posts\n // TODO: add test to check if pinned are filtered\n if (post.pinned && communityKeys.length > 1) {\n continue;\n }\n\n // feedOptions filter function\n if (filter && !filter.filter(post)) {\n continue;\n }\n\n // filter posts older than newerThan option\n if (newerThanTimestamp) {\n if (sortType === \"active\") {\n if ((post.lastReplyTimestamp || post.timestamp) <= newerThanTimestamp) {\n continue;\n }\n } else {\n if (post.timestamp <= newerThanTimestamp) {\n continue;\n }\n }\n }\n\n filteredSortedBufferedFeedPosts.push(post);\n }\n\n feeds[feedName] = filteredSortedBufferedFeedPosts;\n }\n return feeds;\n};\n\nconst getPreloadedPosts = (community: Community, sortType: string) => {\n let preloadedPosts = community.posts?.pages?.[sortType]?.comments;\n if (preloadedPosts) {\n return preloadedPosts;\n }\n const hasPageCids = Object.keys(community.posts?.pageCids || {}).length !== 0;\n if (hasPageCids) {\n return;\n }\n const pages: any[] = Object.values(community.posts?.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 posts 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\nexport const getLoadedFeeds = async (\n feedsOptions: FeedsOptions,\n filteredSortedFeeds: Feeds,\n loadedFeeds: Feeds,\n bufferedFeeds: Feeds,\n accounts: Accounts,\n) => {\n const nextLoadedFeeds: Feeds = { ...loadedFeeds };\n let loadedFeedsChanged = false;\n for (const feedName in feedsOptions) {\n const { pageNumber, postsPerPage, accountId } = feedsOptions[feedName];\n const pkc = accounts[accountId]?.pkc;\n const loadedFeedPostCount = pageNumber * postsPerPage;\n const currentLoadedFeed = reconcileLoadedModQueueFeed(\n feedsOptions[feedName],\n loadedFeeds[feedName] || [],\n filteredSortedFeeds[feedName] || [],\n );\n if (currentLoadedFeed !== loadedFeeds[feedName]) {\n nextLoadedFeeds[feedName] = currentLoadedFeed;\n loadedFeedsChanged = true;\n }\n const missingPostsCount =\n loadedFeedPostCount - currentLoadedFeed.filter((post) => post.index === undefined).length;\n\n // get new posts from buffered feed\n const bufferedFeed = bufferedFeeds[feedName] || [];\n\n let missingPosts: any[] = [];\n for (const post of bufferedFeed) {\n if (missingPosts.length >= missingPostsCount) {\n missingPosts = await removeInvalidComments(missingPosts, { validateReplies: false }, pkc);\n // only stop if there were no invalid comments\n if (missingPosts.length >= missingPostsCount) {\n break;\n }\n }\n missingPosts.push(post);\n }\n\n // the current loaded feed already exist and doesn't need new posts\n if (\n missingPosts.length === 0 &&\n loadedFeeds[feedName] &&\n currentLoadedFeed === loadedFeeds[feedName]\n ) {\n continue;\n }\n nextLoadedFeeds[feedName] = [...currentLoadedFeed, ...missingPosts];\n if (missingPosts.length > 0) {\n loadedFeedsChanged = true;\n }\n }\n\n // add account comments\n const accountCommentsChangedFeeds = addAccountsComments(feedsOptions, nextLoadedFeeds);\n\n // do nothing if there are no missing posts\n if (!loadedFeedsChanged && !accountCommentsChangedFeeds) {\n return loadedFeeds;\n }\n return nextLoadedFeeds;\n};\n\nexport const addAccountsComments = (feedsOptions: FeedsOptions, loadedFeeds: Feeds) => {\n let loadedFeedsChanged = false;\n const accountsComments = accountsStore.getState().accountsComments || {};\n for (const feedName in feedsOptions) {\n const { accountId, accountComments: accountCommentsOptions } = feedsOptions[feedName];\n const communityRefs = getFeedCommunityRefs(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 = (post: Comment) => post.timestamp > newerThanTimestamp;\n\n const accountComments = accountsComments[accountId] || [];\n const accountPosts = accountComments.filter((comment) => {\n // is a reply, not a post\n if (comment.parentCid || comment.depth > 0) {\n return false;\n }\n if (!isNewerThan(comment)) {\n return false;\n }\n return (\n getMatchingCommunityRefKeys(communityRefs, getCommentCommunityAddress(comment)).length > 0\n );\n });\n const validAccountIndices = new Set(accountPosts.map((p) => p.index));\n const accountCidToPost = new Map<string, Comment>();\n for (const p of accountPosts) {\n if (p.cid) accountCidToPost.set(p.cid, p);\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 post of loadedFeed) {\n if (post.index === undefined) {\n prunedLoadedFeed.push(post);\n continue;\n }\n if (!validAccountIndices.has(post.index)) {\n loadedFeedsChanged = true;\n continue;\n }\n if (post.cid) {\n const freshAccountPost = accountCidToPost.get(post.cid);\n if (freshAccountPost && freshAccountPost.index !== post.index) {\n prunedLoadedFeed.push(freshAccountPost);\n loadedFeedsChanged = true;\n continue;\n }\n }\n prunedLoadedFeed.push(post);\n }\n loadedFeed = loadedFeeds[feedName] = prunedLoadedFeed;\n\n if (!accountPosts.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((post, loadedFeedIndex) => {\n if (post.cid) loadedFeedMap.set(post.cid, loadedFeedIndex);\n if (post.index) loadedFeedMap.set(post.index, loadedFeedIndex);\n if (!post.cid) loadedFeedMap.set(post.timestamp, loadedFeedIndex);\n });\n for (const accountPost of accountPosts) {\n // account post with cid already added\n if (accountPost.cid && loadedFeedMap.has(accountPost.cid)) {\n continue;\n }\n // account post without cid already added, but now we have the cid\n if (accountPost.cid && loadedFeedMap.has(accountPost.index)) {\n const loadedFeedIndex = loadedFeedMap.get(accountPost.index);\n // update the feed with the accountPost.cid now that we have it\n loadedFeed[loadedFeedIndex] = accountPost;\n loadedFeedsChanged = true;\n continue;\n }\n if (loadedFeedMap.has(accountPost.index)) {\n continue;\n }\n // pending account post without cid already added\n if (!accountPost.cid && loadedFeedMap.has(accountPost.timestamp)) {\n continue;\n }\n if (append) {\n loadedFeed.push(accountPost);\n } else {\n loadedFeed.unshift(accountPost);\n }\n loadedFeedsChanged = true;\n }\n }\n return loadedFeedsChanged;\n};\n\nexport const getBufferedFeedsWithoutLoadedFeeds = (bufferedFeeds: Feeds, loadedFeeds: Feeds) => {\n // contruct a list of posts already loaded to remove them from buffered feeds\n const loadedFeedsPosts: { [key: string]: Set<string> } = {};\n for (const feedName in loadedFeeds) {\n loadedFeedsPosts[feedName] = new Set();\n for (const post of loadedFeeds[feedName]) {\n loadedFeedsPosts[feedName].add(post.cid);\n }\n }\n\n const newBufferedFeeds: Feeds = {};\n for (const feedName in bufferedFeeds) {\n newBufferedFeeds[feedName] = [];\n let bufferedFeedPostChanged = false;\n for (const [i, post] of bufferedFeeds[feedName].entries()) {\n if (loadedFeedsPosts[feedName]?.has(post.cid)) {\n continue;\n }\n newBufferedFeeds[feedName].push(post);\n if (\n !bufferedFeedPostChanged &&\n (newBufferedFeeds[feedName][i]?.cid !== bufferedFeeds[feedName][i]?.cid ||\n (newBufferedFeeds[feedName][i]?.updatedAt || 0) >\n (bufferedFeeds[feedName][i]?.updatedAt || 0))\n ) {\n bufferedFeedPostChanged = true;\n }\n }\n if (\n !bufferedFeedPostChanged &&\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: FeedsOptions,\n filteredSortedFeeds: Feeds,\n updatedFeeds: Feeds,\n loadedFeeds: Feeds,\n accounts: Accounts,\n) => {\n // contruct a list of posts already loaded to remove them from buffered feeds\n const updatedFeedsPosts: { [feedName: string]: { [postCid: string]: any } } = {};\n for (const feedName in updatedFeeds) {\n updatedFeedsPosts[feedName] = {};\n for (const [index, updatedPost] of updatedFeeds[feedName].entries()) {\n updatedFeedsPosts[feedName][updatedPost.cid] = { index, updatedPost };\n }\n }\n\n const newUpdatedFeeds: Feeds = { ...updatedFeeds };\n for (const feedName in filteredSortedFeeds) {\n const pkc = accounts[feedsOptions[feedName]?.accountId]?.pkc;\n const updatedFeed = [...(updatedFeeds[feedName] || [])];\n const onlyHasNewPosts = updatedFeed.length === 0;\n let updatedFeedChanged = false;\n\n // add new posts from loadedFeed posts\n while (updatedFeed.length < loadedFeeds[feedName].length) {\n updatedFeed[updatedFeed.length] = loadedFeeds[feedName][updatedFeed.length];\n updatedFeedChanged = true;\n }\n\n // add updated post from filteredSortedFeed\n if (!onlyHasNewPosts) {\n const promises = [];\n for (const post of filteredSortedFeeds[feedName]) {\n if (updatedFeedsPosts[feedName]?.[post.cid]) {\n const { index, updatedPost } = updatedFeedsPosts[feedName][post.cid];\n // faster to validate comments async\n promises.push(\n (async () => {\n if (\n (post.updatedAt || 0) > (updatedPost.updatedAt || 0) &&\n (await commentIsValid(post, { validateReplies: false }, pkc))\n ) {\n updatedFeed[index] = post;\n updatedFeedChanged = true;\n }\n })(),\n );\n }\n }\n await Promise.all(promises);\n }\n\n if (updatedFeedChanged) {\n newUpdatedFeeds[feedName] = updatedFeed;\n }\n }\n return newUpdatedFeeds;\n};\n\n// find with communities have posts newer (or ranked higher) than the loaded feeds\n// can be used to display \"new posts in x, y, z subs\" alert, like on twitter\nexport const getFeedsCommunityKeysWithNewerPosts = (\n feedsOptions: FeedsOptions,\n filteredSortedFeeds: Feeds,\n loadedFeeds: Feeds,\n previousFeedsCommunityKeysWithNewerPosts: { [feedName: string]: string[] },\n) => {\n const feedsCommunityKeysWithNewerPosts: { [feedName: string]: string[] } = {};\n for (const feedName in loadedFeeds) {\n const loadedFeed = loadedFeeds[feedName];\n const cidsInLoadedFeed = new Set();\n for (const post of loadedFeed) {\n cidsInLoadedFeed.add(post.cid);\n }\n const communityKeysWithNewerPostsSet = new Set<string>();\n for (const [i, post] of filteredSortedFeeds[feedName].entries()) {\n if (i >= loadedFeed.length) {\n break;\n }\n // if any post in filteredSortedFeeds ranks higher than the loaded feed count, it's a newer post\n if (!cidsInLoadedFeed.has(post.cid)) {\n const postCommunityAddress = getCommentCommunityAddress(post);\n if (postCommunityAddress) {\n getMatchingCommunityRefKeys(\n getFeedCommunityRefs(feedsOptions[feedName] || {}),\n postCommunityAddress,\n ).forEach((communityKey) => communityKeysWithNewerPostsSet.add(communityKey));\n }\n }\n }\n const communityKeysWithNewerPosts = [...communityKeysWithNewerPostsSet];\n\n // don't update the array if the data is the same to avoid rerenders\n const previousCommunityKeysWithNewerPosts =\n previousFeedsCommunityKeysWithNewerPosts[feedName] || [];\n if (\n communityKeysWithNewerPosts.length === previousCommunityKeysWithNewerPosts.length &&\n communityKeysWithNewerPosts.toString() === previousCommunityKeysWithNewerPosts.toString()\n ) {\n feedsCommunityKeysWithNewerPosts[feedName] =\n previousFeedsCommunityKeysWithNewerPosts[feedName];\n } else {\n feedsCommunityKeysWithNewerPosts[feedName] = communityKeysWithNewerPosts;\n }\n }\n return feedsCommunityKeysWithNewerPosts;\n};\n\n// find how many posts are left in each communities in a buffereds feeds\nexport const getFeedsCommunitiesPostCounts = (feedsOptions: FeedsOptions, feeds: Feeds) => {\n const feedsCommunitiesPostCounts: FeedsCommunitiesPostCounts = {};\n for (const feedName in feedsOptions) {\n const communityKeys = getFeedCommunityKeys(feedsOptions[feedName]);\n const communityRefs = getFeedCommunityRefs(feedsOptions[feedName]);\n feedsCommunitiesPostCounts[feedName] = {};\n for (const communityKey of communityKeys) {\n feedsCommunitiesPostCounts[feedName][communityKey] = 0;\n }\n for (const comment of feeds[feedName] || []) {\n const commentCommunityAddress = getCommentCommunityAddress(comment);\n if (commentCommunityAddress) {\n getMatchingCommunityRefKeys(communityRefs, commentCommunityAddress).forEach(\n (communityKey) => {\n feedsCommunitiesPostCounts[feedName][communityKey] =\n (feedsCommunitiesPostCounts[feedName][communityKey] || 0) + 1;\n },\n );\n }\n }\n }\n return feedsCommunitiesPostCounts;\n};\n\n/**\n * Get which feeds have more posts, i.e. have not reached the final page of all subs\n */\nexport const getFeedsHaveMore = (\n feedsOptions: FeedsOptions,\n bufferedFeeds: Feeds,\n communities: Communities,\n communitiesPages: CommunitiesPages,\n accounts: Accounts,\n) => {\n const feedsHaveMore: { [feedName: string]: boolean } = {};\n feedsLoop: for (const feedName in feedsOptions) {\n // if the feed still has buffered posts, then it still has more\n if (bufferedFeeds[feedName]?.length) {\n feedsHaveMore[feedName] = true;\n continue feedsLoop;\n }\n\n const communityRefs = getFeedCommunityRefs(feedsOptions[feedName]);\n const communityKeys = getFeedCommunityKeys(feedsOptions[feedName]);\n let { sortType, accountId, modQueue } = feedsOptions[feedName];\n\n let pageType = \"posts\";\n if (modQueue?.[0]) {\n // TODO: allow multiple modQueue at once, fow now only use first in array\n sortType = modQueue[0];\n pageType = \"modQueue\";\n }\n\n communityKeysLoop: for (const [communityIndex, communityKey] of communityKeys.entries()) {\n const community = communities[communityKey];\n const communityRef = communityRefs[communityIndex];\n const isBlockedCommunity = Object.keys(accounts[accountId]?.blockedAddresses || {}).some(\n (blockedAddress) =>\n communityRef && doesAddressMatchCommunityRef(blockedAddress, communityRef, community),\n );\n\n // don't consider the sub if the address is blocked\n if (isBlockedCommunity) {\n continue communityKeysLoop;\n }\n\n // if at least 1 community hasn't loaded yet, then the feed still has more\n if (!community?.updatedAt) {\n feedsHaveMore[feedName] = true;\n continue feedsLoop;\n }\n\n // if at least 1 community has posts cache expired, then the feed still has more\n if (communityPostsCacheExpired(community)) {\n feedsHaveMore[feedName] = true;\n continue feedsLoop;\n }\n\n const firstPageCid = getCommunityFirstPageCid(community, sortType, pageType);\n // TODO: if a loaded community 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 'hot', or should we just ignore it?\n // 'continue' to ignore it for now\n if (!firstPageCid) {\n continue communityKeysLoop;\n }\n const pages = getCommunityPages(community, sortType, communitiesPages, pageType, accountId);\n // if first page isn't loaded yet, then the feed still has more\n if (!pages.length) {\n feedsHaveMore[feedName] = true;\n continue feedsLoop;\n }\n const lastPage = pages[pages.length - 1];\n if (lastPage.nextCid) {\n feedsHaveMore[feedName] = true;\n continue feedsLoop;\n }\n }\n\n // if buffered feeds are empty and no last page of any community has a next page, then has more is false\n feedsHaveMore[feedName] = false;\n }\n return feedsHaveMore;\n};\n\n// get all communities pages cids of all feeds, use to check if a communitiesStore change should trigger updateFeeds\nexport const getFeedsCommunities = (feedsOptions: FeedsOptions, communities: Communities) => {\n // find all feeds communities\n const feedsCommunityAddresses = new Set<string>();\n Object.keys(feedsOptions).forEach((i) =>\n getFeedCommunityKeys(feedsOptions[i]).forEach((a) => feedsCommunityAddresses.add(a)),\n );\n\n // use map for performance increase when checking size\n const feedsCommunities = new Map<string, Community>();\n for (const communityAddress of feedsCommunityAddresses) {\n feedsCommunities.set(communityAddress, communities[communityAddress]);\n }\n return feedsCommunities;\n};\n\nexport const feedsCommunitiesChanged = (\n previousFeedsCommunities: Map<string, Community>,\n feedsCommunities: Map<string, Community>,\n) => {\n if (previousFeedsCommunities.size !== feedsCommunities.size) {\n return true;\n }\n for (let communityAddress of previousFeedsCommunities.keys()) {\n // check if the object is still the same\n if (previousFeedsCommunities.get(communityAddress) !== feedsCommunities.get(communityAddress)) {\n return true;\n }\n }\n return false;\n};\n\n// get all communities pages cids of all feeds, use to check if a communitiesStore change should trigger updateFeeds\nexport const getFeedsCommunitiesFirstPageCids = (\n feedsCommunities: Map<string, Community>,\n): string[] => {\n // find all the feeds communities first page cids\n const feedsCommunitiesFirstPageCids = new Set<string>();\n for (const community of feedsCommunities.values()) {\n if (!community?.posts && !community?.modQueue) {\n continue;\n }\n\n // check pages\n if (community.posts?.pages) {\n for (const page of Object.values<CommunityPage>(community.posts.pages)) {\n if (page?.nextCid) {\n feedsCommunitiesFirstPageCids.add(page?.nextCid);\n }\n }\n }\n\n // check pageCids\n if (community.posts?.pageCids) {\n for (const pageCid of Object.values<string>(community.posts.pageCids)) {\n if (pageCid) {\n feedsCommunitiesFirstPageCids.add(pageCid);\n }\n }\n }\n\n // TODO: would be more performant to only check modQueue if there's a feedOptions with modQueue\n if (community.modQueue?.pageCids) {\n for (const pageCid of Object.values<string>(community.modQueue.pageCids)) {\n if (pageCid) {\n feedsCommunitiesFirstPageCids.add(pageCid);\n }\n }\n }\n }\n\n return [...feedsCommunitiesFirstPageCids].sort();\n};\n\n// get all communities posts pages first post updatedAts, use to check if a communitiesStore change should trigger updateFeeds\nexport const getFeedsCommunitiesPostsPagesFirstUpdatedAts = (\n feedsCommunities: Map<string, Community>,\n): string => {\n let feedsCommunitiesPostsPagesFirstUpdatedAts = \"\";\n for (const community of feedsCommunities.values()) {\n for (const page of Object.values<CommunityPage>(community?.posts?.pages || {})) {\n if (page?.comments?.[0]?.updatedAt) {\n feedsCommunitiesPostsPagesFirstUpdatedAts +=\n page.comments[0].cid + page.comments[0].updatedAt;\n }\n }\n }\n return feedsCommunitiesPostsPagesFirstUpdatedAts;\n};\n\n// get number of feeds community that are loaded\nexport const getFeedsCommunitiesLoadedCount = (\n feedsCommunities: Map<string, Community>,\n): number => {\n let count = 0;\n for (const community of feedsCommunities.values()) {\n if (community?.updatedAt) {\n count++;\n }\n }\n return count;\n};\n\nexport const getAccountsBlockedAddresses = (accounts: Accounts) => {\n const blockedAddressesSet = new Set<string>();\n for (const { blockedAddresses } of Object.values(accounts)) {\n for (const address in blockedAddresses) {\n if (blockedAddresses[address]) {\n blockedAddressesSet.add(address);\n }\n }\n }\n return [...blockedAddressesSet].sort();\n};\n\nexport const accountsBlockedAddressesChanged = (\n previousAccountsBlockedAddresses: { [address: string]: boolean }[],\n accountsBlockedAddresses: { [address: string]: boolean }[],\n) => {\n if (previousAccountsBlockedAddresses.length !== accountsBlockedAddresses.length) {\n return true;\n }\n for (const i in previousAccountsBlockedAddresses) {\n // check if the object is still the same\n if (previousAccountsBlockedAddresses[i] !== accountsBlockedAddresses[i]) {\n return true;\n }\n }\n return false;\n};\n\nexport const feedsHaveChangedBlockedAddresses = (\n feedsOptions: FeedsOptions,\n bufferedFeeds: Feeds,\n blockedAddresses: string[],\n previousBlockedAddresses: string[],\n) => {\n // find the difference between current and previous blocked addresses\n const changedBlockedAddresses = blockedAddresses\n .filter((x) => !previousBlockedAddresses.includes(x))\n .concat(previousBlockedAddresses.filter((x) => !blockedAddresses.includes(x)));\n\n // if changed blocked addresses arent used in the feeds, do nothing\n for (const address of changedBlockedAddresses) {\n for (const feedName in feedsOptions) {\n const feedOptions = feedsOptions[feedName];\n if (\n getMatchingCommunityRefKeys(getFeedCommunityRefs(feedOptions), address).some(\n (communityKey) => getFeedCommunityKeys(feedOptions).includes(communityKey),\n )\n ) {\n return true;\n }\n }\n }\n\n // feeds posts author addresses have a changed blocked address\n // NOTE: because of this, if an author address is unblocked, feeds won't update until some other event causes a feed update\n // it seems preferable to causing unnecessary rerenders every time an unused block event occurs\n const changedBlockedAddressesSet = new Set(changedBlockedAddresses);\n for (const feedName in bufferedFeeds) {\n for (const post of bufferedFeeds[feedName] || []) {\n if (post?.author?.address && changedBlockedAddressesSet.has(post.author.address)) {\n return true;\n }\n }\n }\n\n return false;\n};\n\nexport const getAccountsBlockedCids = (accounts: Accounts) => {\n const blockedCidsSet = new Set<string>();\n for (const { blockedCids } of Object.values(accounts)) {\n for (const address in blockedCids) {\n if (blockedCids[address]) {\n blockedCidsSet.add(address);\n }\n }\n }\n return [...blockedCidsSet].sort();\n};\n\nexport const accountsBlockedCidsChanged = (\n previousAccountsBlockedCids: { [address: string]: boolean }[],\n accountsBlockedCids: { [address: string]: boolean }[],\n) => {\n if (previousAccountsBlockedCids.length !== accountsBlockedCids.length) {\n return true;\n }\n for (const i in previousAccountsBlockedCids) {\n // check if the object is still the same\n if (previousAccountsBlockedCids[i] !== accountsBlockedCids[i]) {\n return true;\n }\n }\n return false;\n};\n\nexport const feedsHaveChangedBlockedCids = (\n feedsOptions: FeedsOptions,\n bufferedFeeds: Feeds,\n blockedCids: string[],\n previousBlockedCids: string[],\n) => {\n // find the difference between current and previous blocked addresses\n const changedBlockedCids = blockedCids\n .filter((x) => !previousBlockedCids.includes(x))\n .concat(previousBlockedCids.filter((x) => !blockedCids.includes(x)));\n\n // feeds posts author addresses have a changed blocked address\n // NOTE: because of this, if a cid is unblocked, feeds won't update until some other event causes a feed update\n // it seems preferable to causing unnecessary rerenders every time an unused block event occurs\n const changedBlockedCidsSet = new Set(changedBlockedCids);\n for (const feedName in bufferedFeeds) {\n for (const post of bufferedFeeds[feedName] || []) {\n if (post?.cid && changedBlockedCidsSet.has(post?.cid)) {\n return true;\n }\n }\n }\n\n return false;\n};\n"]}
@@ -0,0 +1,4 @@
1
+ import repliesStore from "./replies-store.js";
2
+ export * from "./replies-store.js";
3
+ export default repliesStore;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/stores/replies/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,eAAe,YAAY,CAAC"}
@@ -0,0 +1,4 @@
1
+ import repliesStore from "./replies-store.js";
2
+ export * from "./replies-store.js";
3
+ export default repliesStore;
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/stores/replies/index.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,MAAM,iBAAiB,CAAC;AAC3C,cAAc,iBAAiB,CAAC;AAChC,eAAe,YAAY,CAAC","sourcesContent":["import repliesStore from \"./replies-store\";\nexport * from \"./replies-store\";\nexport default repliesStore;\n"]}
@@ -0,0 +1,8 @@
1
+ import { Comments } from "../../types.js";
2
+ type RepliesCommentsState = {
3
+ comments: Comments;
4
+ addCommentsToStoreOrUpdateComments: Function;
5
+ };
6
+ declare const repliesCommentsStore: import("zustand").UseBoundStore<import("zustand").StoreApi<RepliesCommentsState>>;
7
+ export default repliesCommentsStore;
8
+ //# sourceMappingURL=replies-comments-store.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"replies-comments-store.d.ts","sourceRoot":"","sources":["../../../src/stores/replies/replies-comments-store.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,QAAQ,EAAE,MAAM,aAAa,CAAC;AAGhD,KAAK,oBAAoB,GAAG;IAC1B,QAAQ,EAAE,QAAQ,CAAC;IACnB,kCAAkC,EAAE,QAAQ,CAAC;CAC9C,CAAC;AAEF,QAAA,MAAM,oBAAoB,mFAuBzB,CAAC;AAEF,eAAe,oBAAoB,CAAC"}
@@ -0,0 +1,23 @@
1
+ import createStore from "zustand";
2
+ const repliesCommentsStore = createStore((setState, getState) => ({
3
+ comments: {},
4
+ addCommentsToStoreOrUpdateComments(comments) {
5
+ setState((state) => {
6
+ const newComments = {};
7
+ for (const comment of comments) {
8
+ // updatedAt hasn't changed so no need to update the comment
9
+ if (state.comments[comment.cid] &&
10
+ comment.updatedAt <= state.comments[comment.cid].updatedAt) {
11
+ continue;
12
+ }
13
+ newComments[comment.cid] = comment;
14
+ }
15
+ if (!Object.keys(newComments).length) {
16
+ return {};
17
+ }
18
+ return { comments: Object.assign(Object.assign({}, state.comments), newComments) };
19
+ });
20
+ },
21
+ }));
22
+ export default repliesCommentsStore;
23
+ //# sourceMappingURL=replies-comments-store.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"replies-comments-store.js","sourceRoot":"","sources":["../../../src/stores/replies/replies-comments-store.ts"],"names":[],"mappings":"AACA,OAAO,WAAW,MAAM,SAAS,CAAC;AAOlC,MAAM,oBAAoB,GAAG,WAAW,CACtC,CAAC,QAAkB,EAAE,QAAkB,EAAE,EAAE,CAAC,CAAC;IAC3C,QAAQ,EAAE,EAAE;IACZ,kCAAkC,CAAC,QAAmB;QACpD,QAAQ,CAAC,CAAC,KAA2B,EAAE,EAAE;YACvC,MAAM,WAAW,GAAa,EAAE,CAAC;YACjC,KAAK,MAAM,OAAO,IAAI,QAAQ,EAAE,CAAC;gBAC/B,4DAA4D;gBAC5D,IACE,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC;oBAC3B,OAAO,CAAC,SAAS,IAAI,KAAK,CAAC,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,SAAS,EAC1D,CAAC;oBACD,SAAS;gBACX,CAAC;gBACD,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC;YACrC,CAAC;YACD,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,MAAM,EAAE,CAAC;gBACrC,OAAO,EAAE,CAAC;YACZ,CAAC;YACD,OAAO,EAAE,QAAQ,kCAAO,KAAK,CAAC,QAAQ,GAAK,WAAW,CAAE,EAAE,CAAC;QAC7D,CAAC,CAAC,CAAC;IACL,CAAC;CACF,CAAC,CACH,CAAC;AAEF,eAAe,oBAAoB,CAAC","sourcesContent":["import { Comment, Comments } from \"../../types\";\nimport createStore from \"zustand\";\n\ntype RepliesCommentsState = {\n comments: Comments;\n addCommentsToStoreOrUpdateComments: Function;\n};\n\nconst repliesCommentsStore = createStore<RepliesCommentsState>(\n (setState: Function, getState: Function) => ({\n comments: {},\n addCommentsToStoreOrUpdateComments(comments: Comment[]) {\n setState((state: RepliesCommentsState) => {\n const newComments: Comments = {};\n for (const comment of comments) {\n // updatedAt hasn't changed so no need to update the comment\n if (\n state.comments[comment.cid] &&\n comment.updatedAt <= state.comments[comment.cid].updatedAt\n ) {\n continue;\n }\n newComments[comment.cid] = comment;\n }\n if (!Object.keys(newComments).length) {\n return {};\n }\n return { comments: { ...state.comments, ...newComments } };\n });\n },\n }),\n);\n\nexport default repliesCommentsStore;\n"]}
@@ -0,0 +1,29 @@
1
+ import { Feed, Feeds, Comment, RepliesFeedOptions, RepliesFeedsOptions } from "../../types.js";
2
+ export declare const defaultRepliesPerPage = 25;
3
+ export type RepliesState = {
4
+ feedsOptions: RepliesFeedsOptions;
5
+ bufferedFeeds: Feeds;
6
+ loadedFeeds: Feeds;
7
+ updatedFeeds: Feeds;
8
+ bufferedFeedsReplyCounts: {
9
+ [feedName: string]: number;
10
+ };
11
+ feedsHaveMore: {
12
+ [feedName: string]: boolean;
13
+ };
14
+ addFeedsToStore: Function;
15
+ addFeedToStoreOrUpdateComment: Function;
16
+ incrementFeedPageNumber: Function;
17
+ resetFeed: Function;
18
+ updateFeeds: Function;
19
+ };
20
+ export declare const feedOptionsToFeedName: (feedOptions: Partial<RepliesFeedOptions>) => string;
21
+ declare const repliesStore: import("zustand").UseBoundStore<import("zustand").StoreApi<RepliesState>>;
22
+ export declare const getRepliesFirstPageSkipValidation: (comment: Comment, feedOptions: Partial<RepliesFeedOptions>) => {
23
+ replies: Feed;
24
+ hasMore: boolean;
25
+ };
26
+ export declare const resetRepliesStore: () => Promise<void>;
27
+ export declare const resetRepliesDatabaseAndStore: () => Promise<void>;
28
+ export default repliesStore;
29
+ //# sourceMappingURL=replies-store.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"replies-store.d.ts","sourceRoot":"","sources":["../../../src/stores/replies/replies-store.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,IAAI,EACJ,KAAK,EACL,OAAO,EAGP,kBAAkB,EAClB,mBAAmB,EAGpB,MAAM,aAAa,CAAC;AAwBrB,eAAO,MAAM,qBAAqB,KAAK,CAAC;AAKxC,MAAM,MAAM,YAAY,GAAG;IACzB,YAAY,EAAE,mBAAmB,CAAC;IAClC,aAAa,EAAE,KAAK,CAAC;IACrB,WAAW,EAAE,KAAK,CAAC;IACnB,YAAY,EAAE,KAAK,CAAC;IACpB,wBAAwB,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IACzD,aAAa,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAC/C,eAAe,EAAE,QAAQ,CAAC;IAC1B,6BAA6B,EAAE,QAAQ,CAAC;IACxC,uBAAuB,EAAE,QAAQ,CAAC;IAClC,SAAS,EAAE,QAAQ,CAAC;IACpB,WAAW,EAAE,QAAQ,CAAC;CACvB,CAAC;AAgBF,eAAO,MAAM,qBAAqB,GAAI,aAAa,OAAO,CAAC,kBAAkB,CAAC,WAG7E,CAAC;AAOF,QAAA,MAAM,YAAY,2EAoRf,CAAC;AAkLJ,eAAO,MAAM,iCAAiC,GAC5C,SAAS,OAAO,EAChB,aAAa,OAAO,CAAC,kBAAkB,CAAC;;;CAmCzC,CAAC;AAKF,eAAO,MAAM,iBAAiB,qBAkB7B,CAAC;AAGF,eAAO,MAAM,4BAA4B,qBAGxC,CAAC;AAEF,eAAe,YAAY,CAAC"}