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

[project-s] キャラクターメニューの調整 #1764

Merged
merged 2 commits into from
Jan 26, 2024

Conversation

sigprogramming
Copy link
Contributor

内容

以下を行います。

  • キャラクターメニューの調整
    • hummingsing_teacherタイプのスタイルのみ表示するようにする
    • スタイルのタイプを表示する

関連 Issue

VOICEVOX/voicevox_project#15

その他

@sigprogramming sigprogramming requested a review from a team as a code owner January 26, 2024 13:51
Comment on lines +104 to +117
const description: string[] = [];
if (style.styleType === "talk") {
description.push("トーク");
} else if (style.styleType === "humming") {
description.push("ハミング");
} else if (style.styleType === "sing_teacher") {
description.push("歌");
} else {
throw new Error("Unknown style type.");
}
if (style.styleName != undefined) {
description.push(style.styleName);
}
return description.join("・");
Copy link
Contributor Author

Choose a reason for hiding this comment

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

ひとまずhummingは「ハミング」、sing_teacherは「歌」と表示するようにしています。
また、styleTypestyleNameは「・」で区切っています。

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!!

スタイルの表示のとこは最終でちょっと調整させていただくかもです!
(ハミングのときはガイドボーカルキャラを表示するつもりなので、そこ合わせかなと)

return (
style.styleId === store.state.singer?.styleId &&
style.engineId === store.state.singer?.engineId
);
})?.styleName;
});
return style != undefined ? getStyleDescription(style) : "";
Copy link
Member

@Hiroshiba Hiroshiba Jan 26, 2024

Choose a reason for hiding this comment

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

これもエラーの握り潰しになっちゃってる雰囲気があるんですが、エンジンが準備できてないときは必ずundefinedになるので、結構どうしようもないんですよね・・・。

これは結局、このviewが本来準備できていないはずの状態でインスタンス化しようとさせられるのが課題だろうな~と思っています。
(ボイボエディタ全体的に、Vueの起動シーケンスの整理が追いついてない)

@Hiroshiba Hiroshiba merged commit b46d856 into VOICEVOX:project-s Jan 26, 2024
8 checks passed
@sigprogramming sigprogramming deleted the adjust_character_menu branch January 27, 2024 03:33
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