1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- "use client";
- import React, { useContext } from 'react';
- import classNames from 'classnames';
- import { devUseWarning } from '../_util/warning';
- import { ConfigContext } from '../config-provider';
- import useMessage from '../message/useMessage';
- import useModal from '../modal/useModal';
- import useNotification from '../notification/useNotification';
- import AppContext, { AppConfigContext } from './context';
- import useStyle from './style';
- const App = props => {
- const {
- prefixCls: customizePrefixCls,
- children,
- className,
- rootClassName,
- message,
- notification,
- style,
- component = 'div'
- } = props;
- const {
- direction,
- getPrefixCls
- } = useContext(ConfigContext);
- const prefixCls = getPrefixCls('app', customizePrefixCls);
- const [wrapCSSVar, hashId, cssVarCls] = useStyle(prefixCls);
- const customClassName = classNames(hashId, prefixCls, className, rootClassName, cssVarCls, {
- [`${prefixCls}-rtl`]: direction === 'rtl'
- });
- const appConfig = useContext(AppConfigContext);
- const mergedAppConfig = React.useMemo(() => ({
- message: Object.assign(Object.assign({}, appConfig.message), message),
- notification: Object.assign(Object.assign({}, appConfig.notification), notification)
- }), [message, notification, appConfig.message, appConfig.notification]);
- const [messageApi, messageContextHolder] = useMessage(mergedAppConfig.message);
- const [notificationApi, notificationContextHolder] = useNotification(mergedAppConfig.notification);
- const [ModalApi, ModalContextHolder] = useModal();
- const memoizedContextValue = React.useMemo(() => ({
- message: messageApi,
- notification: notificationApi,
- modal: ModalApi
- }), [messageApi, notificationApi, ModalApi]);
- // https://github.com/ant-design/ant-design/issues/48802#issuecomment-2097813526
- devUseWarning('App')(!(cssVarCls && component === false), 'usage', 'When using cssVar, ensure `component` is assigned a valid React component string.');
- // ============================ Render ============================
- const Component = component === false ? React.Fragment : component;
- const rootProps = {
- className: customClassName,
- style
- };
- return wrapCSSVar(/*#__PURE__*/React.createElement(AppContext.Provider, {
- value: memoizedContextValue
- }, /*#__PURE__*/React.createElement(AppConfigContext.Provider, {
- value: mergedAppConfig
- }, /*#__PURE__*/React.createElement(Component, Object.assign({}, component === false ? undefined : rootProps), ModalContextHolder, messageContextHolder, notificationContextHolder, children))));
- };
- if (process.env.NODE_ENV !== 'production') {
- App.displayName = 'App';
- }
- export default App;
|