Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add support for cssmodules-pure-no-check to allow global CSS features like View Transitions #77321

Merged
merged 20 commits into from
Apr 2, 2025
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
572af3d
feat(cssmodules): add cssmodules-pure-no-check
jantimon Mar 20, 2025
db2e977
Merge branch 'canary' into features/cssmodules-pure-no-check
jantimon Mar 20, 2025
88c9122
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Mar 20, 2025
9fdd1a3
Revert lru-cache and postcss-preset-env compiled changes
samcx Mar 20, 2025
f0bfa47
switch test to font-weight
jantimon Mar 20, 2025
526249a
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Mar 21, 2025
07fee8c
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Mar 21, 2025
c15d9d8
fix test
jantimon Mar 22, 2025
35e47a5
fix test
jantimon Mar 22, 2025
d42ebc3
use :global for ::view-transition
jantimon Mar 22, 2025
525d707
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Mar 22, 2025
413a73e
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Mar 31, 2025
a39a649
test(integration): update cssmodules-pre-no-check fixture to pages
samcx Mar 31, 2025
04b7533
test(e2e): add css-modules-pure-no-check.test.ts
samcx Mar 31, 2025
b798467
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Mar 31, 2025
979d68b
test(e2e): trim css content
samcx Apr 1, 2025
39c1eb8
test(e2e): move to isNextStart
samcx Apr 1, 2025
6abe8ef
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Apr 1, 2025
d877fee
test(integration): remove describe.skip
samcx Apr 1, 2025
01d5ac8
Merge branch 'canary' into features/cssmodules-pure-no-check
samcx Apr 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
"picomatch": "4.0.1",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-modules-extract-imports": "3.0.0",
"postcss-modules-local-by-default": "4.0.4",
"postcss-modules-local-by-default": "4.2.0",
"postcss-modules-scope": "3.0.0",
"postcss-modules-values": "4.0.0",
"postcss-preset-env": "7.4.3",
Expand Down

Large diffs are not rendered by default.

16 changes: 5 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions test/e2e/app-dir/css-modules-pure-no-check/app/home.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* cssmodules-pure-no-check */

/* View Transitions API - requires global scope to work properly */
:global(::view-transition-old(root)) {
animation-duration: 0.3s;
}

/* a local class */
.home {
background-color: #f0f0f0;
color: #333;
font-size: 16px;
padding: 20px;
}

/* a global class */
:global(.global) {
font-weight: 700;
}
13 changes: 13 additions & 0 deletions test/e2e/app-dir/css-modules-pure-no-check/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import type { ReactNode } from 'react'

export default function RootLayout({
children,
}: Readonly<{
children: ReactNode
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}
9 changes: 9 additions & 0 deletions test/e2e/app-dir/css-modules-pure-no-check/app/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import styles from './home.module.css'

export default function Home() {
return (
<div id="my-div" className={`${styles.home} global`}>
<div>This text should be bold</div>
</div>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import { nextTestSetup } from 'e2e-utils'
import cheerio from 'cheerio'

describe('css-modules-pure-no-check', () => {
const { isNextStart, next } = nextTestSetup({
files: __dirname,
})

it('should apply styles correctly', async () => {
const browser = await next.browser('/')

const elementWithGlobalStyles = await browser
.elementByCss('#my-div')
.getComputedCss('font-weight')

expect(elementWithGlobalStyles).toBe('700')
})

if (isNextStart) {
it('should have emitted a CSS file', async () => {
const html = await next.render('/')
const $html = cheerio.load(html)

const cssLink = $html('link[rel="stylesheet"]')
expect(cssLink.length).toBe(1)
const cssHref = cssLink[0].attribs['href']

const res = await next.fetch(cssHref)
const cssCode = await res.text()

expect(cssCode).toInclude(`.global{font-weight:700}`)
expect(cssCode).toInclude(
`::view-transition-old(root){animation-duration:.3s}`
)
})
}
})
7 changes: 7 additions & 0 deletions test/e2e/app-dir/css-modules-pure-no-check/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from 'next'

const nextConfig: NextConfig = {
/* config options here */
}

export default nextConfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/* cssmodules-pure-no-check */

/* View Transitions API - requires global scope to work properly */
:global(::view-transition-old(root)) {
animation-duration: 0.3s;
}

/* a local class */
.home {
background-color: #f0f0f0;
color: #333;
font-size: 16px;
padding: 20px;
}

/* a global class */
:global(.global) {
font-weight: 700;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import styles from './index.module.css'

export default function Home() {
return (
<div id="my-div" className={`${styles.home} global`}>
<div>This text should be bold</div>
</div>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"incremental": true,
"module": "esnext",
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
61 changes: 61 additions & 0 deletions test/integration/css-modules/test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -724,3 +724,64 @@ describe('Catch-all Route CSS Module Usage', () => {
}
)
})

describe('cssmodules-pure-no-check usage', () => {
;(process.env.TURBOPACK_DEV ? describe.skip : describe)(
'production mode',
() => {
const appDir = join(fixturesDir, 'cssmodules-pure-no-check')

let stdout
let code
let app
let appPort

beforeAll(async () => {
await remove(join(appDir, '.next'))
;({ code, stdout } = await nextBuild(appDir, [], {
stdout: true,
}))
appPort = await findPort()
app = await nextStart(appDir, appPort)
})

afterAll(() => killApp(app))

it('should have compiled successfully', () => {
console.log(stdout)
expect(code).toBe(0)
expect(stdout).toMatch(/Compiled successfully/)
})

it('should apply styles correctly', async () => {
const browser = await webdriver(appPort, '/')

const elementWithGlobalStyles = await browser
.elementByCss('#my-div')
.getComputedCss('font-weight')

expect(elementWithGlobalStyles).toBe('700')
})

it(`should've emitted a CSS file`, async () => {
const content = await renderViaHTTP(appPort, '/')
const $ = cheerio.load(content)

const cssSheet = $('link[rel="stylesheet"]')
expect(cssSheet.length).toBe(1)
const stylesheet = cssSheet[0].attribs['href']

const cssContent = await fetchViaHTTP(appPort, stylesheet).then((res) =>
res.text()
)

const cssCode = cssContent.replace(/\/\*.*?\*\//g, '').trim()

expect(cssCode).toInclude(`.global{font-weight:700}`)
expect(cssCode).toInclude(
`::view-transition-old(root){animation-duration:.3s}`
)
})
}
)
})
Loading