bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/captions/speech/container.jsx
2023-12-07 16:23:36 -03:00

34 lines
844 B
JavaScript

import React from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import CaptionsService from '/imports/ui/components/captions/service';
import Speech from './component';
import { useMutation } from '@apollo/client';
import { SET_SPEECH_LOCALE } from '/imports/ui/core/graphql/mutations/userMutations';
const Container = (props) => {
const [setSpeechLocale] = useMutation(SET_SPEECH_LOCALE);
const setUserSpeechLocale = (locale, provider) => {
setSpeechLocale({
variables: {
locale,
provider,
},
});
};
return <Speech setUserSpeechLocale={setUserSpeechLocale} {...props} />;
};
export default withTracker(({ isModerator }) => {
const {
locale,
dictating,
} = CaptionsService.getDictationStatus(isModerator);
return {
locale,
dictating,
};
})(Container);