Merge pull request #20 from Shchoholiev/feature/SA-201-Сorrection-of-functional-elements

SA-201/ fix bags with frame
This commit is contained in:
Mykhailo Bilodid 2023-12-05 14:50:32 +02:00 committed by GitHub
commit e87d3d22f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 4 deletions

View File

@ -96,7 +96,7 @@
<div class="buttons-row">
<button class="exit-button button-animation" @onclick="(() => NavigateToMain())"></button>
<button class="return-button button-animation" @onclick="(() => { LoadPreviousProduct(); })"></button>
<button class="more-button button-animation" @onclick="(() => LoadMoreProducts())"></button>
<button class="more-button button-animation" @onclick="(() => NavigateToMain())"></button>
</div>
</div>
}

View File

@ -30,25 +30,28 @@
</div>
<div class="topic">
<div class="topic_one">
<div @onclick="() => ClickTopic(1)" class="topic_one">
<a class="button_topic_one">
Date
</a>
</div>
<div class="topic_two">
<div @onclick="() => ClickTopic(2)" class="topic_two">
<a class="button_topic_two">
🎃 Halloween gift
</a>
</div>
<div class="topic_three">
<div @onclick="() => ClickTopic(3)" class="topic_three">
<a class="button_topic_three">
🎁 Birthday gift
</a>
</div>
</div>
</div>
<div class="chat_input">
<input @bind="inputValue" @onkeydown="Enter" @oninput="InputChanged" class="input_messages" type="text" id="chatInput"
placeholder="Describe what you are looking for...." autocomplete="off">
@ -121,6 +124,20 @@
}
public void ClickTopic(int input)
{
if (input == 1){
inputValue ="I need a present for a date";
}
if (input == 2){
inputValue ="I need a present for halloween";
}
if (input == 3){
inputValue ="I need a present for a birthday";
}
CreateNewChat();
}
private void InputChanged(ChangeEventArgs e)
{
// Оновіть значення поля введення при кожному введенні тексту