Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 10x 3x 3x 10x 2x 2x 10x 2x 2x 3x 3x 1x 1x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 3x 4x 1x 1x 4x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 3x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { newsletterApi } from '../api/newsletterApi';
import { optimizedNewsletterApi } from '../api/optimizedNewsletterApi';
import { NewsletterWithRelations } from '../types';
import {
BatchResult,
BulkUpdateNewsletterParams,
CreateNewsletterParams,
NewsletterQueryParams,
PaginatedResponse,
UpdateNewsletterParams,
} from '../types/api';
import { logger } from '../utils/logger';
const log = logger;
// Configuration for when to use optimized vs original API
const OPTIMIZATION_CONFIG = {
// Use optimized API for list queries with relations
useOptimizedForListQueries: true,
// Use optimized API for single queries with relations
useOptimizedForSingleQueries: true,
// Use optimized API for source filtering (most common case)
useOptimizedForSourceFiltering: true,
// Never use optimized API for complex operations (create, update, delete, bulk operations)
useOptimizedForMutations: false,
// Use optimized API for search and tag filtering (now optimized)
useOptimizedForSearch: true,
useOptimizedForTagFiltering: true,
};
// Determine if we should use the optimized API for a given query
const shouldUseOptimizedApi = (
operation:
| 'getAll'
| 'getById'
| 'create'
| 'update'
| 'delete'
| 'bulkUpdate'
| 'markAsRead'
| 'markAsUnread'
| 'toggleArchive'
| 'bulkArchive'
| 'bulkUnarchive'
| 'toggleLike'
| 'getByTags'
| 'getBySource'
| 'search'
| 'getStats'
| 'countBySource'
| 'getTotalCountBySource'
| 'getUnreadCountBySource'
| 'getUnreadCount',
_params: NewsletterQueryParams = {}
): boolean => {
// Never use optimized API for mutations
if (OPTIMIZATION_CONFIG.useOptimizedForMutations === false) {
if (
[
'create',
'update',
'delete',
'bulkUpdate',
'markAsRead',
'markAsUnread',
'toggleArchive',
'bulkArchive',
'bulkUnarchive',
'toggleLike',
].includes(operation)
) {
return false;
}
}
// Never use optimized API for search and tag filtering
if (OPTIMIZATION_CONFIG.useOptimizedForSearch === false && operation === 'search') {
return false;
}
if (OPTIMIZATION_CONFIG.useOptimizedForTagFiltering === false && operation === 'getByTags') {
return false;
}
// Use optimized API for list queries
if (operation === 'getAll' && OPTIMIZATION_CONFIG.useOptimizedForListQueries) {
return true;
}
// Use optimized API for single queries with relations
if (operation === 'getById' && OPTIMIZATION_CONFIG.useOptimizedForSingleQueries) {
return true;
}
// Use optimized API for source filtering
if (operation === 'getBySource' && OPTIMIZATION_CONFIG.useOptimizedForSourceFiltering) {
return true;
}
return false;
};
// Optimized Newsletter Service that intelligently chooses between APIs
export const optimizedNewsletterService = {
async getAll(
params: NewsletterQueryParams = {}
): Promise<PaginatedResponse<NewsletterWithRelations>> {
const useOptimized = shouldUseOptimizedApi('getAll', params);
log.debug('Choosing API for getAll', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: {
useOptimized,
hasSourceIds: !!(params.sourceIds && params.sourceIds.length > 0),
hasTagIds: !!(params.tagIds && params.tagIds.length > 0),
hasSearch: !!params.search,
},
});
if (useOptimized) {
return optimizedNewsletterApi.getAll(params);
} else {
return newsletterApi.getAll(params);
}
},
async getById(id: string, includeRelations = true): Promise<NewsletterWithRelations | null> {
const useOptimized = shouldUseOptimizedApi('getById', { includeRelations });
log.debug('Choosing API for getById', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: {
useOptimized,
includeRelations,
id,
},
});
if (useOptimized) {
return optimizedNewsletterApi.getById(id, includeRelations);
} else {
return newsletterApi.getById(id, includeRelations);
}
},
async create(params: CreateNewsletterParams): Promise<NewsletterWithRelations> {
log.debug('Using original API for create', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'create' },
});
return newsletterApi.create(params);
},
async update(params: UpdateNewsletterParams): Promise<NewsletterWithRelations> {
log.debug('Using original API for update', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'update' },
});
return newsletterApi.update(params);
},
async delete(id: string): Promise<boolean> {
log.debug('Using original API for delete', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'delete' },
});
return newsletterApi.delete(id);
},
async bulkUpdate(
params: BulkUpdateNewsletterParams
): Promise<BatchResult<NewsletterWithRelations>> {
log.debug('Using original API for bulkUpdate', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'bulkUpdate' },
});
return newsletterApi.bulkUpdate(params);
},
async markAsRead(id: string): Promise<NewsletterWithRelations> {
log.debug('Using original API for markAsRead', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'markAsRead' },
});
return newsletterApi.markAsRead(id);
},
async markAsUnread(id: string): Promise<NewsletterWithRelations> {
log.debug('Using original API for markAsUnread', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'markAsUnread' },
});
return newsletterApi.markAsUnread(id);
},
async toggleArchive(id: string): Promise<NewsletterWithRelations> {
log.debug('Using original API for toggleArchive', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'toggleArchive' },
});
return newsletterApi.toggleArchive(id);
},
async bulkArchive(ids: string[]): Promise<BatchResult<NewsletterWithRelations>> {
log.debug('Using original API for bulkArchive', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'bulkArchive' },
});
return newsletterApi.bulkArchive(ids);
},
async bulkUnarchive(ids: string[]): Promise<BatchResult<NewsletterWithRelations>> {
log.debug('Using original API for bulkUnarchive', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'bulkUnarchive' },
});
return newsletterApi.bulkUnarchive(ids);
},
async toggleLike(id: string): Promise<NewsletterWithRelations> {
log.debug('Using original API for toggleLike', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'toggleLike' },
});
return newsletterApi.toggleLike(id);
},
async getByTags(
tagIds: string[],
params: Omit<NewsletterQueryParams, 'tagIds'> = {}
): Promise<PaginatedResponse<NewsletterWithRelations>> {
const useOptimized = shouldUseOptimizedApi('getByTags', { ...params, tagIds });
log.debug('Choosing API for getByTags', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: {
useOptimized,
tagIds,
params,
},
});
if (useOptimized) {
return optimizedNewsletterApi.getByTags(tagIds, params);
} else {
return newsletterApi.getByTags(tagIds, params);
}
},
async getBySource(
sourceId: string,
params: Omit<NewsletterQueryParams, 'sourceIds'> = {}
): Promise<PaginatedResponse<NewsletterWithRelations>> {
const useOptimized = shouldUseOptimizedApi('getBySource', { ...params, sourceIds: [sourceId] });
log.debug('Choosing API for getBySource', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: {
useOptimized,
sourceId,
params,
},
});
if (useOptimized) {
return optimizedNewsletterApi.getBySource(sourceId, params);
} else {
return newsletterApi.getBySource(sourceId, params);
}
},
async search(
query: string,
params: Omit<NewsletterQueryParams, 'search'> = {}
): Promise<PaginatedResponse<NewsletterWithRelations>> {
const useOptimized = shouldUseOptimizedApi('search', { ...params, search: query });
log.debug('Choosing API for search', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: {
useOptimized,
query,
params,
},
});
if (useOptimized) {
return optimizedNewsletterApi.search(query, params);
} else {
return newsletterApi.search(query, params);
}
},
async getStats(): Promise<{
total: number;
read: number;
unread: number;
archived: number;
liked: number;
}> {
log.debug('Using original API for getStats', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'getStats' },
});
return newsletterApi.getStats();
},
async countBySource(): Promise<Record<string, number>> {
log.debug('Using original API for countBySource', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'countBySource' },
});
return newsletterApi.countBySource();
},
async getTotalCountBySource(): Promise<Record<string, number>> {
log.debug('Using original API for getTotalCountBySource', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'getTotalCountBySource' },
});
return newsletterApi.getTotalCountBySource();
},
async getUnreadCountBySource(): Promise<Record<string, number>> {
log.debug('Using original API for getUnreadCountBySource', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'getUnreadCountBySource' },
});
return newsletterApi.getUnreadCountBySource();
},
async getUnreadCount(sourceId?: string | null): Promise<number> {
log.debug('Using original API for getUnreadCount', {
component: 'OptimizedNewsletterService',
action: 'choose_api',
metadata: { operation: 'getUnreadCount', sourceId },
});
return newsletterApi.getUnreadCount(sourceId);
},
};
// Export the configuration for testing and debugging
export { OPTIMIZATION_CONFIG };
|