62 lines
2.2 KiB
JavaScript
62 lines
2.2 KiB
JavaScript
import {
|
|
useStore_MicVolume,
|
|
useStore_SpeakerVolume,
|
|
useStore_MicThresholdCheckStatus,
|
|
useStore_SpeakerThresholdCheckStatus,
|
|
} from "@store";
|
|
|
|
import { useStdoutToPython } from "@useStdoutToPython";
|
|
|
|
export const useVolume = () => {
|
|
const { asyncStdoutToPython } = useStdoutToPython();
|
|
const { updateMicVolume } = useStore_MicVolume();
|
|
const { updateSpeakerVolume } = useStore_SpeakerVolume();
|
|
const {
|
|
currentMicThresholdCheckStatus,
|
|
updateMicThresholdCheckStatus,
|
|
pendingMicThresholdCheckStatus,
|
|
} = useStore_MicThresholdCheckStatus();
|
|
const {
|
|
currentSpeakerThresholdCheckStatus,
|
|
updateSpeakerThresholdCheckStatus,
|
|
pendingSpeakerThresholdCheckStatus,
|
|
} = useStore_SpeakerThresholdCheckStatus();
|
|
|
|
return {
|
|
volumeCheckStart_Mic: () => {
|
|
pendingMicThresholdCheckStatus();
|
|
asyncStdoutToPython("/set/enable/check_mic_threshold");
|
|
},
|
|
volumeCheckStop_Mic: () => {
|
|
pendingMicThresholdCheckStatus();
|
|
asyncStdoutToPython("/set/disable/check_mic_threshold");
|
|
},
|
|
updateVolumeVariable_Mic: (payload) => {
|
|
updateMicVolume(payload);
|
|
},
|
|
currentMicThresholdCheckStatus: currentMicThresholdCheckStatus,
|
|
updateMicThresholdCheckStatus: (payload) => {
|
|
updateMicThresholdCheckStatus(payload);
|
|
if (payload === false) updateMicVolume("0");
|
|
},
|
|
|
|
volumeCheckStart_Speaker: () => {
|
|
updateSpeakerVolume("0");
|
|
pendingSpeakerThresholdCheckStatus();
|
|
asyncStdoutToPython("/set/enable/check_speaker_threshold");
|
|
},
|
|
volumeCheckStop_Speaker: () => {
|
|
pendingSpeakerThresholdCheckStatus();
|
|
asyncStdoutToPython("/set/disable/check_speaker_threshold");
|
|
},
|
|
updateVolumeVariable_Speaker: (payload) => {
|
|
updateSpeakerVolume(payload);
|
|
},
|
|
currentSpeakerThresholdCheckStatus: currentSpeakerThresholdCheckStatus,
|
|
updateSpeakerThresholdCheckStatus: (payload) => {
|
|
updateSpeakerThresholdCheckStatus(payload);
|
|
if (payload === false) updateSpeakerVolume("0");
|
|
}
|
|
|
|
};
|
|
}; |