react-auditor 0.1.7

A blazing-fast Rust CLI to scan JS/TS/React code for best practices, quality, and security issues.
Documentation
use oxc_ast::ast::Program;
use oxc_ast_visit::Visit;
use oxc_semantic::Semantic;

use crate::rules::{Rule, RuleFinding, RuleMeta, Severity};

pub struct NoSetStateInRender;

const RULE_META: RuleMeta = RuleMeta {
    id: "no-set-state-in-render",
    default_severity: Severity::Error,
    category: "react",
    description: "No setState calls directly in render body",
};

impl Rule for NoSetStateInRender {
    fn meta(&self) -> &RuleMeta {
        &RULE_META
    }

    fn run(&self, program: &Program, _semantic: &Semantic, source_text: &str) -> Vec<RuleFinding> {
        let mut collector = SetStateInRenderCollector {
            findings: Vec::new(),
            source: source_text,
            in_effect: false,
        };
        collector.visit_program(program);
        collector.findings
    }
}

struct SetStateInRenderCollector<'a> {
    findings: Vec<RuleFinding>,
    source: &'a str,
    in_effect: bool,
}

impl<'a> SetStateInRenderCollector<'a> {
    fn add_finding(&mut self, start: usize, msg: String) {
        let line = self.source[..start].lines().count().max(1);
        let col = start - self.source[..start].rfind('\n').map(|i| i + 1).unwrap_or(0);
        self.findings.push(RuleFinding {
            line,
            column: col + 1,
            message: msg,
        });
    }

    fn is_state_setter(&self, name: &str) -> bool {
        name.starts_with("set") && name.len() > 3 && name.as_bytes()[3].is_ascii_uppercase()
    }
}

impl<'a> Visit<'a> for SetStateInRenderCollector<'a> {
    fn visit_call_expression(&mut self, expr: &oxc_ast::ast::CallExpression<'a>) {
        let name = if let oxc_ast::ast::Expression::Identifier(ident) = &expr.callee {
            ident.name.as_str()
        } else {
            return;
        };

        if name == "useEffect" || name == "useLayoutEffect" {
            let was = self.in_effect;
            self.in_effect = true;
            oxc_ast_visit::walk::walk_call_expression(self, expr);
            self.in_effect = was;
            return;
        }

        if !self.in_effect && self.is_state_setter(name) {
            self.add_finding(
                expr.span.start as usize,
                format!("`{name}` called during render — causes re-render loop"),
            );
        }
    }
}