2017-08-09 12:40:03 -07:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
2022-10-11 11:24:11 +03:00
|
|
|
import Dialog from '../../base/ui/components/web/Dialog';
|
2017-08-09 12:40:03 -07:00
|
|
|
|
2022-08-25 14:35:19 +03:00
|
|
|
import VideoQualitySlider from './VideoQualitySlider.web';
|
2018-01-03 15:24:07 -06:00
|
|
|
|
2017-08-09 12:40:03 -07:00
|
|
|
/**
|
2018-03-06 16:28:19 -08:00
|
|
|
* Implements a React {@link Component} which displays the component
|
|
|
|
|
* {@code VideoQualitySlider} in a dialog.
|
2017-08-09 12:40:03 -07:00
|
|
|
*
|
2021-11-04 22:10:43 +01:00
|
|
|
* @augments Component
|
2017-08-09 12:40:03 -07:00
|
|
|
*/
|
2018-03-06 16:28:19 -08:00
|
|
|
export default class VideoQualityDialog extends Component {
|
2017-08-09 12:40:03 -07:00
|
|
|
/**
|
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
|
*
|
|
|
|
|
* @inheritdoc
|
|
|
|
|
* @returns {ReactElement}
|
|
|
|
|
*/
|
2025-03-12 10:19:11 -05:00
|
|
|
override render() {
|
2017-08-09 12:40:03 -07:00
|
|
|
return (
|
2018-03-06 16:28:19 -08:00
|
|
|
<Dialog
|
2022-10-11 11:24:11 +03:00
|
|
|
cancel = {{ hidden: true }}
|
|
|
|
|
ok = {{ hidden: true }}
|
|
|
|
|
titleKey = 'videoStatus.performanceSettings'>
|
2018-03-06 16:28:19 -08:00
|
|
|
<VideoQualitySlider />
|
|
|
|
|
</Dialog>
|
2017-11-09 13:59:16 -08:00
|
|
|
);
|
|
|
|
|
}
|
2017-08-09 12:40:03 -07:00
|
|
|
}
|