-
Notifications
You must be signed in to change notification settings - Fork 304
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
ダイアログをQuasarのものに置き換える #2286
ダイアログをQuasarのものに置き換える #2286
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.
あ~~~~~そういうことだったんですね。。。。。
フロントには既にダイアログ表示機能があるので、同じ機能が2つあることになりそうですね。。。。。
アラートダイアログ
voicevox/src/components/Dialog/Dialog.ts
Line 49 in 755d84b
export const showAlertDialog = async ( |
選ばせるダイアログ
voicevox/src/components/Dialog/Dialog.ts
Line 74 in 755d84b
export const showConfirmDialog = async ( |
ど、どうしましょう。。。。。。。
- 共通化を目指す
- storybookで確認できるのでたぶんこれが楽しい!
- でも既存のDialog.tsはもう一個ワーニング付きok/cancelダイアログがあるので、それも実装する必要はある
- 既存の関数を叩くようにする
- とりあえず2種実装されてる状態にする
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.
テストが落ちてるかも?
直ったはず? |
ちょっとこっちの環境依存なのか確認したく。。 一旦確認の意図です。 |
ご確認ありがとうございます 🙇 ためしに別PCで開いたら見れました。。。 😇 |
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.
ちょっと途中までなのですがレビューしました!
シグネチャに関しての相談が1点あったので、一旦そこまで!
Co-authored-by: Hiroshiba <[email protected]>
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です!!実装が楽しみ!!
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.
削除行のが多い!!!!素晴らしい!!!!!!!!
リファクタリングもしてくださってますね、ありがとうございます!!!!!
こちらでちょっと変更してマージしちゃおうかと思ったのですが、いくつか挙動の確認をしたい点があったので、コメントまで!!
await showAlertDialog({ | ||
type: "info", | ||
title: "保存", | ||
message: `編集中のプロジェクトが ${filePath} に切り替わりました。`, |
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.
アラートなのかメッセージなのかわからなくないので、showMessageDialogでも良いかもですね!
デフォルトはtype: "info"
ですし。
と思ったけど以前からSHOW_ALERT_DIALOG
だった感じなんですね。
んじゃまあどちらでもということで!!!
const result: number = await window.backend.showQuestionDialog({ | ||
const result: number = await showQuestionDialog({ | ||
type: "info", | ||
title: "警告", | ||
message, | ||
buttons: ["保存", "破棄", "キャンセル"], | ||
cancelId: 2, | ||
defaultId: 2, | ||
buttons: ["キャンセル", "破棄", "保存"], | ||
cancel: 0, | ||
}); |
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.
@sevenc-nanashi
マージ後ですみません!こちらのボタンの順番の変更ですが、理由をお聞きしたいです…!
特に理由が無ければ、以前のボタンの順番に戻すのがUX的に良いかなと思います…!
ちなみに、他のソフトで順番がどうなっているか確認してみたのですが、ほとんどのソフトで「保存、破棄、キャンセル」の順番になっていました!
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.
@sevenc-nanashi
ありがとうございます!
- 最近は右キャンセルではなく左キャンセル(右アクション)になってきている(Discordの議論)
- ボイボの方針は左キャンセルで、実装も左キャンセルになっている
ので、以前と順番は変わりますが左キャンセルでも良さそうです!
(保存ボタンに色を付けると、迷いづらくなるかなと思います)
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.
Discord では議論 ありがとうございました!!!
少なくとも色をつけるのは必須だなと感じました!!
ということでリリースまでにはなんとかしたいなと考えてます。
とりあえず忘れないように0.22アプデのチェック項目リストに追加しておきました! 🙏
Co-authored-by: Hiroshiba <[email protected]>
Co-authored-by: Hiroshiba <[email protected]>
Co-authored-by: Hiroshiba <[email protected]>
Co-authored-by: Hiroshiba <[email protected]>
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!!!
複雑性を下げることができました、とても助かりました!!!
@takusea 新しくコンポーネントが増えたのでご連絡まで・・・!!
ダイアログは今こんな感じのデザインになっています。
src/components/Dialog/TextDialog/
辺りにあります 🙏
キャンセル付きダイアログ(プロジェクトを保存せずに消そうとしたとき)
文字を変更したパターン(ショートカットキーを初期化しようとしたとき)
OKだけあるパターン(保存済みプロジェクトを「別の名前をつけて保存」したとき)
例えばデフォルトのボタンになっているものは色を付けても良いかも、とか!
あ、ちなみにQuasarを使ってることにこだわりはないです。
内容
ブラウザ版のダイアログをQuasarのDialog Pluginを使って追加します。
関連 Issue
(なし)
スクリーンショット・動画など
その他
(なし)