2020-04-16 10:47:10 +00:00
|
|
|
import React from 'react';
|
2022-08-25 11:35:19 +00:00
|
|
|
import { WithTranslation } from 'react-i18next';
|
2022-09-13 07:36:00 +00:00
|
|
|
import { makeStyles } from 'tss-react/mui';
|
2020-05-20 10:57:03 +00:00
|
|
|
|
2022-10-28 10:07:58 +00:00
|
|
|
import { IReduxState } from '../../../../app/types';
|
|
|
|
import { translate } from '../../../../base/i18n/functions';
|
|
|
|
import { connect } from '../../../../base/redux/functions';
|
2023-01-30 11:34:56 +00:00
|
|
|
import { withPixelLineHeight } from '../../../../base/styles/functions.web';
|
2020-04-16 10:47:10 +00:00
|
|
|
import {
|
2022-09-27 07:10:28 +00:00
|
|
|
getDeviceStatusText,
|
|
|
|
getDeviceStatusType
|
2022-10-28 10:07:58 +00:00
|
|
|
} from '../../../functions';
|
2020-04-16 10:47:10 +00:00
|
|
|
|
2022-10-20 09:11:27 +00:00
|
|
|
export interface IProps extends WithTranslation {
|
2020-04-16 10:47:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The text to be displayed in relation to the status of the audio/video devices.
|
|
|
|
*/
|
2022-10-17 09:28:04 +00:00
|
|
|
deviceStatusText?: string;
|
2020-04-16 10:47:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of status for current devices, controlling the background color of the text.
|
|
|
|
* Can be `ok` or `warning`.
|
|
|
|
*/
|
2022-10-17 09:28:04 +00:00
|
|
|
deviceStatusType?: string;
|
2022-08-25 11:35:19 +00:00
|
|
|
}
|
2020-04-16 10:47:10 +00:00
|
|
|
|
2022-11-15 07:50:22 +00:00
|
|
|
const useStyles = makeStyles()(theme => {
|
2022-03-15 10:48:05 +00:00
|
|
|
return {
|
|
|
|
deviceStatus: {
|
2023-01-30 11:34:56 +00:00
|
|
|
display: 'flex',
|
2022-03-15 10:48:05 +00:00
|
|
|
alignItems: 'center',
|
2023-01-30 11:34:56 +00:00
|
|
|
justifyContent: 'center',
|
|
|
|
...withPixelLineHeight(theme.typography.bodyShortRegular),
|
2022-03-15 10:48:05 +00:00
|
|
|
color: '#fff',
|
2023-01-30 11:34:56 +00:00
|
|
|
marginTop: theme.spacing(4),
|
2022-03-15 10:48:05 +00:00
|
|
|
|
|
|
|
'& span': {
|
|
|
|
marginLeft: theme.spacing(3)
|
|
|
|
},
|
|
|
|
|
|
|
|
'&.device-status-error': {
|
|
|
|
alignItems: 'flex-start',
|
|
|
|
backgroundColor: theme.palette.warning01,
|
|
|
|
borderRadius: '6px',
|
|
|
|
color: theme.palette.uiBackground,
|
|
|
|
padding: '12px 16px',
|
2023-01-30 11:34:56 +00:00
|
|
|
textAlign: 'left',
|
|
|
|
marginTop: theme.spacing(2)
|
2022-03-15 10:48:05 +00:00
|
|
|
},
|
2023-01-30 11:34:56 +00:00
|
|
|
|
|
|
|
'@media (max-width: 720px)': {
|
|
|
|
marginTop: 0
|
2022-03-15 10:48:05 +00:00
|
|
|
}
|
2023-01-30 11:34:56 +00:00
|
|
|
},
|
|
|
|
indicator: {
|
|
|
|
width: '16px',
|
|
|
|
height: '16px',
|
|
|
|
borderRadius: '100%',
|
|
|
|
backgroundColor: theme.palette.success01
|
2022-03-15 10:48:05 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2020-04-16 10:47:10 +00:00
|
|
|
/**
|
|
|
|
* Strip showing the current status of the devices.
|
|
|
|
* User is informed if there are missing or malfunctioning devices.
|
|
|
|
*
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
function DeviceStatus({ deviceStatusType, deviceStatusText, t }: IProps) {
|
2022-09-13 07:36:00 +00:00
|
|
|
const { classes, cx } = useStyles();
|
2021-09-17 10:12:34 +00:00
|
|
|
const hasError = deviceStatusType === 'warning';
|
2022-09-13 07:36:00 +00:00
|
|
|
const containerClassName = cx(classes.deviceStatus, { 'device-status-error': hasError });
|
2020-04-16 10:47:10 +00:00
|
|
|
|
|
|
|
return (
|
2021-06-10 12:48:44 +00:00
|
|
|
<div
|
2021-09-17 10:12:34 +00:00
|
|
|
className = { containerClassName }
|
2021-06-10 12:48:44 +00:00
|
|
|
role = 'alert'
|
|
|
|
tabIndex = { -1 }>
|
2023-01-30 11:34:56 +00:00
|
|
|
{!hasError && <div className = { classes.indicator } />}
|
2021-09-17 10:12:34 +00:00
|
|
|
<span role = 'heading'>
|
2022-10-17 09:28:04 +00:00
|
|
|
{hasError ? t('prejoin.errorNoPermissions') : t(deviceStatusText ?? '')}
|
2021-06-10 12:48:44 +00:00
|
|
|
</span>
|
2020-04-16 10:47:10 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maps (parts of) the redux state to the React {@code Component} props.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @returns {{ deviceStatusText: string, deviceStatusText: string }}
|
|
|
|
*/
|
2022-10-20 09:11:27 +00:00
|
|
|
function mapStateToProps(state: IReduxState) {
|
2020-04-16 10:47:10 +00:00
|
|
|
return {
|
|
|
|
deviceStatusText: getDeviceStatusText(state),
|
2021-09-17 10:12:34 +00:00
|
|
|
deviceStatusType: getDeviceStatusType(state)
|
2020-04-16 10:47:10 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(connect(mapStateToProps)(DeviceStatus));
|