File size: 12,715 Bytes
9470652 | 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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 | import SyntaxHighlighter from "react-syntax-highlighter";
import {
ClipboardIcon,
PlayIcon,
BookmarkIcon as BookmarkIconOutline,
QuestionMarkCircleIcon,
MinusIcon,
} from "@heroicons/react/24/outline";
import { CustomTooltip } from "../Library/Tooltip";
import { monokai } from "react-syntax-highlighter/dist/esm/styles/hljs";
import { format } from "prettier-sql";
import { useEffect, useRef, useState } from "react";
import {
useRunSqlInConversation,
useUpdateSqlQuery,
useGetUserProfile,
} from "@/hooks";
import {
Alert,
AlertActions,
AlertDescription,
AlertTitle,
} from "../Catalyst/alert";
import { Button } from "../Catalyst/button";
import { Dialect } from "../Library/types";
import Minimizer from "../Minimizer/Minimizer";
function copyToClipboard(text: string) {
navigator.clipboard.writeText(text);
}
function classNames(...classes: string[]) {
return classes.filter(Boolean).join(" ");
}
const SPACES = ["Enter", "Tab", "Space", "Backspace"];
const SPACE_CHARACTERS = [" ", "\n", "\t", "\r"];
// Helper function to get cursor position without considering spaces
function getCursorPositionWithoutSpaces(
text: string,
originalCursorPosition: number
) {
const textBeforeCursor = text.substring(0, originalCursorPosition);
const nonSpaceCharacters = textBeforeCursor.replace(/\s/g, "");
return nonSpaceCharacters.length;
}
// Helper function to get new cursor position after formatting
function getNewCursorPosition(
formattedText: string,
lastCharacterPosition: number
) {
let nonSpaceCharacterCount = 0;
let i = 0;
// Iterate through formatted text until we reach the same non-space character
// count as the original text's character count
for (; i < formattedText.length; i++) {
if (nonSpaceCharacterCount === lastCharacterPosition) {
break;
}
if (!SPACE_CHARACTERS.includes(formattedText[i])) {
nonSpaceCharacterCount++;
}
}
return i;
}
type SupportedFormatters =
| "bigquery"
| "db2"
| "hive"
| "mariadb"
| "mysql"
| "n1ql"
| "plsql"
| "postgresql"
| "redshift"
| "spark"
| "sql"
| "tsql";
const formattedCodeOrInitial = (code: string, dialect: SupportedFormatters) => {
try {
return format(code, { language: dialect || Dialect.Postgres });
} catch {
return code;
}
};
export const CodeBlock = ({
code,
dialect,
resultId,
onUpdateSQLRunResult,
onSaveSQLStringResult,
forChart = false,
minimize,
}: {
code: string;
resultId: string;
dialect?: string;
onUpdateSQLRunResult: (sql_string_result_id: string, arg: string) => void;
onSaveSQLStringResult: (
data?: { created_at: string; chartjs_json: string } | void
) => void;
forChart: boolean;
minimize?: boolean;
}) => {
const { data: profile } = useGetUserProfile();
const [savedCode, setSavedCode] = useState<string>(() =>
formattedCodeOrInitial(code, dialect as SupportedFormatters)
);
const [formattedCode, setFormattedCode] = useState<string>(() =>
formattedCodeOrInitial(code, dialect as SupportedFormatters)
);
// Determine if SQL should be minimized by default based on user preference
const shouldHideSql = profile?.hide_sql_preference;
const [minimized, setMinimized] = useState(
minimize || shouldHideSql || false
);
const textareaRef = useRef<HTMLTextAreaElement>(null);
const syntaxHighlighterId = `syntax-highlighter-${resultId}`;
const [lastChar, setLastChar] = useState<string>("");
// let BookmarkIcon = isSaved ? BookmarkIconSolid : BookmarkIconOutline;
const BookmarkIcon = BookmarkIconOutline;
const extraSpace = "";
const { isPending: isPendingRunSql, mutate: runSql } =
useRunSqlInConversation(
{
sql: savedCode,
resultId: resultId,
},
{
onSettled: (data, error) => {
if (error) {
console.error("onsettled error in: ", error);
} else {
if (data?.content) {
onUpdateSQLRunResult(resultId, data.content as string);
}
}
},
}
);
const { isPending: isPendingSaveSql, mutate: updateSQL } = useUpdateSqlQuery({
onSettled: (data, error) => {
if (error) {
console.error("onsettled error in: ", error);
} else {
onSaveSQLStringResult(data);
}
},
});
function saveNewSQLString() {
if (!resultId) return;
updateSQL({
sqlStringResultId: resultId,
code: savedCode,
forChart: forChart,
});
}
useEffect(() => {
try {
// Do not format if whitespace characters are being typed
if (SPACES.includes(lastChar)) {
setFormattedCode(savedCode + extraSpace);
return;
}
// If no characters are different from the saved code, don't format (ignoring spaces)
const savedCodeWithoutSpaces = savedCode.replace(/\s/g, "");
const formattedCodeWithoutSpaces = formattedCode.replace(/\s/g, "");
if (
lastChar != "" &&
savedCodeWithoutSpaces === formattedCodeWithoutSpaces
) {
return;
}
const formatted = format(savedCode, {
language: (dialect as SupportedFormatters) || Dialect.Postgres,
});
setFormattedCode(formatted + extraSpace);
if (textareaRef.current !== null) {
// Calculate old cursor position without considering spaces
const oldCursorPosition = getCursorPositionWithoutSpaces(
savedCode,
textareaRef.current.selectionStart
);
textareaRef.current.value = formatted;
// Calculate new cursor position after formatting
const newCursorPosition = getNewCursorPosition(
formatted,
oldCursorPosition
);
textareaRef.current.setSelectionRange(
newCursorPosition,
newCursorPosition,
"forward"
);
}
} catch (e) {
setFormattedCode(savedCode);
}
}, [savedCode, formattedCode, lastChar, dialect]);
useEffect(() => {
if (!minimized && textareaRef.current !== null) {
textareaRef.current.value = formattedCode;
}
}, [minimized, formattedCode, textareaRef]);
const handleTextUpdate = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
// If the user is typing a space, don't update and reformat the saved code
setSavedCode(e.target.value);
};
const handleKeyboardInput = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
setLastChar(e.code || e.key);
// Special condition: handle tab key
if (e.key === "Tab") {
e.preventDefault();
const { selectionStart, selectionEnd } = e.currentTarget;
// Modify current textarea value by adding 2 spaces at the cursor position
e.currentTarget.value =
e.currentTarget.value.substring(0, selectionStart) +
" " +
e.currentTarget.value.substring(selectionEnd);
e.currentTarget.selectionStart = selectionStart + 2;
e.currentTarget.selectionEnd = selectionEnd + 2;
// Handle non-letter keys
} else {
setSavedCode(textareaRef.current?.value || "");
}
};
// Mirror textarea horizontal and vertical scroll to syntax highlighter
const mirrorScroll = () => {
if (textareaRef.current !== null) {
const { scrollLeft, scrollTop } = textareaRef.current;
const syntaxHighlighter = document.getElementById(syntaxHighlighterId);
if (syntaxHighlighter !== null) {
syntaxHighlighter.scrollLeft = scrollLeft;
syntaxHighlighter.scrollTop = scrollTop;
}
}
};
const [isHelpOpen, setIsHelpOpen] = useState(false);
const openSQLForChartHelp = () => {
setIsHelpOpen(true);
};
return (
<Minimizer
minimized={minimized}
setMinimized={setMinimized}
label="Code block"
classes="bg-gray-900"
>
<div
role="button"
tabIndex={0}
className="flex flex-col relative"
onKeyDown={() => textareaRef.current?.focus()}
onClick={() => textareaRef.current?.focus()}
>
<textarea
spellCheck={false}
ref={textareaRef}
className="absolute h-full w-full border-0 inset-0 resize-none bg-transparent overflow-y-hidden overflow-x-scroll text-transparent p-2 font-mono caret-white outline-none focus:outline-none focus:border focus:ring-0 focus:rounded-xl whitespace-pre"
onChange={handleTextUpdate}
onKeyDown={handleKeyboardInput}
onScroll={mirrorScroll}
/>
<SyntaxHighlighter
// add dynamic ID based on resultId
id={syntaxHighlighterId}
children={formattedCode}
language="sql" // TODO: make dynamic to support multiple DB dialects?
style={monokai}
wrapLines={true}
customStyle={{
flex: "1",
overflow: "scroll",
scrollbarWidth: "none",
background: "transparent",
}}
/>
{/* Top right corner icons */}
<div className="absolute top-0 right-0 m-2 flex gap-1">
{/* Help Icon */}
{forChart && (
<CustomTooltip hoverText="Help">
<button
tabIndex={-1}
onClick={openSQLForChartHelp}
className="p-1"
>
<QuestionMarkCircleIcon className="w-6 h-6 [&>path]:stroke-[2] group-hover:-rotate-12" />
</button>
</CustomTooltip>
)}
</div>
<div className="absolute bottom-0 right-0 m-2 flex gap-1">
{/* Minimize Icon */}
<CustomTooltip hoverText="Minimize">
{/* On minimize, also collapse if already expanded */}
<button
tabIndex={-1}
onClick={(e) => {
e.stopPropagation();
setMinimized(true);
}}
className="p-1"
>
<MinusIcon className="w-6 h-6 [&>path]:stroke-[2] group-hover:-rotate-6" />
</button>
</CustomTooltip>
{/* Save Icon */}
<CustomTooltip hoverText="Save">
<button
tabIndex={-1}
onClick={saveNewSQLString}
className="p-1"
disabled={isPendingSaveSql}
>
<BookmarkIcon
className={classNames(
isPendingSaveSql ? "animate-spin" : "group-hover:-rotate-6",
"w-6 h-6 [&>path]:stroke-[2]"
)}
/>
</button>
</CustomTooltip>
{/* Copy Icon */}
<CustomTooltip clickText="COPIED!" hoverText="Copy">
<button
tabIndex={-1}
onClick={() => copyToClipboard(savedCode)}
className="p-1"
>
<ClipboardIcon className="w-6 h-6 [&>path]:stroke-[2] group-hover:-rotate-6" />
</button>
</CustomTooltip>
{/* Run Icon */}
<CustomTooltip hoverText="Run">
<button
tabIndex={-1}
onClick={() => {
runSql();
}}
disabled={isPendingRunSql}
className="p-1"
>
<PlayIcon
className={classNames(
isPendingRunSql ? "animate-spin" : "group-hover:-rotate-12",
"w-6 h-6 [&>path]:stroke-[2]"
)}
/>
</button>
</CustomTooltip>
</div>
{/* Help for editing queries when codeblock is linked to a chart */}
{forChart && (
<Alert className="lg:ml-72" open={isHelpOpen} onClose={setIsHelpOpen}>
<AlertTitle>
Quick overview of how you can edit chart-linked queries
</AlertTitle>
<AlertDescription>
Charts are generated from the SQL results automatically. <br />
<br />
The first column returned by the query is used as the x-axis, and
the second column is used as the y-axis.
<br />
<br />
You can edit the query to change the chart type, add filters, or
change the x-axis and y-axis columns.
<br />
<br />
But the query must return at least two columns for the basic chart
types to work (labels and values respectively).
</AlertDescription>
<AlertActions>
<Button plain onClick={() => setIsHelpOpen(false)}>
Got it!
</Button>
</AlertActions>
</Alert>
)}
</div>
</Minimizer>
);
};
|