UNPKG

@heroui/card

Version:

Card is a container for text, photos, and actions in the context of a single subject.

174 lines (172 loc) 5.98 kB
"use client"; "use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/use-card.ts var use_card_exports = {}; __export(use_card_exports, { useCard: () => useCard }); module.exports = __toCommonJS(use_card_exports); var import_theme = require("@heroui/theme"); var import_react = require("react"); var import_focus = require("@react-aria/focus"); var import_interactions = require("@react-aria/interactions"); var import_use_aria_button = require("@heroui/use-aria-button"); var import_system = require("@heroui/system"); var import_shared_utils = require("@heroui/shared-utils"); var import_react_utils = require("@heroui/react-utils"); var import_react_utils2 = require("@heroui/react-utils"); var import_ripple = require("@heroui/ripple"); function useCard(originalProps) { var _a, _b, _c, _d; const globalContext = (0, import_system.useProviderContext)(); const [props, variantProps] = (0, import_system.mapPropsVariants)(originalProps, import_theme.card.variantKeys); const { ref, as, children, onClick, onPress, autoFocus, className, classNames, allowTextSelectionOnPress = true, ...otherProps } = props; const domRef = (0, import_react_utils2.useDOMRef)(ref); const Component = as || (originalProps.isPressable ? "button" : "div"); const shouldFilterDOMProps = typeof Component === "string"; const disableAnimation = (_b = (_a = originalProps.disableAnimation) != null ? _a : globalContext == null ? void 0 : globalContext.disableAnimation) != null ? _b : false; const disableRipple = (_d = (_c = originalProps.disableRipple) != null ? _c : globalContext == null ? void 0 : globalContext.disableRipple) != null ? _d : false; const baseStyles = (0, import_shared_utils.clsx)(classNames == null ? void 0 : classNames.base, className); const { onClear: onClearRipple, onPress: onRipplePressHandler, ripples } = (0, import_ripple.useRipple)(); const handlePress = (0, import_react.useCallback)( (e) => { if (disableRipple || disableAnimation) return; domRef.current && onRipplePressHandler(e); }, [disableRipple, disableAnimation, domRef, onRipplePressHandler] ); const { buttonProps, isPressed } = (0, import_use_aria_button.useAriaButton)( { onPress: (0, import_shared_utils.chain)(onPress, handlePress), elementType: as, isDisabled: !originalProps.isPressable, onClick, allowTextSelectionOnPress, ...otherProps }, domRef ); const { hoverProps, isHovered } = (0, import_interactions.useHover)({ isDisabled: !originalProps.isHoverable, ...otherProps }); const { isFocusVisible, isFocused, focusProps } = (0, import_focus.useFocusRing)({ autoFocus }); const slots = (0, import_react.useMemo)( () => (0, import_theme.card)({ ...variantProps, disableAnimation }), [(0, import_shared_utils.objectToDeps)(variantProps), disableAnimation] ); const context = (0, import_react.useMemo)( () => ({ slots, classNames, disableAnimation, isDisabled: originalProps.isDisabled, isFooterBlurred: originalProps.isFooterBlurred, fullWidth: originalProps.fullWidth }), [ slots, classNames, originalProps.isDisabled, originalProps.isFooterBlurred, disableAnimation, originalProps.fullWidth ] ); const getCardProps = (0, import_react.useCallback)( (props2 = {}) => { return { ref: domRef, className: slots.base({ class: baseStyles }), tabIndex: originalProps.isPressable ? 0 : -1, "data-hover": (0, import_shared_utils.dataAttr)(isHovered), "data-pressed": (0, import_shared_utils.dataAttr)(isPressed), "data-focus": (0, import_shared_utils.dataAttr)(isFocused), "data-focus-visible": (0, import_shared_utils.dataAttr)(isFocusVisible), "data-disabled": (0, import_shared_utils.dataAttr)(originalProps.isDisabled), ...(0, import_shared_utils.mergeProps)( originalProps.isPressable ? { ...buttonProps, ...focusProps, role: "button" } : {}, originalProps.isHoverable ? hoverProps : {}, (0, import_react_utils.filterDOMProps)(otherProps, { enabled: shouldFilterDOMProps }), (0, import_react_utils.filterDOMProps)(props2) ) }; }, [ domRef, slots, baseStyles, shouldFilterDOMProps, originalProps.isPressable, originalProps.isHoverable, originalProps.isDisabled, isHovered, isPressed, isFocusVisible, buttonProps, focusProps, hoverProps, otherProps ] ); const getRippleProps = (0, import_react.useCallback)( () => ({ ripples, onClear: onClearRipple }), [ripples, onClearRipple] ); return { context, domRef, Component, classNames, children, isHovered, isPressed, disableAnimation, isPressable: originalProps.isPressable, isHoverable: originalProps.isHoverable, disableRipple, handlePress, isFocusVisible, getCardProps, getRippleProps }; } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { useCard });