This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/src/dashboard/templates/voice_button.html
Claude 65a278dbee fix: comprehensive iPhone UI overhaul — glassmorphism, responsive layouts, theme unification
- base.html: add missing {% block extra_styles %}, mobile hamburger menu with
  slide-out nav, interactive-widget viewport meta, -webkit-text-size-adjust
- style.css: define 15+ missing CSS variables (--bg-secondary, --text-muted,
  --accent, --success, --danger, etc.), add missing utility classes (.grid,
  .stat, .agent-card, .agent-avatar, .form-group), glassmorphism card effects,
  iPhone breakpoints (768px, 390px), 44pt min touch targets, smooth animations
- mobile.html: rewrite with proper theme variables, glass cards, touch-friendly
  quick actions grid, chat with proper message bubbles
- swarm_live.html: replace undefined CSS vars, use mc-panel theme cards
- marketplace.html: responsive agent cards that stack on iPhone, themed pricing
- voice_button.html & voice_enhanced.html: proper theme integration, touch-sized
  buttons, themed result containers
- create_task.html: mobile-friendly forms with 16px font (prevents iOS zoom)
- tools.html & creative.html: themed headers, responsive column stacking
- spark.html: replace all hardcoded blue (#00d4ff) colors with theme purple/orange
- briefing.html: replace hardcoded bootstrap colors with theme variables

Fixes: header nav overflow on iPhone (7 links in single row), missing
extra_styles block silently dropping child template styles, undefined CSS
variables breaking mobile/swarm/marketplace/voice pages, sub-44pt touch
targets, missing -webkit-text-size-adjust, inconsistent color themes.

97 UI tests pass (91 UI-specific + 6 creative route).

https://claude.ai/code/session_01JiyhGyee2zoMN4p8xWYqEe
2026-02-24 22:25:04 +00:00

216 lines
6.3 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ page_title }}{% endblock %}
{% block extra_styles %}
<style>
.voice-page {
max-width: 600px;
margin: 0 auto;
text-align: center;
}
.voice-button {
width: 160px;
height: 160px;
border-radius: 50%;
background: linear-gradient(135deg, var(--border-glow), var(--purple));
border: none;
color: white;
font-size: 3.5rem;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.3s;
display: flex;
align-items: center;
justify-content: center;
margin: 30px auto;
box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
}
.voice-button:hover {
transform: scale(1.05);
box-shadow: 0 0 60px rgba(124, 58, 237, 0.5);
}
.voice-button:active, .voice-button.listening {
transform: scale(0.95);
background: linear-gradient(135deg, var(--red), var(--red-dim));
box-shadow: 0 0 60px rgba(255, 68, 85, 0.5);
animation: pulse-listen 1s infinite;
}
@keyframes pulse-listen {
0%, 100% { box-shadow: 0 0 40px rgba(255, 68, 85, 0.5); }
50% { box-shadow: 0 0 80px rgba(255, 68, 85, 0.8); }
}
.voice-status {
font-size: 1rem;
color: var(--text-dim);
margin-bottom: 16px;
letter-spacing: 0.06em;
}
.voice-result {
background: rgba(24, 10, 45, 0.8);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 16px;
margin-top: 20px;
text-align: left;
}
.voice-transcript {
font-size: 0.95rem;
margin-bottom: 12px;
color: var(--text);
}
.voice-response {
color: var(--purple);
font-style: italic;
}
.voice-tips {
margin-top: 24px;
padding: 16px;
background: rgba(24, 10, 45, 0.6);
border: 1px solid var(--border);
border-radius: var(--radius-md);
text-align: left;
}
.voice-tips h3 {
font-size: 0.85rem;
color: var(--text-bright);
margin-bottom: 10px;
}
.voice-tips ul {
color: var(--text-dim);
line-height: 2;
padding-left: 18px;
font-size: 0.85rem;
}
@media (max-width: 768px) {
.voice-button { width: 140px; height: 140px; font-size: 3rem; }
}
</style>
{% endblock %}
{% block content %}
<div class="voice-page py-3">
<div class="card mc-panel">
<div class="card-header mc-panel-header" style="text-align:center;">// VOICE CONTROL</div>
<div class="card-body">
<p style="color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0;">Hold the button and speak to Timmy</p>
<div class="voice-status" id="voice-status">Tap and hold to speak</div>
<button class="voice-button" id="voice-btn"
onmousedown="startListening()"
onmouseup="stopListening()"
ontouchstart="startListening()"
ontouchend="stopListening()">
&#x1F3A4;
</button>
<div id="voice-result" class="voice-result" style="display: none;">
<div class="voice-transcript">
<strong style="color:var(--text-dim);">You said:</strong> <span id="transcript-text"></span>
</div>
<div class="voice-response">
<strong>Timmy:</strong> <span id="response-text"></span>
</div>
</div>
<div class="voice-tips">
<h3>Try saying:</h3>
<ul>
<li>"What's the status?"</li>
<li>"Launch a research agent"</li>
<li>"Create a task to find Bitcoin news"</li>
<li>"Show me the marketplace"</li>
<li>"Emergency stop"</li>
</ul>
</div>
</div>
</div>
</div>
<script>
var recognition = null;
var isListening = false;
if ('webkitSpeechRecognition' in window || 'SpeechRecognition' in window) {
var SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
recognition = new SpeechRecognition();
recognition.continuous = false;
recognition.interimResults = false;
recognition.lang = 'en-US';
recognition.onstart = function() {
isListening = true;
document.getElementById('voice-status').textContent = 'Listening...';
document.getElementById('voice-btn').classList.add('listening');
};
recognition.onresult = function(event) {
var transcript = event.results[0][0].transcript;
processVoiceCommand(transcript);
};
recognition.onerror = function(event) {
console.error('Speech recognition error:', event.error);
document.getElementById('voice-status').textContent = 'Error: ' + event.error;
resetButton();
};
recognition.onend = function() {
isListening = false;
resetButton();
};
} else {
document.getElementById('voice-status').textContent = 'Speech recognition not supported in this browser';
document.getElementById('voice-btn').disabled = true;
}
function startListening() {
if (recognition && !isListening) { recognition.start(); }
}
function stopListening() {
if (recognition && isListening) { recognition.stop(); }
}
function resetButton() {
document.getElementById('voice-status').textContent = 'Tap and hold to speak';
document.getElementById('voice-btn').classList.remove('listening');
}
async function processVoiceCommand(text) {
document.getElementById('transcript-text').textContent = text;
document.getElementById('voice-status').textContent = 'Processing...';
try {
var response = await fetch('/voice/command', {
method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: 'text=' + encodeURIComponent(text)
});
var data = await response.json();
document.getElementById('response-text').textContent = data.command.response;
document.getElementById('voice-result').style.display = 'block';
document.getElementById('voice-status').textContent = 'Done!';
if ('speechSynthesis' in window) {
var utterance = new SpeechSynthesisUtterance(data.command.response);
utterance.rate = 1.1;
window.speechSynthesis.speak(utterance);
}
} catch (e) {
document.getElementById('response-text').textContent = 'Sorry, I had trouble processing that.';
document.getElementById('voice-result').style.display = 'block';
document.getElementById('voice-status').textContent = 'Error';
}
setTimeout(resetButton, 2000);
}
</script>
{% endblock %}