File size: 8,901 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
"use client"
/**
* Forked from https://github.com/emotion-js/emotion/blob/main/packages/styled/src/base.js
* but optimized for Chakra UI. All credits to the original authors.
*
* This also serves a bridge to React 19's style tag hoisting features.
*/
import emotionIsPropValid from "@emotion/is-prop-valid"
import { ThemeContext, withEmotionCache } from "@emotion/react"
import { serializeStyles } from "@emotion/serialize"
//@ts-ignore
import { useInsertionEffectAlwaysWithSyncFallback } from "@emotion/use-insertion-effect-with-fallbacks"
import {
getRegisteredStyles,
insertStyles,
registerStyles,
} from "@emotion/utils"
import * as React from "react"
import { mergeProps } from "../merge-props"
import { mergeRefs } from "../merge-refs"
import { compact, cx, getElementRef, interopDefault, uniq } from "../utils"
import type { JsxFactory, StyledFactoryFn } from "./factory.types"
import { useChakraContext } from "./provider"
import { isHtmlProp, useResolvedProps } from "./use-resolved-props"
const isPropValid = interopDefault(emotionIsPropValid)
const testOmitPropsOnStringTag = isPropValid
const testOmitPropsOnComponent = (key: string) => key !== "theme"
const composeShouldForwardProps = (tag: any, options: any, isReal: boolean) => {
let shouldForwardProp
if (options) {
const optionsShouldForwardProp = options.shouldForwardProp
shouldForwardProp =
tag.__emotion_forwardProp && optionsShouldForwardProp
? (propName: string) =>
tag.__emotion_forwardProp(propName) &&
optionsShouldForwardProp(propName)
: optionsShouldForwardProp
}
if (typeof shouldForwardProp !== "function" && isReal) {
shouldForwardProp = tag.__emotion_forwardProp
}
return shouldForwardProp
}
let isBrowser = typeof document !== "undefined"
const Insertion = ({ cache, serialized, isStringTag }: any) => {
registerStyles(cache, serialized, isStringTag)
const rules = useInsertionEffectAlwaysWithSyncFallback(() =>
insertStyles(cache, serialized, isStringTag),
)
if (!isBrowser && rules !== undefined) {
let serializedNames = serialized.name
let next = serialized.next
while (next !== undefined) {
serializedNames = cx(serializedNames, next.name)
next = next.next
}
return (
<style
{...{
[`data-emotion`]: cx(cache.key, serializedNames),
dangerouslySetInnerHTML: { __html: rules },
nonce: cache.sheet.nonce,
}}
/>
)
}
return null
}
const exceptionPropMap = {
path: ["d"],
text: ["x", "y"],
circle: ["cx", "cy", "r"],
rect: ["width", "height", "x", "y", "rx", "ry"],
ellipse: ["cx", "cy", "rx", "ry"],
g: ["transform"],
stop: ["offset", "stopOpacity"],
}
const hasProp = (obj: any, prop: string) => {
return Object.prototype.hasOwnProperty.call(obj, prop)
}
const createStyled = (tag: any, configOrCva: any = {}, options: any = {}) => {
if (process.env.NODE_ENV !== "production") {
if (tag === undefined) {
throw new Error(
"You are trying to create a styled element with an undefined component.\nYou may have forgotten to import it.",
)
}
}
if (hasProp(exceptionPropMap, tag)) {
options.forwardProps ||= []
const props = exceptionPropMap[tag as keyof typeof exceptionPropMap]
options.forwardProps = uniq([...options.forwardProps, ...props])
}
const isReal = tag.__emotion_real === tag
const baseTag = (isReal && tag.__emotion_base) || tag
let identifierName: string | undefined
let targetClassName: string | undefined
if (options !== undefined) {
identifierName = options.label
targetClassName = options.target
}
let styles: any[] = []
const Styled: any = withEmotionCache((inProps: any, cache, ref) => {
const { cva, isValidProperty } = useChakraContext()
const cvaFn = configOrCva.__cva__ ? configOrCva : cva(configOrCva)
const cvaRecipe = mergeCva(tag.__emotion_cva, cvaFn)
const createShouldForwardProps = (props: string[]) => {
return (prop: string, variantKeys: string[]) => {
if (props.includes(prop)) return true
return !variantKeys?.includes(prop) && !isValidProperty(prop)
}
}
if (!options.shouldForwardProp && options.forwardProps) {
options.shouldForwardProp = createShouldForwardProps(options.forwardProps)
}
const fallbackShouldForwardProp = (prop: string, variantKeys: string[]) => {
const emotionSfp =
typeof tag === "string" && tag.charCodeAt(0) > 96
? testOmitPropsOnStringTag
: testOmitPropsOnComponent
const chakraSfp = !variantKeys?.includes(prop) && !isValidProperty(prop)
return emotionSfp(prop) && chakraSfp
}
const shouldForwardProp =
composeShouldForwardProps(tag, options, isReal) ||
fallbackShouldForwardProp
const propsWithDefault = React.useMemo(
() => Object.assign({}, options.defaultProps, compact(inProps)),
[inProps],
)
const { props, styles: styleProps } = useResolvedProps(
propsWithDefault,
cvaRecipe,
shouldForwardProp,
)
let className = ""
let classInterpolations: any[] = [styleProps]
let mergedProps: any = props
if (props.theme == null) {
mergedProps = {}
for (let key in props) {
mergedProps[key] = props[key]
}
mergedProps.theme = React.useContext(ThemeContext)
}
if (typeof props.className === "string") {
className = getRegisteredStyles(
cache.registered,
classInterpolations,
props.className,
)
} else if (props.className != null) {
className = cx(className, props.className)
}
const serialized = serializeStyles(
styles.concat(classInterpolations),
cache.registered,
mergedProps,
)
className = cx(className, `${cache.key}-${serialized.name}`)
if (targetClassName !== undefined) {
className = cx(className, targetClassName)
}
const shouldUseAs = !shouldForwardProp("as")
let FinalTag = (shouldUseAs && props.as) || baseTag
let finalProps: any = {}
for (let prop in props) {
if (shouldUseAs && prop === "as") continue
if (isHtmlProp(prop)) {
const nativeProp = prop.replace("html", "").toLowerCase()
finalProps[nativeProp] = props[prop]
continue
}
if (shouldForwardProp(prop)) {
finalProps[prop] = props[prop]
}
}
finalProps.className = className.trim()
finalProps.ref = ref
const forwardAsChild =
options.forwardAsChild || options.forwardProps?.includes("asChild")
if (props.asChild && !forwardAsChild) {
const child = React.Children.only(props.children)
FinalTag = child.type
// clean props
finalProps.children = null
Reflect.deleteProperty(finalProps, "asChild")
finalProps = mergeProps(finalProps, child.props)
finalProps.ref = mergeRefs(ref, getElementRef(child))
}
if (finalProps.as && forwardAsChild) {
finalProps.as = undefined
return (
<React.Fragment>
<Insertion
cache={cache}
serialized={serialized}
isStringTag={typeof FinalTag === "string"}
/>
<FinalTag asChild {...finalProps}>
<props.as>{finalProps.children}</props.as>
</FinalTag>
</React.Fragment>
)
}
return (
<React.Fragment>
<Insertion
cache={cache}
serialized={serialized}
isStringTag={typeof FinalTag === "string"}
/>
<FinalTag {...finalProps} />
</React.Fragment>
)
})
Styled.displayName =
identifierName !== undefined
? identifierName
: `chakra(${
typeof baseTag === "string"
? baseTag
: baseTag.displayName || baseTag.name || "Component"
})`
Styled.__emotion_real = Styled
Styled.__emotion_base = baseTag
Styled.__emotion_forwardProp = options.shouldForwardProp
Styled.__emotion_cva = configOrCva
Object.defineProperty(Styled, "toString", {
value() {
if (
targetClassName === undefined &&
process.env.NODE_ENV !== "production"
) {
return "NO_COMPONENT_SELECTOR"
}
return `.${targetClassName}`
},
})
return Styled
}
// @ts-ignore
const styledFn = createStyled.bind() as unknown as JsxFactory
const cache = new Map()
const chakraImpl = new Proxy(styledFn, {
apply(_, __, args) {
// @ts-ignore
return styledFn(...args)
},
get(_, el) {
if (!cache.has(el)) {
cache.set(el, styledFn(el as any))
}
return cache.get(el)
},
})
export const chakra = chakraImpl as unknown as StyledFactoryFn
const mergeCva = (cvaA: any, cvaB: any) => {
if (cvaA && !cvaB) return cvaA
if (!cvaA && cvaB) return cvaB
return cvaA.merge(cvaB)
}
|