2022-02-09 15:25:58 +01:00
|
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-02-09 15:25:58 +01:00
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-02-09 15:25:58 +01:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** constants for MatrixChat.state.view */
|
|
|
|
|
enum Views {
|
|
|
|
|
// a special initial state which is only used at startup, while we are
|
|
|
|
|
// trying to re-animate a matrix client or register as a guest.
|
|
|
|
|
LOADING,
|
|
|
|
|
|
2023-08-24 10:28:43 +02:00
|
|
|
|
// Another tab holds the lock.
|
|
|
|
|
CONFIRM_LOCK_THEFT,
|
|
|
|
|
|
2022-02-09 15:25:58 +01:00
|
|
|
|
// we are showing the welcome view
|
|
|
|
|
WELCOME,
|
|
|
|
|
|
|
|
|
|
// we are showing the login view
|
|
|
|
|
LOGIN,
|
|
|
|
|
|
|
|
|
|
// we are showing the registration view
|
|
|
|
|
REGISTER,
|
|
|
|
|
|
|
|
|
|
// showing the 'forgot password' view
|
|
|
|
|
FORGOT_PASSWORD,
|
|
|
|
|
|
|
|
|
|
// showing flow to trust this new device with cross-signing
|
|
|
|
|
COMPLETE_SECURITY,
|
|
|
|
|
|
|
|
|
|
// flow to setup SSSS / cross-signing on this account
|
|
|
|
|
E2E_SETUP,
|
|
|
|
|
|
2022-07-13 15:43:44 +02:00
|
|
|
|
// screen that allows users to select which use case they’ll use matrix for
|
|
|
|
|
USE_CASE_SELECTION,
|
|
|
|
|
|
2022-02-09 15:25:58 +01:00
|
|
|
|
// we are logged in with an active matrix client. The logged_in state also
|
|
|
|
|
// includes guests users as they too are logged in at the client level.
|
|
|
|
|
LOGGED_IN,
|
|
|
|
|
|
|
|
|
|
// We are logged out (invalid token) but have our local state again. The user
|
|
|
|
|
// should log back in to rehydrate the client.
|
|
|
|
|
SOFT_LOGOUT,
|
2023-08-24 10:28:43 +02:00
|
|
|
|
|
|
|
|
|
// Another instance of the application has started up. We just show an error page.
|
|
|
|
|
LOCK_STOLEN,
|
2022-02-09 15:25:58 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Views;
|