Add new reaction: rip 😇
This commit is contained in:
		
							parent
							
								
									be68f42220
								
							
						
					
					
						commit
						4a5e145048
					
				|  | @ -70,6 +70,7 @@ common: | |||
|     congrats: "おめでとう" | ||||
|     angry: "おこ" | ||||
|     confused: "こまこまのこまり" | ||||
|     rip: "RIP" | ||||
|     pudding: "Pudding" | ||||
| 
 | ||||
|   note-placeholders: | ||||
|  |  | |||
|  | @ -8,6 +8,7 @@ | |||
| 	<img v-if="reaction == 'congrats'" src="/assets/reactions/congrats.png" alt="%i18n:common.reactions.congrats%"> | ||||
| 	<img v-if="reaction == 'angry'" src="/assets/reactions/angry.png" alt="%i18n:common.reactions.angry%"> | ||||
| 	<img v-if="reaction == 'confused'" src="/assets/reactions/confused.png" alt="%i18n:common.reactions.confused%"> | ||||
| 	<img v-if="reaction == 'rip'" src="/assets/reactions/rip.png" alt="%i18n:common.reactions.rip%"> | ||||
| 	<template v-if="reaction == 'pudding'"> | ||||
| 		<img v-if="$store.getters.isSignedIn && $store.state.settings.iLikeSushi" src="/assets/reactions/sushi.png" alt="%i18n:common.reactions.pudding%"> | ||||
| 		<img v-else src="/assets/reactions/pudding.png" alt="%i18n:common.reactions.pudding%"> | ||||
|  |  | |||
|  | @ -10,9 +10,10 @@ | |||
| 			<button @click="react('hmm')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="4" title="%i18n:common.reactions.hmm%"><mk-reaction-icon reaction='hmm'/></button> | ||||
| 			<button @click="react('surprise')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="5" title="%i18n:common.reactions.surprise%"><mk-reaction-icon reaction='surprise'/></button> | ||||
| 			<button @click="react('congrats')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="6" title="%i18n:common.reactions.congrats%"><mk-reaction-icon reaction='congrats'/></button> | ||||
| 			<button @click="react('angry')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="4" title="%i18n:common.reactions.angry%"><mk-reaction-icon reaction='angry'/></button> | ||||
| 			<button @click="react('confused')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="5" title="%i18n:common.reactions.confused%"><mk-reaction-icon reaction='confused'/></button> | ||||
| 			<button @click="react('pudding')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="6" title="%i18n:common.reactions.pudding%"><mk-reaction-icon reaction='pudding'/></button> | ||||
| 			<button @click="react('angry')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="7" title="%i18n:common.reactions.angry%"><mk-reaction-icon reaction='angry'/></button> | ||||
| 			<button @click="react('confused')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="8" title="%i18n:common.reactions.confused%"><mk-reaction-icon reaction='confused'/></button> | ||||
| 			<button @click="react('rip')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="9" title="%i18n:common.reactions.rip%"><mk-reaction-icon reaction='rip'/></button> | ||||
| 			<button @click="react('pudding')" @mouseover="onMouseover" @mouseout="onMouseout" tabindex="10" title="%i18n:common.reactions.pudding%"><mk-reaction-icon reaction='pudding'/></button> | ||||
| 		</div> | ||||
| 	</div> | ||||
| </div> | ||||
|  |  | |||
|  | @ -9,6 +9,7 @@ | |||
| 		<span v-if="reactions.congrats"><mk-reaction-icon reaction="congrats"/><span>{{ reactions.congrats }}</span></span> | ||||
| 		<span v-if="reactions.angry"><mk-reaction-icon reaction="angry"/><span>{{ reactions.angry }}</span></span> | ||||
| 		<span v-if="reactions.confused"><mk-reaction-icon reaction="confused"/><span>{{ reactions.confused }}</span></span> | ||||
| 		<span v-if="reactions.rip"><mk-reaction-icon reaction="rip"/><span>{{ reactions.rip }}</span></span> | ||||
| 		<span v-if="reactions.pudding"><mk-reaction-icon reaction="pudding"/><span>{{ reactions.pudding }}</span></span> | ||||
| 	</template> | ||||
| </div> | ||||
|  |  | |||
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 6.6 KiB | 
|  | @ -8,6 +8,7 @@ export default function(reaction: string): string { | |||
| 		case 'congrats': return '🎉'; | ||||
| 		case 'angry': return '💢'; | ||||
| 		case 'confused': return '😥'; | ||||
| 		case 'rip': return '😇'; | ||||
| 		case 'pudding': return '🍮'; | ||||
| 		default: return ''; | ||||
| 	} | ||||
|  |  | |||
|  | @ -26,6 +26,7 @@ export const validateReaction = $.str.or([ | |||
| 	'congrats', | ||||
| 	'angry', | ||||
| 	'confused', | ||||
| 	'rip', | ||||
| 	'pudding' | ||||
| ]); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue