blob: 95198fabee9c738df891f8dd2496ba5b897aeb44 [file] [log] [blame]
import { css, html, LitElement } from "lit";
import { customElement, property } from "lit/decorators.js";
import { ConnectionStatus } from "../data";
@customElement("mobile-title")
export class MobileTitle extends LitElement {
@property({ type: String })
connectionStatus: ConnectionStatus = "disconnected";
@property({ type: Boolean })
isThinking = false;
static styles = css`
:host {
display: block;
background-color: #f8f9fa;
border-bottom: 1px solid #e9ecef;
padding: 12px 16px;
}
.title-container {
display: flex;
align-items: center;
justify-content: space-between;
}
.title {
font-size: 18px;
font-weight: 600;
color: #212529;
margin: 0;
}
.status-indicator {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
}
.status-dot.connected {
background-color: #28a745;
}
.status-dot.connecting {
background-color: #ffc107;
animation: pulse 1.5s ease-in-out infinite;
}
.status-dot.disconnected {
background-color: #dc3545;
}
.thinking-indicator {
display: flex;
align-items: center;
gap: 6px;
color: #6c757d;
font-size: 13px;
}
.thinking-dots {
display: flex;
gap: 2px;
}
.thinking-dot {
width: 4px;
height: 4px;
border-radius: 50%;
background-color: #6c757d;
animation: thinking 1.4s ease-in-out infinite both;
}
.thinking-dot:nth-child(1) {
animation-delay: -0.32s;
}
.thinking-dot:nth-child(2) {
animation-delay: -0.16s;
}
.thinking-dot:nth-child(3) {
animation-delay: 0;
}
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
@keyframes thinking {
0%,
80%,
100% {
transform: scale(0);
}
40% {
transform: scale(1);
}
}
`;
private getStatusText() {
switch (this.connectionStatus) {
case "connected":
return "Connected";
case "connecting":
return "Connecting...";
case "disconnected":
return "Disconnected";
default:
return "Unknown";
}
}
render() {
return html`
<div class="title-container">
<h1 class="title">Sketch</h1>
<div class="status-indicator">
${this.isThinking
? html`
<div class="thinking-indicator">
<span>thinking</span>
<div class="thinking-dots">
<div class="thinking-dot"></div>
<div class="thinking-dot"></div>
<div class="thinking-dot"></div>
</div>
</div>
`
: html`
<span class="status-dot ${this.connectionStatus}"></span>
<span>${this.getStatusText()}</span>
`}
</div>
</div>
`;
}
}