-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport SW API changes without service worker (#2137)
* Backport SW API changes without service worker * PR feedback * Feedback #2 * Feedback #3 * Feedback #4 * Feedback #5 * Feedback #6 (revert removing getters) * Feedback #7 * Feedback #8 * Queue login logout * Bugfix: wrong commit event * Fix voting by adding await * Documentation & bugfixes * Remove state/vuex/_private/save * Bugfixes * Add logoutInProgress check to prevent saving Chelonia state after a session ended * Add comment to DELETED_CHATROOM; remove Vue from contracts * Remove debug logging
- Loading branch information
Showing
67 changed files
with
2,722 additions
and
1,452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
The files in this directory define selectors under the `gi.actions` domain. | ||
|
||
The `gi.actions` domain is used for operations that | ||
_execute in the same context as Chelonia_, which may be a _browsing context_ | ||
(e.g., a tab window), but it could also be something like a service worker. | ||
**Operations that affect the overall application state, regardless of the UI state in a specific tab or window genrally belong under `gi.actions`**. | ||
|
||
When using a service worker, calls to these selectors will be forwarded from | ||
browsing contexts using a star selector (i.e., `gi.actions/*`). | ||
|
||
The operations under this domain, `gi.actions`, will usually be called from | ||
contracts, other selectors under `gi.actions` and other selectors under `gi.app`. | ||
|
||
For an explanation about `gi.app` and a worked example of where a selector | ||
belongs, see the [`README.md` file there](../app/README.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.