Spaces:
Runtime error
Runtime error
File size: 9,557 Bytes
37a6ee1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | import React, { useState, useEffect, useRef } from "react";
import QueryInput from "./QueryInput";
import QueryResult from "./QueryResult";
import LoadingResult from "./LoadingResult";
import { queryDataset, getSuggestions } from "../api";
export default function QueryView({ selectedDataset, schema, onQuerySuccess, activeQuestion, addToast }) {
const [queryHistory, setQueryHistory] = useState([]);
const [loading, setLoading] = useState(false);
const [error, setError] = useState(null);
// Dynamic suggestions states
const [suggestions, setSuggestions] = useState([]);
const [suggestionsLoading, setSuggestionsLoading] = useState(false);
const historyEndRef = useRef(null);
// 1. Clear history & Fetch suggestions when selected dataset changes
useEffect(() => {
setQueryHistory([]);
setError(null);
setLoading(false);
setSuggestions([]);
const fetchSuggestions = async () => {
setSuggestionsLoading(true);
try {
console.log("[QueryView] Loading suggestions for database:", selectedDataset.db_name);
const res = await getSuggestions(selectedDataset.db_name);
setSuggestions(res.suggestions || []);
} catch (err) {
console.error("[QueryView] Failed to fetch dynamic suggestions:", err);
} finally {
setSuggestionsLoading(false);
}
};
if (selectedDataset) {
fetchSuggestions();
}
}, [selectedDataset]);
// 2. Scroll to bottom when history grows
useEffect(() => {
if (historyEndRef.current) {
historyEndRef.current.scrollIntoView({ behavior: "smooth" });
}
}, [queryHistory]);
// 3. Register global keyboard shortcut Ctrl+K to focus query input from anywhere
useEffect(() => {
const handleGlobalKeyDown = (e) => {
if ((e.ctrlKey || e.metaKey) && e.key.toLowerCase() === "k") {
e.preventDefault();
const inputEl = document.querySelector(".query-input");
if (inputEl) {
inputEl.focus();
inputEl.select(); // Highlight any existing text inside
}
}
};
window.addEventListener("keydown", handleGlobalKeyDown);
return () => window.removeEventListener("keydown", handleGlobalKeyDown);
}, []);
// 4. Trigger query from external prop (like sidebar recent queries)
useEffect(() => {
if (activeQuestion && activeQuestion.text && activeQuestion.timestamp) {
handleQuerySubmit(activeQuestion.text);
}
}, [activeQuestion]);
const handleQuerySubmit = async (questionText) => {
setError(null);
setLoading(true);
const pendingId = "pending_" + Date.now();
const pendingEntry = {
id: pendingId,
question: questionText,
timestamp: new Date(),
isPending: true
};
setQueryHistory((prev) => [...prev, pendingEntry]);
try {
console.log(`[QueryView] Executing query: '${questionText}' on '${selectedDataset.db_name}'`);
const res = await queryDataset(questionText, selectedDataset.db_name);
// Update entry with real execution results
setQueryHistory((prev) =>
prev.map((item) =>
item.id === pendingId
? { ...res, id: pendingId, timestamp: pendingEntry.timestamp }
: item
)
);
setLoading(false);
addToast("Query completed", "success");
if (onQuerySuccess) {
onQuerySuccess();
}
} catch (err) {
console.error("[QueryView] Query pipeline error:", err);
setError(err.message || "Failed to execute query.");
setLoading(false);
addToast("Query failed: " + err.message, "error");
// Remove loading block
setQueryHistory((prev) => prev.filter((item) => item.id !== pendingId));
}
};
const getLastQuestion = () => {
if (queryHistory.length === 0) return null;
// Get last non-pending query question
const completedQueries = queryHistory.filter(h => !h.isPending);
if (completedQueries.length === 0) return null;
return completedQueries[completedQueries.length - 1].question;
};
const colCount = selectedDataset.columns ? selectedDataset.columns.length : 0;
return (
<div
style={{
display: "flex",
flexDirection: "column",
height: "calc(100vh - 120px)",
margin: "-32px",
overflow: "hidden"
}}
>
{/* 1. Dataset Context Bar (40px) */}
<div
style={{
height: "40px",
minHeight: "40px",
backgroundColor: "var(--surface-color)",
borderBottom: "1px solid var(--border-color)",
display: "flex",
alignItems: "center",
padding: "0 20px",
fontSize: "0.8rem",
color: "var(--text-secondary)",
fontWeight: "500"
}}
>
<span>Querying:</span>
<strong style={{ color: "var(--text-primary)", marginLeft: "4px" }}>
{selectedDataset.display_name}
</strong>
<span style={{ margin: "0 8px", color: "var(--border-color)" }}>•</span>
<span>{selectedDataset.row_count.toLocaleString()} rows</span>
<span style={{ margin: "0 8px", color: "var(--border-color)" }}>•</span>
<span>{colCount} columns</span>
</div>
{/* 2. Query History Area (flex-grow, scrollable) */}
<div
style={{
flexGrow: 1,
overflowY: "auto",
padding: "24px",
display: "flex",
flexDirection: "column",
gap: "24px",
backgroundColor: "var(--bg-color)"
}}
>
{queryHistory.length === 0 ? (
<div
style={{
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
flexGrow: 1,
color: "var(--text-muted)",
fontSize: "0.9rem",
gap: "8px",
padding: "40px"
}}
>
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5" style={{ opacity: 0.6 }}>
<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>
</svg>
<span>Ask a question below to begin your analysis.</span>
<span style={{ fontSize: "0.8rem", opacity: 0.8 }}>Questions are converted to SQL in real-time.</span>
<span style={{ fontSize: "0.75rem", color: "var(--text-secondary)", marginTop: "4px" }}>
Shortcut: press <kbd style={{ fontFamily: "var(--font-mono)", background: "var(--surface-color)", padding: "2px 4px", borderRadius: "3px" }}>Ctrl+K</kbd> to focus input.
</span>
</div>
) : (
queryHistory.map((item) => {
if (item.isPending) {
return <LoadingResult key={item.id} question={item.question} />;
}
return <QueryResult key={item.id} result={item} />;
})
)}
{/* Global Error Banner */}
{error && (
<div
className="upload-status error"
style={{
display: "flex",
flexDirection: "column",
gap: "4px",
borderRadius: "8px"
}}
>
<div style={{ fontWeight: "bold" }}>Query Pipeline Failed</div>
<div>{error}</div>
</div>
)}
{/* Scroll Anchor */}
<div ref={historyEndRef} />
</div>
{/* 3. Query Suggestions Panel (rendered right above QueryInput) */}
<div
style={{
padding: "10px 20px",
borderTop: "1px solid var(--border-color)",
backgroundColor: "var(--surface-color)",
display: "flex",
alignItems: "center",
gap: "12px",
width: "100%",
zIndex: 10
}}
>
<span style={{ fontSize: "0.75rem", fontWeight: "700", color: "var(--text-secondary)", whiteSpace: "nowrap" }}>
💡 Suggested:
</span>
<div className="suggestions-scroll-container" style={{ flexGrow: 1 }}>
{suggestionsLoading ? (
// Shimmer skeletons
[1, 2, 3].map((i) => (
<div
key={i}
className="shimmer"
style={{
height: "22px",
width: "140px",
borderRadius: "100px",
flexShrink: 0
}}
/>
))
) : (
suggestions.map((sug, idx) => (
<button
key={idx}
type="button"
className="suggestion-chip"
onClick={() => handleQuerySubmit(sug)}
disabled={loading}
style={{
borderRadius: "100px",
border: "1px solid #2c2c2c",
fontSize: "0.75rem",
padding: "4px 10px",
whiteSpace: "nowrap",
flexShrink: 0
}}
>
{sug}
</button>
))
)}
</div>
</div>
{/* 4. Query Input Area (fixed bottom, ~100px) */}
<QueryInput
onSubmit={handleQuerySubmit}
loading={loading}
datasetName={selectedDataset.db_name}
schema={schema}
onArrowUp={getLastQuestion}
/>
</div>
);
}
|