-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(frontend): 絵文字ピッカーの実装 #12617
feat(frontend): 絵文字ピッカーの実装 #12617
Conversation
# Conflicts: # packages/frontend/src/components/MkEmojiPicker.vue
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #12617 +/- ##
===========================================
- Coverage 81.91% 81.90% -0.01%
===========================================
Files 184 184
Lines 28282 28290 +8
Branches 503 503
===========================================
+ Hits 23167 23171 +4
- Misses 5115 5119 +4 ☔ View full report in Codecov by Sentry. |
@syuilo |
focus(); | ||
setTimeout(() => { | ||
focus(); | ||
}, 10); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
絵文字ピッカーを閉じた後、フォーカスが当たらないのでついでに修正しました
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nextTick
ではダメだったという感じかしら
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
他の個所でsetTimeoutをつかって解決しているのを見かけたので、マネしました。
nextTickは試してないので、ちょっと試してみます
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nextTickでいけました。感謝 🙏
|
たしかに。なおします!
以下の点から、あったほうがいいと考えます。
|
~ちょっと余談~ |
私の管理するサーバーでも同様の反応で、バグを疑ったり、設定が消えてしまったと不安になるユーザーが多かったです。 |
まだリリースされてない変更だから仕方なさそう |
破壊的変更というよりはバグ修正という認識ですね |
その方式であれば逆に絵文字デッキの内容をリアクションデッキにコピーする操作の実装余地も生まれるし |
なるほど。コピーする方針で実装しなおします(タブの件もいっしょに) |
@syuilo |
そんな感じ👍 |
@syuilo |
引き継ぎます |
👍🏻 👍🏻 |
* 絵文字デッキの作成 * 細かい不備を修正 * fix lint * fix * fix CHANGELOG.md * fix setTimeout -> nextTick * fix misskey-dev#12617 (comment) * fix bug * fix CHANGELOG.md * fix CHANGELOG.md * wip * Update CHANGELOG.md * Update CHANGELOG.md * wip --------- Co-authored-by: syuilo <[email protected]>
What
#12560 の対応です。
この対応により、絵文字ピッカー・リアクションピッカーに以下の変化が発生します。
related: #12337 , #12336
Why
fix #12560
Additional info (optional)
以下を確認しました
Checklist