mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-05 00:59:38 +00:00
SA-195 develop merged
This commit is contained in:
commit
ba962be0d7
@ -76,7 +76,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,7 +87,6 @@
|
|||||||
placeholder="Describe what you are looking for....">
|
placeholder="Describe what you are looking for....">
|
||||||
<img @onclick="() => AddNewMessage(inputValue)" class="button_sende" src="/images/send.svg" alt="Send message">
|
<img @onclick="() => AddNewMessage(inputValue)" class="button_sende" src="/images/send.svg" alt="Send message">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -7,8 +7,11 @@ using ShoppingAssistantWebClient.Web.Models.Input;
|
|||||||
using ShoppingAssistantWebClient.Web.Models.Enums;
|
using ShoppingAssistantWebClient.Web.Models.Enums;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using ShoppingAssistantWebClient.Web.Services;
|
using ShoppingAssistantWebClient.Web.Services;
|
||||||
|
using Microsoft.JSInterop;
|
||||||
|
|
||||||
namespace ShoppingAssistantWebClient.Web.Pages;
|
namespace ShoppingAssistantWebClient.Web.Pages;
|
||||||
|
|
||||||
|
|
||||||
public partial class Chat : ComponentBase
|
public partial class Chat : ComponentBase
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -50,8 +50,8 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="chat_input">
|
<div class="chat_input">
|
||||||
<input @bind="inputValue" class="input_messages" type="text" id="chatInput"
|
<input @bind="inputValue" @onkeydown="Enter" @oninput="InputChanged" class="input_messages" type="text" id="chatInput"
|
||||||
placeholder="Describe what you are looking for....">
|
placeholder="Describe what you are looking for...." autocomplete="off">
|
||||||
<img @onclick="CreateNewChat" class="button_sende" src="/images/send.svg" alt="Send message">
|
<img @onclick="CreateNewChat" class="button_sende" src="/images/send.svg" alt="Send message">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -115,4 +115,20 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void InputChanged(ChangeEventArgs e)
|
||||||
|
{
|
||||||
|
// Оновіть значення поля введення при кожному введенні тексту
|
||||||
|
inputValue = e.Value.ToString();
|
||||||
|
}
|
||||||
|
public void Enter(KeyboardEventArgs e)
|
||||||
|
{
|
||||||
|
if (e.Code == "Enter" || e.Code == "NumpadEnter")
|
||||||
|
{
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(inputValue))
|
||||||
|
{
|
||||||
|
CreateNewChat();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user