mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
96 lines
3.0 KiB
Plaintext
96 lines
3.0 KiB
Plaintext
@page "/chat/{chatId}"
|
|
|
|
@inject IHttpClientFactory ClientFactory
|
|
|
|
<PageTitle>Gift for Jessica</PageTitle>
|
|
|
|
<div class="right_frame" id="rightFrame">
|
|
|
|
<div id="button_open" class="open_menu">
|
|
<a class="button_open_menu" >
|
|
<span></span>
|
|
<span></span>
|
|
<span></span>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
<div class="new_chat">
|
|
<div class="chat_message">
|
|
|
|
|
|
<div class="title_one_frame">Gift for Jessica</div>
|
|
|
|
<ul class="chat_box">
|
|
|
|
<li class="chat_outgoing">
|
|
<p>Give me product recommendation. Ask me questions if you need more directions. I am looking for: hub for my macbook to connect external monitors</p>
|
|
</li>
|
|
<li class=" chat_incoming">
|
|
<p>Sure! I can help you with that. I will ask you some leading questions. This is the first:
|
|
<br>
|
|
How many external monitors do you want to connect to your MacBook?</p>
|
|
</li>
|
|
<li class="chat_outgoing">
|
|
<p>7</p>
|
|
</li>
|
|
<li class=" chat_incoming">
|
|
<p>Thank you. Here is the next question:
|
|
<br>
|
|
What type of external monitors do you have? (e.g., HDMI, DisplayPort, VGA)</p>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="possible_options">
|
|
|
|
<div class="tite_options">Several possible options</div>
|
|
|
|
<div class="options" >
|
|
|
|
<div class="topic_options">
|
|
HDMI
|
|
</div>
|
|
<div class="topic_options">
|
|
VGA
|
|
</div>
|
|
<div class="topic_options">
|
|
DisplayPort
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<div class="chat_input">
|
|
<input class="input_messages" type="text" id="chatInput" placeholder="Describe what you are looking for....">
|
|
<img class="button_sende" src="/images/send.svg" alt="Send message">
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
document.getElementById('button_open').addEventListener('click', changetyle);
|
|
</script>
|
|
@code{
|
|
|
|
[Parameter] public string chatId { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|