[Update] 設定ページ開閉時に、音声認識オンオフ状態の復元を実装。

※今まではBackendで状態復元をしていたが、処理があれなのでUI側での便利機能としてUIが管理することに。
This commit is contained in:
Sakamoto Shiina
2024-09-27 13:13:33 +09:00
parent c1165a2185
commit c32a186e88
7 changed files with 94 additions and 33 deletions

View File

@@ -32,32 +32,36 @@ export const useMainFunction = () => {
const { asyncStdoutToPython } = useStdoutToPython();
const toggleTranslation = () => {
const setTranslation = (to_enable) => {
pendingTranslationStatus();
if (currentTranslationStatus.data) {
asyncStdoutToPython("/set/disable/translation");
} else {
if (to_enable) {
asyncStdoutToPython("/set/enable/translation");
} else {
asyncStdoutToPython("/set/disable/translation");
}
};
const toggleTranslation = () => setTranslation(!currentTranslationStatus.data);
const toggleTranscriptionSend = () => {
const setTranscriptionSend = (to_enable) => {
pendingTranscriptionSendStatus();
if (currentTranscriptionSendStatus.data) {
asyncStdoutToPython("/set/disable/transcription_send");
} else {
if (to_enable) {
asyncStdoutToPython("/set/enable/transcription_send");
}
};
const toggleTranscriptionReceive = () => {
pendingTranscriptionReceiveStatus();
if (currentTranscriptionReceiveStatus.data) {
asyncStdoutToPython("/set/disable/transcription_receive");
} else {
asyncStdoutToPython("/set/enable/transcription_receive");
asyncStdoutToPython("/set/disable/transcription_send");
}
};
const toggleTranscriptionSend = () => setTranscriptionSend(!currentTranscriptionSendStatus.data);
const setTranscriptionReceive = (to_enable) => {
pendingTranscriptionReceiveStatus();
if (to_enable) {
asyncStdoutToPython("/set/enable/transcription_receive");
} else {
asyncStdoutToPython("/set/disable/transcription_receive");
}
};
const toggleTranscriptionReceive = () => setTranscriptionReceive(!currentTranscriptionReceiveStatus.data);
const toggleForeground = () => {
const main_page = getCurrent();
@@ -70,14 +74,17 @@ export const useMainFunction = () => {
currentTranslationStatus,
toggleTranslation,
updateTranslationStatus,
setTranslation,
currentTranscriptionSendStatus,
toggleTranscriptionSend,
updateTranscriptionSendStatus,
setTranscriptionSend,
currentTranscriptionReceiveStatus,
toggleTranscriptionReceive,
updateTranscriptionReceiveStatus,
setTranscriptionReceive,
currentForegroundStatus,
toggleForeground,