-
Notifications
You must be signed in to change notification settings - Fork 308
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
Add: 1~10番目のキャラクターを選択するホットキーを追加 #2034
Conversation
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.
LGTM!!
ちょっとこの後コメントした内容についてのコミットをさせていただくので、 @tsym77yoshi さんから逆にレビューいただけると・・・!!
(良さそうとか、こここうすると〜みたいなコメントいただければ!)
変更は多分こちらから見れます:
523edeb?w=1
src/type/preload.ts
Outdated
return { | ||
action: `${index + 1}番目のキャラクターを選択` as HotkeyActionNameType, | ||
combination: HotkeyCombination( | ||
!isMac ? "Ctrl " + roleKey : "Meta " + roleKey, |
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.
こうできそう!
!isMac ? "Ctrl " + roleKey : "Meta " + roleKey, | |
(!isMac ? "Ctrl " : "Meta ") + roleKey; |
src/components/Talk/AudioCell.vue
Outdated
@@ -490,6 +495,30 @@ const removeCell = async () => { | |||
} | |||
}; | |||
|
|||
// N番目のキャラクターを選ぶ | |||
const selectCharacterAt = (index: number) => { | |||
if (userOrderedCharacterInfos.value.length >= index + 1) { |
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.
結構長いifなので早期リターンしてあげたほうが良いかも
src/components/Talk/TalkEditor.vue
Outdated
registerHotkeyWithCleanup({ | ||
editor: "talk", | ||
enableInTextbox: true, | ||
name: `${i + 1}番目のキャラクターを選択` as HotkeyActionNameType, |
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.
番目のキャラクターを選択
という文字列がas
とともに使われていて、元のほうが変わったときに気付けないな〜と思いました。
共通化して番目のキャラクターを選択
という文字列をconstで持っておいても良いかも・・・?
ありがとうございます!いいと思います! |
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.
レビューありがとうございます、マージします!!
非常に丁寧な進行ありがとうございました!! 結構望まれていた機能だと思うのでツイートしてみました! 他にも「次・前のキャラクターに変更」するショートカットや、スタイルを選択するショートカットなども便利だと思います! |
ありがとうございます!
|
@tsym77yoshi issue作成ありがとうございます!! 上下キーの仕様は失念していました。。 か、keystrokeライブラリに変えるか、もろもろ頑張って自作するかですかね・・・! |
内容
キャラクターのデフォルトスタイルを取得する関数を@domain/talkに移動するcommitをmerge
トークで1~10番目のキャラクターを選択するホットキーを追加
関連 Issue
close: #1187
ref: #1896