@@ -14,7 +14,6 @@ import {
14
14
15
15
import {
16
16
createEmptyCommentModerationQueueCounts ,
17
- createEmptyCommentRelationshipCounts ,
18
17
createEmptyCommentStatusCounts ,
19
18
createEmptyCommentTagCounts ,
20
19
createEmptyRelatedCommentCounts ,
@@ -80,10 +79,6 @@ export interface CommentTagCounts {
80
79
tags : GQLCommentTagCounts ;
81
80
}
82
81
83
- export interface CommentRelationshipCounts {
84
- PUBLISHED_COMMENTS_WITH_REJECTED_ANCESTORS : number ;
85
- }
86
-
87
82
/**
88
83
* RelatedCommentCounts stores all the Comment Counts that will be stored on
89
84
* each related document (like a Story, or a Site).
@@ -108,12 +103,6 @@ export interface RelatedCommentCounts {
108
103
moderationQueue : CommentModerationQueueCounts ;
109
104
110
105
tags : CommentTagCounts ;
111
-
112
- /**
113
- * relationships stores the counts of relationships between comments, such as when
114
- * published comments have rejected ancestors
115
- */
116
- relationships : CommentRelationshipCounts ;
117
106
}
118
107
119
108
/**
@@ -147,19 +136,6 @@ export function mergeCommentStatusCount(
147
136
return mergedStatusCounts ;
148
137
}
149
138
150
- export function mergeCommentRelationshipCounts (
151
- ...relationship : CommentRelationshipCounts [ ]
152
- ) : CommentRelationshipCounts {
153
- const merged = createEmptyCommentRelationshipCounts ( ) ;
154
-
155
- for ( const count of relationship ) {
156
- merged . PUBLISHED_COMMENTS_WITH_REJECTED_ANCESTORS +=
157
- count . PUBLISHED_COMMENTS_WITH_REJECTED_ANCESTORS ;
158
- }
159
-
160
- return merged ;
161
- }
162
-
163
139
export function mergeCommentModerationQueueCount (
164
140
...moderationQueues : CommentModerationQueueCounts [ ]
165
141
) : CommentModerationQueueCounts {
@@ -240,21 +216,6 @@ export function calculateTotalPublishedCommentCount(
240
216
) ;
241
217
}
242
218
243
- //
244
-
245
- export function calculateTotalPublishedAndVisibleCommentCount (
246
- commentCounts : RelatedCommentCounts
247
- ) {
248
- const publishedCount = PUBLISHED_STATUSES . reduce (
249
- ( total , status ) => total + commentCounts . status [ status ] ,
250
- 0
251
- ) ;
252
- const notVisibleCount =
253
- commentCounts . relationships ?. PUBLISHED_COMMENTS_WITH_REJECTED_ANCESTORS ??
254
- 0 ;
255
- return publishedCount - notVisibleCount ;
256
- }
257
-
258
219
interface RelatedCommentCountsDocument extends Document {
259
220
id : string ;
260
221
tenantID : string ;
0 commit comments