diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml
index 4813f6f91..27609ef52 100644
--- a/locales/ja-JP.yml
+++ b/locales/ja-JP.yml
@@ -433,6 +433,7 @@ listen: "聴く"
none: "なし"
volume: "音量"
details: "詳細"
+chooseEmoji: "絵文字を選択"
_sfx:
note: "ノート"
diff --git a/src/client/pages/my-settings/reaction.vue b/src/client/pages/my-settings/reaction.vue
index 7ce39380f..b2df3f023 100644
--- a/src/client/pages/my-settings/reaction.vue
+++ b/src/client/pages/my-settings/reaction.vue
@@ -3,13 +3,13 @@
{{ $t('reaction') }}
- {{ $t('reaction') }}{{ $t('reactionSettingDescription') }}
+ {{ $t('reaction') }}{{ $t('reactionSettingDescription') }}
+ {{ $t('default') }}
@@ -72,6 +72,15 @@ export default Vue.extend({
setDefault() {
this.reactions = '👍❤😆🤔😮🎉💢😥😇🍮';
},
+
+ async chooseEmoji(ev) {
+ const vm = this.$root.new(await import('../../components/emoji-picker.vue').then(m => m.default), {
+ source: ev.currentTarget || ev.target
+ }).$once('chosen', emoji => {
+ this.reactions += emoji;
+ vm.close();
+ });
+ }
}
});