Skip to content
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

Refactor: src/components/Dialog.ts の引数を変更 #1340

Merged
merged 1 commit into from
Jun 18, 2023

Conversation

shm11C3
Copy link
Contributor

@shm11C3 shm11C3 commented Jun 18, 2023

内容

概要

#1335 での実装では引数に confirmedTips を利用しており関数の役割が明確でない状態でした。
今回の改修では Dialog.tsconfirmedTips を参照せずに notifyOnGenerateAudio を更新できるよう、 SET_CONFIRMED_TIP を作成しています。

// 変更前
dispatch("SET_CONFIRMED_TIPS", {
    confirmedTips: {
        ...confirmedTips, // この部分ために引数で受け取る必要があった
        notifyOnGenerateAudio: true,
    },
});

// 変更後
dispatch("SET_CONFIRMED_TIP", {
    confirmedTip: {
        notifyOnGenerateAudio: true,
    },
});

関連コメント

#1335 (comment)

変更

  • src/store/setting.tsSET_CONFIRMED_TIP を追加
  • src/components/Dialog.ts 内の関数で受け取る引数を notifyOnGenerateAudio に変更

関連 Issue

ref #1329

その他

別でIssueとして上がっている Dialog.ts の処理共通化とは別のタスクとしてPR出しました。
そのため、変更差分が内容に対して少し大きくなってしまっています。。。

@shm11C3 shm11C3 requested a review from a team as a code owner June 18, 2023 04:26
@shm11C3 shm11C3 requested review from Hiroshiba and removed request for a team June 18, 2023 04:26
Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!

わかりやすいPR説明と内容ありがとうございました!!
issueとの対応は必須ではないのでやりやすい形で進めていただければ・・・!

@Hiroshiba Hiroshiba merged commit 0aa1914 into VOICEVOX:main Jun 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants