diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor b/ShoppingAssistantWebClient.Web/Pages/Chat.razor index bdef32e..da2462f 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor +++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor @@ -19,6 +19,8 @@
@name
+ +
@@ -33,9 +35,27 @@ if (item.Role != "User") { -
  • -

    @item.Text

    -
  • + if (@item.Text == "Waiting for response") + { + +
    Waiting for response + +
    + +
    + + + + } + else + { + +
  • +

    @item.Text

    +
  • + + } + } else @@ -105,7 +125,7 @@ }; function myJavaScriptFunction(wishlistId) { - UpdateMenu(wishlistId); + UpdateMenu(wishlistId); } document.getElementById('button_open').addEventListener('click', changetyle); @@ -114,7 +134,7 @@ [Parameter] public string chatId { get; set; } - public string inputValue = ""; + public string inputValue = ""; protected override async Task OnParametersSetAsync() { diff --git a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css index ef44028..20a4466 100644 --- a/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css +++ b/ShoppingAssistantWebClient.Web/Pages/Chat.razor.css @@ -117,7 +117,7 @@ .chat_message { position: relative; overflow-y: auto; - height: calc(100% - 8em); + height: calc(100% - 8.5em); width: 100%; } .chat_message::-webkit-scrollbar { @@ -150,6 +150,18 @@ .chat_incoming{ display: flex; } + .chat_incoming_wait { + display: inline-flex; /* Использовать inline-flex-контейнер */ + align-items: center; /* Выравнивание по центру */ + background-color: #EAEAEA; + border-radius: 10px; + color: black; + padding: 10px; + margin-bottom: 20px; + margin-top: 20px; + max-width: 70%; /* Максимальная ширина по вашему усмотрению */ + } + .chat_box .chat_outgoing p { margin-left: auto; background-color: #009FFF; @@ -167,4 +179,26 @@ width: 60%; margin-bottom: 20px ; margin-top: 20px ; - } \ No newline at end of file + } + + @keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } + } + + .loading-spinner { + border: 4px solid rgba(0, 82, 204, 0.1); + border-top: 4px solid #0052CC; + border-radius: 50%; + width: 20px; + height: 20px; + animation: spin 1s linear infinite; + margin-left: 10px; /* Добавлен отступ для разделения текста и загрузки */ + } + .gradient{ + background: linear-gradient(rgb(255, 255, 255), rgba(0, 0, 0, 0)); + position: absolute; + height: 50px; + width: 100%; + z-index: 1; + } \ No newline at end of file