@@ -6,57 +6,49 @@ import {
6
6
} from '@filbert-js/types' ;
7
7
8
8
import React from 'react' ;
9
- import { StyleSheetContext } from '@filbert-js/style-sheet-context' ;
10
9
import { ThemeContext } from '@filbert-js/theming' ;
11
10
import { factory } from './factory' ;
12
11
import { useStylesheet } from './hooks' ;
13
12
14
13
let id = 1 ;
15
14
export function styled ( Component , options = { } ) {
16
15
return ( styleTemplates , ...variables ) => {
17
- function StyledComponent ( props ) {
16
+ function S ( props , ref ) {
18
17
const theme = React . useContext ( ThemeContext ) ;
19
- const sheet = React . useContext ( StyleSheetContext ) ;
20
18
const obj = factory ( null , options . label , {
21
19
...props ,
22
20
theme,
23
21
} ) ( styleTemplates , ...variables ) ;
24
22
25
23
const [ styles , keyframes ] = obj [ RAW ] ;
26
- keyframes . forEach ( ( frame ) => sheet . createKeyframes ( frame ) ) ;
24
+
27
25
const className = obj . toString ( ) ;
28
26
29
- useStylesheet (
30
- className ,
31
- styles ,
32
- props [ SOURCE_ORDER ] ,
33
- StyledComponent . label ,
34
- ) ;
27
+ useStylesheet ( keyframes , className , styles , props [ SOURCE_ORDER ] , S . label ) ;
35
28
const {
36
29
className : passedClassName = '' ,
37
30
[ SOURCE_ORDER ] : sourceOrder ,
31
+ as,
32
+ children,
38
33
..._props
39
34
} = props ;
40
35
41
36
const finalProps = Object . assign (
42
37
{
43
- className : [ StyledComponent . label , className , passedClassName ]
44
- . join ( ' ' )
45
- . trim ( ) ,
38
+ className : [ S . label , className , passedClassName ] . join ( ' ' ) . trim ( ) ,
46
39
[ SOURCE_ORDER ] : Component [ IS_STYLED_COMPONENT ]
47
40
? className
48
41
: undefined ,
42
+ ref,
49
43
} ,
50
44
_props ,
51
45
) ;
52
- return < Component { ... finalProps } /> ;
46
+ return React . createElement ( as || Component , finalProps , children ) ;
53
47
}
54
- StyledComponent [ IS_STYLED_COMPONENT ] = true ;
55
- StyledComponent . label = options . label
56
- ? options . label
57
- : `${ LABEL_PREFIX } ${ id } ` ;
48
+ S [ IS_STYLED_COMPONENT ] = true ;
49
+ S . label = options . label ? options . label : `${ LABEL_PREFIX } ${ id } ` ;
58
50
59
51
id ++ ;
60
- return StyledComponent ;
52
+ return React . forwardRef ( S ) ;
61
53
} ;
62
54
}
0 commit comments