theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

34 lines
861 B
TypeScript

import { appNavigate } from '../app/actions';
import { IStore } from '../app/types';
import { OPEN_DESKTOP_APP, OPEN_WEB_APP } from './actionTypes';
/**
* Continue to the conference page.
*
* @returns {Function}
*/
export function openWebApp() {
return (dispatch: IStore['dispatch']) => {
// In order to go to the web app we need to skip the deep linking
// interceptor. OPEN_WEB_APP action should set launchInWeb to true in
// the redux store. After this when appNavigate() is called the
// deep linking interceptor will be skipped (will return undefined).
dispatch({ type: OPEN_WEB_APP });
dispatch(appNavigate());
};
}
/**
* Opens the desktop app.
*
* @returns {{
* type: OPEN_DESKTOP_APP
* }}
*/
export function openDesktopApp() {
return {
type: OPEN_DESKTOP_APP
};
}