34 lines
844 B
JavaScript
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);
|