jiti-meet/react/features/deep-linking/components/NoMobileApp.web.js

47 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-02-07 14:45:51 +00:00
/* @flow */
2017-02-03 12:51:39 +00:00
import React, { Component } from 'react';
import { createDeepLinkingPageEvent, sendAnalytics } from '../../analytics';
2017-02-16 20:00:54 +00:00
2017-02-07 14:45:51 +00:00
declare var interfaceConfig: Object;
2017-02-03 12:51:39 +00:00
/**
2017-02-07 14:45:51 +00:00
* React component representing no mobile app page.
2017-02-03 12:51:39 +00:00
*
* @class NoMobileApp
*/
export default class NoMobileApp extends Component<*> {
/**
* Implements the Component's componentDidMount method.
*
* @inheritdoc
*/
componentDidMount() {
sendAnalytics(
createDeepLinkingPageEvent(
'displayed', 'noMobileApp', { isMobileBrowser: true }));
}
2017-02-03 12:51:39 +00:00
/**
* Renders the component.
*
* @returns {ReactElement}
*/
render() {
const ns = 'no-mobile-app';
return (
<div className = { ns }>
<h2 className = { `${ns}__title` }>
2017-02-28 04:31:55 +00:00
Video chat isn't available on mobile.
2017-02-03 12:51:39 +00:00
</h2>
<p className = { `${ns}__description` }>
Please use { interfaceConfig.NATIVE_APP_NAME } on desktop to
join calls.
2017-02-03 12:51:39 +00:00
</p>
</div>
);
}
}