2022-04-12 04:48:01 +08:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
|
|
import SpeechService from '/imports/ui/components/audio/captions/speech/service';
|
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
title: {
|
|
|
|
id: 'app.audio.captions.speech.title',
|
|
|
|
description: 'Audio speech recognition title',
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
id: 'app.audio.captions.speech.disabled',
|
|
|
|
description: 'Audio speech recognition disabled',
|
|
|
|
},
|
2022-04-14 01:23:18 +08:00
|
|
|
unsupported: {
|
|
|
|
id: 'app.audio.captions.speech.unsupported',
|
|
|
|
description: 'Audio speech recognition unsupported',
|
|
|
|
},
|
2022-04-12 04:48:01 +08:00
|
|
|
'en-US': {
|
|
|
|
id: 'app.audio.captions.select.en-US',
|
|
|
|
description: 'Audio speech recognition english language',
|
|
|
|
},
|
|
|
|
'es-ES': {
|
|
|
|
id: 'app.audio.captions.select.es-ES',
|
|
|
|
description: 'Audio speech recognition spanish language',
|
|
|
|
},
|
|
|
|
'pt-BR': {
|
|
|
|
id: 'app.audio.captions.select.pt-BR',
|
|
|
|
description: 'Audio speech recognition portuguese language',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-04-12 21:53:53 +08:00
|
|
|
const Select = ({
|
2022-04-12 04:48:01 +08:00
|
|
|
intl,
|
|
|
|
enabled,
|
|
|
|
locale,
|
2022-04-12 21:53:53 +08:00
|
|
|
voices,
|
2022-04-12 04:48:01 +08:00
|
|
|
}) => {
|
|
|
|
if (!enabled) return null;
|
|
|
|
|
2022-04-14 01:23:18 +08:00
|
|
|
if (voices.length === 0) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
style={{
|
|
|
|
fontSize: '.75rem',
|
|
|
|
padding: '1rem 0',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{`*${intl.formatMessage(intlMessages.unsupported)}`}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2022-04-12 04:48:01 +08:00
|
|
|
|
2022-04-14 01:23:18 +08:00
|
|
|
if (SpeechService.useDefault()) return null;
|
2022-04-12 21:53:53 +08:00
|
|
|
|
2022-04-12 04:48:01 +08:00
|
|
|
const onChange = (e) => {
|
|
|
|
const { value } = e.target;
|
|
|
|
SpeechService.setSpeechLocale(value);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div style={{ padding: '1rem 0' }}>
|
|
|
|
<label
|
|
|
|
htmlFor="speechSelect"
|
|
|
|
style={{ padding: '0 .5rem' }}
|
|
|
|
>
|
|
|
|
{intl.formatMessage(intlMessages.title)}
|
|
|
|
</label>
|
|
|
|
<select
|
|
|
|
id="speechSelect"
|
|
|
|
onChange={onChange}
|
|
|
|
value={locale}
|
|
|
|
>
|
|
|
|
<option
|
|
|
|
key="disabled"
|
|
|
|
value=""
|
|
|
|
>
|
|
|
|
{intl.formatMessage(intlMessages.disabled)}
|
|
|
|
</option>
|
2022-04-12 21:53:53 +08:00
|
|
|
{voices.map((v) => (
|
2022-04-12 04:48:01 +08:00
|
|
|
<option
|
2022-04-12 21:53:53 +08:00
|
|
|
key={v}
|
|
|
|
value={v}
|
2022-04-12 04:48:01 +08:00
|
|
|
>
|
2022-04-12 21:53:53 +08:00
|
|
|
{intl.formatMessage(intlMessages[v])}
|
2022-04-12 04:48:01 +08:00
|
|
|
</option>
|
|
|
|
))}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-04-12 21:53:53 +08:00
|
|
|
Select.propTypes = {
|
2022-04-12 04:48:01 +08:00
|
|
|
enabled: PropTypes.bool.isRequired,
|
|
|
|
locale: PropTypes.string.isRequired,
|
2022-04-12 21:53:53 +08:00
|
|
|
voices: PropTypes.arrayOf(PropTypes.string).isRequired,
|
2022-04-12 04:48:01 +08:00
|
|
|
intl: PropTypes.shape({
|
|
|
|
formatMessage: PropTypes.func.isRequired,
|
|
|
|
}).isRequired,
|
|
|
|
};
|
|
|
|
|
2022-04-12 21:53:53 +08:00
|
|
|
export default injectIntl(Select);
|