aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/stopwatch.js
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2021-02-19 10:05:35 +0000
committerGitHub <noreply@github.com>2021-02-19 11:05:35 +0100
commit092299891f07326f65b27e050c7aa8a9595b3445 (patch)
treedd2eb099539a3bf10d8151396116ba964314a56c /web_src/js/features/stopwatch.js
parent430b3b780619bfcdcf0af209e0cba45caa32efbd (diff)
downloadgitea-092299891f07326f65b27e050c7aa8a9595b3445.tar.gz
gitea-092299891f07326f65b27e050c7aa8a9595b3445.zip
Move the stopwatches to the eventsource stream (#14588)
Move the stopwatches to the eventsource stream Use the /user/events eventsource to update the stopwatches instead of polling /api/v1/user/stopwatches if the eventsource is enabled. Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'web_src/js/features/stopwatch.js')
-rw-r--r--web_src/js/features/stopwatch.js57
1 files changed, 56 insertions, 1 deletions
diff --git a/web_src/js/features/stopwatch.js b/web_src/js/features/stopwatch.js
index d500fb5f0f..433f042a1f 100644
--- a/web_src/js/features/stopwatch.js
+++ b/web_src/js/features/stopwatch.js
@@ -17,7 +17,58 @@ export async function initStopwatch() {
$(this).parent().trigger('submit');
});
- if (!stopwatchEl || NotificationSettings.MinTimeout <= 0) {
+ if (!stopwatchEl) {
+ return;
+ }
+
+ if (NotificationSettings.EventSourceUpdateTime > 0 && !!window.EventSource && window.SharedWorker) {
+ // Try to connect to the event source via the shared worker first
+ const worker = new SharedWorker(`${__webpack_public_path__}js/eventsource.sharedworker.js`, 'notification-worker');
+ worker.addEventListener('error', (event) => {
+ console.error(event);
+ });
+ worker.port.onmessageerror = () => {
+ console.error('Unable to deserialize message');
+ };
+ worker.port.postMessage({
+ type: 'start',
+ url: `${window.location.origin}${AppSubUrl}/user/events`,
+ });
+ worker.port.addEventListener('message', (event) => {
+ if (!event.data || !event.data.type) {
+ console.error(event);
+ return;
+ }
+ if (event.data.type === 'stopwatches') {
+ updateStopwatchData(JSON.parse(event.data.data));
+ } else if (event.data.type === 'error') {
+ console.error(event.data);
+ } else if (event.data.type === 'logout') {
+ if (event.data !== 'here') {
+ return;
+ }
+ worker.port.postMessage({
+ type: 'close',
+ });
+ worker.port.close();
+ window.location.href = AppSubUrl;
+ }
+ });
+ worker.port.addEventListener('error', (e) => {
+ console.error(e);
+ });
+ worker.port.start();
+ window.addEventListener('beforeunload', () => {
+ worker.port.postMessage({
+ type: 'close',
+ });
+ worker.port.close();
+ });
+
+ return;
+ }
+
+ if (NotificationSettings.MinTimeout <= 0) {
return;
}
@@ -59,6 +110,10 @@ async function updateStopwatch() {
updateTimeInterval = null;
}
+ return updateStopwatchData(data);
+}
+
+async function updateStopwatchData(data) {
const watch = data[0];
const btnEl = $('.active-stopwatch-trigger');
if (!watch) {