@meith/web 0.16.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 (511) hide show
  1. package/LICENSE.md +165 -0
  2. package/app/(auth)/layout.tsx +6 -0
  3. package/app/(auth)/login/page.tsx +106 -0
  4. package/app/(auth)/login/verify/page.tsx +55 -0
  5. package/app/(auth)/register/page.tsx +83 -0
  6. package/app/(auth)/reset/confirm/page.tsx +45 -0
  7. package/app/(auth)/reset/page.tsx +22 -0
  8. package/app/(auth)/verify/page.tsx +44 -0
  9. package/app/(auth)/verify/resend/page.tsx +51 -0
  10. package/app/(board)/[slug]/feed.xml/route.ts +48 -0
  11. package/app/(board)/[slug]/new/page.tsx +112 -0
  12. package/app/(board)/[slug]/page.tsx +403 -0
  13. package/app/(board)/discover/[view]/page.tsx +115 -0
  14. package/app/(board)/discover/page.tsx +5 -0
  15. package/app/(board)/layout.tsx +22 -0
  16. package/app/(board)/member/[id]/page.tsx +187 -0
  17. package/app/(board)/member/[id]/reputation/page.tsx +195 -0
  18. package/app/(board)/member/by-name/[name]/page.tsx +32 -0
  19. package/app/(board)/messages/[id]/page.tsx +103 -0
  20. package/app/(board)/messages/compose/page.tsx +60 -0
  21. package/app/(board)/messages/layout.tsx +5 -0
  22. package/app/(board)/messages/page.tsx +179 -0
  23. package/app/(board)/modcp/forums/page.tsx +59 -0
  24. package/app/(board)/modcp/ip/page.tsx +158 -0
  25. package/app/(board)/modcp/layout.tsx +5 -0
  26. package/app/(board)/modcp/log/page.tsx +98 -0
  27. package/app/(board)/modcp/page.tsx +112 -0
  28. package/app/(board)/moderation/layout.tsx +5 -0
  29. package/app/(board)/moderation/page.tsx +111 -0
  30. package/app/(board)/moderation/reports/page.tsx +193 -0
  31. package/app/(board)/moderation/warn/page.tsx +158 -0
  32. package/app/(board)/notifications/layout.tsx +5 -0
  33. package/app/(board)/notifications/page.tsx +144 -0
  34. package/app/(board)/notifications/preferences/page.tsx +65 -0
  35. package/app/(board)/online/page.tsx +119 -0
  36. package/app/(board)/page.tsx +195 -0
  37. package/app/(board)/plugins/[key]/[[...path]]/page.tsx +72 -0
  38. package/app/(board)/privacy/page.tsx +12 -0
  39. package/app/(board)/report/page.tsx +71 -0
  40. package/app/(board)/rules/page.tsx +12 -0
  41. package/app/(board)/search/[token]/page.tsx +130 -0
  42. package/app/(board)/search/page.tsx +289 -0
  43. package/app/(board)/stats/page.tsx +202 -0
  44. package/app/(board)/subscriptions/layout.tsx +5 -0
  45. package/app/(board)/subscriptions/page.tsx +142 -0
  46. package/app/(board)/terms/page.tsx +12 -0
  47. package/app/(board)/thread/[slug]/edit/page.tsx +107 -0
  48. package/app/(board)/thread/[slug]/feed.xml/route.ts +42 -0
  49. package/app/(board)/thread/[slug]/page.tsx +707 -0
  50. package/app/(board)/thread/[slug]/poll/page.tsx +41 -0
  51. package/app/(board)/thread/[slug]/post/[postId]/history/page.tsx +160 -0
  52. package/app/(board)/thread/[slug]/reply/page.tsx +136 -0
  53. package/app/(board)/unsubscribe/page.tsx +73 -0
  54. package/app/(board)/usercp/avatar/page.tsx +56 -0
  55. package/app/(board)/usercp/contacts/page.tsx +141 -0
  56. package/app/(board)/usercp/email/confirm/page.tsx +52 -0
  57. package/app/(board)/usercp/layout.tsx +23 -0
  58. package/app/(board)/usercp/options/page.tsx +56 -0
  59. package/app/(board)/usercp/page.tsx +71 -0
  60. package/app/(board)/usercp/profile/page.tsx +81 -0
  61. package/app/(board)/usercp/security/page.tsx +238 -0
  62. package/app/(board)/usercp/security/verify/page.tsx +92 -0
  63. package/app/(board)/usercp/signature/page.tsx +67 -0
  64. package/app/admin/antispam/page.tsx +155 -0
  65. package/app/admin/api/marketplace/screenshot/route.ts +68 -0
  66. package/app/admin/api/plugins/[key]/[...path]/route.ts +27 -0
  67. package/app/admin/api-tokens/page.tsx +129 -0
  68. package/app/admin/content/announcements/page.tsx +110 -0
  69. package/app/admin/content/attachments/page.tsx +199 -0
  70. package/app/admin/content/navigation/page.tsx +123 -0
  71. package/app/admin/content/page.tsx +170 -0
  72. package/app/admin/forums/[id]/page.tsx +96 -0
  73. package/app/admin/forums/[id]/permissions/page.tsx +108 -0
  74. package/app/admin/forums/page.tsx +45 -0
  75. package/app/admin/groups/[id]/page.tsx +133 -0
  76. package/app/admin/groups/memberships/page.tsx +56 -0
  77. package/app/admin/groups/page.tsx +104 -0
  78. package/app/admin/groups/promotions/page.tsx +143 -0
  79. package/app/admin/layout.tsx +86 -0
  80. package/app/admin/log/page.tsx +116 -0
  81. package/app/admin/page.tsx +206 -0
  82. package/app/admin/plugins/[key]/[[...path]]/page.tsx +276 -0
  83. package/app/admin/plugins/browse/page.tsx +70 -0
  84. package/app/admin/plugins/page.tsx +165 -0
  85. package/app/admin/security/page.tsx +124 -0
  86. package/app/admin/settings/page.tsx +190 -0
  87. package/app/admin/system/page.tsx +303 -0
  88. package/app/admin/themes/[key]/page.tsx +110 -0
  89. package/app/admin/themes/browse/page.tsx +70 -0
  90. package/app/admin/themes/page.tsx +163 -0
  91. package/app/admin/users/[id]/merge/page.tsx +136 -0
  92. package/app/admin/users/[id]/page.tsx +208 -0
  93. package/app/admin/users/mail/page.tsx +68 -0
  94. package/app/admin/users/page.tsx +260 -0
  95. package/app/admin/users/prune/page.tsx +186 -0
  96. package/app/api/health/route.ts +11 -0
  97. package/app/api/metrics/route.ts +66 -0
  98. package/app/api/plugins/[key]/[...path]/route.ts +27 -0
  99. package/app/api/read/all/route.ts +15 -0
  100. package/app/api/read/forum/[id]/route.ts +29 -0
  101. package/app/api/read/thread/[id]/route.ts +40 -0
  102. package/app/api/ready/route.ts +63 -0
  103. package/app/api/system/tick/route.ts +77 -0
  104. package/app/api/v1/[...path]/route.ts +208 -0
  105. package/app/api/v1/openapi.json/route.ts +12 -0
  106. package/app/apple-icon.ts +11 -0
  107. package/app/atom.xml/route.ts +7 -0
  108. package/app/attachment/[id]/route.ts +10 -0
  109. package/app/attachment/[id]/thumb/route.ts +10 -0
  110. package/app/auth/passkey/options/route.ts +145 -0
  111. package/app/auth/passkey/verify/route.ts +241 -0
  112. package/app/auth/resume/route.ts +55 -0
  113. package/app/auth/sso/[provider]/callback/route.ts +173 -0
  114. package/app/auth/sso/[provider]/go/route.ts +57 -0
  115. package/app/auth/sso/[provider]/route.ts +105 -0
  116. package/app/avatar/[id]/route.ts +31 -0
  117. package/app/brand/icon-192.png/route.ts +7 -0
  118. package/app/brand/icon-512.png/route.ts +7 -0
  119. package/app/brand/icon-maskable.png/route.ts +7 -0
  120. package/app/demo/stripe/[[...path]]/route.ts +27 -0
  121. package/app/error.tsx +15 -0
  122. package/app/feed.xml/route.ts +7 -0
  123. package/app/forumdisplay.php/page.tsx +11 -0
  124. package/app/group/[id]/badge/[scheme]/route.ts +26 -0
  125. package/app/icon.ts +13 -0
  126. package/app/install/page.tsx +221 -0
  127. package/app/jump/page.tsx +28 -0
  128. package/app/layout.tsx +124 -0
  129. package/app/logo/[scheme]/route.ts +24 -0
  130. package/app/manifest.ts +43 -0
  131. package/app/member.php/page.tsx +11 -0
  132. package/app/memberlist.php/page.tsx +11 -0
  133. package/app/not-found.tsx +14 -0
  134. package/app/opengraph-image.ts +11 -0
  135. package/app/redirect/page.tsx +44 -0
  136. package/app/robots.txt/route.ts +35 -0
  137. package/app/showthread.php/page.tsx +11 -0
  138. package/app/sitemap/[page]/route.ts +64 -0
  139. package/app/sitemap.xml/route.ts +31 -0
  140. package/app/twitter-image.ts +11 -0
  141. package/app/viewforum.php/page.tsx +11 -0
  142. package/app/viewtopic.php/page.tsx +11 -0
  143. package/bin/forum-web.mjs +241 -0
  144. package/components.json +21 -0
  145. package/instrumentation.ts +18 -0
  146. package/next.config.mjs +182 -0
  147. package/package.json +99 -0
  148. package/postcss.config.mjs +7 -0
  149. package/proxy.ts +160 -0
  150. package/src/components/account/active-sessions.tsx +87 -0
  151. package/src/components/account/avatar-form.tsx +119 -0
  152. package/src/components/account/credential-proof-form.tsx +76 -0
  153. package/src/components/account/logout-form.tsx +14 -0
  154. package/src/components/account/notification-forms.tsx +157 -0
  155. package/src/components/account/passkey-enrol.tsx +81 -0
  156. package/src/components/account/passkey-proof-button.tsx +47 -0
  157. package/src/components/account/push-device-form.tsx +193 -0
  158. package/src/components/account/relation-forms.tsx +69 -0
  159. package/src/components/account/reputation-forms.tsx +124 -0
  160. package/src/components/account/security-activity.tsx +46 -0
  161. package/src/components/account/sign-in-methods.tsx +166 -0
  162. package/src/components/account/subscription-forms.tsx +151 -0
  163. package/src/components/account/two-factor-forms.tsx +226 -0
  164. package/src/components/account/usercp-forms.tsx +387 -0
  165. package/src/components/account/usercp-nav.tsx +14 -0
  166. package/src/components/account/usercp-shell.tsx +34 -0
  167. package/src/components/admin/admin-forms.tsx +92 -0
  168. package/src/components/admin/admin-nav.tsx +52 -0
  169. package/src/components/admin/admin-undo.tsx +32 -0
  170. package/src/components/admin/api-token-forms.tsx +89 -0
  171. package/src/components/admin/badge-forms.tsx +97 -0
  172. package/src/components/admin/branding-forms.tsx +102 -0
  173. package/src/components/admin/content-forms.tsx +712 -0
  174. package/src/components/admin/form-bits.tsx +11 -0
  175. package/src/components/admin/forum-forms.tsx +524 -0
  176. package/src/components/admin/forum-tree.tsx +454 -0
  177. package/src/components/admin/group-forms.tsx +646 -0
  178. package/src/components/admin/mail-test-card.tsx +90 -0
  179. package/src/components/admin/marketplace-forms.tsx +30 -0
  180. package/src/components/admin/marketplace-listing.tsx +123 -0
  181. package/src/components/admin/navigation-forms.tsx +229 -0
  182. package/src/components/admin/navigation-tree.tsx +442 -0
  183. package/src/components/admin/oklch-picker.tsx +180 -0
  184. package/src/components/admin/plugin-forms.tsx +225 -0
  185. package/src/components/admin/settings-form.tsx +148 -0
  186. package/src/components/admin/system-forms.tsx +169 -0
  187. package/src/components/admin/theme-changes.tsx +354 -0
  188. package/src/components/admin/theme-forms.tsx +636 -0
  189. package/src/components/admin/theme-palette.tsx +119 -0
  190. package/src/components/admin/theme-preview.tsx +461 -0
  191. package/src/components/admin/user-bulk-toolbar.tsx +99 -0
  192. package/src/components/admin/user-forms.tsx +488 -0
  193. package/src/components/auth/auth-page.tsx +45 -0
  194. package/src/components/auth/form-controls.tsx +117 -0
  195. package/src/components/auth/login-form.tsx +47 -0
  196. package/src/components/auth/passkey-client.ts +171 -0
  197. package/src/components/auth/passkey-second-factor.tsx +69 -0
  198. package/src/components/auth/passkey-sign-in.tsx +61 -0
  199. package/src/components/auth/register-form.tsx +136 -0
  200. package/src/components/auth/resend-verification-form.tsx +34 -0
  201. package/src/components/auth/reset-confirm-form.tsx +43 -0
  202. package/src/components/auth/reset-request-form.tsx +35 -0
  203. package/src/components/auth/second-factor-form.tsx +51 -0
  204. package/src/components/auth/sso-buttons.tsx +47 -0
  205. package/src/components/board/live-region.tsx +74 -0
  206. package/src/components/board/search-off-notice.tsx +18 -0
  207. package/src/components/board/section-page.tsx +114 -0
  208. package/src/components/content/attachment-field.tsx +51 -0
  209. package/src/components/content/composer-field.ts +31 -0
  210. package/src/components/content/composer-ids.ts +6 -0
  211. package/src/components/content/composer-intents.tsx +27 -0
  212. package/src/components/content/composer-recovery.tsx +215 -0
  213. package/src/components/content/edit-post-form.tsx +121 -0
  214. package/src/components/content/markdown-editor.tsx +590 -0
  215. package/src/components/content/markdown-syntax.ts +53 -0
  216. package/src/components/content/mention-token.ts +23 -0
  217. package/src/components/content/multiquote-button.tsx +32 -0
  218. package/src/components/content/multiquote-selection.tsx +105 -0
  219. package/src/components/content/multiquote.ts +125 -0
  220. package/src/components/content/new-thread-form.tsx +169 -0
  221. package/src/components/content/poll-edit-form.tsx +96 -0
  222. package/src/components/content/poll.tsx +89 -0
  223. package/src/components/content/quote-in-place.tsx +51 -0
  224. package/src/components/content/reply-form.tsx +113 -0
  225. package/src/components/content/thanks-button.tsx +65 -0
  226. package/src/components/content/thread-rating.tsx +143 -0
  227. package/src/components/install/install-form.tsx +497 -0
  228. package/src/components/legal/legal-document.tsx +22 -0
  229. package/src/components/messages/message-forms.tsx +152 -0
  230. package/src/components/moderation/inline-moderation-form.tsx +158 -0
  231. package/src/components/moderation/modcp-nav.tsx +15 -0
  232. package/src/components/moderation/modcp-shell.tsx +41 -0
  233. package/src/components/moderation/queue-form.tsx +96 -0
  234. package/src/components/moderation/report-forms.tsx +120 -0
  235. package/src/components/moderation/signature-lock-form.tsx +83 -0
  236. package/src/components/moderation/thread-surgery-form.tsx +96 -0
  237. package/src/components/moderation/thread-tools-form.tsx +137 -0
  238. package/src/components/moderation/warning-forms.tsx +125 -0
  239. package/src/components/profile/custom-field.tsx +79 -0
  240. package/src/components/shell/appearance-icons.tsx +35 -0
  241. package/src/components/shell/board-notice.tsx +21 -0
  242. package/src/components/shell/copy-record.ts +20 -0
  243. package/src/components/shell/copy.tsx +17 -0
  244. package/src/components/shell/crash-notice.tsx +86 -0
  245. package/src/components/shell/demo-banner.tsx +49 -0
  246. package/src/components/shell/group-name-style.tsx +6 -0
  247. package/src/components/shell/measure.ts +1 -0
  248. package/src/components/shell/notification-menu.tsx +361 -0
  249. package/src/components/shell/offline-notice.tsx +29 -0
  250. package/src/components/shell/onboarding-banner.tsx +39 -0
  251. package/src/components/shell/page-shell.tsx +167 -0
  252. package/src/components/shell/panel-list.tsx +95 -0
  253. package/src/components/shell/panel-nav.tsx +40 -0
  254. package/src/components/shell/panel-overview.tsx +81 -0
  255. package/src/components/shell/panel-page.tsx +96 -0
  256. package/src/components/shell/panel-pagination.tsx +28 -0
  257. package/src/components/shell/panel-shell.tsx +31 -0
  258. package/src/components/shell/theme-runtime-style.tsx +6 -0
  259. package/src/components/shell/theme-switcher.tsx +97 -0
  260. package/src/components/shell/timezone-probe.tsx +45 -0
  261. package/src/components/shell/view-tabs.tsx +60 -0
  262. package/src/config.ts +13 -0
  263. package/src/server/absent-services.ts +29 -0
  264. package/src/server/admin-actions.ts +171 -0
  265. package/src/server/admin-settings-actions.ts +83 -0
  266. package/src/server/admin-undo-actions.ts +70 -0
  267. package/src/server/admin-undo.ts +75 -0
  268. package/src/server/admin.ts +112 -0
  269. package/src/server/announcements.ts +82 -0
  270. package/src/server/antispam.ts +310 -0
  271. package/src/server/api/content.ts +486 -0
  272. package/src/server/api/http.ts +119 -0
  273. package/src/server/api/members.ts +109 -0
  274. package/src/server/api/messages.ts +113 -0
  275. package/src/server/api/registry.ts +30 -0
  276. package/src/server/api/search.ts +98 -0
  277. package/src/server/api/subscriptions.ts +106 -0
  278. package/src/server/api-auth.ts +66 -0
  279. package/src/server/api-token-actions.ts +85 -0
  280. package/src/server/api-tokens-admin.ts +95 -0
  281. package/src/server/appearance-actions.ts +39 -0
  282. package/src/server/attachment-download.ts +43 -0
  283. package/src/server/attachment-embed.ts +63 -0
  284. package/src/server/attachment-upload-actions.ts +92 -0
  285. package/src/server/attachments.ts +257 -0
  286. package/src/server/auth-actions.ts +479 -0
  287. package/src/server/auth-config.ts +61 -0
  288. package/src/server/auth-events.ts +92 -0
  289. package/src/server/auth-form-state.ts +14 -0
  290. package/src/server/auth-mail.ts +104 -0
  291. package/src/server/avatars.ts +83 -0
  292. package/src/server/board-latest-actions.ts +7 -0
  293. package/src/server/board-latest.tsx +103 -0
  294. package/src/server/board-offline.ts +23 -0
  295. package/src/server/board-url.ts +14 -0
  296. package/src/server/brand-assets.ts +151 -0
  297. package/src/server/brand-mark.tsx +110 -0
  298. package/src/server/branding-actions.ts +53 -0
  299. package/src/server/branding.ts +101 -0
  300. package/src/server/cache-targets.ts +13 -0
  301. package/src/server/code-highlighting.ts +33 -0
  302. package/src/server/container.ts +402 -0
  303. package/src/server/content-actions.ts +459 -0
  304. package/src/server/content-admin-actions.ts +492 -0
  305. package/src/server/content-admin.ts +95 -0
  306. package/src/server/content-security-policy.ts +35 -0
  307. package/src/server/context.ts +32 -0
  308. package/src/server/cookies.ts +139 -0
  309. package/src/server/credential-proof-actions.ts +42 -0
  310. package/src/server/credential-proof.ts +35 -0
  311. package/src/server/current-location.ts +19 -0
  312. package/src/server/demo-stripe.ts +104 -0
  313. package/src/server/demo-uploads.ts +28 -0
  314. package/src/server/demo.ts +80 -0
  315. package/src/server/discovery.ts +104 -0
  316. package/src/server/embeds.ts +113 -0
  317. package/src/server/error-notice.tsx +41 -0
  318. package/src/server/federation-actions.ts +113 -0
  319. package/src/server/federation.ts +138 -0
  320. package/src/server/feed-builder.ts +72 -0
  321. package/src/server/feed-routes.ts +122 -0
  322. package/src/server/fixture-actor-source.ts +62 -0
  323. package/src/server/fixture-forum-repo.ts +59 -0
  324. package/src/server/fixture-member-profile-repo.ts +30 -0
  325. package/src/server/fixture-post-repo.ts +108 -0
  326. package/src/server/fixture-thread-repo.ts +98 -0
  327. package/src/server/form-state-reporter.ts +34 -0
  328. package/src/server/form-values.ts +23 -0
  329. package/src/server/forum-admin-actions.ts +353 -0
  330. package/src/server/forum-admin.ts +98 -0
  331. package/src/server/group-admin-actions.ts +341 -0
  332. package/src/server/group-admin.ts +98 -0
  333. package/src/server/group-badge-actions.ts +61 -0
  334. package/src/server/group-badge.ts +62 -0
  335. package/src/server/group-identity.ts +104 -0
  336. package/src/server/i18n-catalogs.ts +42 -0
  337. package/src/server/i18n.ts +69 -0
  338. package/src/server/image-upload.ts +109 -0
  339. package/src/server/inline-moderation-actions.ts +129 -0
  340. package/src/server/install-actions.ts +124 -0
  341. package/src/server/install.ts +281 -0
  342. package/src/server/legacy-redirect.ts +83 -0
  343. package/src/server/legal.ts +43 -0
  344. package/src/server/location-header.ts +37 -0
  345. package/src/server/mail-brand.ts +43 -0
  346. package/src/server/mail-health.ts +41 -0
  347. package/src/server/mail-send.ts +44 -0
  348. package/src/server/mail-test-actions.ts +67 -0
  349. package/src/server/mail-test.ts +56 -0
  350. package/src/server/markdown-pipeline.ts +31 -0
  351. package/src/server/marketplace-actions.ts +47 -0
  352. package/src/server/marketplace-admin.ts +260 -0
  353. package/src/server/mention-actions.ts +21 -0
  354. package/src/server/mention-search.ts +35 -0
  355. package/src/server/message-actions.ts +110 -0
  356. package/src/server/messages.ts +141 -0
  357. package/src/server/modcp.ts +125 -0
  358. package/src/server/moderation-actions.ts +165 -0
  359. package/src/server/navigation-admin-actions.ts +217 -0
  360. package/src/server/navigation.ts +112 -0
  361. package/src/server/nonce.ts +13 -0
  362. package/src/server/notification-actions.ts +84 -0
  363. package/src/server/notification-audience.ts +10 -0
  364. package/src/server/notification-menu-actions.ts +82 -0
  365. package/src/server/notification-menu.ts +96 -0
  366. package/src/server/notifications.ts +93 -0
  367. package/src/server/onboarding-actions.ts +27 -0
  368. package/src/server/onboarding.ts +89 -0
  369. package/src/server/page-metadata.ts +14 -0
  370. package/src/server/passkey-challenge.ts +42 -0
  371. package/src/server/plugin-admin-actions.ts +232 -0
  372. package/src/server/plugin-admin.ts +276 -0
  373. package/src/server/plugin-host.ts +143 -0
  374. package/src/server/plugin-pages.ts +192 -0
  375. package/src/server/plugin-panel.ts +49 -0
  376. package/src/server/plugin-routes.ts +298 -0
  377. package/src/server/plugin-view.tsx +58 -0
  378. package/src/server/poll-actions.ts +104 -0
  379. package/src/server/poll-scope.ts +52 -0
  380. package/src/server/post-notifications.ts +71 -0
  381. package/src/server/post-scope.ts +86 -0
  382. package/src/server/presence.ts +177 -0
  383. package/src/server/profile-fields.ts +112 -0
  384. package/src/server/push-actions.ts +113 -0
  385. package/src/server/push.ts +40 -0
  386. package/src/server/redirect-back.ts +15 -0
  387. package/src/server/registration.ts +7 -0
  388. package/src/server/relation-actions.ts +89 -0
  389. package/src/server/relations.ts +45 -0
  390. package/src/server/reply-core.ts +173 -0
  391. package/src/server/report-actions.ts +165 -0
  392. package/src/server/report-scope.ts +21 -0
  393. package/src/server/reputation-actions.ts +146 -0
  394. package/src/server/reputation-target.ts +49 -0
  395. package/src/server/reputation.ts +70 -0
  396. package/src/server/request-fingerprint.ts +65 -0
  397. package/src/server/safe-path.ts +16 -0
  398. package/src/server/same-origin.ts +45 -0
  399. package/src/server/search-page.ts +313 -0
  400. package/src/server/search.ts +45 -0
  401. package/src/server/secret-auth.ts +20 -0
  402. package/src/server/see-other.ts +11 -0
  403. package/src/server/seed-board.ts +417 -0
  404. package/src/server/session-actions.ts +78 -0
  405. package/src/server/session-cookies.ts +124 -0
  406. package/src/server/session-key.ts +17 -0
  407. package/src/server/settings.ts +47 -0
  408. package/src/server/signatures.ts +62 -0
  409. package/src/server/sso-handshake.ts +79 -0
  410. package/src/server/stats.ts +63 -0
  411. package/src/server/subscription-actions.ts +161 -0
  412. package/src/server/surgery-actions.ts +180 -0
  413. package/src/server/syndication.ts +77 -0
  414. package/src/server/system-admin-actions.ts +134 -0
  415. package/src/server/system-admin.ts +90 -0
  416. package/src/server/test-container.ts +114 -0
  417. package/src/server/theme-admin-actions.ts +242 -0
  418. package/src/server/theme-admin.ts +203 -0
  419. package/src/server/theme-runtime.ts +89 -0
  420. package/src/server/theme-style.ts +279 -0
  421. package/src/server/theme.ts +52 -0
  422. package/src/server/thread-core.ts +207 -0
  423. package/src/server/thread-rating-actions.ts +55 -0
  424. package/src/server/thread-tool-actions.ts +154 -0
  425. package/src/server/two-factor-actions.ts +178 -0
  426. package/src/server/two-factor.ts +86 -0
  427. package/src/server/upgrade-notice.ts +41 -0
  428. package/src/server/user-admin-actions.ts +572 -0
  429. package/src/server/user-admin.ts +165 -0
  430. package/src/server/usercp-actions.ts +263 -0
  431. package/src/server/usercp-mail.ts +120 -0
  432. package/src/server/viewer-preferences.ts +64 -0
  433. package/src/server/warning-actions.ts +122 -0
  434. package/src/styles/globals.css +969 -0
  435. package/src/theme/contract.fixture.ts +793 -0
  436. package/src/view/account-copy.ts +351 -0
  437. package/src/view/admin-content-copy.ts +66 -0
  438. package/src/view/admin-copy.ts +106 -0
  439. package/src/view/admin-forum-tree-copy.ts +40 -0
  440. package/src/view/admin-group-copy.ts +80 -0
  441. package/src/view/admin-log.ts +58 -0
  442. package/src/view/admin-nav.ts +164 -0
  443. package/src/view/admin-navigation-copy.ts +58 -0
  444. package/src/view/admin-panel-copy.ts +194 -0
  445. package/src/view/admin-settings.ts +173 -0
  446. package/src/view/admin-theme-copy.ts +229 -0
  447. package/src/view/admin-user-copy.ts +96 -0
  448. package/src/view/attachments.ts +51 -0
  449. package/src/view/auth-copy.ts +147 -0
  450. package/src/view/board-index.ts +167 -0
  451. package/src/view/board-latest.ts +101 -0
  452. package/src/view/breadcrumb.ts +50 -0
  453. package/src/view/contacts.ts +85 -0
  454. package/src/view/content-copy.ts +118 -0
  455. package/src/view/contrast.ts +286 -0
  456. package/src/view/copy.ts +101 -0
  457. package/src/view/count.ts +8 -0
  458. package/src/view/discovery-view.ts +74 -0
  459. package/src/view/editor-toolbar.ts +84 -0
  460. package/src/view/error-notice.ts +52 -0
  461. package/src/view/feed.ts +130 -0
  462. package/src/view/forum-cursor.ts +54 -0
  463. package/src/view/forum-display.ts +152 -0
  464. package/src/view/forum-jump.ts +60 -0
  465. package/src/view/forum-notice.ts +24 -0
  466. package/src/view/inline-moderation.ts +87 -0
  467. package/src/view/install-copy.ts +95 -0
  468. package/src/view/legal.ts +58 -0
  469. package/src/view/locale.ts +40 -0
  470. package/src/view/marketplace-panel.ts +51 -0
  471. package/src/view/member-identity.ts +23 -0
  472. package/src/view/member-profile.ts +65 -0
  473. package/src/view/messages.ts +222 -0
  474. package/src/view/metadata.ts +75 -0
  475. package/src/view/modcp-nav.ts +76 -0
  476. package/src/view/moderation-copy.ts +84 -0
  477. package/src/view/moderation-queue.ts +67 -0
  478. package/src/view/navigation-arrange.ts +188 -0
  479. package/src/view/navigation.ts +173 -0
  480. package/src/view/notification-menu.ts +202 -0
  481. package/src/view/notifications.ts +84 -0
  482. package/src/view/onboarding.ts +26 -0
  483. package/src/view/pager.ts +191 -0
  484. package/src/view/panel-nav.ts +203 -0
  485. package/src/view/plugin-panel.ts +42 -0
  486. package/src/view/post-form.ts +61 -0
  487. package/src/view/post-link.ts +29 -0
  488. package/src/view/presence.ts +99 -0
  489. package/src/view/promotion-rules.ts +52 -0
  490. package/src/view/redirect-notice.ts +21 -0
  491. package/src/view/reputation.ts +107 -0
  492. package/src/view/search-controls.ts +103 -0
  493. package/src/view/search-results.ts +291 -0
  494. package/src/view/security-activity.ts +73 -0
  495. package/src/view/setting-groups.ts +43 -0
  496. package/src/view/shell.ts +164 -0
  497. package/src/view/slug-id.ts +12 -0
  498. package/src/view/sso-hand-off.ts +44 -0
  499. package/src/view/sso-notices.ts +48 -0
  500. package/src/view/subscriptions.ts +76 -0
  501. package/src/view/theme-draft.ts +167 -0
  502. package/src/view/theme-preference.ts +30 -0
  503. package/src/view/theme-tokens.ts +333 -0
  504. package/src/view/thread-view.ts +280 -0
  505. package/src/view/time.ts +31 -0
  506. package/src/view/timezone.ts +35 -0
  507. package/src/view/two-factor.ts +6 -0
  508. package/src/view/usercp-nav.ts +103 -0
  509. package/src/view/usercp.ts +196 -0
  510. package/src/view/warnings.ts +128 -0
  511. package/src/view/word-filter.ts +5 -0
@@ -0,0 +1,101 @@
1
+ import type { Translator } from '@meith/i18n'
2
+
3
+ import { untranslated } from './time'
4
+
5
+ export function copyFor(
6
+ keys: readonly string[],
7
+ t: Translator = untranslated(),
8
+ ): Readonly<Record<string, string>> {
9
+ const copy: Record<string, string> = {}
10
+ for (const key of keys) copy[key] = t.t(key)
11
+ return copy
12
+ }
13
+
14
+ export function patternCopy(
15
+ keys: readonly string[],
16
+ t: Translator = untranslated(),
17
+ ): Readonly<Record<string, string>> {
18
+ const copy: Record<string, string> = {}
19
+ for (const key of keys) copy[key] = t.pattern(key) ?? key
20
+ return copy
21
+ }
22
+
23
+ const CHROME_KEYS = [
24
+ 'form.working',
25
+ 'form.notSaved',
26
+ 'composer.message',
27
+ 'composer.tabs',
28
+ 'composer.write',
29
+ 'composer.preview',
30
+ 'composer.formatting',
31
+ 'composer.rendering',
32
+ 'composer.previewFailed',
33
+ 'composer.previewEmpty',
34
+ 'composer.saveDraft',
35
+ 'composer.tool.bold',
36
+ 'composer.tool.italic',
37
+ 'composer.tool.strikethrough',
38
+ 'composer.tool.link',
39
+ 'composer.tool.quote',
40
+ 'composer.tool.code',
41
+ 'composer.tool.bulletedList',
42
+ 'composer.tool.numberedList',
43
+ 'composer.tool.heading',
44
+ 'composer.tool.spoiler',
45
+ 'composer.tool.attachment',
46
+ 'composer.placeholder.bold',
47
+ 'composer.placeholder.italic',
48
+ 'composer.placeholder.struck',
49
+ 'composer.placeholder.spoiler',
50
+ 'composer.help.summary',
51
+ 'composer.help.bold',
52
+ 'composer.help.italic',
53
+ 'composer.help.struck',
54
+ 'composer.help.link',
55
+ 'composer.help.codeInline',
56
+ 'composer.help.codeBlock',
57
+ 'composer.help.quote',
58
+ 'composer.help.list',
59
+ 'composer.help.heading',
60
+ 'composer.help.note',
61
+ 'composer.help.spoiler',
62
+ 'composer.help.mention',
63
+ 'composer.help.attachment',
64
+ 'composer.attachments.label',
65
+ 'composer.mention.suggestions',
66
+ 'composer.attachment.uploading',
67
+ 'composer.thanks.thanked',
68
+ 'composer.thanks.thanks',
69
+ 'composer.multiquote.button',
70
+ 'composer.multiquote.addToReply',
71
+ 'composer.multiquote.adding',
72
+ 'composer.multiquote.clear',
73
+ 'composer.multiquote.cleared',
74
+ 'composer.multiquote.noneQuoted',
75
+ ] as const
76
+
77
+ const CHROME_PATTERN_KEYS = [
78
+ 'composer.toolShortcut',
79
+ 'composer.attachments.hint',
80
+ 'composer.thanks.count',
81
+ 'composer.multiquote.selectedToQuote',
82
+ 'composer.multiquote.added',
83
+ 'composer.multiquote.removed',
84
+ 'composer.multiquote.quotesAdded',
85
+ 'composer.multiquote.quotesPartial',
86
+ ] as const
87
+
88
+ export function formChromeCopy(t: Translator = untranslated()): Readonly<Record<string, string>> {
89
+ return { ...copyFor(CHROME_KEYS, t), ...patternCopy(CHROME_PATTERN_KEYS, t) }
90
+ }
91
+
92
+ export function splitAround(
93
+ t: Translator,
94
+ key: string,
95
+ slot: string,
96
+ args?: Readonly<Record<string, string | number>>,
97
+ ): readonly [string, string] {
98
+ const rendered = t.t(key, { ...args, [slot]: '\u0000' })
99
+ const at = rendered.indexOf('\u0000')
100
+ return at === -1 ? [rendered, ''] : [rendered.slice(0, at), rendered.slice(at + 1)]
101
+ }
@@ -0,0 +1,8 @@
1
+ import type { Translator } from '@meith/i18n'
2
+ import type { CountModel } from '@meith/theme-kit'
3
+
4
+ import { untranslated } from './time'
5
+
6
+ export function count(value: number, translator: Translator = untranslated()): CountModel {
7
+ return { value, label: translator.number(value) }
8
+ }
@@ -0,0 +1,74 @@
1
+ import type { Translator } from '@meith/i18n'
2
+ import type { DiscoveryViewModel } from '@meith/theme-kit'
3
+
4
+ import { count } from './count'
5
+ import { formatTime, untranslated } from './time'
6
+
7
+ export const DISCOVERY_LABELS = {
8
+ new: { labelKey: 'discovery.new.label', blurbKey: 'discovery.new.blurb' },
9
+ today: { labelKey: 'discovery.today.label', blurbKey: 'discovery.today.blurb' },
10
+ mine: { labelKey: 'discovery.mine.label', blurbKey: 'discovery.mine.blurb' },
11
+ participated: {
12
+ labelKey: 'discovery.participated.label',
13
+ blurbKey: 'discovery.participated.blurb',
14
+ },
15
+ unanswered: { labelKey: 'discovery.unanswered.label', blurbKey: 'discovery.unanswered.blurb' },
16
+ } as const satisfies Readonly<Record<string, { labelKey: string; blurbKey: string }>>
17
+
18
+ export type DiscoveryKey = keyof typeof DISCOVERY_LABELS
19
+
20
+ export interface DiscoveryThreadRow {
21
+ readonly threadId: number
22
+ readonly slug: string
23
+ readonly title: string
24
+ readonly forumId: number
25
+ readonly forumSlug: string
26
+ readonly forumTitle: string
27
+ readonly authorUsername: string
28
+ readonly replyCount: number
29
+ readonly lastPostAt: Date
30
+ readonly lastPostUsername: string | null
31
+ }
32
+
33
+ export function buildDiscoveryView(input: {
34
+ readonly view: DiscoveryKey
35
+ readonly views: readonly DiscoveryKey[]
36
+ readonly rows: readonly DiscoveryThreadRow[]
37
+ readonly nextHref: string | null
38
+ readonly pageSize: number
39
+ readonly isFirstPage: boolean
40
+ readonly refusalMessage?: string | null | undefined
41
+ readonly now: Date
42
+ readonly t?: Translator | undefined
43
+ }): DiscoveryViewModel {
44
+ const refusal = input.refusalMessage ?? null
45
+ const t = input.t ?? untranslated()
46
+
47
+ return {
48
+ title: t.t(DISCOVERY_LABELS[input.view].labelKey),
49
+ blurb: t.t(DISCOVERY_LABELS[input.view].blurbKey),
50
+ tabsLabel: t.t('discovery.tabsLabel'),
51
+ tabs: input.views.map((view) => ({
52
+ href: `/discover/${view}`,
53
+ label: t.t(DISCOVERY_LABELS[view].labelKey),
54
+ isCurrent: view === input.view,
55
+ })),
56
+ rows: input.rows.map((row) => ({
57
+ threadId: row.threadId,
58
+ title: row.title,
59
+ href: `/thread/${row.threadId}-${row.slug}`,
60
+ forum: { label: row.forumTitle, href: `/${row.forumId}-${row.forumSlug}` },
61
+ authorUsername: row.authorUsername,
62
+ replyCount: count(row.replyCount, input.t),
63
+ lastPostAt: formatTime(row.lastPostAt, input.now, input.t),
64
+ lastPostUsername: row.lastPostUsername,
65
+ })),
66
+ nextHref: input.nextHref,
67
+ nextLabel: t.t('discovery.next', { count: input.pageSize }),
68
+ emptyMessage: t.t(input.isFirstPage ? 'discovery.emptyFirst' : 'discovery.emptyMore'),
69
+ refusal:
70
+ refusal === null
71
+ ? null
72
+ : { message: refusal, signInHref: '/login', signInLabel: t.t('nav.signIn') },
73
+ }
74
+ }
@@ -0,0 +1,84 @@
1
+ import type { Translator } from '@meith/i18n'
2
+ import type { EditorTag, EditorToolbarButtonModel, EditorToolbarModel } from '@meith/theme-kit'
3
+
4
+ import { attachmentFieldId, MESSAGE_TEXTAREA_ID } from '@/components/content/composer-ids'
5
+
6
+ import { untranslated } from './time'
7
+
8
+ interface ToolSpec {
9
+ readonly tag: EditorTag
10
+ readonly key: string
11
+ readonly shortcut: string | null
12
+ readonly placeholderKey: string | null
13
+ }
14
+
15
+ const TOOLS: readonly ToolSpec[] = [
16
+ {
17
+ tag: 'bold',
18
+ key: 'composer.tool.bold',
19
+ shortcut: 'b',
20
+ placeholderKey: 'composer.placeholder.bold',
21
+ },
22
+ {
23
+ tag: 'italic',
24
+ key: 'composer.tool.italic',
25
+ shortcut: 'i',
26
+ placeholderKey: 'composer.placeholder.italic',
27
+ },
28
+ {
29
+ tag: 'strikethrough',
30
+ key: 'composer.tool.strikethrough',
31
+ shortcut: null,
32
+ placeholderKey: 'composer.placeholder.struck',
33
+ },
34
+ { tag: 'link', key: 'composer.tool.link', shortcut: 'k', placeholderKey: null },
35
+ { tag: 'quote', key: 'composer.tool.quote', shortcut: null, placeholderKey: null },
36
+ { tag: 'code', key: 'composer.tool.code', shortcut: null, placeholderKey: null },
37
+ {
38
+ tag: 'spoiler',
39
+ key: 'composer.tool.spoiler',
40
+ shortcut: null,
41
+ placeholderKey: 'composer.placeholder.spoiler',
42
+ },
43
+ { tag: 'bulletedList', key: 'composer.tool.bulletedList', shortcut: null, placeholderKey: null },
44
+ { tag: 'numberedList', key: 'composer.tool.numberedList', shortcut: null, placeholderKey: null },
45
+ { tag: 'heading', key: 'composer.tool.heading', shortcut: null, placeholderKey: null },
46
+ ]
47
+
48
+ function button(spec: ToolSpec, t: Translator): EditorToolbarButtonModel {
49
+ const label = t.t(spec.key)
50
+ return {
51
+ tag: spec.tag,
52
+ label,
53
+ icon: null,
54
+ title:
55
+ spec.shortcut === null
56
+ ? label
57
+ : t.t('composer.toolShortcut', { label, key: spec.shortcut.toUpperCase() }),
58
+ keyShortcut: spec.shortcut === null ? null : `Control+${spec.shortcut}`,
59
+ placeholder: spec.placeholderKey === null ? null : t.t(spec.placeholderKey),
60
+ }
61
+ }
62
+
63
+ export interface EditorToolbarInput {
64
+ readonly textareaId?: string
65
+ /** Whether this composer takes attachments. Defaults to `false`. */
66
+ readonly attachments?: boolean
67
+ readonly t?: Translator
68
+ }
69
+
70
+ export function buildEditorToolbarModel(input: EditorToolbarInput = {}): EditorToolbarModel {
71
+ const t = input.t ?? untranslated()
72
+ const textareaId = input.textareaId ?? MESSAGE_TEXTAREA_ID
73
+
74
+ return {
75
+ textareaId,
76
+ groupLabel: t.t('composer.formatting'),
77
+ buttons: TOOLS.map((spec) => button(spec, t)),
78
+ attachment:
79
+ input.attachments === true
80
+ ? { inputId: attachmentFieldId(textareaId), label: t.t('composer.tool.attachment') }
81
+ : null,
82
+ previewAction: null,
83
+ }
84
+ }
@@ -0,0 +1,52 @@
1
+ import type { Translator } from '@meith/i18n'
2
+ import type { ErrorNoticeModel } from '@meith/theme-kit'
3
+
4
+ import { untranslated } from './time'
5
+
6
+ export interface ErrorNoticeCopy {
7
+ readonly status: number
8
+ readonly titleKey: string
9
+ readonly messageKey: string
10
+ }
11
+
12
+ export const NOT_FOUND_NOTICE: ErrorNoticeCopy = {
13
+ status: 404,
14
+ titleKey: 'errorNotice.notFound.title',
15
+ messageKey: 'errorNotice.notFound.message',
16
+ }
17
+
18
+ export const CRASH_NOTICE_STATUS = 500
19
+
20
+ export const CRASH_NOTICE: ErrorNoticeCopy = {
21
+ status: CRASH_NOTICE_STATUS,
22
+ titleKey: 'errorNotice.crash.title',
23
+ messageKey: 'errorNotice.crash.message',
24
+ }
25
+
26
+ export interface CrashNoticeCopy {
27
+ readonly title: string
28
+ readonly message: string
29
+ readonly homeLabel: string
30
+ }
31
+
32
+ export function crashNoticeCopy(t: Translator = untranslated()): CrashNoticeCopy {
33
+ return {
34
+ title: t.t(CRASH_NOTICE.titleKey),
35
+ message: t.t(CRASH_NOTICE.messageKey),
36
+ homeLabel: t.t('errorNotice.home'),
37
+ }
38
+ }
39
+
40
+ export function buildErrorNotice(
41
+ copy: ErrorNoticeCopy,
42
+ requestId: string | null,
43
+ t: Translator = untranslated(),
44
+ ): ErrorNoticeModel {
45
+ return {
46
+ status: copy.status,
47
+ title: t.t(copy.titleKey),
48
+ message: t.t(copy.messageKey),
49
+ homeHref: '/',
50
+ requestId,
51
+ }
52
+ }
@@ -0,0 +1,130 @@
1
+ export interface FeedEntry {
2
+ readonly id: string
3
+ readonly title: string
4
+ readonly href: string
5
+ readonly author: string
6
+ readonly published: Date
7
+ readonly updated: Date
8
+ readonly summary: string
9
+ }
10
+
11
+ export interface FeedChannel {
12
+ readonly title: string
13
+ readonly description: string
14
+ readonly href: string
15
+ readonly selfHref: string
16
+ readonly updated: Date
17
+ readonly entries: readonly FeedEntry[]
18
+ }
19
+
20
+ export function xmlEscape(value: string): string {
21
+ return stripControl(value)
22
+ .replace(/&/g, '&amp;')
23
+ .replace(/</g, '&lt;')
24
+ .replace(/>/g, '&gt;')
25
+ .replace(/"/g, '&quot;')
26
+ .replace(/'/g, '&apos;')
27
+ }
28
+
29
+ function stripControl(value: string): string {
30
+ // biome-ignore lint/suspicious/noControlCharactersInRegex: the point is the control range
31
+ return value.replace(/[\u0000-\u0008\u000B\u000C\u000E-\u001F\u007F]/g, '')
32
+ }
33
+
34
+ export { summarise } from '@meith/markdown'
35
+
36
+ function rfc822(at: Date): string {
37
+ return at.toUTCString()
38
+ }
39
+
40
+ export function renderRss(channel: FeedChannel): string {
41
+ const items = channel.entries
42
+ .map(
43
+ (entry) => ` <item>
44
+ <title>${xmlEscape(entry.title)}</title>
45
+ <link>${xmlEscape(entry.href)}</link>
46
+ <guid isPermaLink="false">${xmlEscape(entry.id)}</guid>
47
+ <dc:creator>${xmlEscape(entry.author)}</dc:creator>
48
+ <pubDate>${rfc822(entry.published)}</pubDate>
49
+ <description>${xmlEscape(entry.summary)}</description>
50
+ </item>`,
51
+ )
52
+ .join('\n')
53
+
54
+ return `<?xml version="1.0" encoding="UTF-8"?>
55
+ <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
56
+ <channel>
57
+ <title>${xmlEscape(channel.title)}</title>
58
+ <link>${xmlEscape(channel.href)}</link>
59
+ <description>${xmlEscape(channel.description)}</description>
60
+ <lastBuildDate>${rfc822(channel.updated)}</lastBuildDate>
61
+ <atom:link href="${xmlEscape(channel.selfHref)}" rel="self" type="application/rss+xml"/>
62
+ ${items}
63
+ </channel>
64
+ </rss>
65
+ `
66
+ }
67
+
68
+ export function renderAtom(channel: FeedChannel): string {
69
+ const entries = channel.entries
70
+ .map(
71
+ (entry) => ` <entry>
72
+ <title>${xmlEscape(entry.title)}</title>
73
+ <link rel="alternate" href="${xmlEscape(entry.href)}"/>
74
+ <id>${xmlEscape(entry.id)}</id>
75
+ <author><name>${xmlEscape(entry.author)}</name></author>
76
+ <published>${entry.published.toISOString()}</published>
77
+ <updated>${entry.updated.toISOString()}</updated>
78
+ <summary type="text">${xmlEscape(entry.summary)}</summary>
79
+ </entry>`,
80
+ )
81
+ .join('\n')
82
+
83
+ return `<?xml version="1.0" encoding="UTF-8"?>
84
+ <feed xmlns="http://www.w3.org/2005/Atom">
85
+ <title>${xmlEscape(channel.title)}</title>
86
+ <link rel="alternate" href="${xmlEscape(channel.href)}"/>
87
+ <link rel="self" href="${xmlEscape(channel.selfHref)}"/>
88
+ <id>${xmlEscape(channel.href)}</id>
89
+ <updated>${channel.updated.toISOString()}</updated>
90
+ ${entries}
91
+ </feed>
92
+ `
93
+ }
94
+
95
+ export interface SitemapUrl {
96
+ readonly loc: string
97
+ readonly lastmod?: Date | undefined
98
+ }
99
+
100
+ export function renderSitemap(urls: readonly SitemapUrl[]): string {
101
+ const entries = urls
102
+ .map((url) => {
103
+ const lastmod =
104
+ url.lastmod === undefined ? '' : `\n <lastmod>${url.lastmod.toISOString()}</lastmod>`
105
+ return ` <url>\n <loc>${xmlEscape(url.loc)}</loc>${lastmod}\n </url>`
106
+ })
107
+ .join('\n')
108
+
109
+ return `<?xml version="1.0" encoding="UTF-8"?>
110
+ <urlset xmlns="http://www.w3.org/schemas/sitemap/0.9">
111
+ ${entries}
112
+ </urlset>
113
+ `
114
+ }
115
+
116
+ export function renderSitemapIndex(sitemaps: readonly SitemapUrl[]): string {
117
+ const entries = sitemaps
118
+ .map((url) => {
119
+ const lastmod =
120
+ url.lastmod === undefined ? '' : `\n <lastmod>${url.lastmod.toISOString()}</lastmod>`
121
+ return ` <sitemap>\n <loc>${xmlEscape(url.loc)}</loc>${lastmod}\n </sitemap>`
122
+ })
123
+ .join('\n')
124
+
125
+ return `<?xml version="1.0" encoding="UTF-8"?>
126
+ <sitemapindex xmlns="http://www.w3.org/schemas/sitemap/0.9">
127
+ ${entries}
128
+ </sitemapindex>
129
+ `
130
+ }
@@ -0,0 +1,54 @@
1
+ import type { ThreadCursor } from '@meith/threads'
2
+
3
+ export function decodeForumCursor(value: string | undefined): ThreadCursor | null | undefined {
4
+ if (value === undefined) return undefined
5
+ try {
6
+ const parsed: unknown = JSON.parse(Buffer.from(value, 'base64url').toString('utf8'))
7
+ if (
8
+ typeof parsed !== 'object' ||
9
+ parsed === null ||
10
+ ((parsed as { o?: unknown }).o !== 'activity' &&
11
+ (parsed as { o?: unknown }).o !== 'rating') ||
12
+ typeof (parsed as { s?: unknown }).s !== 'boolean' ||
13
+ typeof (parsed as { t?: unknown }).t !== 'string' ||
14
+ !Number.isSafeInteger((parsed as { r?: unknown }).r) ||
15
+ !Number.isSafeInteger((parsed as { n?: unknown }).n) ||
16
+ typeof (parsed as { i?: unknown }).i !== 'number'
17
+ ) {
18
+ return null
19
+ }
20
+ const lastPostAt = new Date((parsed as { t: string }).t)
21
+ const ratingTotal = (parsed as { r: number }).r
22
+ const ratingCount = (parsed as { n: number }).n
23
+ const id = (parsed as { i: number }).i
24
+ return Number.isSafeInteger(id) &&
25
+ id > 0 &&
26
+ ratingTotal >= 0 &&
27
+ ratingCount >= 0 &&
28
+ !Number.isNaN(lastPostAt.getTime())
29
+ ? {
30
+ sort: (parsed as { o: 'activity' | 'rating' }).o,
31
+ isSticky: (parsed as { s: boolean }).s,
32
+ lastPostAt,
33
+ ratingTotal,
34
+ ratingCount,
35
+ id,
36
+ }
37
+ : null
38
+ } catch {
39
+ return null
40
+ }
41
+ }
42
+
43
+ export function encodeForumCursor(cursor: ThreadCursor): string {
44
+ return Buffer.from(
45
+ JSON.stringify({
46
+ o: cursor.sort,
47
+ s: cursor.isSticky,
48
+ t: cursor.lastPostAt.toISOString(),
49
+ r: cursor.ratingTotal,
50
+ n: cursor.ratingCount,
51
+ i: cursor.id,
52
+ }),
53
+ ).toString('base64url')
54
+ }
@@ -0,0 +1,152 @@
1
+ import type { ForumListingRow } from '@meith/forums'
2
+ import type { Translator } from '@meith/i18n'
3
+ import type {
4
+ ForumDisplayModel,
5
+ ForumRowModel,
6
+ LastPostModel,
7
+ PaginationModel,
8
+ SubforumListModel,
9
+ ThreadRowModel,
10
+ } from '@meith/theme-kit'
11
+ import type { ReadState, ThreadListingRow, ThreadPage } from '@meith/threads'
12
+
13
+ import { forumHref } from './board-index'
14
+ import { count } from './count'
15
+ import { type MemberIdentity, nameClassOf } from './member-identity'
16
+ import { memberHref } from './member-profile'
17
+ import { postLink } from './post-link'
18
+ import { formatTime } from './time'
19
+
20
+ export function threadHref(row: ThreadListingRow): string {
21
+ return `/thread/${row.id}-${row.slug}`
22
+ }
23
+
24
+ function lastPost(
25
+ post: {
26
+ readonly postId: number
27
+ readonly userId: number | null
28
+ readonly username: string
29
+ readonly at: Date
30
+ } | null,
31
+ thread: ThreadListingRow,
32
+ now: Date,
33
+ t: Translator | undefined,
34
+ identities: ReadonlyMap<number, MemberIdentity> | undefined,
35
+ ): LastPostModel | null {
36
+ if (!post) return null
37
+ return {
38
+ threadTitle: thread.title,
39
+ href: postLink(threadHref(thread), post.postId),
40
+ author: {
41
+ userId: post.userId,
42
+ username: post.username,
43
+ profileHref: post.userId === null ? null : memberHref(post.userId),
44
+ nameClass: nameClassOf(identities, post.userId),
45
+ },
46
+ at: formatTime(post.at, now, t),
47
+ }
48
+ }
49
+
50
+ function forum(
51
+ row: ForumListingRow,
52
+ ownThreadsOnlyForumIds: ReadonlySet<number> | undefined,
53
+ t: Translator | undefined,
54
+ ): ForumRowModel {
55
+ const ownThreadsOnly = ownThreadsOnlyForumIds?.has(row.id) ?? false
56
+ return {
57
+ id: row.id,
58
+ title: row.title,
59
+ description: row.description,
60
+ href: forumHref(row),
61
+ type: row.type,
62
+ threadCount: count(ownThreadsOnly ? 0 : row.threadCount, t),
63
+ postCount: count(ownThreadsOnly ? 0 : row.postCount, t),
64
+ lastPost: null,
65
+ isUnread: false,
66
+ subforums: [],
67
+ }
68
+ }
69
+
70
+ export function threadRowModel(
71
+ row: ThreadListingRow,
72
+ now: Date,
73
+ readState: Pick<ReadState, 'forumReadAt' | 'threadLastPostId'> | null = null,
74
+ t?: Translator,
75
+ identities?: ReadonlyMap<number, MemberIdentity>,
76
+ ): ThreadRowModel {
77
+ const last = row.lastPost
78
+ const isUnread =
79
+ last !== null &&
80
+ readState !== null &&
81
+ last.postId > (readState.threadLastPostId.get(row.id) ?? 0) &&
82
+ last.at > (readState.forumReadAt.get(row.forumId) ?? new Date(0))
83
+ return {
84
+ id: row.id,
85
+ title: row.title,
86
+ href: threadHref(row),
87
+ prefix: row.prefix,
88
+ author: {
89
+ userId: row.authorUserId,
90
+ username: row.authorUsername,
91
+ profileHref: row.authorUserId === null ? null : memberHref(row.authorUserId),
92
+ nameClass: nameClassOf(identities, row.authorUserId),
93
+ },
94
+ replyCount: count(row.replyCount, t),
95
+ viewCount: count(row.viewCount, t),
96
+ isSticky: row.isSticky,
97
+ isLocked: row.isLocked,
98
+ isUnread,
99
+ isMoved: row.isMoved,
100
+ lastPost: lastPost(row.lastPost, row, now, t, identities),
101
+ }
102
+ }
103
+
104
+ export interface ForumDisplayInput {
105
+ readonly forum: ForumListingRow
106
+ readonly subforums: readonly ForumListingRow[]
107
+ readonly ownThreadsOnlyForumIds?: ReadonlySet<number>
108
+ readonly page: ThreadPage
109
+ readonly pageNumber: number
110
+ readonly nextHref: string | null
111
+ readonly pagination?: PaginationModel
112
+ readonly newThreadHref?: string | null
113
+ readonly readState?: Pick<ReadState, 'forumReadAt' | 'threadLastPostId'> | null
114
+ readonly markReadAction?: string | null
115
+ readonly now: Date
116
+ readonly t?: Translator
117
+ readonly identities?: ReadonlyMap<number, MemberIdentity>
118
+ }
119
+
120
+ export interface ForumDisplayView {
121
+ readonly display: Omit<ForumDisplayModel, 'regions'>
122
+ readonly subforums: SubforumListModel | null
123
+ readonly threads: readonly ThreadRowModel[]
124
+ readonly pagination: PaginationModel
125
+ }
126
+
127
+ export function buildForumDisplayView(input: ForumDisplayInput): ForumDisplayView {
128
+ return {
129
+ display: {
130
+ forum: forum(input.forum, input.ownThreadsOnlyForumIds, input.t),
131
+ newThreadHref: input.newThreadHref ?? null,
132
+ markReadAction: input.markReadAction ?? null,
133
+ },
134
+ subforums:
135
+ input.subforums.length === 0
136
+ ? null
137
+ : {
138
+ forums: input.subforums.map((row) => forum(row, input.ownThreadsOnlyForumIds, input.t)),
139
+ },
140
+ threads: input.page.rows.map((row) =>
141
+ threadRowModel(row, input.now, input.readState ?? null, input.t, input.identities),
142
+ ),
143
+ pagination: input.pagination ?? {
144
+ page: input.pageNumber,
145
+ pageCount: input.pageNumber,
146
+ pageCountIsExact: false,
147
+ pages: [{ page: input.pageNumber, href: '', isCurrent: true }],
148
+ previousHref: null,
149
+ nextHref: input.nextHref,
150
+ },
151
+ }
152
+ }