forked from Ivasoft/mattermost-mobile
* Only call app entry on websocket reconnect * Handle notification on its own entry and run app entry on websocket initialization * Fix notification entry issues * Fix login entry and add retry on entry failure * feedback review * Put back handleEntryAfterLoadNavigation before the batching --------- Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import type {DeepLink, Launch} from '@constants';
|
|
|
|
export interface DeepLink {
|
|
serverUrl: string;
|
|
teamName: string;
|
|
}
|
|
|
|
export interface DeepLinkChannel extends DeepLink {
|
|
channelName: string;
|
|
}
|
|
|
|
export interface DeepLinkDM extends DeepLink {
|
|
userName: string;
|
|
}
|
|
|
|
export interface DeepLinkPermalink extends DeepLink {
|
|
postId: string;
|
|
}
|
|
|
|
export interface DeepLinkGM extends DeepLink {
|
|
channelId: string;
|
|
}
|
|
|
|
export interface DeepLinkPlugin extends DeepLink {
|
|
id: string;
|
|
}
|
|
|
|
export type DeepLinkType = typeof DeepLink[keyof typeof DeepLink];
|
|
|
|
export interface DeepLinkWithData {
|
|
type: DeepLinkType;
|
|
url: string;
|
|
data?: DeepLinkChannel | DeepLinkDM | DeepLinkGM | DeepLinkPermalink | DeepLinkPlugin;
|
|
}
|
|
|
|
export type LaunchType = typeof Launch[keyof typeof Launch];
|
|
|
|
export interface LaunchProps {
|
|
extra?: DeepLinkWithData | NotificationWithData;
|
|
launchType: LaunchType;
|
|
launchError?: Boolean;
|
|
serverUrl?: string;
|
|
displayName?: string;
|
|
coldStart?: boolean;
|
|
}
|