45009cd0e4
* 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>
99 lines
5.0 KiB
HTML
99 lines
5.0 KiB
HTML
<div class="welcomePanel">
|
|
<div class="welcomeHeaderTitle">
|
|
<img src="img/logo.png" alt="SillyTavern Logo" data-i18n="[alt]SillyTavern Logo" class="welcomeHeaderLogo">
|
|
<span class="welcomeHeaderVersionDisplay">{{version}}</span>
|
|
<div class="mes_button showRecentChats" title="Show recent chats" data-i18n="[title]Show recent chats">
|
|
<i class="fa-solid fa-circle-chevron-down fa-fw fa-lg"></i>
|
|
</div>
|
|
<div class="mes_button hideRecentChats" title="Hide recent chats" data-i18n="[title]Hide recent chats">
|
|
<i class="fa-solid fa-circle-xmark fa-fw fa-lg"></i>
|
|
</div>
|
|
</div>
|
|
<div class="welcomeHeader">
|
|
<div class="recentChatsTitle" data-i18n="Recent Chats">
|
|
Recent Chats
|
|
</div>
|
|
<div class="welcomeShortcuts">
|
|
<a class="menu_button menu_button_icon" target="_blank" href="https://docs.sillytavern.app/">
|
|
<i class="fa-solid fa-question-circle"></i>
|
|
<span data-i18n="Docs">Docs</span>
|
|
</a>
|
|
<a class="menu_button menu_button_icon" target="_blank" href="https://github.com/SillyTavern/SillyTavern">
|
|
<i class="fa-brands fa-github"></i>
|
|
<span data-i18n="GitHub">GitHub</span>
|
|
</a>
|
|
<a class="menu_button menu_button_icon" target="_blank" href="https://discord.gg/sillytavern">
|
|
<i class="fa-brands fa-discord"></i>
|
|
<span data-i18n="Discord">Discord</span>
|
|
</a>
|
|
<span class="welcomeShortcutsSeparator">|</span>
|
|
<button class="openTemporaryChat menu_button menu_button_icon">
|
|
<i class="fa-solid fa-comment-dots"></i>
|
|
<span data-i18n="Temporary Chat">Temporary Chat</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="welcomeRecent">
|
|
<div class="recentChatList">
|
|
{{#if empty}}
|
|
<div class="noRecentChat">
|
|
<i class="fa-solid fa-comment-dots"></i>
|
|
<span data-i18n="No recent chats">No recent chats</span>
|
|
</div>
|
|
{{/if}}
|
|
{{#each chats}}
|
|
{{#with this}}
|
|
<div class="recentChat {{#if hidden}}hidden{{/if}} {{#if is_group}}group{{/if}}" data-file="{{chat_name}}" data-avatar="{{avatar}}" data-group="{{group}}">
|
|
{{#if pinned}}
|
|
<div class="recentChatPinned">
|
|
<i class="fa-solid fa-thumbtack fa-fw fa-xs" title="Pinned chat" data-i18n="[title]Pinned chat"></i>
|
|
</div>
|
|
{{/if}}
|
|
<div class="avatar" title="[Character] {{char_name}} File: {{avatar}}">
|
|
<img src="{{char_thumbnail}}" alt="{{char_name}}">
|
|
</div>
|
|
<div class="recentChatInfo">
|
|
<div class="chatNameContainer">
|
|
<div class="chatName" title="{{file_name}}">
|
|
<strong class="characterName">{{char_name}}</strong>
|
|
<span>–</span>
|
|
<span>{{chat_name}}</span>
|
|
</div>
|
|
<small class="chatDate" title="{{date_long}}">{{date_short}}</small>
|
|
<div class="chatActions">
|
|
<button class="menu_button menu_button_icon pinChat {{#if pinned}}active{{/if}}" title="Pin chat" data-i18n="[title]Pin chat">
|
|
<i class="fa-solid fa-thumbtack fa-fw"></i>
|
|
</button>
|
|
<button class="menu_button menu_button_icon renameChat" title="Rename chat" data-i18n="[title]Rename chat">
|
|
<i class="fa-solid fa-pen-to-square fa-fw"></i>
|
|
</button>
|
|
<button class="menu_button menu_button_icon deleteChat" title="Delete chat" data-i18n="[title]Delete chat">
|
|
<i class="fa-solid fa-trash fa-fw"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="chatMessageContainer">
|
|
<div class="chatMessage" title="{{mes}}">
|
|
{{mes}}
|
|
</div>
|
|
<div class="chatStats">
|
|
<div class="counterBlock">
|
|
<i class="fa-solid fa-comment fa-xs"></i>
|
|
<small>{{chat_items}}</small>
|
|
</div>
|
|
<small class="fileSize">{{file_size}}</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{/with}}
|
|
{{/each}}
|
|
{{#if more}}
|
|
<button class="menu_button menu_button_icon showMoreChats">
|
|
<small class="fa-solid fa-chevron-down fa-fw fa-1x"></small>
|
|
</button>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</div>
|