Skip to content

Commit

Permalink
feat(linter) eslint-plugin-next no-async-client-component
Browse files Browse the repository at this point in the history
  • Loading branch information
camc314 committed Jan 7, 2024
1 parent abf5f42 commit 7e48fb0
Show file tree
Hide file tree
Showing 3 changed files with 265 additions and 0 deletions.
2 changes: 2 additions & 0 deletions crates/oxc_linter/src/rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ mod nextjs {
pub mod inline_script_id;
pub mod next_script_for_ga;
pub mod no_assign_module_variable;
pub mod no_async_client_component;
}

oxc_macros::declare_all_lint_rules! {
Expand Down Expand Up @@ -517,4 +518,5 @@ oxc_macros::declare_all_lint_rules! {
nextjs::inline_script_id,
nextjs::next_script_for_ga,
nextjs::no_assign_module_variable,
nextjs::no_async_client_component,
}
213 changes: 213 additions & 0 deletions crates/oxc_linter/src/rules/nextjs/no_async_client_component.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,213 @@
use oxc_ast::{
ast::{
BindingPatternKind, ExportDefaultDeclarationKind, Expression, ModuleDeclaration, Statement,
},
AstKind,
};
use oxc_diagnostics::{
miette::{self, Diagnostic},
thiserror::Error,
};
use oxc_macros::declare_oxc_lint;
use oxc_span::Span;

use crate::{ast_util::get_declaration_of_variable, context::LintContext, rule::Rule};

#[derive(Debug, Error, Diagnostic)]
#[error("eslint-plugin-next(no-async-client-component): Prevent client components from being async functions.")]
#[diagnostic(
severity(warning),
help("See: https://nextjs.org/docs/messages/no-async-client-component")
)]
struct NoAsyncClientComponentDiagnostic(#[label] pub Span);

#[derive(Debug, Default, Clone)]
pub struct NoAsyncClientComponent;

declare_oxc_lint!(
/// ### What it does
///
///
/// ### Why is this bad?
///
///
/// ### Example
/// ```javascript
/// ```
NoAsyncClientComponent,
correctness
);

impl Rule for NoAsyncClientComponent {
fn run_once(&self, ctx: &LintContext) {
let Some(root) = ctx.nodes().iter().next() else { return };
let AstKind::Program(program) = root.kind() else { return };

if program
.directives
.iter()
.any(|directive| directive.expression.value.as_str() == "use client")
{
for node in &program.body {
let Statement::ModuleDeclaration(mod_decl) = &node else {
continue;
};
let ModuleDeclaration::ExportDefaultDeclaration(export_default_decl) = &**mod_decl
else {
continue;
};

// export default async function MyComponent() {...}
if let ExportDefaultDeclarationKind::FunctionDeclaration(func_decl) =
&export_default_decl.declaration
{
if func_decl.r#async
&& func_decl
.id
.as_ref()
.is_some_and(|v| v.name.chars().next().unwrap().is_uppercase())
{
ctx.diagnostic(NoAsyncClientComponentDiagnostic(
func_decl.id.as_ref().unwrap().span,
));
}
continue;
}

// async function MyComponent() {...}; export default MyComponent;
if let ExportDefaultDeclarationKind::Expression(Expression::Identifier(
export_default_id,
)) = &export_default_decl.declaration
{
let Some(decl) = get_declaration_of_variable(export_default_id, ctx) else {
continue;
};

if let AstKind::Function(func) = decl.kind() {
if func.r#async
&& func
.id
.as_ref()
// `func.id.name` MUST be > 0 chars
.is_some_and(|v| v.name.chars().next().unwrap().is_uppercase())
{
ctx.diagnostic(NoAsyncClientComponentDiagnostic(
func.id.as_ref().unwrap().span,
));
}
}

if let AstKind::VariableDeclarator(var_declarator) = decl.kind() {
if let BindingPatternKind::BindingIdentifier(binding_ident) =
&var_declarator.id.kind
{
// `binding_ident.name` MUST be > 0 chars
if binding_ident.name.chars().next().unwrap().is_uppercase() {
if let Some(Expression::ArrowExpression(arrow_expr)) =
&var_declarator.init
{
if arrow_expr.r#async {
ctx.diagnostic(NoAsyncClientComponentDiagnostic(
binding_ident.span,
));
}
}
}
}
}
}
}
}
}
}

#[test]
fn test() {
use crate::tester::Tester;

let pass = vec![
r"
export default async function MyComponent() {
return <></>
}
",
r#"
"use client"
export default async function myFunction() {
return ''
}
"#,
r"
async function MyComponent() {
return <></>
}
export default MyComponent
",
r#"
"use client"
async function myFunction() {
return ''
}
export default myFunction
"#,
r#"
"use client"
const myFunction = () => {
return ''
}
export default myFunction
"#,
];

let fail = vec![
r#"
"use client"
export default async function MyComponent() {
return <></>
}
"#,
r#"
"use client"
export default async function MyFunction() {
return ''
}
"#,
r#"
"use client"
async function MyComponent() {
return <></>
}
export default MyComponent
"#,
r#"
"use client"
async function MyFunction() {
return ''
}
export default MyFunction
"#,
r#"
"use client"
const MyFunction = async () => {
return '123'
}
export default MyFunction
"#,
];

Tester::new_without_config(NoAsyncClientComponent::NAME, pass, fail).test_and_snapshot();
}
50 changes: 50 additions & 0 deletions crates/oxc_linter/src/snapshots/no_async_client_component.snap
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
source: crates/oxc_linter/src/tester.rs
expression: no_async_client_component
---
eslint-plugin-next(no-async-client-component): Prevent client components from being async functions.
╭─[no_async_client_component.tsx:3:1]
3
4export default async function MyComponent() {
· ───────────
5return <></>
╰────
help: See: https://nextjs.org/docs/messages/no-async-client-component

eslint-plugin-next(no-async-client-component): Prevent client components from being async functions.
╭─[no_async_client_component.tsx:3:1]
3
4export default async function MyFunction() {
· ──────────
5return ''
╰────
help: See: https://nextjs.org/docs/messages/no-async-client-component

eslint-plugin-next(no-async-client-component): Prevent client components from being async functions.
╭─[no_async_client_component.tsx:3:1]
3
4async function MyComponent() {
· ───────────
5return <></>
╰────
help: See: https://nextjs.org/docs/messages/no-async-client-component

eslint-plugin-next(no-async-client-component): Prevent client components from being async functions.
╭─[no_async_client_component.tsx:3:1]
3
4async function MyFunction() {
· ──────────
5return ''
╰────
help: See: https://nextjs.org/docs/messages/no-async-client-component

eslint-plugin-next(no-async-client-component): Prevent client components from being async functions.
╭─[no_async_client_component.tsx:3:1]
3
4const MyFunction = async () => {
· ──────────
5return '123'
╰────
help: See: https://nextjs.org/docs/messages/no-async-client-component


0 comments on commit 7e48fb0

Please sign in to comment.