Files
SillyTavern/public/scripts/loader.js
T
Wolfsblvt 45009cd0e4 Deprecate legacy loader and migrate all callsites to action-loader system with informative toasts (#5326)
* Refactor loader.js to use action-loader system and move overlay management into action-loader module

- Deprecate showLoader() and hideLoader() in favor of action-loader API
- Implement legacy functions as thin wrappers around ActionLoaderHandle
- Move overlay management (showOverlay, hideOverlay, isOverlayDisplayed) into action-loader.js
- Move Popup-based loader implementation and preloader cleanup to action-loader
- Add loader.isBlocking() method to check for active blocking overlays

* Migrate from legacy loader functions to action-loader API throughout codebase

- Replace showLoader()/hideLoader() imports with loader from action-loader.js
- Update firstLoadInit() to use loader.show() with title, message, and ToastMode.STATIC
- Pass initLoaderHandle to getSettings() for early hide during onboarding flow
- Refactor renameGroupOrCharacterChat() to use loader.show() instead of boolean flag
- Wrap handleDeleteChat() with loader.show() and proper error handling
- Update BulkEditOver...

* Update loader titles and remove redundant reload notification

- Change bookmark loader title from "Bookmark" to "Chat History" for clarity
- Remove loader notification before extensions reload (redundant with browser reload)

* lint fix

* Add splash screen support to action loader with custom overlay content

- Add `overlayContent` option to ActionLoaderOptions for custom HTML in overlay
- Implement splash screen styles with centered logo, spinner, and message
- Update firstLoadInit() to use custom splash screen instead of static toast
- Pass custom content through showOverlay() to replace default spinner
- Adjust non-blocking loader warning to account for custom overlay content

* Refactor loader overlay to use DOM elements instead of HTML strings

- Add createDefaultLoaderOverlay() function to generate fresh loader overlay elements
- Export createOverlay() method on loader utility API for external use
- Change overlayContent parameter type from string-only to string|HTMLElement|null
- Add getOverlayContent() helper to normalize custom content for Popup
- Update firstLoadInit() to build splash screen using DOM manipulation instead of template literals
- Add splash-logo class and

* Use a true ellipsis

* Adjust sizing for desktop

* Even truer ellipsis

* Add transition to splash screen and fix blur animation on hideOverlay (#5338)

* Initial plan

* Blur entire splash screen on hideOverlay, not just spinner

Co-authored-by: Cohee1207 <18619528+Cohee1207@users.noreply.github.com>
Agent-Logs-Url: https://github.com/SillyTavern/SillyTavern/sessions/eee6c06d-7c9d-4363-bc8f-2647ed390368

* Add transition to splash-screen and fix transition detection

Co-authored-by: Cohee1207 <18619528+Cohee1207@users.noreply.github.com>
Agent-Logs-Url: https://github.com/SillyTavern/SillyTavern/sessions/9368bc36-31a0-4a58-aebd-7b569696ff2e

---------

Co-authored-by: anthropic-code-agent[bot] <242468646+Claude@users.noreply.github.com>
Co-authored-by: Cohee1207 <18619528+Cohee1207@users.noreply.github.com>

* Add translations to supported locales

* Localize logo alt on welcome screen

---------

Co-authored-by: Cohee <18619528+Cohee1207@users.noreply.github.com>
Co-authored-by: Claude <242468646+Claude@users.noreply.github.com>
2026-03-22 03:30:23 +02:00

60 lines
1.7 KiB
JavaScript

import { loader } from './action-loader.js';
/**
* Handle for the legacy loader created by showLoader().
* @type {import('./action-loader.js').ActionLoaderHandle|null}
*/
let legacyLoaderHandle = null;
/**
* Shows the loader overlay.
*
* @deprecated Use `showActionLoader()` from action-loader.js instead.
* This function now creates a blocking action loader with no toast.
* The new system supports stacking multiple loaders and provides better control.
*
* @example
* // New recommended approach:
* import { showActionLoader } from './action-loader.js';
* const handle = showActionLoader({ message: 'Loading...' });
* // ... do work ...
* handle.hide();
*/
export function showLoader() {
// Hide any existing legacy loader first to maintain old behavior
if (legacyLoaderHandle && legacyLoaderHandle.isActive) {
legacyLoaderHandle.hide();
}
// Create a blocking loader with no toast (matches old behavior)
legacyLoaderHandle = loader.show({
blocking: true,
toastMode: loader.ToastMode.NONE,
});
}
/**
* Hides the loader overlay.
*
* @deprecated Use `hideActionLoader()` or `handle.hide()` from action-loader.js instead.
* This function now hides the legacy loader created by showLoader().
*
* @example
* // New recommended approach:
* import { showActionLoader } from './action-loader.js';
* const handle = showActionLoader({ message: 'Loading...' });
* // ... do work ...
* await handle.hide();
*
* @returns {Promise<void>}
*/
export async function hideLoader() {
if (!legacyLoaderHandle || !legacyLoaderHandle.isActive) {
console.warn('There is no loader showing to hide');
return Promise.resolve();
}
await legacyLoaderHandle.hide();
legacyLoaderHandle = null;
}