Skip to content

Rules pie chart#845

Merged
elie222 merged 2 commits intomainfrom
feat/rules-pie-chart
Oct 13, 2025
Merged

Rules pie chart#845
elie222 merged 2 commits intomainfrom
feat/rules-pie-chart

Conversation

@elie222
Copy link
Owner

@elie222 elie222 commented Oct 13, 2025

Summary by CodeRabbit

  • New Features
    • Tabbed Rule Stats chart with Bar and Pie views, improved legend and tooltips.
  • Style
    • Updated chart color palette for better light/dark contrast.
  • Improvements
    • Rule Stats moved earlier on the Stats page for quicker access.
    • Unnamed group now shown as “No Rule”.
    • Clear empty-state message when no rules have executed.
  • Chores
    • Bumped version to v2.16.4.

@vercel
Copy link

vercel bot commented Oct 13, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Updated (UTC)
inbox-zero Ready Ready Preview Oct 13, 2025 1:58am

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 13, 2025

Note

Other AI code review bot(s) detected

CodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review.

Walkthrough

Recharts-based charting and a Chart UI module were added; RuleStatsChart now offers tabbed Bar/Pie views and uses a color palette; rule-stats API switched from ORM aggregation to a raw SQL query and renamed returned grouping to ruleStats/“No Rule”; Stats layout reorders RuleStatsChart; chart tokens and version bumped.

Changes

Cohort / File(s) Summary
Rule stats chart UI
apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
Replaces single bar chart with tabbed Bar/Pie UI, derives barChartData/pieChartData, adds CHART_COLORS, uses Card/Tabs/Tremor + Recharts PieChart, memoized chart config, and empty-state handling.
Stats page
apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
Moves RuleStatsChart earlier (after EmailAnalytics) and removes the later duplicate render.
Rule stats API
apps/web/app/api/user/stats/rule-stats/route.ts
Replaces ORM aggregation with a raw SQL query (Prisma.$queryRaw + dynamic WHERE fragments), LEFT JOINs Rule to ExecutedRule, returns ruleStats with ruleName/executedCount, uses COALESCE -> "No Rule", and computes totals with sumBy.
Chart UI module
apps/web/components/ui/chart.tsx
Adds ChartContainer, ChartStyle, ChartTooltip(+Content), ChartLegend(+Content), ChartConfig type, ChartContext/useChart hook, payload-driven label/icon handling and dynamic CSS vars for theming.
Dependencies
apps/web/package.json
Adds recharts@2.15.4.
Theme tokens
apps/web/styles/globals.css
Replaces chart CSS variables (--chart-1..5) with OKLCH color values for light and dark themes.
Version
version.txt
Bumps version from v2.16.3 to v2.16.4.

Sequence Diagram(s)

sequenceDiagram
  participant U as User
  participant S as Stats.tsx
  participant API as /api/user/stats/rule-stats
  participant R as RuleStatsChart
  participant C as ChartContainer (Tooltip/Legend)
  participant RC as Recharts

  U->>S: Open Stats page
  S->>API: GET rule-stats (emailAccountId, optional dates)
  API-->>S: 200 { ruleStats: [...], totalExecutedRules: N }
  S->>R: Render RuleStatsChart with ruleStats
  R->>C: Provide ChartConfig + data (barChartData / pieChartData)
  C->>RC: Render Bar or Pie primitives
  RC-->>U: Display chart, tooltip, legend
  U->>R: Switch tab
  R->>C: Re-render selected chart
Loading
sequenceDiagram
  participant Old as ORM Aggregation
  participant New as Raw SQL Aggregation

  Old->>Old: Group by rule (NULL -> "No Group") via application-side reduce
  New->>New: SQL LEFT JOIN Rule, COALESCE(rule.name, "No Rule"), GROUP BY rule name, COUNT(*)
  Old-->>New: Output key changed from "No Group" -> "No Rule"
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

Poem

A rabbit taps charts with a gentle paw,
Bars and pies now sparkle—what a draw!
“No Rule” I whisper for the nameless crew,
OKLCH colors paint the view.
Legends sing and tooltips gleam—data snacking time! 🥕📊

Pre-merge checks and finishing touches

❌ Failed checks (1 warning)
Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. You can run @coderabbitai generate docstrings to improve docstring coverage.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title Check ✅ Passed The title succinctly describes the addition of a pie chart for rule statistics, directly reflecting the new pie chart support implemented in the RuleStatsChart component.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch feat/rules-pie-chart

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (3)
apps/web/components/ui/chart.tsx (2)

37-68: Prefer extracting the long className string to a constant.

The extensive className string (lines 54-56) contains many Recharts-specific selectors and could be more maintainable if extracted to a named constant.

Apply this diff to improve readability:

+const CHART_CONTAINER_CLASSES =
+  "flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none";
+
 const ChartContainer = React.forwardRef<
   HTMLDivElement,
   React.ComponentProps<"div"> & {
     config: ChartConfig;
     children: React.ComponentProps<
       typeof RechartsPrimitive.ResponsiveContainer
     >["children"];
   }
 >(({ id, className, children, config, ...props }, ref) => {
   const uniqueId = React.useId();
   const chartId = `chart-${id || uniqueId.replace(/:/g, "")}`;
 
   return (
     <ChartContext.Provider value={{ config }}>
       <div
         data-chart={chartId}
         ref={ref}
-        className={cn(
-          "flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-none [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-sector]:outline-none [&_.recharts-surface]:outline-none",
-          className,
-        )}
+        className={cn(CHART_CONTAINER_CLASSES, className)}
         {...props}
       >

244-248: Add type safety for numeric value formatting.

The toLocaleString() call assumes item.value is a number. While the item.value && check prevents null/undefined, it doesn't guarantee the value is numeric.

Apply this diff to add type safety:

                         {item.value && (
                           <span className="font-mono font-medium tabular-nums text-foreground">
-                            {item.value.toLocaleString()}
+                            {typeof item.value === "number"
+                              ? item.value.toLocaleString()
+                              : item.value}
                           </span>
                         )}
apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (1)

64-77: Prefer native reduce over lodash here

Pulling fromPairs from lodash just to assemble this config adds unnecessary bundle weight. A simple typed reduce (or Object.fromEntries) achieves the same without extra dependency cost and keeps tree shaking effective.

-    const config: ChartConfig = {
-      value: {
-        label: "Executed Rules",
-      },
-      ...fromPairs(
-        data.groupStats.map((group, index) => [
-          group.groupName,
-          {
-            label: group.groupName,
-            color: CHART_COLORS[index % CHART_COLORS.length],
-          },
-        ]),
-      ),
-    };
+    const chartConfig = data.groupStats.reduce<ChartConfig>(
+      (acc, group, index) => {
+        acc[group.groupName] = {
+          label: group.groupName,
+          color: CHART_COLORS[index % CHART_COLORS.length],
+        };
+        return acc;
+      },
+      {
+        value: {
+          label: "Executed Rules",
+        },
+      },
+    );

Then return chartConfig instead of config. This keeps the code dependency-light without changing behavior.

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ab9b730 and 19329b3.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (7)
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (2 hunks)
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx (1 hunks)
  • apps/web/app/api/user/stats/rule-stats/route.ts (1 hunks)
  • apps/web/components/ui/chart.tsx (1 hunks)
  • apps/web/package.json (1 hunks)
  • apps/web/styles/globals.css (2 hunks)
  • version.txt (1 hunks)
🧰 Additional context used
📓 Path-based instructions (20)
apps/web/**/*.{ts,tsx}

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

apps/web/**/*.{ts,tsx}: Use TypeScript with strict null checks
Path aliases: Use @/ for imports from project root
Use proper error handling with try/catch blocks
Format code with Prettier
Leverage TypeScript inference for better DX

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
apps/web/app/**

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

NextJS app router structure with (app) directory

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/api/**/route.ts

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

apps/web/app/api/**/route.ts: Use withAuth for user-level operations
Use withEmailAccount for email-account-level operations
Do NOT use POST API routes for mutations - use server actions instead
No need for try/catch in GET routes when using middleware
Export response types from GET routes

apps/web/app/api/**/route.ts: Wrap all GET API route handlers with withAuth or withEmailAccount middleware for authentication and authorization.
Export response types from GET API routes for type-safe client usage.
Do not use try/catch in GET API routes when using authentication middleware; rely on centralized error handling.

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
!{.cursor/rules/*.mdc}

📄 CodeRabbit inference engine (.cursor/rules/cursor-rules.mdc)

Never place rule files in the project root, in subdirectories outside .cursor/rules, or in any other location

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
  • apps/web/styles/globals.css
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/package.json
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • version.txt
  • apps/web/components/ui/chart.tsx
**/*.ts

📄 CodeRabbit inference engine (.cursor/rules/form-handling.mdc)

**/*.ts: The same validation should be done in the server action too
Define validation schemas using Zod

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/logging.mdc)

**/*.{ts,tsx}: Use createScopedLogger for logging in backend TypeScript files
Typically add the logger initialization at the top of the file when using createScopedLogger
Only use .with() on a logger instance within a specific function, not for a global logger

Import Prisma in the project using import prisma from "@/utils/prisma";

**/*.{ts,tsx}: Don't use TypeScript enums.
Don't use TypeScript const enum.
Don't use the TypeScript directive @ts-ignore.
Don't use primitive type aliases or misleading types.
Don't use empty type parameters in type aliases and interfaces.
Don't use any or unknown as type constraints.
Don't use implicit any type on variable declarations.
Don't let variables evolve into any type through reassignments.
Don't use non-null assertions with the ! postfix operator.
Don't misuse the non-null assertion operator (!) in TypeScript files.
Don't use user-defined types.
Use as const instead of literal types and type annotations.
Use export type for types.
Use import type for types.
Don't declare empty interfaces.
Don't merge interfaces and classes unsafely.
Don't use overload signatures that aren't next to each other.
Use the namespace keyword instead of the module keyword to declare TypeScript namespaces.
Don't use TypeScript namespaces.
Don't export imported variables.
Don't add type annotations to variables, parameters, and class properties that are initialized with literal expressions.
Don't use parameter properties in class constructors.
Use either T[] or Array consistently.
Initialize each enum member value explicitly.
Make sure all enum members are literal values.

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
**/api/**/route.ts

📄 CodeRabbit inference engine (.cursor/rules/security.mdc)

**/api/**/route.ts: ALL API routes that handle user data MUST use appropriate authentication and authorization middleware (withAuth or withEmailAccount).
ALL database queries in API routes MUST be scoped to the authenticated user/account (e.g., include userId or emailAccountId in query filters).
Always validate that resources belong to the authenticated user before performing operations (resource ownership validation).
Use withEmailAccount middleware for API routes that operate on a specific email account (i.e., use or require emailAccountId).
Use withAuth middleware for API routes that operate at the user level (i.e., use or require only userId).
Use withError middleware (with proper validation) for public endpoints, custom authentication, or cron endpoints.
Cron endpoints MUST use withError middleware and validate the cron secret using hasCronSecret(request) or hasPostCronSecret(request).
Cron endpoints MUST capture unauthorized attempts with captureException and return a 401 status for unauthorized requests.
All parameters in API routes MUST be validated for type, format, and length before use.
Request bodies in API routes MUST be validated using Zod schemas before use.
All Prisma queries in API routes MUST only return necessary fields and never expose sensitive data.
Error messages in API routes MUST not leak internal information or sensitive data; use generic error messages and SafeError where appropriate.
API routes MUST use a consistent error response format, returning JSON with an error message and status code.
All findUnique and findFirst Prisma calls in API routes MUST include ownership filters (e.g., userId or emailAccountId).
All findMany Prisma calls in API routes MUST be scoped to the authenticated user's data.
Never use direct object references in API routes without ownership checks (prevent IDOR vulnerabilities).
Prevent mass assignment vulnerabilities by only allowing explicitly whitelisted fields in update operations in AP...

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
apps/web/app/api/**/*.{ts,js}

📄 CodeRabbit inference engine (.cursor/rules/security-audit.mdc)

apps/web/app/api/**/*.{ts,js}: All API route handlers in 'apps/web/app/api/' must use authentication middleware: withAuth, withEmailAccount, or withError (with custom authentication logic).
All Prisma queries in API routes must include user/account filtering (e.g., emailAccountId or userId in WHERE clauses) to prevent unauthorized data access.
All parameters used in API routes must be validated before use; do not use parameters from 'params' or request bodies directly in queries without validation.
Request bodies in API routes should use Zod schemas for validation.
API routes should only return necessary fields using Prisma's 'select' and must not include sensitive data in error messages.
Error messages in API routes must not reveal internal details; use generic errors and SafeError for user-facing errors.
All QStash endpoints (API routes called via publishToQstash or publishToQstashQueue) must use verifySignatureAppRouter to verify request authenticity.
All cron endpoints in API routes must use hasCronSecret or hasPostCronSecret for authentication.
Do not hardcode weak or plaintext secrets in API route files; secrets must not be directly assigned as string literals.
Review all new withError usage in API routes to ensure custom authentication is implemented where required.

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

**/*.{js,jsx,ts,tsx}: Don't use elements in Next.js projects.
Don't use elements in Next.js projects.
Don't use namespace imports.
Don't access namespace imports dynamically.
Don't use global eval().
Don't use console.
Don't use debugger.
Don't use var.
Don't use with statements in non-strict contexts.
Don't use the arguments object.
Don't use consecutive spaces in regular expression literals.
Don't use the comma operator.
Don't use unnecessary boolean casts.
Don't use unnecessary callbacks with flatMap.
Use for...of statements instead of Array.forEach.
Don't create classes that only have static members (like a static namespace).
Don't use this and super in static contexts.
Don't use unnecessary catch clauses.
Don't use unnecessary constructors.
Don't use unnecessary continue statements.
Don't export empty modules that don't change anything.
Don't use unnecessary escape sequences in regular expression literals.
Don't use unnecessary labels.
Don't use unnecessary nested block statements.
Don't rename imports, exports, and destructured assignments to the same name.
Don't use unnecessary string or template literal concatenation.
Don't use String.raw in template literals when there are no escape sequences.
Don't use useless case statements in switch statements.
Don't use ternary operators when simpler alternatives exist.
Don't use useless this aliasing.
Don't initialize variables to undefined.
Don't use the void operators (they're not familiar).
Use arrow functions instead of function expressions.
Use Date.now() to get milliseconds since the Unix Epoch.
Use .flatMap() instead of map().flat() when possible.
Use literal property access instead of computed property access.
Don't use parseInt() or Number.parseInt() when binary, octal, or hexadecimal literals work.
Use concise optional chaining instead of chained logical expressions.
Use regular expression literals instead of the RegExp constructor when possible.
Don't use number literal object member names th...

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
!pages/_document.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

!pages/_document.{js,jsx,ts,tsx}: Don't import next/document outside of pages/_document.jsx in Next.js projects.
Don't import next/document outside of pages/_document.jsx in Next.js projects.

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
  • apps/web/styles/globals.css
  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/package.json
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • version.txt
  • apps/web/components/ui/chart.tsx
apps/web/**/*.tsx

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

apps/web/**/*.tsx: Follow tailwindcss patterns with prettier-plugin-tailwindcss
Prefer functional components with hooks
Use shadcn/ui components when available
Ensure responsive design with mobile-first approach
Follow consistent naming conventions (PascalCase for components)
Use LoadingContent component for async data
Use result?.serverError with toastError and toastSuccess
Use LoadingContent component to handle loading and error states consistently
Pass loading, error, and children props to LoadingContent

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/form-handling.mdc)

**/*.tsx: Use React Hook Form with Zod for validation
Validate form inputs before submission
Show validation errors inline next to form fields

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
apps/web/app/(app)/*/**

📄 CodeRabbit inference engine (.cursor/rules/page-structure.mdc)

Components for the page are either put in page.tsx, or in the apps/web/app/(app)/PAGE_NAME folder

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/(app)/*/**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/page-structure.mdc)

If you need to use onClick in a component, that component is a client component and file must start with 'use client'

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/(app)/*/**/**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/page-structure.mdc)

If we're in a deeply nested component we will use swr to fetch via API

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/project-structure.mdc)

Components with onClick must be client components with use client directive

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
**/*.{jsx,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

**/*.{jsx,tsx}: Don't destructure props inside JSX components in Solid projects.
Don't use both children and dangerouslySetInnerHTML props on the same element.
Don't use Array index in keys.
Don't assign to React component props.
Don't define React components inside other components.
Don't use event handlers on non-interactive elements.
Don't assign JSX properties multiple times.
Don't add extra closing tags for components without children.
Use <>...</> instead of ....
Don't insert comments as text nodes.
Don't use the return value of React.render.
Make sure all dependencies are correctly specified in React hooks.
Make sure all React hooks are called from the top level of component functions.
Don't use unnecessary fragments.
Don't pass children as props.
Use semantic elements instead of role attributes in JSX.

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
**/*.{html,jsx,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

**/*.{html,jsx,tsx}: Don't use or elements.
Don't use accessKey attribute on any HTML element.
Don't set aria-hidden="true" on focusable elements.
Don't add ARIA roles, states, and properties to elements that don't support them.
Only use the scope prop on elements.
Don't assign non-interactive ARIA roles to interactive HTML elements.
Make sure label elements have text content and are associated with an input.
Don't assign interactive ARIA roles to non-interactive HTML elements.
Don't assign tabIndex to non-interactive HTML elements.
Don't use positive integers for tabIndex property.
Don't include "image", "picture", or "photo" in img alt prop.
Don't use explicit role property that's the same as the implicit/default role.
Make static elements with click handlers use a valid role attribute.
Always include a title element for SVG elements.
Give all elements requiring alt text meaningful information for screen readers.
Make sure anchors have content that's accessible to screen readers.
Assign tabIndex to non-interactive HTML elements with aria-activedescendant.
Include all required ARIA attributes for elements with ARIA roles.
Make sure ARIA properties are valid for the element's supported roles.
Always include a type attribute for button elements.
Make elements with interactive roles and handlers focusable.
Give heading elements content that's accessible to screen readers (not hidden with aria-hidden).
Always include a lang attribute on the html element.
Always include a title attribute for iframe elements.
Accompany onClick with at least one of: onKeyUp, onKeyDown, or onKeyPress.
Accompany onMouseOver/onMouseOut with onFocus/onBlur.
Include caption tracks for audio and video elements.
Make sure all anchors are valid and navigable.
Ensure all ARIA properties (aria-*) are valid.
Use valid, non-abstract ARIA roles for elements with ARIA roles.
Use valid ARIA state and property values.
Use valid values for the autocomplete attribute on input eleme...

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/components/ui/chart.tsx
apps/web/components/**/*.tsx

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

Use React Hook Form with Zod validation for form handling

Use the LoadingContent component to handle loading and error states consistently in data-fetching components.

Use PascalCase for components (e.g. components/Button.tsx)

Files:

  • apps/web/components/ui/chart.tsx
apps/web/components/ui/**

📄 CodeRabbit inference engine (.cursor/rules/project-structure.mdc)

Shadcn components are in components/ui

Files:

  • apps/web/components/ui/chart.tsx
🧬 Code graph analysis (2)
apps/web/app/(app)/[emailAccountId]/stats/Stats.tsx (1)
apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (1)
  • RuleStatsChart (40-155)
apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (4)
apps/web/hooks/useOrgSWR.ts (1)
  • useOrgSWR (10-45)
apps/web/components/ui/chart.tsx (4)
  • ChartConfig (11-19)
  • ChartContainer (364-364)
  • ChartTooltip (365-365)
  • ChartTooltipContent (366-366)
apps/web/components/LoadingContent.tsx (1)
  • LoadingContent (13-27)
apps/web/components/ui/card.tsx (4)
  • Card (138-138)
  • CardHeader (139-139)
  • CardTitle (141-141)
  • CardContent (143-143)
🪛 ast-grep (0.39.6)
apps/web/components/ui/chart.tsx

[warning] 81-81: Usage of dangerouslySetInnerHTML detected. This bypasses React's built-in XSS protection. Always sanitize HTML content using libraries like DOMPurify before injecting it into the DOM to prevent XSS attacks.
Context: dangerouslySetInnerHTML
Note: [CWE-79] Improper Neutralization of Input During Web Page Generation [REFERENCES]
- https://reactjs.org/docs/dom-elements.html#dangerouslysetinnerhtml
- https://cwe.mitre.org/data/definitions/79.html

(react-unsafe-html-injection)

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
  • GitHub Check: Software Component Analysis Js
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Jit Security
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (4)
apps/web/components/ui/chart.tsx (4)

11-19: LGTM! Well-designed discriminated union.

The ChartConfig type effectively uses a discriminated union to prevent both color and theme from being set simultaneously, ensuring type-safe configuration.


21-35: LGTM! Proper context implementation.

The context and hook follow React best practices with appropriate error handling for usage outside the provider.


262-322: LGTM! Clean legend implementation.

The legend components properly handle optional icons, filter out "none" type items, and integrate well with the chart configuration system.


324-361: LGTM! Well-guarded payload configuration extraction.

The helper function appropriately uses type guards before type casting, safely navigating the nested payload structure. The unknown type parameter is correct for this runtime type-checking scenario.

Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 issues found across 8 files

Prompt for AI agents (all 2 issues)

Understand the root cause of the following 2 issues and fix them.


<file name="apps/web/components/ui/chart.tsx">

<violation number="1" location="apps/web/components/ui/chart.tsx:244">
Zero values in the tooltip never render because `{item.value &amp;&amp; …}` skips legitimate 0 values; please check for null/undefined instead so zeroes display correctly.</violation>
</file>

<file name="apps/web/app/api/user/stats/rule-stats/route.ts">

<violation number="1" location="apps/web/app/api/user/stats/rule-stats/route.ts:50">
This fallback label should remain &quot;No Group&quot;; otherwise, rules that have no group are now mislabeled as &quot;No Rule&quot;, leading to inaccurate group stats for the pie chart.</violation>
</file>

React with 👍 or 👎 to teach cubic. Mention @cubic-dev-ai to give feedback, ask questions, or re-run the review.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (5)
apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (4)

7-7: Drop lodash root import; use native Object.fromEntries (and simplify config).

Reduce bundle size and complexity:

  • Remove lodash root import.
  • If you don’t render a legend keyed by each rule, only the "value" key is needed in ChartConfig; per-slice colors already come from pieChartData.fill.

Apply:

-import { fromPairs } from "lodash";
-    const config: ChartConfig = {
-      value: {
-        label: "Executed Rules",
-      },
-      ...fromPairs(
-        data.ruleStats.map((rule, index) => [
-          rule.ruleName,
-          {
-            label: rule.ruleName,
-            color: CHART_COLORS[index % CHART_COLORS.length],
-          },
-        ]),
-      ),
-    };
+    const config: ChartConfig = {
+      value: { label: "Executed Rules" },
+    };

If you truly need per-slice keys later, prefer:

  • Native: Object.fromEntries(...), or
  • Modular import: import fromPairs from "lodash/fromPairs";

Based on learnings

Also applies to: 64-77


100-108: Add accessible name to BarChart.

Provide an accessible name per guidelines.

 <BarChart
   className="mt-4 h-72"
   data={barChartData}
   index="group"
   categories={["Executed Rules"]}
   colors={["blue"]}
   showLegend={false}
   showGridLines={true}
+  aria-label={`${title} — bar chart`}
 />

As per coding guidelines


123-137: Add title/aria to PieChart for a11y.

Ensure the SVG has an accessible name/title.

-                    <PieChart>
+                    <PieChart role="img" aria-label={`${title} — pie chart`}>
+                      <title>{title} — pie chart</title>
                       <ChartTooltip
                         content={
                           <ChartTooltipContent nameKey="value" hideLabel />
                         }
                       />

As per coding guidelines


43-45: Avoid unsafe cast when building URLSearchParams.

Coerce values to strings explicitly.

-  const { data, isLoading, error } = useOrgSWR<RuleStatsResponse>(
-    `/api/user/stats/rule-stats?${new URLSearchParams(params as Record<string, string>)}`,
-  );
+  const qs = new URLSearchParams(
+    Object.entries(params ?? {}).map(([k, v]) => [k, String(v)]),
+  );
+  const { data, isLoading, error } = useOrgSWR<RuleStatsResponse>(
+    `/api/user/stats/rule-stats?${qs.toString()}`,
+  );
apps/web/app/api/user/stats/rule-stats/route.ts (1)

24-49: Query will benefit from an index on (emailAccountId, createdAt).

Filtering by emailAccountId and date range will scan less with a composite index on "ExecutedRule"("emailAccountId", "createdAt").

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 19329b3 and 1fa8f35.

📒 Files selected for processing (2)
  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (3 hunks)
  • apps/web/app/api/user/stats/rule-stats/route.ts (2 hunks)
🧰 Additional context used
📓 Path-based instructions (18)
apps/web/**/*.{ts,tsx}

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

apps/web/**/*.{ts,tsx}: Use TypeScript with strict null checks
Path aliases: Use @/ for imports from project root
Use proper error handling with try/catch blocks
Format code with Prettier
Leverage TypeScript inference for better DX

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/app/api/user/stats/rule-stats/route.ts
apps/web/app/**

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

NextJS app router structure with (app) directory

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/app/api/user/stats/rule-stats/route.ts
apps/web/**/*.tsx

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

apps/web/**/*.tsx: Follow tailwindcss patterns with prettier-plugin-tailwindcss
Prefer functional components with hooks
Use shadcn/ui components when available
Ensure responsive design with mobile-first approach
Follow consistent naming conventions (PascalCase for components)
Use LoadingContent component for async data
Use result?.serverError with toastError and toastSuccess
Use LoadingContent component to handle loading and error states consistently
Pass loading, error, and children props to LoadingContent

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
!{.cursor/rules/*.mdc}

📄 CodeRabbit inference engine (.cursor/rules/cursor-rules.mdc)

Never place rule files in the project root, in subdirectories outside .cursor/rules, or in any other location

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/app/api/user/stats/rule-stats/route.ts
**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/form-handling.mdc)

**/*.tsx: Use React Hook Form with Zod for validation
Validate form inputs before submission
Show validation errors inline next to form fields

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/logging.mdc)

**/*.{ts,tsx}: Use createScopedLogger for logging in backend TypeScript files
Typically add the logger initialization at the top of the file when using createScopedLogger
Only use .with() on a logger instance within a specific function, not for a global logger

Import Prisma in the project using import prisma from "@/utils/prisma";

**/*.{ts,tsx}: Don't use TypeScript enums.
Don't use TypeScript const enum.
Don't use the TypeScript directive @ts-ignore.
Don't use primitive type aliases or misleading types.
Don't use empty type parameters in type aliases and interfaces.
Don't use any or unknown as type constraints.
Don't use implicit any type on variable declarations.
Don't let variables evolve into any type through reassignments.
Don't use non-null assertions with the ! postfix operator.
Don't misuse the non-null assertion operator (!) in TypeScript files.
Don't use user-defined types.
Use as const instead of literal types and type annotations.
Use export type for types.
Use import type for types.
Don't declare empty interfaces.
Don't merge interfaces and classes unsafely.
Don't use overload signatures that aren't next to each other.
Use the namespace keyword instead of the module keyword to declare TypeScript namespaces.
Don't use TypeScript namespaces.
Don't export imported variables.
Don't add type annotations to variables, parameters, and class properties that are initialized with literal expressions.
Don't use parameter properties in class constructors.
Use either T[] or Array consistently.
Initialize each enum member value explicitly.
Make sure all enum members are literal values.

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/app/api/user/stats/rule-stats/route.ts
apps/web/app/(app)/*/**

📄 CodeRabbit inference engine (.cursor/rules/page-structure.mdc)

Components for the page are either put in page.tsx, or in the apps/web/app/(app)/PAGE_NAME folder

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/(app)/*/**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/page-structure.mdc)

If you need to use onClick in a component, that component is a client component and file must start with 'use client'

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/(app)/*/**/**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/page-structure.mdc)

If we're in a deeply nested component we will use swr to fetch via API

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/**/*.tsx

📄 CodeRabbit inference engine (.cursor/rules/project-structure.mdc)

Components with onClick must be client components with use client directive

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
**/*.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

**/*.{js,jsx,ts,tsx}: Don't use elements in Next.js projects.
Don't use elements in Next.js projects.
Don't use namespace imports.
Don't access namespace imports dynamically.
Don't use global eval().
Don't use console.
Don't use debugger.
Don't use var.
Don't use with statements in non-strict contexts.
Don't use the arguments object.
Don't use consecutive spaces in regular expression literals.
Don't use the comma operator.
Don't use unnecessary boolean casts.
Don't use unnecessary callbacks with flatMap.
Use for...of statements instead of Array.forEach.
Don't create classes that only have static members (like a static namespace).
Don't use this and super in static contexts.
Don't use unnecessary catch clauses.
Don't use unnecessary constructors.
Don't use unnecessary continue statements.
Don't export empty modules that don't change anything.
Don't use unnecessary escape sequences in regular expression literals.
Don't use unnecessary labels.
Don't use unnecessary nested block statements.
Don't rename imports, exports, and destructured assignments to the same name.
Don't use unnecessary string or template literal concatenation.
Don't use String.raw in template literals when there are no escape sequences.
Don't use useless case statements in switch statements.
Don't use ternary operators when simpler alternatives exist.
Don't use useless this aliasing.
Don't initialize variables to undefined.
Don't use the void operators (they're not familiar).
Use arrow functions instead of function expressions.
Use Date.now() to get milliseconds since the Unix Epoch.
Use .flatMap() instead of map().flat() when possible.
Use literal property access instead of computed property access.
Don't use parseInt() or Number.parseInt() when binary, octal, or hexadecimal literals work.
Use concise optional chaining instead of chained logical expressions.
Use regular expression literals instead of the RegExp constructor when possible.
Don't use number literal object member names th...

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/app/api/user/stats/rule-stats/route.ts
!pages/_document.{js,jsx,ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

!pages/_document.{js,jsx,ts,tsx}: Don't import next/document outside of pages/_document.jsx in Next.js projects.
Don't import next/document outside of pages/_document.jsx in Next.js projects.

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
  • apps/web/app/api/user/stats/rule-stats/route.ts
**/*.{jsx,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

**/*.{jsx,tsx}: Don't destructure props inside JSX components in Solid projects.
Don't use both children and dangerouslySetInnerHTML props on the same element.
Don't use Array index in keys.
Don't assign to React component props.
Don't define React components inside other components.
Don't use event handlers on non-interactive elements.
Don't assign JSX properties multiple times.
Don't add extra closing tags for components without children.
Use <>...</> instead of ....
Don't insert comments as text nodes.
Don't use the return value of React.render.
Make sure all dependencies are correctly specified in React hooks.
Make sure all React hooks are called from the top level of component functions.
Don't use unnecessary fragments.
Don't pass children as props.
Use semantic elements instead of role attributes in JSX.

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
**/*.{html,jsx,tsx}

📄 CodeRabbit inference engine (.cursor/rules/ultracite.mdc)

**/*.{html,jsx,tsx}: Don't use or elements.
Don't use accessKey attribute on any HTML element.
Don't set aria-hidden="true" on focusable elements.
Don't add ARIA roles, states, and properties to elements that don't support them.
Only use the scope prop on elements.
Don't assign non-interactive ARIA roles to interactive HTML elements.
Make sure label elements have text content and are associated with an input.
Don't assign interactive ARIA roles to non-interactive HTML elements.
Don't assign tabIndex to non-interactive HTML elements.
Don't use positive integers for tabIndex property.
Don't include "image", "picture", or "photo" in img alt prop.
Don't use explicit role property that's the same as the implicit/default role.
Make static elements with click handlers use a valid role attribute.
Always include a title element for SVG elements.
Give all elements requiring alt text meaningful information for screen readers.
Make sure anchors have content that's accessible to screen readers.
Assign tabIndex to non-interactive HTML elements with aria-activedescendant.
Include all required ARIA attributes for elements with ARIA roles.
Make sure ARIA properties are valid for the element's supported roles.
Always include a type attribute for button elements.
Make elements with interactive roles and handlers focusable.
Give heading elements content that's accessible to screen readers (not hidden with aria-hidden).
Always include a lang attribute on the html element.
Always include a title attribute for iframe elements.
Accompany onClick with at least one of: onKeyUp, onKeyDown, or onKeyPress.
Accompany onMouseOver/onMouseOut with onFocus/onBlur.
Include caption tracks for audio and video elements.
Make sure all anchors are valid and navigable.
Ensure all ARIA properties (aria-*) are valid.
Use valid, non-abstract ARIA roles for elements with ARIA roles.
Use valid ARIA state and property values.
Use valid values for the autocomplete attribute on input eleme...

Files:

  • apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx
apps/web/app/api/**/route.ts

📄 CodeRabbit inference engine (apps/web/CLAUDE.md)

apps/web/app/api/**/route.ts: Use withAuth for user-level operations
Use withEmailAccount for email-account-level operations
Do NOT use POST API routes for mutations - use server actions instead
No need for try/catch in GET routes when using middleware
Export response types from GET routes

apps/web/app/api/**/route.ts: Wrap all GET API route handlers with withAuth or withEmailAccount middleware for authentication and authorization.
Export response types from GET API routes for type-safe client usage.
Do not use try/catch in GET API routes when using authentication middleware; rely on centralized error handling.

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
**/*.ts

📄 CodeRabbit inference engine (.cursor/rules/form-handling.mdc)

**/*.ts: The same validation should be done in the server action too
Define validation schemas using Zod

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
**/api/**/route.ts

📄 CodeRabbit inference engine (.cursor/rules/security.mdc)

**/api/**/route.ts: ALL API routes that handle user data MUST use appropriate authentication and authorization middleware (withAuth or withEmailAccount).
ALL database queries in API routes MUST be scoped to the authenticated user/account (e.g., include userId or emailAccountId in query filters).
Always validate that resources belong to the authenticated user before performing operations (resource ownership validation).
Use withEmailAccount middleware for API routes that operate on a specific email account (i.e., use or require emailAccountId).
Use withAuth middleware for API routes that operate at the user level (i.e., use or require only userId).
Use withError middleware (with proper validation) for public endpoints, custom authentication, or cron endpoints.
Cron endpoints MUST use withError middleware and validate the cron secret using hasCronSecret(request) or hasPostCronSecret(request).
Cron endpoints MUST capture unauthorized attempts with captureException and return a 401 status for unauthorized requests.
All parameters in API routes MUST be validated for type, format, and length before use.
Request bodies in API routes MUST be validated using Zod schemas before use.
All Prisma queries in API routes MUST only return necessary fields and never expose sensitive data.
Error messages in API routes MUST not leak internal information or sensitive data; use generic error messages and SafeError where appropriate.
API routes MUST use a consistent error response format, returning JSON with an error message and status code.
All findUnique and findFirst Prisma calls in API routes MUST include ownership filters (e.g., userId or emailAccountId).
All findMany Prisma calls in API routes MUST be scoped to the authenticated user's data.
Never use direct object references in API routes without ownership checks (prevent IDOR vulnerabilities).
Prevent mass assignment vulnerabilities by only allowing explicitly whitelisted fields in update operations in AP...

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
apps/web/app/api/**/*.{ts,js}

📄 CodeRabbit inference engine (.cursor/rules/security-audit.mdc)

apps/web/app/api/**/*.{ts,js}: All API route handlers in 'apps/web/app/api/' must use authentication middleware: withAuth, withEmailAccount, or withError (with custom authentication logic).
All Prisma queries in API routes must include user/account filtering (e.g., emailAccountId or userId in WHERE clauses) to prevent unauthorized data access.
All parameters used in API routes must be validated before use; do not use parameters from 'params' or request bodies directly in queries without validation.
Request bodies in API routes should use Zod schemas for validation.
API routes should only return necessary fields using Prisma's 'select' and must not include sensitive data in error messages.
Error messages in API routes must not reveal internal details; use generic errors and SafeError for user-facing errors.
All QStash endpoints (API routes called via publishToQstash or publishToQstashQueue) must use verifySignatureAppRouter to verify request authenticity.
All cron endpoints in API routes must use hasCronSecret or hasPostCronSecret for authentication.
Do not hardcode weak or plaintext secrets in API route files; secrets must not be directly assigned as string literals.
Review all new withError usage in API routes to ensure custom authentication is implemented where required.

Files:

  • apps/web/app/api/user/stats/rule-stats/route.ts
🧬 Code graph analysis (1)
apps/web/app/(app)/[emailAccountId]/stats/RuleStatsChart.tsx (3)
apps/web/hooks/useOrgSWR.ts (1)
  • useOrgSWR (10-45)
apps/web/app/api/user/stats/rule-stats/route.ts (1)
  • RuleStatsResponse (13-13)
apps/web/components/ui/chart.tsx (4)
  • ChartConfig (11-19)
  • ChartContainer (364-364)
  • ChartTooltip (365-365)
  • ChartTooltipContent (366-366)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: Software Component Analysis Js
  • GitHub Check: Jit Security
  • GitHub Check: test
🔇 Additional comments (1)
apps/web/app/api/user/stats/rule-stats/route.ts (1)

58-61: No remaining references to groupStats. Verified all consumers have been updated to use ruleStats and totalExecutedRules.

Array<{ rule_name: string; executed_count: bigint }>
>(Prisma.sql`
SELECT
COALESCE(r.name, 'No Rule') AS rule_name,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Avoid label collision with real rule names.

'No Rule' can collide with an actual rule named “No Rule,” merging counts.

-      COALESCE(r.name, 'No Rule') AS rule_name,
+      COALESCE(r.name, 'Unknown Rule') AS rule_name,
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
COALESCE(r.name, 'No Rule') AS rule_name,
COALESCE(r.name, 'Unknown Rule') AS rule_name,
🤖 Prompt for AI Agents
In apps/web/app/api/user/stats/rule-stats/route.ts around line 42, the COALESCE
fallback string 'No Rule' can collide with a real rule named "No Rule"; replace
the human-readable fallback with an unambiguous sentinel (for example
COALESCE(r.name, '__NO_RULE__')) or return NULL (COALESCE -> r.name) and handle
presentation in the client; ensure downstream code maps the sentinel/NULL to the
user-facing label so counts are not merged with real rule names.

@elie222 elie222 merged commit 0a43794 into main Oct 13, 2025
16 checks passed
@elie222 elie222 deleted the feat/rules-pie-chart branch October 13, 2025 13:40
This was referenced Nov 20, 2025
@coderabbitai coderabbitai bot mentioned this pull request Dec 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments