2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-08-17 14:20:58 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2017-11-10 16:27:02 +01:00
|
|
|
export default function(reaction: string): string {
|
|
|
|
switch (reaction) {
|
|
|
|
case 'like': return '👍';
|
|
|
|
case 'love': return '❤️';
|
|
|
|
case 'laugh': return '😆';
|
|
|
|
case 'hmm': return '🤔';
|
|
|
|
case 'surprise': return '😮';
|
|
|
|
case 'congrats': return '🎉';
|
|
|
|
case 'angry': return '💢';
|
|
|
|
case 'confused': return '😥';
|
2018-08-11 14:08:34 +02:00
|
|
|
case 'rip': return '😇';
|
2017-11-10 16:27:02 +01:00
|
|
|
case 'pudding': return '🍮';
|
2019-03-17 17:03:35 +01:00
|
|
|
case 'star': return '⭐';
|
|
|
|
default: return reaction;
|
2017-11-10 16:27:02 +01:00
|
|
|
}
|
|
|
|
}
|