mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 13:17:46 +00:00
* feat(Deeplinking): Implement for web. * ref(unsupported_browser): Move the mobile version to deeplinking feature * feat(deeplinking_mobile): Redesign. * fix(deeplinking): Use interface.NATIVE_APP_NAME. * feat(dial_in_summary): Add the PIN to the number link. * fix(deep_linking): Handle use case when there isn't deep linking image. * fix(deep_linking): css * fix(deep_linking): deeplink -> "deep linking" * fix(deeplinking_css): Remove position: fixed * docs(deeplinking): Add comment for the openWebApp action.
38 lines
894 B
JavaScript
38 lines
894 B
JavaScript
/* @flow */
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
import { HideNotificationBarStyle } from '../../base/react';
|
|
|
|
declare var interfaceConfig: Object;
|
|
|
|
/**
|
|
* React component representing no mobile app page.
|
|
*
|
|
* @class NoMobileApp
|
|
*/
|
|
export default class NoMobileApp extends Component<*> {
|
|
/**
|
|
* Renders the component.
|
|
*
|
|
* @returns {ReactElement}
|
|
*/
|
|
render() {
|
|
const ns = 'no-mobile-app';
|
|
|
|
return (
|
|
<div className = { ns }>
|
|
<h2 className = { `${ns}__title` }>
|
|
Video chat isn't available on mobile.
|
|
</h2>
|
|
<p className = { `${ns}__description` }>
|
|
Please use { interfaceConfig.NATIVE_APP_NAME } on desktop to
|
|
join calls.
|
|
</p>
|
|
|
|
<HideNotificationBarStyle />
|
|
</div>
|
|
);
|
|
}
|
|
}
|