mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	refactor and perf tweak
This commit is contained in:
		
							parent
							
								
									428d39a460
								
							
						
					
					
						commit
						ec45db7870
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -30,6 +30,7 @@ import { RoleService } from '@/core/RoleService.js';
 | 
			
		|||
import { FeaturedService } from '@/core/FeaturedService.js';
 | 
			
		||||
 | 
			
		||||
const FALLBACK = '❤';
 | 
			
		||||
const PER_NOTE_REACTION_USER_PAIR_CACHE_MAX = 16;
 | 
			
		||||
 | 
			
		||||
const legacies: Record<string, string> = {
 | 
			
		||||
	'like': '👍',
 | 
			
		||||
| 
						 | 
				
			
			@ -187,7 +188,7 @@ export class ReactionService {
 | 
			
		|||
		await this.notesRepository.createQueryBuilder().update()
 | 
			
		||||
			.set({
 | 
			
		||||
				reactions: () => sql,
 | 
			
		||||
				...(note.reactionAndUserPairCache.length < 10 ? {
 | 
			
		||||
				...(note.reactionAndUserPairCache.length < PER_NOTE_REACTION_USER_PAIR_CACHE_MAX ? {
 | 
			
		||||
					reactionAndUserPairCache: () => `array_append("reactionAndUserPairCache", '${user.id}/${reaction}')`,
 | 
			
		||||
				} : {}),
 | 
			
		||||
			})
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue