| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 | /* global interfaceConfig */
import { URI_PROTOCOL_PATTERN } from '../base/util';
import { Platform } from '../base/react';
import {
    DeepLinkingDesktopPage,
    DeepLinkingMobilePage,
    NoMobileApp
} from './components';
import { _shouldShowDeepLinkingDesktopPage }
    from './shouldShowDeepLinkingDesktopPage';
/**
 * Promise that resolves when the window load event is received.
 *
 * @type {Promise<void>}
 */
const windowLoadedPromise = new Promise(resolve => {
    /**
     * Handler for the window load event.
     *
     * @returns {void}
     */
    function onWindowLoad() {
        resolve();
        window.removeEventListener('load', onWindowLoad);
    }
    window.addEventListener('load', onWindowLoad);
});
/**
 * Generates a deep linking URL based on the current window URL.
 *
 * @returns {string} - The generated URL.
 */
export function generateDeepLinkingURL() {
    // If the user installed the app while this Component was displayed
    // (e.g. the user clicked the Download the App button), then we would
    // like to open the current URL in the mobile app. The only way to do it
    // appears to be a link with an app-specific scheme, not a Universal
    // Link.
    const appScheme = interfaceConfig.APP_SCHEME || 'org.jitsi.meet';
    // Replace the protocol part with the app scheme.
    return window.location.href.replace(
            new RegExp(`^${URI_PROTOCOL_PATTERN}`), `${appScheme}:`);
}
/**
 * Resolves with the component that should be displayed if the deep linking page
 * should be shown and with <tt>undefined</tt> otherwise.
 *
 * @param {Object} state - Object containing current redux state.
 * @returns {Promise<Component>}
 */
export function getDeepLinkingPage(state) {
    const { room } = state['features/base/conference'];
    // Show only if we are about to join a conference.
    if (!room) {
        return Promise.resolve();
    }
    const OS = Platform.OS;
    const isUsingMobileBrowser = OS === 'android' || OS === 'ios';
    if (isUsingMobileBrowser) { // mobile
        const mobileAppPromo
            = typeof interfaceConfig === 'object'
                && interfaceConfig.MOBILE_APP_PROMO;
        return Promise.resolve(
            typeof mobileAppPromo === 'undefined' || Boolean(mobileAppPromo)
                ? DeepLinkingMobilePage : NoMobileApp);
    }
    // desktop
    const { launchInWeb } = state['features/deep-linking'];
    if (launchInWeb) {
        return Promise.resolve();
    }
    return _shouldShowDeepLinkingDesktopPage().then(
        // eslint-disable-next-line no-confusing-arrow
        show => show ? DeepLinkingDesktopPage : undefined);
}
/**
 * Opens the desktop app.
 *
 * @returns {void}
 */
export function openDesktopApp() {
    windowLoadedPromise.then(() => {
        // If the code for opening the deep link is executed before the window
        // load event, something with the internal chrome state goes wrong. The
        // result is that no window load event is received which is the cause
        // for some permission prompts to not be displayed. In our case the GUM
        // prompt wasn't displayed which causes the GUM call to never finish.
        window.location.href = generateDeepLinkingURL();
    });
}
 |