An object that manages the state of active alerts.
Whether or not the app has been booted.
A local cache that can be used to store data at the application level, so that is persists between different routes.
An object which controls the state of the composer.
The page the app is currently on.
This object holds information about the type of page we are currently visiting, and sometimes additional arbitrary page state that may be relevant to lower-level components.
An object which controls the state of the cached discussion list, which is used in the index page and the slideout pane.
An object that manages the state of the navigation drawer.
The forum model for this application.
The app's history stack, which keeps track of which routes the user visits so that they can easily navigate back to the previous route.
An ordered list of initializers to bootstrap the application.
An object that manages modal state.
A map of notification types to their components.
An object which controls the state of the user's notifications.
An object which controls the state of the page's side pane.
A map of post types to their components.
The page the app was on before the current page.
Once the application navigates to another page, the object previously assigned to this.current will be moved to this.previous, while this.current is re-initialized.
Construct a URL to the route with the given name.
A map of routes, keyed by a unique route name. Each route is an object containing the following properties:
path
The path that the route is accessed at.component
The Mithril component to render when this route is active.app.routes.discussion = { path: '/d/:id', component: DiscussionPage };
An object which stores the global search state and manages search capabilities.
The app's session.
Stores info about the current user.
The app's data store.
The app's translator.
Private
titlePrivate
titleCallback for when an external authenticator (social login) action has completed.
If the payload indicates that the user has been logged in, then the page will be reloaded. Otherwise, a SignUpModal will be opened, prefilled with the provided details.
Get the API response document that has been preloaded into the application.
Make an AJAX request, handling any low-level errors that may occur.
Protected
requestBy default, show an error alert, and log the error to the console.
Protected
requestProtected
requestProtected
Used to modify the error message shown on the page to help troubleshooting. While not certain, a failing cross-origin request likely indicates a missing redirect to Flarum canonical URL. Because XHR errors do not expose CORS information, we can only compare the requested URL origin to the page origin.
Determine the current screen mode, based on our media queries.
Protected
transformCheck whether or not the user is currently viewing a discussion.
Generated using TypeDoc v0.24.8
The
App
class provides a container for an application, as well as various utilities for the rest of the app to use.