1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-10 12:37:19 +00:00

Fix stopwatch and introduce default tippy theme

This commit is contained in:
silverwind
2024-04-27 17:06:32 +02:00
parent 6d2a307ad8
commit a6e746adb3
8 changed files with 43 additions and 29 deletions

View File

@ -5,6 +5,8 @@ import {hideElem, showElem} from '../utils/dom.js';
const {appSubUrl, notificationSettings, enableTimeTracking, assetVersionEncoded} = window.config;
let stopwatchTippy;
export function initStopwatch() {
if (!enableTimeTracking) {
return;
@ -19,13 +21,14 @@ export function initStopwatch() {
stopwatchEl.removeAttribute('href'); // intended for noscript mode only
createTippy(stopwatchEl, {
stopwatchTippy = createTippy(stopwatchEl, {
content: stopwatchPopup,
placement: 'bottom-end',
trigger: 'click',
maxWidth: 'none',
interactive: true,
hideOnClick: true,
theme: 'default',
});
// global stop watch (in the head_navbar), it should always work in any case either the EventSource or the PeriodicPoller is used.
@ -161,6 +164,9 @@ function updateStopwatchTime(seconds) {
const delta = Date.now() - start;
const dur = prettyMilliseconds(secs * 1000 + delta, {compact: true});
if (stopwatch) stopwatch.textContent = dur;
// refresh the tippy so that the triangle updates to the correct position
stopwatchTippy.hide();
stopwatchTippy.show();
};
updateUi();
updateTimeIntervalId = setInterval(updateUi, 1000);