-
-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(linter): eslint-plugin-next: no-document-import-in-page (#1997)
Part of: #1929 Based on: - https://github.com/vercel/next.js/blob/canary/packages/eslint-plugin-next/src/rules/no-document-import-in-page.ts - https://nextjs.org/docs/messages/no-document-import-in-page --------- Co-authored-by: Cameron <[email protected]>
- Loading branch information
Showing
3 changed files
with
262 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
219 changes: 219 additions & 0 deletions
219
crates/oxc_linter/src/rules/nextjs/no_document_import_in_page.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,219 @@ | ||
use oxc_ast::{ast::ModuleDeclaration, AstKind}; | ||
use oxc_diagnostics::{ | ||
miette::{self, Diagnostic}, | ||
thiserror::Error, | ||
}; | ||
use oxc_macros::declare_oxc_lint; | ||
use oxc_span::Span; | ||
|
||
use crate::{context::LintContext, rule::Rule, AstNode}; | ||
|
||
#[derive(Debug, Error, Diagnostic)] | ||
#[error("eslint-plugin-next(no-document-import-in-page): `<Document />` from `next/document` should not be imported outside of `pages/_document.js`. See: https://nextjs.org/docs/messages/no-document-import-in-page")] | ||
#[diagnostic( | ||
severity(warning), | ||
help("Prevent importing `next/document` outside of `pages/_document.js`.") | ||
)] | ||
struct NoDocumentImportInPageDiagnostic(#[label] pub Span); | ||
|
||
#[derive(Debug, Default, Clone)] | ||
pub struct NoDocumentImportInPage; | ||
|
||
declare_oxc_lint!( | ||
/// ### What it does | ||
/// Prevent importing `next/document` outside of `pages/_document.js`. | ||
/// | ||
/// ### Why is this bad? | ||
/// | ||
/// | ||
/// ### Example | ||
/// ```javascript | ||
/// ``` | ||
NoDocumentImportInPage, | ||
correctness | ||
); | ||
|
||
impl Rule for NoDocumentImportInPage { | ||
fn run<'a>(&self, node: &AstNode<'a>, ctx: &LintContext<'a>) { | ||
let AstKind::ModuleDeclaration(ModuleDeclaration::ImportDeclaration(import_decl)) = | ||
node.kind() | ||
else { | ||
return; | ||
}; | ||
|
||
if import_decl.source.value.as_str() != "next/document" { | ||
return; | ||
} | ||
|
||
let Some(path) = ctx.file_path().to_str() else { return }; | ||
let Some(page) = path.split("pages").last() else { return }; | ||
|
||
if page.starts_with("/_document") || page.starts_with("\\_document") { | ||
return; | ||
} | ||
|
||
ctx.diagnostic(NoDocumentImportInPageDiagnostic(import_decl.span)); | ||
} | ||
} | ||
|
||
#[test] | ||
fn test() { | ||
use crate::tester::Tester; | ||
use std::path::PathBuf; | ||
|
||
let pass = vec![ | ||
( | ||
r#"import Document from "next/document" | ||
export default class MyDocument extends Document { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/_document.js")), | ||
), | ||
( | ||
r#"import Document from "next/document" | ||
export default class MyDocument extends Document { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/_document.js")), | ||
), | ||
( | ||
r#"import NextDocument from "next/document" | ||
export default class MyDocument extends NextDocument { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/_document.tsx")), | ||
), | ||
( | ||
r#"import Document from "next/document" | ||
export default class MyDocument extends Document { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/_document.page.tsx")), | ||
), | ||
( | ||
r#"import NDocument from "next/document" | ||
export default class Document extends NDocument { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/_document/index.js")), | ||
), | ||
( | ||
r#"import NDocument from "next/document" | ||
export default class Document extends NDocument { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/_document/index.tsx")), | ||
), | ||
( | ||
r#"import Document from "next/document" | ||
export default class MyDocument extends Document { | ||
render() { | ||
return ( | ||
<Html> | ||
</Html> | ||
); | ||
} | ||
} | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pagesapp/src/pages/_document.js")), | ||
), | ||
]; | ||
|
||
let fail = vec![ | ||
( | ||
r#"import Document from "next/document" | ||
export const Test = () => <p>Test</p> | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("components/test.js")), | ||
), | ||
( | ||
r#"import Document from "next/document" | ||
export const Test = () => <p>Test</p> | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("pages/test.js")), | ||
), | ||
( | ||
r#"import Document from "next/document" | ||
export const Test = () => <p>Test</p> | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("src/pages/user/test.tsx")), | ||
), | ||
( | ||
r#"import Document from "next/document" | ||
export const Test = () => <p>Test</p> | ||
"#, | ||
None, | ||
None, | ||
Some(PathBuf::from("src/pages/user/_document.tsx")), | ||
), | ||
]; | ||
|
||
Tester::new(NoDocumentImportInPage::NAME, pass, fail).test_and_snapshot(); | ||
} |
41 changes: 41 additions & 0 deletions
41
crates/oxc_linter/src/snapshots/no_document_import_in_page.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
source: crates/oxc_linter/src/tester.rs | ||
expression: no_document_import_in_page | ||
--- | ||
⚠ eslint-plugin-next(no-document-import-in-page): `<Document />` from `next/document` should not be imported outside of `pages/_document.js`. See: https://nextjs.org/docs/messages/no-document- | ||
│ import-in-page | ||
╭─[no_document_import_in_page.tsx:1:1] | ||
1 │ import Document from "next/document" | ||
· ──────────────────────────────────── | ||
2 │ | ||
╰──── | ||
help: Prevent importing `next/document` outside of `pages/_document.js`. | ||
|
||
⚠ eslint-plugin-next(no-document-import-in-page): `<Document />` from `next/document` should not be imported outside of `pages/_document.js`. See: https://nextjs.org/docs/messages/no-document- | ||
│ import-in-page | ||
╭─[no_document_import_in_page.tsx:1:1] | ||
1 │ import Document from "next/document" | ||
· ──────────────────────────────────── | ||
2 │ | ||
╰──── | ||
help: Prevent importing `next/document` outside of `pages/_document.js`. | ||
|
||
⚠ eslint-plugin-next(no-document-import-in-page): `<Document />` from `next/document` should not be imported outside of `pages/_document.js`. See: https://nextjs.org/docs/messages/no-document- | ||
│ import-in-page | ||
╭─[no_document_import_in_page.tsx:1:1] | ||
1 │ import Document from "next/document" | ||
· ──────────────────────────────────── | ||
2 │ | ||
╰──── | ||
help: Prevent importing `next/document` outside of `pages/_document.js`. | ||
|
||
⚠ eslint-plugin-next(no-document-import-in-page): `<Document />` from `next/document` should not be imported outside of `pages/_document.js`. See: https://nextjs.org/docs/messages/no-document- | ||
│ import-in-page | ||
╭─[no_document_import_in_page.tsx:1:1] | ||
1 │ import Document from "next/document" | ||
· ──────────────────────────────────── | ||
2 │ | ||
╰──── | ||
help: Prevent importing `next/document` outside of `pages/_document.js`. | ||
|
||
|