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