ReconnectModal.razor 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <dialog id="components-reconnect-modal" class="w-full max-w-md p-6 bg-zinc-900 text-zinc-200 font-mono rounded-lg border border-zinc-800 shadow-lg" data-nosnippet>
  2. <div class="flex flex-col items-center space-y-4">
  3. <!-- Animated rejoin indicator -->
  4. <div class="flex space-x-2 h-6 items-end">
  5. <div class="w-1 h-3 bg-emerald-400 animate-bounce"></div>
  6. <div class="w-1 h-3 bg-emerald-400 animate-bounce delay-200"></div>
  7. </div>
  8. <!-- Status messages -->
  9. <p class="components-reconnect-first-attempt-visible text-sm text-zinc-300">
  10. Rejoining the server...
  11. </p>
  12. <p class="components-reconnect-repeated-attempt-visible text-sm text-amber-400">
  13. Rejoin failed... trying again in <span id="components-seconds-to-next-attempt" class="font-bold"></span> seconds.
  14. </p>
  15. <p class="components-reconnect-failed-visible text-sm text-red-500 text-center">
  16. Failed to rejoin.<br/>Please retry or reload the page.
  17. </p>
  18. <!-- Buttons -->
  19. <div class="flex space-x-3">
  20. <button id="components-reconnect-button" class="components-reconnect-failed-visible px-4 py-1 bg-emerald-400 text-zinc-900 rounded hover:bg-emerald-500 transition">
  21. Retry
  22. </button>
  23. <button id="components-resume-button" class="components-pause-visible px-4 py-1 bg-emerald-400 text-zinc-900 rounded hover:bg-emerald-500 transition">
  24. Resume
  25. </button>
  26. </div>
  27. <p class="components-pause-visible text-sm text-zinc-400 text-center">
  28. The session has been paused by the server.
  29. </p>
  30. <p class="components-resume-failed-visible text-sm text-red-500 text-center">
  31. Failed to resume the session.<br/>Please reload the page.
  32. </p>
  33. </div>
  34. </dialog>
  35. <script type="module" src="@Assets["Components/Layout/ReconnectModal.razor.js"]"></script>