|
"use client" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import emotionIsPropValid from "@emotion/is-prop-valid" |
|
import { ThemeContext, withEmotionCache } from "@emotion/react" |
|
import { serializeStyles } from "@emotion/serialize" |
|
|
|
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 |
|
|
|
|
|
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 |
|
} |
|
|
|
|
|
const styledFn = createStyled.bind() as unknown as JsxFactory |
|
|
|
const cache = new Map() |
|
|
|
const chakraImpl = new Proxy(styledFn, { |
|
apply(_, __, args) { |
|
|
|
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) |
|
} |
|
|