91 lines
2.2 KiB
TypeScript
91 lines
2.2 KiB
TypeScript
/* eslint-disable lines-around-comment */
|
|
|
|
import React, { PureComponent } from 'react';
|
|
|
|
import { IReduxState } from '../../../app/types';
|
|
// @ts-ignore
|
|
import JitsiScreenWebView from '../../../base/modal/components/JitsiScreenWebView';
|
|
// @ts-ignore
|
|
import JitsiStatusBar from '../../../base/modal/components/JitsiStatusBar';
|
|
import { connect } from '../../../base/redux/functions';
|
|
// @ts-ignore
|
|
import { renderArrowBackButton }
|
|
// @ts-ignore
|
|
from '../../../mobile/navigation/components/welcome/functions';
|
|
|
|
// @ts-ignore
|
|
import styles from './styles';
|
|
|
|
|
|
const DEFAULT_HELP_CENTRE_URL = 'https://web-cdn.jitsi.net/faq/meet-faq.html';
|
|
|
|
interface IProps {
|
|
|
|
/**
|
|
* The URL to display in the Help Centre.
|
|
*/
|
|
_url: string;
|
|
|
|
/**
|
|
* Default prop for navigating between screen components(React Navigation).
|
|
*/
|
|
navigation: Object;
|
|
}
|
|
|
|
/**
|
|
* Implements a page that renders the help content for the app.
|
|
*/
|
|
class HelpView extends PureComponent<IProps> {
|
|
/**
|
|
* Implements React's {@link Component#componentDidMount()}. Invoked
|
|
* immediately after mounting occurs.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {void}
|
|
*/
|
|
componentDidMount() {
|
|
const {
|
|
navigation
|
|
} = this.props;
|
|
|
|
// @ts-ignore
|
|
navigation.setOptions({
|
|
headerLeft: () =>
|
|
renderArrowBackButton(() =>
|
|
// @ts-ignore
|
|
navigation.goBack())
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Implements {@code PureComponent#render()}.
|
|
*
|
|
* @inheritdoc
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
return (
|
|
<>
|
|
<JitsiStatusBar />
|
|
<JitsiScreenWebView
|
|
source = { this.props._url }
|
|
style = { styles.screenContainer } />
|
|
</>
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Maps part of the Redux state to the props of this component.
|
|
*
|
|
* @param {Object} state - The Redux state.
|
|
* @returns {IProps}
|
|
*/
|
|
function _mapStateToProps(state: IReduxState) {
|
|
return {
|
|
_url: state['features/base/config'].helpCentreURL || DEFAULT_HELP_CENTRE_URL
|
|
};
|
|
}
|
|
|
|
export default connect(_mapStateToProps)(HelpView);
|