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

fix: order of layer #181

Merged
merged 1 commit into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions docs/examples/layer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const Div = ({ className, ...rest }: React.HTMLAttributes<HTMLDivElement>) => {
color: 'blue',

a: {
color: 'orange',
color: 'pink',
cursor: 'pointer',

'&:hover': {
Expand Down Expand Up @@ -56,9 +56,9 @@ export default function App() {
return (
<StyleProvider layer>
<Div>
Text should be pink:
Text should be blue.
<div>
A simple <a>link</a>
The link should be <a>pink</a>
</div>
</Div>
</StyleProvider>
Expand Down
4 changes: 2 additions & 2 deletions src/hooks/useStyleRegister.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ export default function useStyleRegister(
if (isMergedClientSide && styleStr !== CSS_FILE_STYLE) {
const mergedCSSConfig: Parameters<typeof updateCSS>[2] = {
mark: ATTR_MARK,
prepend: 'queue',
prepend: enableLayer ? false : 'queue',
attachTo: container,
priority: order,
};
Expand Down Expand Up @@ -494,7 +494,7 @@ export default function useStyleRegister(
updateCSS(
normalizeStyle(effectStyle[effectKey]),
`_layer-${effectKey}`,
mergedCSSConfig,
{ ...mergedCSSConfig, prepend: true },
);
});

Expand Down
69 changes: 69 additions & 0 deletions tests/layer.spec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
import { render } from '@testing-library/react';
import React from 'react';
import { createCache, createTheme, StyleProvider } from '../src';
import useStyleRegister from '../src/hooks/useStyleRegister';

vi.mock('../src/util', async () => {
const origin: any = await vi.importActual('../src/util');
return {
...origin,
supportLayer: () => true,
};
});

describe('layer', () => {
beforeEach(() => {
// Clear header
document.head.innerHTML = '';
});

it('order', () => {
const theme = createTheme(() => ({}));
const Demo = () => {
// Button
useStyleRegister(
{
theme,
token: { _tokenKey: 'test' },
path: ['button'],
layer: {
name: 'button',
dependencies: ['shared'],
},
},
() => ({
p: {
color: 'red',
},
}),
);

// Shared
useStyleRegister(
{
theme,
token: { _tokenKey: 'test' },
path: ['shared'],
layer: {
name: 'shared',
},
},
() => ({
p: {
color: 'red',
},
}),
);
return null;
};

render(
<StyleProvider layer cache={createCache()}>
<Demo />
</StyleProvider>,
);

const styles = Array.from(document.head.querySelectorAll('style'));
expect(styles[0].innerHTML.trim()).toEqual('@layer shared,button;');
});
});
Loading