summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/DebugProfiler.tsx
diff options
context:
space:
mode:
authorSeth Troisi <[email protected]>2025-07-30 17:43:11 -0700
committerGitHub <[email protected]>2025-07-31 00:43:11 +0000
commitc77a22d4c6b3a8bb4d4bbdb636774b2aa2c2da3b (patch)
treea6c874bd4069769aca5c4630f8fac1ef1c9dfb9d /packages/cli/src/ui/components/DebugProfiler.tsx
parentd06e17fbd9d08ac5efccf0c2b4d5fd4f703b15c7 (diff)
Add render counter in debug mode (#5242)
Co-authored-by: Jacob Richman <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/components/DebugProfiler.tsx')
-rw-r--r--packages/cli/src/ui/components/DebugProfiler.tsx32
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/cli/src/ui/components/DebugProfiler.tsx b/packages/cli/src/ui/components/DebugProfiler.tsx
new file mode 100644
index 00000000..89c40a91
--- /dev/null
+++ b/packages/cli/src/ui/components/DebugProfiler.tsx
@@ -0,0 +1,32 @@
+/**
+ * @license
+ * Copyright 2025 Google LLC
+ * SPDX-License-Identifier: Apache-2.0
+ */
+
+import { Text, useInput } from 'ink';
+import { useEffect, useRef, useState } from 'react';
+import { Colors } from '../colors.js';
+
+export const DebugProfiler = () => {
+ const numRenders = useRef(0);
+ const [showNumRenders, setShowNumRenders] = useState(false);
+
+ useEffect(() => {
+ numRenders.current++;
+ });
+
+ useInput((input, key) => {
+ if (key.ctrl && input === 'b') {
+ setShowNumRenders((prev) => !prev);
+ }
+ });
+
+ if (!showNumRenders) {
+ return null;
+ }
+
+ return (
+ <Text color={Colors.AccentYellow}>Renders: {numRenders.current} </Text>
+ );
+};