@btst/stack 2.7.0 → 2.8.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 (181) hide show
  1. package/README.md +1 -0
  2. package/dist/packages/stack/src/plugins/blog/client/components/loading/post-navigation-skeleton.cjs +13 -0
  3. package/dist/packages/stack/src/plugins/blog/client/components/loading/post-navigation-skeleton.mjs +11 -0
  4. package/dist/packages/stack/src/plugins/blog/client/components/loading/recent-posts-carousel-skeleton.cjs +17 -0
  5. package/dist/packages/stack/src/plugins/blog/client/components/loading/recent-posts-carousel-skeleton.mjs +15 -0
  6. package/dist/packages/stack/src/plugins/blog/client/components/pages/post-page.internal.cjs +18 -7
  7. package/dist/packages/stack/src/plugins/blog/client/components/pages/post-page.internal.mjs +18 -7
  8. package/dist/packages/stack/src/plugins/blog/client/components/shared/post-navigation.cjs +48 -52
  9. package/dist/packages/stack/src/plugins/blog/client/components/shared/post-navigation.mjs +49 -53
  10. package/dist/packages/stack/src/plugins/blog/client/components/shared/recent-posts-carousel.cjs +34 -37
  11. package/dist/packages/stack/src/plugins/blog/client/components/shared/recent-posts-carousel.mjs +35 -38
  12. package/dist/packages/stack/src/plugins/blog/client/hooks/blog-hooks.cjs +4 -21
  13. package/dist/packages/stack/src/plugins/blog/client/hooks/blog-hooks.mjs +4 -21
  14. package/dist/packages/stack/src/plugins/comments/api/getters.cjs +284 -0
  15. package/dist/packages/stack/src/plugins/comments/api/getters.mjs +280 -0
  16. package/dist/packages/stack/src/plugins/comments/api/mutations.cjs +118 -0
  17. package/dist/packages/stack/src/plugins/comments/api/mutations.mjs +112 -0
  18. package/dist/packages/stack/src/plugins/comments/api/plugin.cjs +335 -0
  19. package/dist/packages/stack/src/plugins/comments/api/plugin.mjs +333 -0
  20. package/dist/packages/stack/src/plugins/comments/api/query-key-defs.cjs +60 -0
  21. package/dist/packages/stack/src/plugins/comments/api/query-key-defs.mjs +55 -0
  22. package/dist/packages/stack/src/plugins/comments/api/serializers.cjs +23 -0
  23. package/dist/packages/stack/src/plugins/comments/api/serializers.mjs +21 -0
  24. package/dist/packages/stack/src/plugins/comments/client/components/comment-count.cjs +46 -0
  25. package/dist/packages/stack/src/plugins/comments/client/components/comment-count.mjs +44 -0
  26. package/dist/packages/stack/src/plugins/comments/client/components/comment-form.cjs +86 -0
  27. package/dist/packages/stack/src/plugins/comments/client/components/comment-form.mjs +84 -0
  28. package/dist/packages/stack/src/plugins/comments/client/components/comment-thread.cjs +540 -0
  29. package/dist/packages/stack/src/plugins/comments/client/components/comment-thread.mjs +538 -0
  30. package/dist/packages/stack/src/plugins/comments/client/components/pages/moderation-page.cjs +64 -0
  31. package/dist/packages/stack/src/plugins/comments/client/components/pages/moderation-page.internal.cjs +426 -0
  32. package/dist/packages/stack/src/plugins/comments/client/components/pages/moderation-page.internal.mjs +424 -0
  33. package/dist/packages/stack/src/plugins/comments/client/components/pages/moderation-page.mjs +62 -0
  34. package/dist/packages/stack/src/plugins/comments/client/components/pages/my-comments-page.cjs +66 -0
  35. package/dist/packages/stack/src/plugins/comments/client/components/pages/my-comments-page.internal.cjs +256 -0
  36. package/dist/packages/stack/src/plugins/comments/client/components/pages/my-comments-page.internal.mjs +254 -0
  37. package/dist/packages/stack/src/plugins/comments/client/components/pages/my-comments-page.mjs +64 -0
  38. package/dist/packages/stack/src/plugins/comments/client/components/pages/resource-comments-page.cjs +86 -0
  39. package/dist/packages/stack/src/plugins/comments/client/components/pages/resource-comments-page.internal.cjs +191 -0
  40. package/dist/packages/stack/src/plugins/comments/client/components/pages/resource-comments-page.internal.mjs +189 -0
  41. package/dist/packages/stack/src/plugins/comments/client/components/pages/resource-comments-page.mjs +84 -0
  42. package/dist/packages/stack/src/plugins/comments/client/components/shared/page-wrapper.cjs +27 -0
  43. package/dist/packages/stack/src/plugins/comments/client/components/shared/page-wrapper.mjs +25 -0
  44. package/dist/packages/stack/src/plugins/comments/client/components/shared/pagination.cjs +37 -0
  45. package/dist/packages/stack/src/plugins/comments/client/components/shared/pagination.mjs +35 -0
  46. package/dist/packages/stack/src/plugins/comments/client/hooks/use-comments.cjs +476 -0
  47. package/dist/packages/stack/src/plugins/comments/client/hooks/use-comments.mjs +464 -0
  48. package/dist/packages/stack/src/plugins/comments/client/localization/comments-moderation.cjs +67 -0
  49. package/dist/packages/stack/src/plugins/comments/client/localization/comments-moderation.mjs +65 -0
  50. package/dist/packages/stack/src/plugins/comments/client/localization/comments-my.cjs +27 -0
  51. package/dist/packages/stack/src/plugins/comments/client/localization/comments-my.mjs +25 -0
  52. package/dist/packages/stack/src/plugins/comments/client/localization/comments-thread.cjs +30 -0
  53. package/dist/packages/stack/src/plugins/comments/client/localization/comments-thread.mjs +28 -0
  54. package/dist/packages/stack/src/plugins/comments/client/localization/index.cjs +13 -0
  55. package/dist/packages/stack/src/plugins/comments/client/localization/index.mjs +11 -0
  56. package/dist/packages/stack/src/plugins/comments/client/plugin.cjs +116 -0
  57. package/dist/packages/stack/src/plugins/comments/client/plugin.mjs +114 -0
  58. package/dist/packages/stack/src/plugins/comments/client/utils.cjs +41 -0
  59. package/dist/packages/stack/src/plugins/comments/client/utils.mjs +37 -0
  60. package/dist/packages/stack/src/plugins/comments/db.cjs +75 -0
  61. package/dist/packages/stack/src/plugins/comments/db.mjs +73 -0
  62. package/dist/packages/stack/src/plugins/comments/schemas.cjs +45 -0
  63. package/dist/packages/stack/src/plugins/comments/schemas.mjs +38 -0
  64. package/dist/packages/stack/src/plugins/kanban/client/components/forms/task-form.cjs +0 -1
  65. package/dist/packages/stack/src/plugins/kanban/client/components/forms/task-form.mjs +0 -1
  66. package/dist/packages/stack/src/plugins/kanban/client/components/pages/board-page.internal.cjs +39 -22
  67. package/dist/packages/stack/src/plugins/kanban/client/components/pages/board-page.internal.mjs +40 -23
  68. package/dist/packages/ui/src/components/avatar.mjs +1 -1
  69. package/dist/packages/ui/src/components/pagination-controls.cjs +64 -0
  70. package/dist/packages/ui/src/components/pagination-controls.mjs +62 -0
  71. package/dist/packages/ui/src/components/when-visible.cjs +39 -0
  72. package/dist/packages/ui/src/components/when-visible.mjs +37 -0
  73. package/dist/plugins/blog/client/hooks/index.d.cts +1 -1
  74. package/dist/plugins/blog/client/hooks/index.d.mts +1 -1
  75. package/dist/plugins/blog/client/hooks/index.d.ts +1 -1
  76. package/dist/plugins/blog/client/index.d.cts +24 -2
  77. package/dist/plugins/blog/client/index.d.mts +24 -2
  78. package/dist/plugins/blog/client/index.d.ts +24 -2
  79. package/dist/plugins/comments/api/index.cjs +21 -0
  80. package/dist/plugins/comments/api/index.d.cts +126 -0
  81. package/dist/plugins/comments/api/index.d.mts +126 -0
  82. package/dist/plugins/comments/api/index.d.ts +126 -0
  83. package/dist/plugins/comments/api/index.mjs +5 -0
  84. package/dist/plugins/comments/client/components/index.cjs +15 -0
  85. package/dist/plugins/comments/client/components/index.d.cts +125 -0
  86. package/dist/plugins/comments/client/components/index.d.mts +125 -0
  87. package/dist/plugins/comments/client/components/index.d.ts +125 -0
  88. package/dist/plugins/comments/client/components/index.mjs +5 -0
  89. package/dist/plugins/comments/client/hooks/index.cjs +17 -0
  90. package/dist/plugins/comments/client/hooks/index.d.cts +200 -0
  91. package/dist/plugins/comments/client/hooks/index.d.mts +200 -0
  92. package/dist/plugins/comments/client/hooks/index.d.ts +200 -0
  93. package/dist/plugins/comments/client/hooks/index.mjs +1 -0
  94. package/dist/plugins/comments/client/index.cjs +9 -0
  95. package/dist/plugins/comments/client/index.d.cts +262 -0
  96. package/dist/plugins/comments/client/index.d.mts +262 -0
  97. package/dist/plugins/comments/client/index.d.ts +262 -0
  98. package/dist/plugins/comments/client/index.mjs +2 -0
  99. package/dist/plugins/comments/client.css +2 -0
  100. package/dist/plugins/comments/query-keys.cjs +113 -0
  101. package/dist/plugins/comments/query-keys.d.cts +71 -0
  102. package/dist/plugins/comments/query-keys.d.mts +71 -0
  103. package/dist/plugins/comments/query-keys.d.ts +71 -0
  104. package/dist/plugins/comments/query-keys.mjs +111 -0
  105. package/dist/plugins/comments/style.css +15 -0
  106. package/dist/plugins/kanban/api/index.d.cts +1 -1
  107. package/dist/plugins/kanban/api/index.d.mts +1 -1
  108. package/dist/plugins/kanban/api/index.d.ts +1 -1
  109. package/dist/plugins/kanban/client/hooks/index.d.cts +1 -1
  110. package/dist/plugins/kanban/client/hooks/index.d.mts +1 -1
  111. package/dist/plugins/kanban/client/hooks/index.d.ts +1 -1
  112. package/dist/plugins/kanban/client/index.d.cts +1 -1
  113. package/dist/plugins/kanban/client/index.d.mts +1 -1
  114. package/dist/plugins/kanban/client/index.d.ts +1 -1
  115. package/dist/plugins/kanban/query-keys.d.cts +1 -1
  116. package/dist/plugins/kanban/query-keys.d.mts +1 -1
  117. package/dist/plugins/kanban/query-keys.d.ts +1 -1
  118. package/dist/shared/{stack.FeaWkglm.d.ts → stack.BxFl46lB.d.cts} +24 -1
  119. package/dist/shared/stack.C-b3Sn8j.d.cts +142 -0
  120. package/dist/shared/stack.C-b3Sn8j.d.mts +142 -0
  121. package/dist/shared/stack.C-b3Sn8j.d.ts +142 -0
  122. package/dist/shared/stack.CJE9sAjV.d.ts +335 -0
  123. package/dist/shared/stack.CmHRdhl8.d.cts +335 -0
  124. package/dist/shared/{stack.CNLHlv7r.d.mts → stack.DOZ1EXjM.d.mts} +6 -12
  125. package/dist/shared/{stack.FeaWkglm.d.mts → stack.DRpeDS6X.d.ts} +24 -1
  126. package/dist/shared/{stack.CQAZwXhV.d.cts → stack.DX-tQ93o.d.cts} +6 -12
  127. package/dist/shared/stack.Dcz6636A.d.mts +335 -0
  128. package/dist/shared/{stack.FeaWkglm.d.cts → stack.Jb0kQDJC.d.mts} +24 -1
  129. package/dist/shared/stack.Ldfkr5b2.d.cts +112 -0
  130. package/dist/shared/stack.Ldfkr5b2.d.mts +112 -0
  131. package/dist/shared/stack.Ldfkr5b2.d.ts +112 -0
  132. package/dist/shared/{stack.D3BsrpAz.d.ts → stack.VF6FhyZw.d.ts} +6 -12
  133. package/package.json +67 -2
  134. package/src/plugins/blog/client/components/loading/post-navigation-skeleton.tsx +10 -0
  135. package/src/plugins/blog/client/components/loading/recent-posts-carousel-skeleton.tsx +18 -0
  136. package/src/plugins/blog/client/components/pages/post-page.internal.tsx +23 -8
  137. package/src/plugins/blog/client/components/shared/post-navigation.tsx +0 -5
  138. package/src/plugins/blog/client/components/shared/recent-posts-carousel.tsx +1 -5
  139. package/src/plugins/blog/client/hooks/blog-hooks.tsx +8 -33
  140. package/src/plugins/blog/client/overrides.ts +26 -1
  141. package/src/plugins/cms/client/components/shared/pagination.tsx +14 -42
  142. package/src/plugins/comments/api/getters.ts +444 -0
  143. package/src/plugins/comments/api/index.ts +21 -0
  144. package/src/plugins/comments/api/mutations.ts +206 -0
  145. package/src/plugins/comments/api/plugin.ts +628 -0
  146. package/src/plugins/comments/api/query-key-defs.ts +143 -0
  147. package/src/plugins/comments/api/serializers.ts +37 -0
  148. package/src/plugins/comments/client/components/comment-count.tsx +66 -0
  149. package/src/plugins/comments/client/components/comment-form.tsx +112 -0
  150. package/src/plugins/comments/client/components/comment-thread.tsx +799 -0
  151. package/src/plugins/comments/client/components/index.tsx +11 -0
  152. package/src/plugins/comments/client/components/pages/moderation-page.internal.tsx +550 -0
  153. package/src/plugins/comments/client/components/pages/moderation-page.tsx +70 -0
  154. package/src/plugins/comments/client/components/pages/my-comments-page.internal.tsx +367 -0
  155. package/src/plugins/comments/client/components/pages/my-comments-page.tsx +72 -0
  156. package/src/plugins/comments/client/components/pages/resource-comments-page.internal.tsx +225 -0
  157. package/src/plugins/comments/client/components/pages/resource-comments-page.tsx +97 -0
  158. package/src/plugins/comments/client/components/shared/page-wrapper.tsx +32 -0
  159. package/src/plugins/comments/client/components/shared/pagination.tsx +44 -0
  160. package/src/plugins/comments/client/hooks/index.tsx +13 -0
  161. package/src/plugins/comments/client/hooks/use-comments.tsx +717 -0
  162. package/src/plugins/comments/client/index.ts +14 -0
  163. package/src/plugins/comments/client/localization/comments-moderation.ts +75 -0
  164. package/src/plugins/comments/client/localization/comments-my.ts +32 -0
  165. package/src/plugins/comments/client/localization/comments-thread.ts +32 -0
  166. package/src/plugins/comments/client/localization/index.ts +11 -0
  167. package/src/plugins/comments/client/overrides.ts +164 -0
  168. package/src/plugins/comments/client/plugin.tsx +195 -0
  169. package/src/plugins/comments/client/utils.ts +67 -0
  170. package/src/plugins/comments/client.css +2 -0
  171. package/src/plugins/comments/db.ts +77 -0
  172. package/src/plugins/comments/query-keys.ts +189 -0
  173. package/src/plugins/comments/schemas.ts +72 -0
  174. package/src/plugins/comments/style.css +15 -0
  175. package/src/plugins/comments/types.ts +73 -0
  176. package/src/plugins/kanban/client/components/forms/task-form.tsx +0 -1
  177. package/src/plugins/kanban/client/components/pages/board-page.internal.tsx +46 -27
  178. package/src/plugins/kanban/client/overrides.ts +27 -1
  179. package/dist/shared/{stack.Rtcvl8sS.d.cts → stack.BOokfhZD.d.cts} +3 -3
  180. package/dist/shared/{stack.D4Cea8II.d.ts → stack.BvCR4-9H.d.ts} +3 -3
  181. package/dist/shared/{stack.HE_IvqV5.d.mts → stack.CWxAl9K3.d.mts} +3 -3
@@ -0,0 +1,142 @@
1
+ /**
2
+ * Comment status values
3
+ */
4
+ type CommentStatus = "pending" | "approved" | "spam";
5
+ /**
6
+ * A comment record as stored in the database
7
+ */
8
+ type Comment = {
9
+ id: string;
10
+ resourceId: string;
11
+ resourceType: string;
12
+ parentId: string | null;
13
+ authorId: string;
14
+ body: string;
15
+ status: CommentStatus;
16
+ likes: number;
17
+ editedAt?: Date;
18
+ createdAt: Date;
19
+ updatedAt: Date;
20
+ };
21
+ /**
22
+ * A comment enriched with server-resolved author info and like status.
23
+ * All dates are ISO strings (safe for serialisation over HTTP / React Query cache).
24
+ */
25
+ interface SerializedComment {
26
+ id: string;
27
+ resourceId: string;
28
+ resourceType: string;
29
+ parentId: string | null;
30
+ authorId: string;
31
+ /** Resolved from resolveUser(authorId). Falls back to "[deleted]" when user cannot be found. */
32
+ resolvedAuthorName: string;
33
+ /** Resolved avatar URL or null */
34
+ resolvedAvatarUrl: string | null;
35
+ body: string;
36
+ status: CommentStatus;
37
+ /** Denormalized counter — updated atomically on toggleLike */
38
+ likes: number;
39
+ /** True when the currentUserId query param matches an existing commentLike row */
40
+ isLikedByCurrentUser: boolean;
41
+ /** ISO string set when the comment body was edited; null for unedited comments */
42
+ editedAt: string | null;
43
+ createdAt: string;
44
+ updatedAt: string;
45
+ /**
46
+ * Number of direct replies visible to the requesting user.
47
+ * Includes approved replies plus any pending replies authored by `currentUserId`.
48
+ * Always 0 for reply comments (non-null parentId).
49
+ */
50
+ replyCount: number;
51
+ }
52
+ /**
53
+ * Paginated list result for comments
54
+ */
55
+ interface CommentListResult {
56
+ items: SerializedComment[];
57
+ total: number;
58
+ limit: number;
59
+ offset: number;
60
+ }
61
+
62
+ /**
63
+ * Internal query key constants for the Comments plugin.
64
+ * Shared between query-keys.ts (HTTP path) and any SSG/direct DB path
65
+ * to prevent key drift between loaders and prefetch calls.
66
+ */
67
+ interface CommentsListDiscriminator {
68
+ resourceId: string | undefined;
69
+ resourceType: string | undefined;
70
+ parentId: string | null | undefined;
71
+ status: string | undefined;
72
+ currentUserId: string | undefined;
73
+ authorId: string | undefined;
74
+ sort: string | undefined;
75
+ limit: number;
76
+ offset: number;
77
+ }
78
+ interface CommentCountDiscriminator {
79
+ resourceId: string;
80
+ resourceType: string;
81
+ status: string | undefined;
82
+ }
83
+ /**
84
+ * Discriminator for the infinite thread query (top-level comments only).
85
+ * Intentionally excludes `offset` — pages are driven by `pageParam`, not the key.
86
+ */
87
+ interface CommentsThreadDiscriminator {
88
+ resourceId: string | undefined;
89
+ resourceType: string | undefined;
90
+ parentId: string | null | undefined;
91
+ status: string | undefined;
92
+ currentUserId: string | undefined;
93
+ limit: number;
94
+ }
95
+ /** Full query key builders — use with queryClient.setQueryData() */
96
+ declare const COMMENTS_QUERY_KEYS: {
97
+ /**
98
+ * Key for comments list query.
99
+ * Full key: ["comments", "list", { resourceId, resourceType, parentId, status, currentUserId, limit, offset }]
100
+ */
101
+ commentsList: (params?: {
102
+ resourceId?: string;
103
+ resourceType?: string;
104
+ parentId?: string | null;
105
+ status?: string;
106
+ currentUserId?: string;
107
+ authorId?: string;
108
+ sort?: string;
109
+ limit?: number;
110
+ offset?: number;
111
+ }) => readonly ["comments", "list", CommentsListDiscriminator];
112
+ /**
113
+ * Key for a single comment detail query.
114
+ * Full key: ["comments", "detail", id]
115
+ */
116
+ commentDetail: (id: string) => readonly ["comments", "detail", string];
117
+ /**
118
+ * Key for comment count query.
119
+ * Full key: ["comments", "count", { resourceId, resourceType, status }]
120
+ */
121
+ commentCount: (params: {
122
+ resourceId: string;
123
+ resourceType: string;
124
+ status?: string;
125
+ }) => readonly ["comments", "count", CommentCountDiscriminator];
126
+ /**
127
+ * Key for the infinite thread query (top-level comments, load-more).
128
+ * Full key: ["commentsThread", "list", { resourceId, resourceType, parentId, status, currentUserId, limit }]
129
+ * Offset is excluded — it is driven by `pageParam`, not baked into the key.
130
+ */
131
+ commentsThread: (params?: {
132
+ resourceId?: string;
133
+ resourceType?: string;
134
+ parentId?: string | null;
135
+ status?: string;
136
+ currentUserId?: string;
137
+ limit?: number;
138
+ }) => readonly ["commentsThread", "list", CommentsThreadDiscriminator];
139
+ };
140
+
141
+ export { COMMENTS_QUERY_KEYS as e };
142
+ export type { CommentListResult as C, SerializedComment as S, CommentsThreadDiscriminator as a, CommentsListDiscriminator as b, CommentCountDiscriminator as c, Comment as d };
@@ -0,0 +1,142 @@
1
+ /**
2
+ * Comment status values
3
+ */
4
+ type CommentStatus = "pending" | "approved" | "spam";
5
+ /**
6
+ * A comment record as stored in the database
7
+ */
8
+ type Comment = {
9
+ id: string;
10
+ resourceId: string;
11
+ resourceType: string;
12
+ parentId: string | null;
13
+ authorId: string;
14
+ body: string;
15
+ status: CommentStatus;
16
+ likes: number;
17
+ editedAt?: Date;
18
+ createdAt: Date;
19
+ updatedAt: Date;
20
+ };
21
+ /**
22
+ * A comment enriched with server-resolved author info and like status.
23
+ * All dates are ISO strings (safe for serialisation over HTTP / React Query cache).
24
+ */
25
+ interface SerializedComment {
26
+ id: string;
27
+ resourceId: string;
28
+ resourceType: string;
29
+ parentId: string | null;
30
+ authorId: string;
31
+ /** Resolved from resolveUser(authorId). Falls back to "[deleted]" when user cannot be found. */
32
+ resolvedAuthorName: string;
33
+ /** Resolved avatar URL or null */
34
+ resolvedAvatarUrl: string | null;
35
+ body: string;
36
+ status: CommentStatus;
37
+ /** Denormalized counter — updated atomically on toggleLike */
38
+ likes: number;
39
+ /** True when the currentUserId query param matches an existing commentLike row */
40
+ isLikedByCurrentUser: boolean;
41
+ /** ISO string set when the comment body was edited; null for unedited comments */
42
+ editedAt: string | null;
43
+ createdAt: string;
44
+ updatedAt: string;
45
+ /**
46
+ * Number of direct replies visible to the requesting user.
47
+ * Includes approved replies plus any pending replies authored by `currentUserId`.
48
+ * Always 0 for reply comments (non-null parentId).
49
+ */
50
+ replyCount: number;
51
+ }
52
+ /**
53
+ * Paginated list result for comments
54
+ */
55
+ interface CommentListResult {
56
+ items: SerializedComment[];
57
+ total: number;
58
+ limit: number;
59
+ offset: number;
60
+ }
61
+
62
+ /**
63
+ * Internal query key constants for the Comments plugin.
64
+ * Shared between query-keys.ts (HTTP path) and any SSG/direct DB path
65
+ * to prevent key drift between loaders and prefetch calls.
66
+ */
67
+ interface CommentsListDiscriminator {
68
+ resourceId: string | undefined;
69
+ resourceType: string | undefined;
70
+ parentId: string | null | undefined;
71
+ status: string | undefined;
72
+ currentUserId: string | undefined;
73
+ authorId: string | undefined;
74
+ sort: string | undefined;
75
+ limit: number;
76
+ offset: number;
77
+ }
78
+ interface CommentCountDiscriminator {
79
+ resourceId: string;
80
+ resourceType: string;
81
+ status: string | undefined;
82
+ }
83
+ /**
84
+ * Discriminator for the infinite thread query (top-level comments only).
85
+ * Intentionally excludes `offset` — pages are driven by `pageParam`, not the key.
86
+ */
87
+ interface CommentsThreadDiscriminator {
88
+ resourceId: string | undefined;
89
+ resourceType: string | undefined;
90
+ parentId: string | null | undefined;
91
+ status: string | undefined;
92
+ currentUserId: string | undefined;
93
+ limit: number;
94
+ }
95
+ /** Full query key builders — use with queryClient.setQueryData() */
96
+ declare const COMMENTS_QUERY_KEYS: {
97
+ /**
98
+ * Key for comments list query.
99
+ * Full key: ["comments", "list", { resourceId, resourceType, parentId, status, currentUserId, limit, offset }]
100
+ */
101
+ commentsList: (params?: {
102
+ resourceId?: string;
103
+ resourceType?: string;
104
+ parentId?: string | null;
105
+ status?: string;
106
+ currentUserId?: string;
107
+ authorId?: string;
108
+ sort?: string;
109
+ limit?: number;
110
+ offset?: number;
111
+ }) => readonly ["comments", "list", CommentsListDiscriminator];
112
+ /**
113
+ * Key for a single comment detail query.
114
+ * Full key: ["comments", "detail", id]
115
+ */
116
+ commentDetail: (id: string) => readonly ["comments", "detail", string];
117
+ /**
118
+ * Key for comment count query.
119
+ * Full key: ["comments", "count", { resourceId, resourceType, status }]
120
+ */
121
+ commentCount: (params: {
122
+ resourceId: string;
123
+ resourceType: string;
124
+ status?: string;
125
+ }) => readonly ["comments", "count", CommentCountDiscriminator];
126
+ /**
127
+ * Key for the infinite thread query (top-level comments, load-more).
128
+ * Full key: ["commentsThread", "list", { resourceId, resourceType, parentId, status, currentUserId, limit }]
129
+ * Offset is excluded — it is driven by `pageParam`, not baked into the key.
130
+ */
131
+ commentsThread: (params?: {
132
+ resourceId?: string;
133
+ resourceType?: string;
134
+ parentId?: string | null;
135
+ status?: string;
136
+ currentUserId?: string;
137
+ limit?: number;
138
+ }) => readonly ["commentsThread", "list", CommentsThreadDiscriminator];
139
+ };
140
+
141
+ export { COMMENTS_QUERY_KEYS as e };
142
+ export type { CommentListResult as C, SerializedComment as S, CommentsThreadDiscriminator as a, CommentsListDiscriminator as b, CommentCountDiscriminator as c, Comment as d };
@@ -0,0 +1,335 @@
1
+ import * as _btst_stack_plugins_api from '@btst/stack/plugins/api';
2
+ import { d as Comment, S as SerializedComment, C as CommentListResult } from './stack.C-b3Sn8j.js';
3
+ import * as better_call from 'better-call';
4
+ import { z } from 'zod';
5
+
6
+ /**
7
+ * Schema for the POST /comments request body.
8
+ * authorId is intentionally absent — the server resolves identity from the
9
+ * session inside onBeforePost and injects it. Never trust authorId from the
10
+ * client body.
11
+ */
12
+ declare const createCommentSchema: z.ZodObject<{
13
+ resourceId: z.ZodString;
14
+ resourceType: z.ZodString;
15
+ parentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
16
+ body: z.ZodString;
17
+ }, z.core.$strip>;
18
+ /**
19
+ * Schema for GET /comments query parameters.
20
+ *
21
+ * `currentUserId` is intentionally absent — it is never accepted from the client.
22
+ * The server always resolves the caller's identity via the `resolveCurrentUserId`
23
+ * hook and injects it internally. Accepting it from the client would allow any
24
+ * anonymous caller to supply an arbitrary user ID and read that user's pending
25
+ * (pre-moderation) comments.
26
+ */
27
+ declare const CommentListQuerySchema: z.ZodObject<{
28
+ resourceId: z.ZodOptional<z.ZodString>;
29
+ resourceType: z.ZodOptional<z.ZodString>;
30
+ parentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
31
+ status: z.ZodOptional<z.ZodEnum<{
32
+ pending: "pending";
33
+ approved: "approved";
34
+ spam: "spam";
35
+ }>>;
36
+ authorId: z.ZodOptional<z.ZodString>;
37
+ sort: z.ZodOptional<z.ZodEnum<{
38
+ asc: "asc";
39
+ desc: "desc";
40
+ }>>;
41
+ limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
42
+ offset: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
43
+ }, z.core.$strip>;
44
+ /**
45
+ * Internal params schema used by `listComments()` and the `api` factory.
46
+ * Extends the HTTP query schema with `currentUserId`, which is always injected
47
+ * server-side (either by the HTTP handler via `resolveCurrentUserId`, or by a
48
+ * trusted server-side caller such as a Server Component or cron job).
49
+ */
50
+ declare const CommentListParamsSchema: z.ZodObject<{
51
+ resourceId: z.ZodOptional<z.ZodString>;
52
+ resourceType: z.ZodOptional<z.ZodString>;
53
+ parentId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
54
+ status: z.ZodOptional<z.ZodEnum<{
55
+ pending: "pending";
56
+ approved: "approved";
57
+ spam: "spam";
58
+ }>>;
59
+ authorId: z.ZodOptional<z.ZodString>;
60
+ sort: z.ZodOptional<z.ZodEnum<{
61
+ asc: "asc";
62
+ desc: "desc";
63
+ }>>;
64
+ limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
65
+ offset: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
66
+ currentUserId: z.ZodOptional<z.ZodString>;
67
+ }, z.core.$strip>;
68
+ declare const CommentCountQuerySchema: z.ZodObject<{
69
+ resourceId: z.ZodString;
70
+ resourceType: z.ZodString;
71
+ status: z.ZodOptional<z.ZodEnum<{
72
+ pending: "pending";
73
+ approved: "approved";
74
+ spam: "spam";
75
+ }>>;
76
+ }, z.core.$strip>;
77
+
78
+ /**
79
+ * Context passed to comments API hooks
80
+ */
81
+ interface CommentsApiContext {
82
+ body?: unknown;
83
+ params?: unknown;
84
+ query?: unknown;
85
+ request?: Request;
86
+ headers?: Headers;
87
+ [key: string]: unknown;
88
+ }
89
+ /** Shared hook and config fields that are always present regardless of allowPosting. */
90
+ interface CommentsBackendOptionsBase {
91
+ /**
92
+ * When true, new comments are automatically approved (status: "approved").
93
+ * Default: false — all comments start as "pending" until a moderator approves.
94
+ */
95
+ autoApprove?: boolean;
96
+ /**
97
+ * When false, the `PATCH /comments/:id` endpoint is not registered and
98
+ * comment bodies cannot be edited.
99
+ * Default: true.
100
+ */
101
+ allowEditing?: boolean;
102
+ /**
103
+ * Server-side user resolution hook. Called once per unique authorId when
104
+ * serving GET /comments. Return null for deleted/unknown users (shown as "[deleted]").
105
+ * Deduplicates lookups — each unique authorId is resolved only once per request.
106
+ */
107
+ resolveUser?: (authorId: string) => Promise<{
108
+ name: string;
109
+ avatarUrl?: string;
110
+ } | null>;
111
+ /**
112
+ * Called before the comment list or count is returned. Throw to reject.
113
+ * When this hook is absent, any request with `status` other than "approved"
114
+ * is automatically rejected with 403 on both `GET /comments` and
115
+ * `GET /comments/count` — preventing anonymous callers from reading or
116
+ * probing the pending/spam moderation queues. Configure this hook to
117
+ * authorize admin callers (e.g. check session role).
118
+ */
119
+ onBeforeList?: (query: z.infer<typeof CommentListQuerySchema>, context: CommentsApiContext) => Promise<void> | void;
120
+ /**
121
+ * Called after a comment is successfully created.
122
+ */
123
+ onAfterPost?: (comment: Comment, context: CommentsApiContext) => Promise<void> | void;
124
+ /**
125
+ * Called before a comment body is edited. Throw an error to reject the edit.
126
+ * Use this to enforce that only the comment owner can edit (compare authorId to session).
127
+ */
128
+ onBeforeEdit?: (commentId: string, update: {
129
+ body: string;
130
+ }, context: CommentsApiContext) => Promise<void> | void;
131
+ /**
132
+ * Called after a comment is successfully edited.
133
+ */
134
+ onAfterEdit?: (comment: Comment, context: CommentsApiContext) => Promise<void> | void;
135
+ /**
136
+ * Called before a like is toggled. Throw to reject.
137
+ *
138
+ * When this hook is **absent**, any like/unlike request is automatically
139
+ * rejected with 403 — preventing unauthenticated callers from toggling likes
140
+ * on behalf of arbitrary user IDs. Configure this hook to verify `authorId`
141
+ * matches the authenticated session.
142
+ */
143
+ onBeforeLike?: (commentId: string, authorId: string, context: CommentsApiContext) => Promise<void> | void;
144
+ /**
145
+ * Called before a comment's status is changed. Throw to reject.
146
+ *
147
+ * When this hook is **absent**, any status-change request is automatically
148
+ * rejected with 403 — preventing unauthenticated callers from moderating
149
+ * comments. Configure this hook to verify the caller has admin/moderator
150
+ * privileges.
151
+ */
152
+ onBeforeStatusChange?: (commentId: string, status: "pending" | "approved" | "spam", context: CommentsApiContext) => Promise<void> | void;
153
+ /**
154
+ * Called after a comment status is changed to "approved".
155
+ */
156
+ onAfterApprove?: (comment: Comment, context: CommentsApiContext) => Promise<void> | void;
157
+ /**
158
+ * Called before a comment is deleted. Throw to reject.
159
+ *
160
+ * When this hook is **absent**, any delete request is automatically rejected
161
+ * with 403 — preventing unauthenticated callers from deleting comments.
162
+ * Configure this hook to enforce admin-only access.
163
+ */
164
+ onBeforeDelete?: (commentId: string, context: CommentsApiContext) => Promise<void> | void;
165
+ /**
166
+ * Called after a comment is deleted.
167
+ */
168
+ onAfterDelete?: (commentId: string, context: CommentsApiContext) => Promise<void> | void;
169
+ /**
170
+ * Called before the comment list is returned for an author-scoped query
171
+ * (i.e. when `authorId` is present in `GET /comments`). Throw to reject.
172
+ *
173
+ * When this hook is **absent**, any request that includes `authorId` is
174
+ * automatically rejected with 403 — preventing anonymous callers from
175
+ * reading or probing any user's comment history.
176
+ */
177
+ onBeforeListByAuthor?: (authorId: string, query: z.infer<typeof CommentListQuerySchema>, context: CommentsApiContext) => Promise<void> | void;
178
+ }
179
+ /**
180
+ * Configuration options for the comments backend plugin.
181
+ *
182
+ * TypeScript enforces the security-critical hooks based on `allowPosting`:
183
+ * - When `allowPosting` is absent or `true`, `onBeforePost` and
184
+ * `resolveCurrentUserId` are **required**.
185
+ * - When `allowPosting` is `false`, both become optional (the POST endpoint
186
+ * is not registered so neither hook is ever called).
187
+ */
188
+ type CommentsBackendOptions = CommentsBackendOptionsBase & ({
189
+ /**
190
+ * Posting is enabled (default). `onBeforePost` and `resolveCurrentUserId`
191
+ * are required to prevent anonymous authorship and impersonation.
192
+ */
193
+ allowPosting?: true;
194
+ /**
195
+ * Called before a comment is created. Must return `{ authorId: string }` —
196
+ * the server-resolved identity of the commenter.
197
+ *
198
+ * ⚠️ SECURITY REQUIRED: Derive `authorId` from the authenticated session
199
+ * (e.g. JWT / session cookie). Never trust any ID supplied by the client.
200
+ * Throw to reject the request (e.g. when the user is not authenticated).
201
+ *
202
+ * `authorId` is intentionally absent from the POST body schema. This hook
203
+ * is the only place it can be set.
204
+ */
205
+ onBeforePost: (input: z.infer<typeof createCommentSchema>, context: CommentsApiContext) => Promise<{
206
+ authorId: string;
207
+ }> | {
208
+ authorId: string;
209
+ };
210
+ /**
211
+ * Resolve the current authenticated user's ID from the request context
212
+ * (e.g. session cookie or JWT). Used to include the user's own pending
213
+ * comments alongside approved ones in `GET /comments` responses so they
214
+ * remain visible immediately after posting.
215
+ *
216
+ * Return `null` or `undefined` for unauthenticated requests.
217
+ *
218
+ * ```ts
219
+ * resolveCurrentUserId: async (ctx) => {
220
+ * const session = await getSession(ctx.headers)
221
+ * return session?.user?.id ?? null
222
+ * }
223
+ * ```
224
+ */
225
+ resolveCurrentUserId: (context: CommentsApiContext) => Promise<string | null | undefined> | string | null | undefined;
226
+ } | {
227
+ /**
228
+ * When `false`, the `POST /comments` endpoint is not registered.
229
+ * No new comments or replies can be submitted — users can only read
230
+ * existing comments. `onBeforePost` and `resolveCurrentUserId` become
231
+ * optional because they are never called.
232
+ */
233
+ allowPosting: false;
234
+ onBeforePost?: (input: z.infer<typeof createCommentSchema>, context: CommentsApiContext) => Promise<{
235
+ authorId: string;
236
+ }> | {
237
+ authorId: string;
238
+ };
239
+ resolveCurrentUserId?: (context: CommentsApiContext) => Promise<string | null | undefined> | string | null | undefined;
240
+ });
241
+ declare const commentsBackendPlugin: (options: CommentsBackendOptions) => _btst_stack_plugins_api.BackendPlugin<{
242
+ readonly getCommentCount: better_call.StrictEndpoint<"/comments/count", {} & {
243
+ method: "GET";
244
+ } & {
245
+ query: better_call.StandardSchemaV1<{
246
+ resourceId: string;
247
+ resourceType: string;
248
+ status?: "pending" | "approved" | "spam" | undefined;
249
+ }, {
250
+ resourceId: string;
251
+ resourceType: string;
252
+ status?: "pending" | "approved" | "spam" | undefined;
253
+ }>;
254
+ }, {
255
+ count: number;
256
+ }>;
257
+ readonly toggleLike: better_call.StrictEndpoint<"/comments/:id/like", {} & {
258
+ method: "POST";
259
+ body: better_call.StandardSchemaV1<{
260
+ authorId: string;
261
+ }, {
262
+ authorId: string;
263
+ }>;
264
+ }, {
265
+ likes: number;
266
+ isLiked: boolean;
267
+ }>;
268
+ readonly updateCommentStatus: better_call.StrictEndpoint<"/comments/:id/status", {} & {
269
+ method: "PATCH";
270
+ body: better_call.StandardSchemaV1<{
271
+ status: "pending" | "approved" | "spam";
272
+ }, {
273
+ status: "pending" | "approved" | "spam";
274
+ }>;
275
+ }, SerializedComment>;
276
+ readonly deleteComment: better_call.StrictEndpoint<"/comments/:id", {} & {
277
+ method: "DELETE";
278
+ body: better_call.StandardSchemaV1<unknown, unknown>;
279
+ }, {
280
+ success: boolean;
281
+ }>;
282
+ readonly updateComment?: better_call.StrictEndpoint<"/comments/:id", {} & {
283
+ method: "PATCH";
284
+ body: better_call.StandardSchemaV1<{
285
+ body: string;
286
+ }, {
287
+ body: string;
288
+ }>;
289
+ }, SerializedComment> | undefined;
290
+ readonly createComment?: better_call.StrictEndpoint<"/comments", {} & {
291
+ method: "POST";
292
+ body: better_call.StandardSchemaV1<{
293
+ resourceId: string;
294
+ resourceType: string;
295
+ body: string;
296
+ parentId?: string | null | undefined;
297
+ }, {
298
+ resourceId: string;
299
+ resourceType: string;
300
+ body: string;
301
+ parentId?: string | null | undefined;
302
+ }>;
303
+ }, SerializedComment> | undefined;
304
+ readonly listComments: better_call.StrictEndpoint<"/comments", {} & {
305
+ method: "GET";
306
+ } & {
307
+ query: better_call.StandardSchemaV1<{
308
+ resourceId?: string | undefined;
309
+ resourceType?: string | undefined;
310
+ parentId?: string | null | undefined;
311
+ status?: "pending" | "approved" | "spam" | undefined;
312
+ authorId?: string | undefined;
313
+ sort?: "asc" | "desc" | undefined;
314
+ limit?: unknown;
315
+ offset?: unknown;
316
+ }, {
317
+ resourceId?: string | undefined;
318
+ resourceType?: string | undefined;
319
+ parentId?: string | null | undefined;
320
+ status?: "pending" | "approved" | "spam" | undefined;
321
+ authorId?: string | undefined;
322
+ sort?: "asc" | "desc" | undefined;
323
+ limit?: unknown;
324
+ offset?: unknown;
325
+ }>;
326
+ }, CommentListResult>;
327
+ }, {
328
+ listComments: (params: z.infer<typeof CommentListParamsSchema>) => Promise<CommentListResult>;
329
+ getCommentById: (id: string, currentUserId?: string) => Promise<SerializedComment | null>;
330
+ getCommentCount: (params: z.infer<typeof CommentCountQuerySchema>) => Promise<number>;
331
+ }>;
332
+ type CommentsApiRouter = ReturnType<ReturnType<typeof commentsBackendPlugin>["routes"]>;
333
+
334
+ export { CommentListParamsSchema as a, CommentCountQuerySchema as b, commentsBackendPlugin as c };
335
+ export type { CommentsApiRouter as C, CommentsApiContext as d, CommentsBackendOptions as e };