@hh.ru/magritte-ui-modal 9.2.10 → 9.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Modal.js CHANGED
@@ -12,11 +12,12 @@ import { useNoBubbling } from '@hh.ru/magritte-common-use-no-bubbling';
12
12
  import { isActionBarComponent } from '@hh.ru/magritte-ui-action-bar';
13
13
  import { Breakpoint, useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';
14
14
  import { Layer } from '@hh.ru/magritte-ui-layer';
15
- import { s as styles, M as ModalContentWithHeader } from './ModalContentWithHeader-CEfPPenv.js';
15
+ import { s as styles, M as ModalContentWithHeader } from './ModalContentWithHeader-B1NgCeR0.js';
16
16
  import { useModalOrder } from './useModalOrder.js';
17
17
  import { isProgressBarComponent } from '@hh.ru/magritte-ui-progress-bar';
18
18
  import { isValidTreeSelectorWrapper } from '@hh.ru/magritte-ui-tree-selector';
19
19
  import '@hh.ru/magritte-common-func-utils';
20
+ import '@hh.ru/magritte-ui-content-overlay';
20
21
  import '@hh.ru/magritte-ui-divider';
21
22
  import './ModalHeader.js';
22
23
  import '@hh.ru/magritte-ui-icon';
package/Modal.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"Modal.js","sources":["../src/Modal.tsx"],"sourcesContent":["import {\n forwardRef,\n HTMLAttributes,\n useLayoutEffect,\n useRef,\n useState,\n useCallback,\n useId,\n useEffect,\n cloneElement,\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { CSSTransition } from 'react-transition-group';\nimport classnames from 'classnames';\n\nimport { useServerEnv } from '@hh.ru/magritte-common-is-server-env';\nimport { keyboardMatch, keyboardKeys } from '@hh.ru/magritte-common-keyboard';\nimport { disableScroll, TimeoutCallback } from '@hh.ru/magritte-common-modal-helper';\nimport { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';\nimport { useNoBubbling } from '@hh.ru/magritte-common-use-no-bubbling';\nimport { isActionBarComponent } from '@hh.ru/magritte-ui-action-bar';\nimport { useBreakpoint, Breakpoint } from '@hh.ru/magritte-ui-breakpoint';\nimport { Layer } from '@hh.ru/magritte-ui-layer';\nimport { ModalContentWithHeader } from '@hh.ru/magritte-ui-modal/ModalContentWithHeader';\nimport { ModalHeaderProps, ModalProps } from '@hh.ru/magritte-ui-modal/types';\nimport { useModalOrder } from '@hh.ru/magritte-ui-modal/useModalOrder';\nimport { isProgressBarComponent } from '@hh.ru/magritte-ui-progress-bar';\nimport { isValidTreeSelectorWrapper } from '@hh.ru/magritte-ui-tree-selector';\n\nimport styles from './modal.less';\n\nconst DEFAULT_ACTION_BAR_PADDING = 24;\n\nconst noop = () => undefined;\n\nconst toNumber = (value: string) => {\n const result = parseInt(value, 10);\n return Number.isInteger(result) ? result : 0;\n};\n\nconst CSS_CLASSES = {\n center: {\n appear: styles.animationEnterCenter,\n appearActive: styles.animationEnterCenterActive,\n enter: styles.animationEnterCenter,\n enterActive: styles.animationEnterCenterActive,\n exit: styles.animationExitCenter,\n exitActive: styles.animationExitCenterActive,\n },\n left: {\n appear: styles.animationEnterLeft,\n appearActive: styles.animationEnterLeftActive,\n enter: styles.animationEnterLeft,\n enterActive: styles.animationEnterLeftActive,\n exit: styles.animationExitLeft,\n exitActive: styles.animationExitLeftActive,\n },\n right: {\n appear: styles.animationEnterRight,\n appearActive: styles.animationEnterRightActive,\n enter: styles.animationEnterRight,\n enterActive: styles.animationEnterRightActive,\n exit: styles.animationExitRight,\n exitActive: styles.animationExitRightActive,\n },\n};\n\nconst INVISIBLE_FOR_BREAKPOINTS = [Breakpoint.XS, Breakpoint.S];\n\nexport const Modal = forwardRef<\n HTMLDivElement,\n ModalProps &\n Omit<HTMLAttributes<HTMLDivElement>, keyof ModalProps | 'role' | 'tabindex' | 'className' | 'aria-labeledby'>\n>(\n (\n {\n visible,\n size = 'medium',\n title,\n titleAlignment = 'left',\n titleSize = 'large',\n titleMaxLines,\n titleElement = 'h2',\n titleDescription,\n titleDescriptionMaxLines,\n titleStyle,\n titleDescriptionStyle,\n children,\n onClose = noop,\n headerImageUrl,\n headerImage,\n headerHeight,\n host,\n options,\n actions,\n actionLink,\n footer,\n disableVerticalPaddings = false,\n disableHorizontalPaddings = false,\n closeByClickOutside = true,\n onAppear,\n onBeforeExit,\n onAfterExit,\n position = 'center',\n height = position === 'center' ? 'content' : 'full-screen',\n minHeight,\n ...rest\n },\n ref\n ) => {\n const isServerEnv = useServerEnv();\n const enableScrollRef = useRef<TimeoutCallback>();\n const onAfterExitRef = useRef(onAfterExit);\n const onBeforeExitRef = useRef(onBeforeExit);\n onAfterExitRef.current = onAfterExit;\n onBeforeExitRef.current = onBeforeExit;\n const [animationTimeout, setAnimationTimeout] = useState<{ enter: number; exit: number }>({\n enter: 0,\n exit: 0,\n });\n const animationTimeoutExitRef = useRef(animationTimeout.exit);\n animationTimeoutExitRef.current = animationTimeout.exit;\n const labelId = useId();\n const additionalProps: { 'aria-labelledby'?: string } = {};\n if (title) {\n additionalProps['aria-labelledby'] = labelId;\n }\n const modalRef = useRef<HTMLDivElement>(null);\n const overlayRef = useRef<HTMLDivElement>(null);\n const modalRefCallback = useMultipleRefs(ref, modalRef);\n\n const isPaddingsDisableAllowed =\n !title &&\n !headerImageUrl &&\n !headerImage &&\n !titleDescription &&\n !footer &&\n !options &&\n !actionLink &&\n !actions;\n const isVerticalPaddingsDisabled = disableVerticalPaddings && isPaddingsDisableAllowed;\n const isHorizontalPaddingsDisabled = disableHorizontalPaddings && isPaddingsDisableAllowed;\n\n const onEntering = useCallback(() => {\n if (!enableScrollRef.current) {\n enableScrollRef.current = disableScroll();\n }\n if (modalRef.current && !modalRef.current.contains(document.activeElement)) {\n modalRef.current.focus();\n }\n }, []);\n\n const onEntered = useCallback(() => {\n onAppear?.();\n }, [onAppear]);\n\n const onExit = useCallback(() => {\n onBeforeExitRef.current?.();\n }, []);\n const onExited = useCallback(() => {\n // оставляем обработку скрола еще и тут\n // чтобы обработать историю со сменой breakpoint\n enableScrollRef.current?.();\n enableScrollRef.current = undefined;\n onAfterExitRef.current?.();\n }, []);\n\n useModalOrder(!!visible && !isServerEnv, modalRef);\n\n const { breakpoint } = useBreakpoint();\n useEffect(() => {\n if (!visible) {\n return;\n }\n\n const currentBreakpointVisible = !INVISIBLE_FOR_BREAKPOINTS.includes(breakpoint);\n if (!currentBreakpointVisible) {\n onExit();\n onExited();\n return;\n }\n\n onEntering();\n // visible не должно быть в зависимостях, т.к. этот эффект обрабатывает только изменение брейкпоинта\n // visible обрабатывается CSSTransition\n // eslint-disable-next-line disable-autofix/react-hooks/exhaustive-deps\n }, [breakpoint, onEntering, onExited, onExit]);\n\n useEffect(\n () => () => {\n enableScrollRef.current?.(animationTimeoutExitRef.current);\n enableScrollRef.current = undefined;\n },\n [visible]\n );\n\n useLayoutEffect(() => {\n const animationTimeoutElement = document.createElement('div');\n animationTimeoutElement.classList.add(styles.animationTimeout);\n document.body.appendChild(animationTimeoutElement);\n const style = window.getComputedStyle(animationTimeoutElement);\n setAnimationTimeout({\n enter: toNumber(style.getPropertyValue('--enter-animation-duration')),\n exit: toNumber(style.getPropertyValue('--exit-animation-duration')),\n });\n document.body.removeChild(animationTimeoutElement);\n }, [setAnimationTimeout]);\n\n const overlayEventHandlers = useNoBubbling({\n onKeyDown: (event) => {\n if (keyboardMatch(event.nativeEvent as KeyboardEvent, keyboardKeys.Escape)) {\n onClose(event);\n }\n },\n onMouseDown: (event) => {\n if (!closeByClickOutside || modalRef.current?.contains(event.target as HTMLElement)) {\n return;\n }\n onClose(event);\n },\n });\n\n if (INVISIBLE_FOR_BREAKPOINTS.includes(breakpoint) || isServerEnv) {\n return null;\n }\n\n const modalHeaderProps = {\n title,\n titleElement,\n titleAlignment,\n titleSize,\n titleMaxLines,\n titleDescription,\n titleDescriptionMaxLines,\n titleStyle,\n titleDescriptionStyle,\n headerImageUrl,\n headerImage,\n headerHeight,\n options,\n actions,\n actionLink,\n } as ModalHeaderProps;\n\n const isTreeSelectorChild = isValidTreeSelectorWrapper(children);\n // если есть progress bar, нужно скрыть divider (но showProgress - это слот под reactNode)\n const isActionBarHaveProgressBar =\n !!footer &&\n isActionBarComponent(footer) &&\n Boolean(footer.props.showProgress) &&\n isProgressBarComponent(footer.props.showProgress);\n\n return createPortal(\n <CSSTransition\n appear\n in={visible && !isServerEnv}\n nodeRef={overlayRef}\n onEntering={onEntering}\n onEntered={onEntered}\n onExit={onExit}\n onExited={onExited}\n classNames={CSS_CLASSES[position]}\n timeout={animationTimeout}\n unmountOnExit\n >\n <Layer layer=\"modal\">\n <div\n {...overlayEventHandlers}\n ref={overlayRef}\n className={classnames(styles.modalOverlay, {\n [styles.overlayLeft]: position === 'left',\n [styles.overlayRight]: position === 'right',\n })}\n data-qa=\"modal-overlay\"\n >\n <div\n {...rest}\n {...additionalProps}\n role=\"dialog\"\n className={classnames(styles.modal, {\n [styles.sizeSmall]: size === 'small',\n [styles.sizeMedium]: size === 'medium',\n [styles.modalFullHeight]: height === 'full-screen' || isTreeSelectorChild,\n [styles.noVerticalPaddings]: isVerticalPaddingsDisabled,\n [styles.noHorizontalPaddings]: isHorizontalPaddingsDisabled,\n })}\n ref={modalRefCallback}\n tabIndex={0}\n style={{\n height: typeof height === 'number' ? `${height}px` : undefined,\n minHeight:\n typeof minHeight === 'number'\n ? `min(calc(100vh - 12px * 2), ${minHeight}px)`\n : undefined,\n }}\n >\n <ModalContentWithHeader\n {...modalHeaderProps}\n labelId={labelId}\n isTreeSelectorChild={isTreeSelectorChild}\n height={height}\n showDivider={!isActionBarHaveProgressBar}\n >\n {children}\n </ModalContentWithHeader>\n {!!footer && (\n <div className={styles.modalFooter} data-qa=\"modal-footer\">\n {isActionBarComponent(footer)\n ? cloneElement(footer, {\n type: footer.props.type || 'auto',\n padding: footer.props.padding || DEFAULT_ACTION_BAR_PADDING,\n showDivider: false,\n })\n : footer}\n </div>\n )}\n </div>\n </div>\n </Layer>\n </CSSTransition>,\n host || document.body\n );\n }\n);\n\nModal.displayName = 'Modal';\n"],"names":["_jsx","_jsxs"],"mappings":"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"}
1
+ {"version":3,"file":"Modal.js","sources":["../src/Modal.tsx"],"sourcesContent":["import {\n forwardRef,\n HTMLAttributes,\n useLayoutEffect,\n useRef,\n useState,\n useCallback,\n useId,\n useEffect,\n cloneElement,\n} from 'react';\nimport { createPortal } from 'react-dom';\nimport { CSSTransition } from 'react-transition-group';\nimport classnames from 'classnames';\n\nimport { useServerEnv } from '@hh.ru/magritte-common-is-server-env';\nimport { keyboardMatch, keyboardKeys } from '@hh.ru/magritte-common-keyboard';\nimport { disableScroll, TimeoutCallback } from '@hh.ru/magritte-common-modal-helper';\nimport { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';\nimport { useNoBubbling } from '@hh.ru/magritte-common-use-no-bubbling';\nimport { isActionBarComponent } from '@hh.ru/magritte-ui-action-bar';\nimport { useBreakpoint, Breakpoint } from '@hh.ru/magritte-ui-breakpoint';\nimport { Layer } from '@hh.ru/magritte-ui-layer';\nimport { ModalContentWithHeader } from '@hh.ru/magritte-ui-modal/ModalContentWithHeader';\nimport { ModalHeaderProps, ModalProps } from '@hh.ru/magritte-ui-modal/types';\nimport { useModalOrder } from '@hh.ru/magritte-ui-modal/useModalOrder';\nimport { isProgressBarComponent } from '@hh.ru/magritte-ui-progress-bar';\nimport { isValidTreeSelectorWrapper } from '@hh.ru/magritte-ui-tree-selector';\n\nimport styles from './modal.less';\n\nconst DEFAULT_ACTION_BAR_PADDING = 24;\n\nconst noop = () => undefined;\n\nconst toNumber = (value: string) => {\n const result = parseInt(value, 10);\n return Number.isInteger(result) ? result : 0;\n};\n\nconst CSS_CLASSES = {\n center: {\n appear: styles.animationEnterCenter,\n appearActive: styles.animationEnterCenterActive,\n enter: styles.animationEnterCenter,\n enterActive: styles.animationEnterCenterActive,\n exit: styles.animationExitCenter,\n exitActive: styles.animationExitCenterActive,\n },\n left: {\n appear: styles.animationEnterLeft,\n appearActive: styles.animationEnterLeftActive,\n enter: styles.animationEnterLeft,\n enterActive: styles.animationEnterLeftActive,\n exit: styles.animationExitLeft,\n exitActive: styles.animationExitLeftActive,\n },\n right: {\n appear: styles.animationEnterRight,\n appearActive: styles.animationEnterRightActive,\n enter: styles.animationEnterRight,\n enterActive: styles.animationEnterRightActive,\n exit: styles.animationExitRight,\n exitActive: styles.animationExitRightActive,\n },\n};\n\nconst INVISIBLE_FOR_BREAKPOINTS = [Breakpoint.XS, Breakpoint.S];\n\nexport const Modal = forwardRef<\n HTMLDivElement,\n ModalProps &\n Omit<HTMLAttributes<HTMLDivElement>, keyof ModalProps | 'role' | 'tabindex' | 'className' | 'aria-labeledby'>\n>(\n (\n {\n visible,\n size = 'medium',\n title,\n titleAlignment = 'left',\n titleSize = 'large',\n titleMaxLines,\n titleElement = 'h2',\n titleDescription,\n titleDescriptionMaxLines,\n titleStyle,\n titleDescriptionStyle,\n children,\n onClose = noop,\n headerImageUrl,\n headerImage,\n headerHeight,\n host,\n options,\n actions,\n actionLink,\n footer,\n disableVerticalPaddings = false,\n disableHorizontalPaddings = false,\n closeByClickOutside = true,\n onAppear,\n onBeforeExit,\n onAfterExit,\n position = 'center',\n height = position === 'center' ? 'content' : 'full-screen',\n minHeight,\n ...rest\n },\n ref\n ) => {\n const isServerEnv = useServerEnv();\n const enableScrollRef = useRef<TimeoutCallback>();\n const onAfterExitRef = useRef(onAfterExit);\n const onBeforeExitRef = useRef(onBeforeExit);\n onAfterExitRef.current = onAfterExit;\n onBeforeExitRef.current = onBeforeExit;\n const [animationTimeout, setAnimationTimeout] = useState<{ enter: number; exit: number }>({\n enter: 0,\n exit: 0,\n });\n const animationTimeoutExitRef = useRef(animationTimeout.exit);\n animationTimeoutExitRef.current = animationTimeout.exit;\n const labelId = useId();\n const additionalProps: { 'aria-labelledby'?: string } = {};\n if (title) {\n additionalProps['aria-labelledby'] = labelId;\n }\n const modalRef = useRef<HTMLDivElement>(null);\n const overlayRef = useRef<HTMLDivElement>(null);\n const modalRefCallback = useMultipleRefs(ref, modalRef);\n\n const isPaddingsDisableAllowed =\n !title &&\n !headerImageUrl &&\n !headerImage &&\n !titleDescription &&\n !footer &&\n !options &&\n !actionLink &&\n !actions;\n const isVerticalPaddingsDisabled = disableVerticalPaddings && isPaddingsDisableAllowed;\n const isHorizontalPaddingsDisabled = disableHorizontalPaddings && isPaddingsDisableAllowed;\n\n const onEntering = useCallback(() => {\n if (!enableScrollRef.current) {\n enableScrollRef.current = disableScroll();\n }\n if (modalRef.current && !modalRef.current.contains(document.activeElement)) {\n modalRef.current.focus();\n }\n }, []);\n\n const onEntered = useCallback(() => {\n onAppear?.();\n }, [onAppear]);\n\n const onExit = useCallback(() => {\n onBeforeExitRef.current?.();\n }, []);\n const onExited = useCallback(() => {\n // оставляем обработку скрола еще и тут\n // чтобы обработать историю со сменой breakpoint\n enableScrollRef.current?.();\n enableScrollRef.current = undefined;\n onAfterExitRef.current?.();\n }, []);\n\n useModalOrder(!!visible && !isServerEnv, modalRef);\n\n const { breakpoint } = useBreakpoint();\n useEffect(() => {\n if (!visible) {\n return;\n }\n\n const currentBreakpointVisible = !INVISIBLE_FOR_BREAKPOINTS.includes(breakpoint);\n if (!currentBreakpointVisible) {\n onExit();\n onExited();\n return;\n }\n\n onEntering();\n // visible не должно быть в зависимостях, т.к. этот эффект обрабатывает только изменение брейкпоинта\n // visible обрабатывается CSSTransition\n // eslint-disable-next-line disable-autofix/react-hooks/exhaustive-deps\n }, [breakpoint, onEntering, onExited, onExit]);\n\n useEffect(\n () => () => {\n enableScrollRef.current?.(animationTimeoutExitRef.current);\n enableScrollRef.current = undefined;\n },\n [visible]\n );\n\n useLayoutEffect(() => {\n const animationTimeoutElement = document.createElement('div');\n animationTimeoutElement.classList.add(styles.animationTimeout);\n document.body.appendChild(animationTimeoutElement);\n const style = window.getComputedStyle(animationTimeoutElement);\n setAnimationTimeout({\n enter: toNumber(style.getPropertyValue('--enter-animation-duration')),\n exit: toNumber(style.getPropertyValue('--exit-animation-duration')),\n });\n document.body.removeChild(animationTimeoutElement);\n }, [setAnimationTimeout]);\n\n const overlayEventHandlers = useNoBubbling({\n onKeyDown: (event) => {\n if (keyboardMatch(event.nativeEvent as KeyboardEvent, keyboardKeys.Escape)) {\n onClose(event);\n }\n },\n onMouseDown: (event) => {\n if (!closeByClickOutside || modalRef.current?.contains(event.target as HTMLElement)) {\n return;\n }\n onClose(event);\n },\n });\n\n if (INVISIBLE_FOR_BREAKPOINTS.includes(breakpoint) || isServerEnv) {\n return null;\n }\n\n const modalHeaderProps = {\n title,\n titleElement,\n titleAlignment,\n titleSize,\n titleMaxLines,\n titleDescription,\n titleDescriptionMaxLines,\n titleStyle,\n titleDescriptionStyle,\n headerImageUrl,\n headerImage,\n headerHeight,\n options,\n actions,\n actionLink,\n } as ModalHeaderProps;\n\n const isTreeSelectorChild = isValidTreeSelectorWrapper(children);\n // если есть progress bar, нужно скрыть divider (но showProgress - это слот под reactNode)\n const isActionBarHaveProgressBar =\n !!footer &&\n isActionBarComponent(footer) &&\n Boolean(footer.props.showProgress) &&\n isProgressBarComponent(footer.props.showProgress);\n\n return createPortal(\n <CSSTransition\n appear\n in={visible && !isServerEnv}\n nodeRef={overlayRef}\n onEntering={onEntering}\n onEntered={onEntered}\n onExit={onExit}\n onExited={onExited}\n classNames={CSS_CLASSES[position]}\n timeout={animationTimeout}\n unmountOnExit\n >\n <Layer layer=\"modal\">\n <div\n {...overlayEventHandlers}\n ref={overlayRef}\n className={classnames(styles.modalOverlay, {\n [styles.overlayLeft]: position === 'left',\n [styles.overlayRight]: position === 'right',\n })}\n data-qa=\"modal-overlay\"\n >\n <div\n {...rest}\n {...additionalProps}\n role=\"dialog\"\n className={classnames(styles.modal, {\n [styles.sizeSmall]: size === 'small',\n [styles.sizeMedium]: size === 'medium',\n [styles.modalFullHeight]: height === 'full-screen' || isTreeSelectorChild,\n [styles.noVerticalPaddings]: isVerticalPaddingsDisabled,\n [styles.noHorizontalPaddings]: isHorizontalPaddingsDisabled,\n })}\n ref={modalRefCallback}\n tabIndex={0}\n style={{\n height: typeof height === 'number' ? `${height}px` : undefined,\n minHeight:\n typeof minHeight === 'number'\n ? `min(calc(100vh - 12px * 2), ${minHeight}px)`\n : undefined,\n }}\n >\n <ModalContentWithHeader\n {...modalHeaderProps}\n labelId={labelId}\n isTreeSelectorChild={isTreeSelectorChild}\n height={height}\n showDivider={!isActionBarHaveProgressBar}\n >\n {children}\n </ModalContentWithHeader>\n {!!footer && (\n <div className={styles.modalFooter} data-qa=\"modal-footer\">\n {isActionBarComponent(footer)\n ? cloneElement(footer, {\n type: footer.props.type || 'auto',\n padding: footer.props.padding || DEFAULT_ACTION_BAR_PADDING,\n showDivider: false,\n })\n : footer}\n </div>\n )}\n </div>\n </div>\n </Layer>\n </CSSTransition>,\n host || document.body\n );\n }\n);\n\nModal.displayName = 'Modal';\n"],"names":["_jsx","_jsxs"],"mappings":"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"}
@@ -4,12 +4,13 @@ import { useRef, useState, useCallback, useLayoutEffect } from 'react';
4
4
  import classnames from 'classnames';
5
5
  import { requestAnimation } from '@hh.ru/magritte-common-func-utils';
6
6
  import { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
7
+ import { ContentOverlayRoot } from '@hh.ru/magritte-ui-content-overlay';
7
8
  import { Divider } from '@hh.ru/magritte-ui-divider';
8
9
  import { ModalHeader } from './ModalHeader.js';
9
10
  import { useScrollbar, Scrollbar } from '@hh.ru/magritte-ui-scrollbar';
10
11
  import { TextAreaGrowLimiter } from '@hh.ru/magritte-ui-textarea';
11
12
 
12
- var styles = {"modal-overlay":"magritte-modal-overlay___lK22l_9-2-10","modalOverlay":"magritte-modal-overlay___lK22l_9-2-10","overlay-left":"magritte-overlay-left___JtHK4_9-2-10","overlayLeft":"magritte-overlay-left___JtHK4_9-2-10","overlay-right":"magritte-overlay-right___uKTDt_9-2-10","overlayRight":"magritte-overlay-right___uKTDt_9-2-10","modal":"magritte-modal___RAW6S_9-2-10","size-small":"magritte-size-small___2JTM2_9-2-10","sizeSmall":"magritte-size-small___2JTM2_9-2-10","size-medium":"magritte-size-medium___cWCe7_9-2-10","sizeMedium":"magritte-size-medium___cWCe7_9-2-10","no-vertical-paddings":"magritte-no-vertical-paddings___Z3-oM_9-2-10","noVerticalPaddings":"magritte-no-vertical-paddings___Z3-oM_9-2-10","no-horizontal-paddings":"magritte-no-horizontal-paddings___aT95Y_9-2-10","noHorizontalPaddings":"magritte-no-horizontal-paddings___aT95Y_9-2-10","modal-full-height":"magritte-modal-full-height___gIM4E_9-2-10","modalFullHeight":"magritte-modal-full-height___gIM4E_9-2-10","modal-content-wrapper":"magritte-modal-content-wrapper___23XFT_9-2-10","modalContentWrapper":"magritte-modal-content-wrapper___23XFT_9-2-10","modal-content":"magritte-modal-content___46QFS_9-2-10","modalContent":"magritte-modal-content___46QFS_9-2-10","modal-scroll-container":"magritte-modal-scroll-container___Tf8Ns_9-2-10","modalScrollContainer":"magritte-modal-scroll-container___Tf8Ns_9-2-10","modal-content-wrapper__one-line":"magritte-modal-content-wrapper__one-line___tYg8d_9-2-10","modalContentWrapperOneLine":"magritte-modal-content-wrapper__one-line___tYg8d_9-2-10","content-sticky-container":"magritte-content-sticky-container___nqEXj_9-2-10","contentStickyContainer":"magritte-content-sticky-container___nqEXj_9-2-10","divider-container":"magritte-divider-container___qP3VK_9-2-10","dividerContainer":"magritte-divider-container___qP3VK_9-2-10","divider-container-hidden":"magritte-divider-container-hidden___EIxB-_9-2-10","dividerContainerHidden":"magritte-divider-container-hidden___EIxB-_9-2-10","modal-footer":"magritte-modal-footer___8xPqQ_9-2-10","modalFooter":"magritte-modal-footer___8xPqQ_9-2-10","modal-buttons-container":"magritte-modal-buttons-container___1O1Nr_9-2-10","modalButtonsContainer":"magritte-modal-buttons-container___1O1Nr_9-2-10","animation-timeout":"magritte-animation-timeout___w-j7K_9-2-10","animationTimeout":"magritte-animation-timeout___w-j7K_9-2-10","animation-enter-center":"magritte-animation-enter-center___7jogC_9-2-10","animationEnterCenter":"magritte-animation-enter-center___7jogC_9-2-10","animation-enter-center-active":"magritte-animation-enter-center-active___fywwW_9-2-10","animationEnterCenterActive":"magritte-animation-enter-center-active___fywwW_9-2-10","animation-exit-center":"magritte-animation-exit-center___3Fa6x_9-2-10","animationExitCenter":"magritte-animation-exit-center___3Fa6x_9-2-10","animation-exit-center-active":"magritte-animation-exit-center-active___tY0UA_9-2-10","animationExitCenterActive":"magritte-animation-exit-center-active___tY0UA_9-2-10","animation-enter-left":"magritte-animation-enter-left___5YB8B_9-2-10","animationEnterLeft":"magritte-animation-enter-left___5YB8B_9-2-10","animation-enter-left-active":"magritte-animation-enter-left-active___5GK8s_9-2-10","animationEnterLeftActive":"magritte-animation-enter-left-active___5GK8s_9-2-10","animation-exit-left":"magritte-animation-exit-left___OnkQE_9-2-10","animationExitLeft":"magritte-animation-exit-left___OnkQE_9-2-10","animation-exit-left-active":"magritte-animation-exit-left-active___AEGxY_9-2-10","animationExitLeftActive":"magritte-animation-exit-left-active___AEGxY_9-2-10","animation-enter-right":"magritte-animation-enter-right___2aXOm_9-2-10","animationEnterRight":"magritte-animation-enter-right___2aXOm_9-2-10","animation-enter-right-active":"magritte-animation-enter-right-active___8wX4-_9-2-10","animationEnterRightActive":"magritte-animation-enter-right-active___8wX4-_9-2-10","animation-exit-right":"magritte-animation-exit-right___iczoc_9-2-10","animationExitRight":"magritte-animation-exit-right___iczoc_9-2-10","animation-exit-right-active":"magritte-animation-exit-right-active___eFS4O_9-2-10","animationExitRightActive":"magritte-animation-exit-right-active___eFS4O_9-2-10","content-scroll-preserver":"magritte-content-scroll-preserver___Tw5Px_9-2-10","contentScrollPreserver":"magritte-content-scroll-preserver___Tw5Px_9-2-10","tree-selector-container":"magritte-tree-selector-container___fdhI-_9-2-10","treeSelectorContainer":"magritte-tree-selector-container___fdhI-_9-2-10","grow-limiter":"magritte-grow-limiter___zeIwy_9-2-10","growLimiter":"magritte-grow-limiter___zeIwy_9-2-10"};
13
+ var styles = {"modal-overlay":"magritte-modal-overlay___lK22l_9-3-0","modalOverlay":"magritte-modal-overlay___lK22l_9-3-0","overlay-left":"magritte-overlay-left___JtHK4_9-3-0","overlayLeft":"magritte-overlay-left___JtHK4_9-3-0","overlay-right":"magritte-overlay-right___uKTDt_9-3-0","overlayRight":"magritte-overlay-right___uKTDt_9-3-0","modal":"magritte-modal___RAW6S_9-3-0","size-small":"magritte-size-small___2JTM2_9-3-0","sizeSmall":"magritte-size-small___2JTM2_9-3-0","size-medium":"magritte-size-medium___cWCe7_9-3-0","sizeMedium":"magritte-size-medium___cWCe7_9-3-0","no-vertical-paddings":"magritte-no-vertical-paddings___Z3-oM_9-3-0","noVerticalPaddings":"magritte-no-vertical-paddings___Z3-oM_9-3-0","no-horizontal-paddings":"magritte-no-horizontal-paddings___aT95Y_9-3-0","noHorizontalPaddings":"magritte-no-horizontal-paddings___aT95Y_9-3-0","modal-full-height":"magritte-modal-full-height___gIM4E_9-3-0","modalFullHeight":"magritte-modal-full-height___gIM4E_9-3-0","modal-content-wrapper":"magritte-modal-content-wrapper___23XFT_9-3-0","modalContentWrapper":"magritte-modal-content-wrapper___23XFT_9-3-0","modal-content":"magritte-modal-content___46QFS_9-3-0","modalContent":"magritte-modal-content___46QFS_9-3-0","modal-scroll-container":"magritte-modal-scroll-container___Tf8Ns_9-3-0","modalScrollContainer":"magritte-modal-scroll-container___Tf8Ns_9-3-0","modal-content-wrapper__one-line":"magritte-modal-content-wrapper__one-line___tYg8d_9-3-0","modalContentWrapperOneLine":"magritte-modal-content-wrapper__one-line___tYg8d_9-3-0","content-sticky-container":"magritte-content-sticky-container___nqEXj_9-3-0","contentStickyContainer":"magritte-content-sticky-container___nqEXj_9-3-0","divider-container":"magritte-divider-container___qP3VK_9-3-0","dividerContainer":"magritte-divider-container___qP3VK_9-3-0","divider-container-hidden":"magritte-divider-container-hidden___EIxB-_9-3-0","dividerContainerHidden":"magritte-divider-container-hidden___EIxB-_9-3-0","modal-footer":"magritte-modal-footer___8xPqQ_9-3-0","modalFooter":"magritte-modal-footer___8xPqQ_9-3-0","modal-buttons-container":"magritte-modal-buttons-container___1O1Nr_9-3-0","modalButtonsContainer":"magritte-modal-buttons-container___1O1Nr_9-3-0","animation-timeout":"magritte-animation-timeout___w-j7K_9-3-0","animationTimeout":"magritte-animation-timeout___w-j7K_9-3-0","animation-enter-center":"magritte-animation-enter-center___7jogC_9-3-0","animationEnterCenter":"magritte-animation-enter-center___7jogC_9-3-0","animation-enter-center-active":"magritte-animation-enter-center-active___fywwW_9-3-0","animationEnterCenterActive":"magritte-animation-enter-center-active___fywwW_9-3-0","animation-exit-center":"magritte-animation-exit-center___3Fa6x_9-3-0","animationExitCenter":"magritte-animation-exit-center___3Fa6x_9-3-0","animation-exit-center-active":"magritte-animation-exit-center-active___tY0UA_9-3-0","animationExitCenterActive":"magritte-animation-exit-center-active___tY0UA_9-3-0","animation-enter-left":"magritte-animation-enter-left___5YB8B_9-3-0","animationEnterLeft":"magritte-animation-enter-left___5YB8B_9-3-0","animation-enter-left-active":"magritte-animation-enter-left-active___5GK8s_9-3-0","animationEnterLeftActive":"magritte-animation-enter-left-active___5GK8s_9-3-0","animation-exit-left":"magritte-animation-exit-left___OnkQE_9-3-0","animationExitLeft":"magritte-animation-exit-left___OnkQE_9-3-0","animation-exit-left-active":"magritte-animation-exit-left-active___AEGxY_9-3-0","animationExitLeftActive":"magritte-animation-exit-left-active___AEGxY_9-3-0","animation-enter-right":"magritte-animation-enter-right___2aXOm_9-3-0","animationEnterRight":"magritte-animation-enter-right___2aXOm_9-3-0","animation-enter-right-active":"magritte-animation-enter-right-active___8wX4-_9-3-0","animationEnterRightActive":"magritte-animation-enter-right-active___8wX4-_9-3-0","animation-exit-right":"magritte-animation-exit-right___iczoc_9-3-0","animationExitRight":"magritte-animation-exit-right___iczoc_9-3-0","animation-exit-right-active":"magritte-animation-exit-right-active___eFS4O_9-3-0","animationExitRightActive":"magritte-animation-exit-right-active___eFS4O_9-3-0","content-scroll-preserver":"magritte-content-scroll-preserver___Tw5Px_9-3-0","contentScrollPreserver":"magritte-content-scroll-preserver___Tw5Px_9-3-0","tree-selector-container":"magritte-tree-selector-container___fdhI-_9-3-0","treeSelectorContainer":"magritte-tree-selector-container___fdhI-_9-3-0","grow-limiter":"magritte-grow-limiter___zeIwy_9-3-0","growLimiter":"magritte-grow-limiter___zeIwy_9-3-0"};
13
14
 
14
15
  const checkIsScrolledToBottom = (el) => {
15
16
  return Math.abs(el.scrollHeight - el.scrollTop - el.clientHeight) < 1;
@@ -57,6 +58,7 @@ const ModalContentWithHeader = ({ labelId, children, headerHeight: _headerHeight
57
58
  const headerHeightRef = useRef(0);
58
59
  headerHeightRef.current = hasHeaderImageRef.current ? Math.max(_headerHeight, 200) : 0;
59
60
  const minHeaderHeightRef = useRef(0);
61
+ const contentOverlayRef = useRef(null);
60
62
  const bottomDividerContainerRef = useRef(null);
61
63
  const topDividerContainerRef = useRef(null);
62
64
  const withoutHeader = !title && !hasHeaderImageRef.current && !actions && !actionLink && !options;
@@ -74,6 +76,11 @@ const ModalContentWithHeader = ({ labelId, children, headerHeight: _headerHeight
74
76
  : contentContainerRef.current.scrollTop !== 0;
75
77
  return topDividerVisible && (options || !hasHeaderImageRef.current) && !onlyActions && !withoutHeader;
76
78
  };
79
+ const recalcContentOverlayPosition = useCallback(() => {
80
+ if (contentOverlayRef.current !== null && contentContainerRef.current !== null) {
81
+ contentOverlayRef.current.style.height = `${contentContainerRef.current.clientHeight}px`;
82
+ }
83
+ }, []);
77
84
  const updateHeaderDimensions = useCallback(() => {
78
85
  if (!headerImageContainerRef.current ||
79
86
  !headerWrapperRef.current ||
@@ -102,18 +109,20 @@ const ModalContentWithHeader = ({ labelId, children, headerHeight: _headerHeight
102
109
  bottomDividerVisibleRef.current = hasScroll;
103
110
  bottomDividerContainerRef.current?.classList.toggle(styles.dividerContainerHidden, !bottomDividerVisibleRef.current);
104
111
  updateHeaderDimensions();
112
+ recalcContentOverlayPosition();
105
113
  }));
106
114
  observer.observe(contentContainerRef.current);
107
115
  return () => observer.disconnect();
108
116
  }
109
117
  return undefined;
110
- }, [updateHeaderDimensions]);
118
+ }, [updateHeaderDimensions, recalcContentOverlayPosition]);
111
119
  useLayoutEffect(() => {
112
120
  updateHeaderDimensions();
121
+ recalcContentOverlayPosition();
113
122
  if (!options && (headerImageUrl || headerImage)) {
114
123
  topDividerContainerRef.current?.classList.toggle(styles.dividerContainerHidden, true);
115
124
  }
116
- }, [headerImageUrl, headerImage, updateHeaderDimensions, options]);
125
+ }, [headerImageUrl, headerImage, updateHeaderDimensions, recalcContentOverlayPosition, options]);
117
126
  const handleScroll = () => {
118
127
  if (!contentContainerRef.current) {
119
128
  return;
@@ -132,10 +141,10 @@ const ModalContentWithHeader = ({ labelId, children, headerHeight: _headerHeight
132
141
  [styles.modalContentWrapperOneLine]: onlyActions,
133
142
  }), children: [jsx(ModalHeader, { ...modalHeaderProps, headerHeight: headerHeightRef.current, labelId: labelId, wrapperRef: headerWrapperRef, ref: headerImageContainerRef }), jsx("div", { className: classnames(styles.dividerContainer, {
134
143
  [styles.dividerContainerHidden]: !isTopDividerVisible(),
135
- }), ref: topDividerContainerRef, children: jsx(Divider, {}) }), jsx("div", { className: classnames(styles.modalContent, scrollbar.hoverContainerCssClass), children: isTreeSelectorChild ? (jsx("div", { className: styles.treeSelectorContainer, children: children })) : (jsxs(Fragment, { children: [jsxs("div", { className: classnames(styles.modalScrollContainer), ref: contentContainerRefCallback, onScroll: handleScroll, "data-qa": "modal-content-scroll-container", children: [jsx("div", { className: classnames(styles.contentStickyContainer), ref: stickyContainerRefCallback, children: jsx(TextAreaGrowLimiter, { ...growLimiterContextValue, className: styles.growLimiter, children: children }) }), jsx("div", { ref: spacePreserverRef })] }), hasVerticalScroll && jsx(Scrollbar, { ...verticalScrollbarProps })] })) })] }), showDivider && (jsx("div", { className: classnames(styles.dividerContainer, {
144
+ }), ref: topDividerContainerRef, children: jsx(Divider, {}) }), jsx("div", { className: classnames(styles.modalContent, scrollbar.hoverContainerCssClass), children: jsx(ContentOverlayRoot, { ref: contentOverlayRef, children: isTreeSelectorChild ? (jsx("div", { className: styles.treeSelectorContainer, children: children })) : (jsxs(Fragment, { children: [jsxs("div", { className: classnames(styles.modalScrollContainer), ref: contentContainerRefCallback, onScroll: handleScroll, "data-qa": "modal-content-scroll-container", children: [jsx("div", { className: classnames(styles.contentStickyContainer), ref: stickyContainerRefCallback, children: jsx(TextAreaGrowLimiter, { ...growLimiterContextValue, className: styles.growLimiter, children: children }) }), jsx("div", { ref: spacePreserverRef })] }), hasVerticalScroll && jsx(Scrollbar, { ...verticalScrollbarProps })] })) }) })] }), showDivider && (jsx("div", { className: classnames(styles.dividerContainer, {
136
145
  [styles.dividerContainerHidden]: !bottomDividerVisibleRef.current,
137
146
  }), ref: bottomDividerContainerRef, children: jsx(Divider, {}) }))] }));
138
147
  };
139
148
 
140
149
  export { ModalContentWithHeader as M, styles as s };
141
- //# sourceMappingURL=ModalContentWithHeader-CEfPPenv.js.map
150
+ //# sourceMappingURL=ModalContentWithHeader-B1NgCeR0.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ModalContentWithHeader-B1NgCeR0.js","sources":["../src/ModalContentWithHeader.tsx"],"sourcesContent":["import { FC, PropsWithChildren, useCallback, useLayoutEffect, useRef, useState } from 'react';\nimport classnames from 'classnames';\n\nimport { requestAnimation } from '@hh.ru/magritte-common-func-utils';\nimport { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';\nimport { ContentOverlayRoot } from '@hh.ru/magritte-ui-content-overlay';\nimport { Divider } from '@hh.ru/magritte-ui-divider';\nimport { ModalHeader } from '@hh.ru/magritte-ui-modal/ModalHeader';\nimport { ModalHeaderProps, ModalHeight } from '@hh.ru/magritte-ui-modal/types';\nimport { Scrollbar, useScrollbar } from '@hh.ru/magritte-ui-scrollbar';\nimport { TextAreaGrowLimiter } from '@hh.ru/magritte-ui-textarea';\n\nimport styles from './modal.less';\n\nconst checkIsScrolledToBottom = (el: HTMLElement) => {\n return Math.abs(el.scrollHeight - el.scrollTop - el.clientHeight) < 1;\n};\n\nconst clamp = (value: number, min: number, max: number) => Math.min(Math.max(value, min), max);\n\n// Минимальная высота до которой может сжаться хедер\nconst HEADER_SHRINK_MIN_HEIGHT = 148;\n// Минимальная высота отступа между хедером и контентом\nconst HEADER_MARGIN_MIN_HEIGHT = 12;\n// Максимальная высота отступа между хедером и контентом\nconst HEADER_MARGIN_MAX_HEIGHT = 24;\nconst HEADER_MARGIN_HEIGHT_DELTA = HEADER_MARGIN_MAX_HEIGHT - HEADER_MARGIN_MIN_HEIGHT;\n\n// Вычисляет минимальную высоту до которой может сжаться хедер с учетом высоты контента, чтобы не спровоцировать\n// изменение размера модалки\nconst calcHeaderShrinkLimit = (\n headerHeight: number,\n headerMaxHeight: number,\n contentHeight: number,\n contentScrollHeight: number,\n marginHeight: number\n) => {\n // Высота контента скрытого под скроллом когда хедер и марджин под ним имеет максимальную допустимую высоту\n const contentScrollDelta =\n contentScrollHeight - // Высота контента скрытого под скроллом в текущем состоянии\n contentHeight + // Высота контейнера содержащего контент\n (HEADER_MARGIN_MAX_HEIGHT - marginHeight) + // Дельта между текущей высотой марджина и максимальной допустимой\n (headerMaxHeight - headerHeight); // Дельта между текущей высотой хедера и максимальной допустимой\n\n const headerShrinkMinHeight = headerMaxHeight - (contentScrollDelta - HEADER_MARGIN_HEIGHT_DELTA);\n\n return Math.max(headerShrinkMinHeight, HEADER_SHRINK_MIN_HEIGHT);\n};\n\nconst shrinkByDelta = (\n headerImageContainer: HTMLDivElement | null,\n headerWrapper: HTMLDivElement | null,\n headerMinHeight: number,\n headerMaxHeight: number,\n scrollDeltaY: number\n) => {\n if (!headerImageContainer || !headerWrapper) {\n return;\n }\n\n const marginHeight = clamp(\n HEADER_MARGIN_MAX_HEIGHT - scrollDeltaY,\n HEADER_MARGIN_MIN_HEIGHT,\n HEADER_MARGIN_MAX_HEIGHT\n );\n headerWrapper.style.marginBottom = `${marginHeight}px`;\n\n const headerHeight = clamp(\n // Тут прибаляем дельту марджина потому что сначала должен сжаться отступ\n Math.floor(headerMaxHeight - scrollDeltaY + HEADER_MARGIN_HEIGHT_DELTA),\n headerMinHeight,\n headerMaxHeight\n );\n headerImageContainer.style.height = `${headerHeight}px`;\n};\n\nexport const ModalContentWithHeader: FC<\n PropsWithChildren<\n ModalHeaderProps & { labelId: string; isTreeSelectorChild: boolean; height?: ModalHeight; showDivider: boolean }\n >\n> = ({\n labelId,\n children,\n headerHeight: _headerHeight = 0,\n isTreeSelectorChild,\n height,\n showDivider = true,\n ...modalHeaderProps\n}) => {\n const { title, headerImageUrl, headerImage, actions, actionLink, options } = modalHeaderProps;\n\n const bottomDividerVisibleRef = useRef(false);\n const contentContainerRef = useRef<HTMLDivElement>(null);\n const headerImageContainerRef = useRef<HTMLDivElement>(null);\n const headerWrapperRef = useRef<HTMLDivElement>(null);\n const spacePreserverRef = useRef<HTMLDivElement>(null);\n const stickyContainerRef = useRef<HTMLDivElement>(null);\n const hasHeaderImageRef = useRef(!!headerImageUrl || !!headerImage);\n hasHeaderImageRef.current = !!headerImageUrl || !!headerImage;\n const headerHeightRef = useRef(0);\n headerHeightRef.current = hasHeaderImageRef.current ? Math.max(_headerHeight, 200) : 0;\n const minHeaderHeightRef = useRef(0);\n const contentOverlayRef = useRef<HTMLDivElement>(null);\n\n const bottomDividerContainerRef = useRef<HTMLDivElement>(null);\n const topDividerContainerRef = useRef<HTMLDivElement>(null);\n\n const withoutHeader = !title && !hasHeaderImageRef.current && !actions && !actionLink && !options;\n const onlyActions = !title && !hasHeaderImageRef.current && !options && (actions || actionLink);\n\n const [growLimiterContextValue, _] = useState(() => ({\n containerRef: contentContainerRef,\n }));\n\n const isTopDividerVisible = () => {\n if (!contentContainerRef.current) {\n return false;\n }\n\n const topDividerVisible = hasHeaderImageRef.current\n ? contentContainerRef.current.scrollTop >\n headerHeightRef.current - minHeaderHeightRef.current + HEADER_MARGIN_HEIGHT_DELTA\n : contentContainerRef.current.scrollTop !== 0;\n\n return topDividerVisible && (options || !hasHeaderImageRef.current) && !onlyActions && !withoutHeader;\n };\n\n const recalcContentOverlayPosition = useCallback(() => {\n if (contentOverlayRef.current !== null && contentContainerRef.current !== null) {\n contentOverlayRef.current.style.height = `${contentContainerRef.current.clientHeight}px`;\n }\n }, []);\n\n const updateHeaderDimensions = useCallback(() => {\n if (\n !headerImageContainerRef.current ||\n !headerWrapperRef.current ||\n !stickyContainerRef.current ||\n !spacePreserverRef.current ||\n !contentContainerRef.current\n ) {\n return;\n }\n\n if (!hasHeaderImageRef.current) {\n spacePreserverRef.current.style.height = '0';\n return;\n }\n\n minHeaderHeightRef.current = calcHeaderShrinkLimit(\n headerImageContainerRef.current.clientHeight,\n headerHeightRef.current,\n contentContainerRef.current.clientHeight,\n stickyContainerRef.current.scrollHeight,\n parseInt(headerWrapperRef.current.style.marginBottom || '0', 10)\n );\n\n shrinkByDelta(\n headerImageContainerRef.current,\n headerWrapperRef.current,\n minHeaderHeightRef.current,\n headerHeightRef.current,\n contentContainerRef.current.scrollTop\n );\n const preserverSize = headerHeightRef.current - minHeaderHeightRef.current + HEADER_MARGIN_HEIGHT_DELTA;\n spacePreserverRef.current.style.height = `${preserverSize}px`;\n }, []);\n\n useLayoutEffect(() => {\n if (contentContainerRef.current) {\n const observer = new ResizeObserver(\n requestAnimation(() => {\n if (!contentContainerRef.current) {\n return;\n }\n const isScrollable =\n contentContainerRef.current.scrollHeight > contentContainerRef.current.clientHeight;\n const hasScroll = isScrollable && !checkIsScrolledToBottom(contentContainerRef.current);\n bottomDividerVisibleRef.current = hasScroll;\n bottomDividerContainerRef.current?.classList.toggle(\n styles.dividerContainerHidden,\n !bottomDividerVisibleRef.current\n );\n updateHeaderDimensions();\n recalcContentOverlayPosition();\n })\n );\n observer.observe(contentContainerRef.current);\n return () => observer.disconnect();\n }\n\n return undefined;\n }, [updateHeaderDimensions, recalcContentOverlayPosition]);\n\n useLayoutEffect(() => {\n updateHeaderDimensions();\n recalcContentOverlayPosition();\n if (!options && (headerImageUrl || headerImage)) {\n topDividerContainerRef.current?.classList.toggle(styles.dividerContainerHidden, true);\n }\n }, [headerImageUrl, headerImage, updateHeaderDimensions, recalcContentOverlayPosition, options]);\n\n const handleScroll = () => {\n if (!contentContainerRef.current) {\n return;\n }\n\n bottomDividerVisibleRef.current = !checkIsScrolledToBottom(contentContainerRef.current);\n bottomDividerContainerRef.current?.classList.toggle(\n styles.dividerContainerHidden,\n !bottomDividerVisibleRef.current\n );\n topDividerContainerRef.current?.classList.toggle(styles.dividerContainerHidden, !isTopDividerVisible());\n if (hasHeaderImageRef.current) {\n shrinkByDelta(\n headerImageContainerRef.current,\n headerWrapperRef.current,\n minHeaderHeightRef.current,\n headerHeightRef.current,\n contentContainerRef.current.scrollTop\n );\n }\n };\n\n const { hasVerticalScroll, verticalScrollbarProps, ...scrollbar } = useScrollbar({ axis: 'vertical' });\n const contentContainerRefCallback = useMultipleRefs(contentContainerRef, scrollbar.scrollContainerRef);\n const stickyContainerRefCallback = useMultipleRefs(stickyContainerRef, scrollbar.contentWrapperRef);\n\n return (\n <>\n <div\n className={classnames(styles.modalContentWrapper, {\n [styles.modalContentWrapperOneLine]: onlyActions,\n })}\n >\n <ModalHeader\n {...modalHeaderProps}\n headerHeight={headerHeightRef.current}\n labelId={labelId}\n wrapperRef={headerWrapperRef}\n ref={headerImageContainerRef}\n />\n <div\n className={classnames(styles.dividerContainer, {\n [styles.dividerContainerHidden]: !isTopDividerVisible(),\n })}\n ref={topDividerContainerRef}\n >\n <Divider />\n </div>\n\n <div className={classnames(styles.modalContent, scrollbar.hoverContainerCssClass)}>\n <ContentOverlayRoot ref={contentOverlayRef}>\n {isTreeSelectorChild ? (\n <div className={styles.treeSelectorContainer}>{children}</div>\n ) : (\n <>\n <div\n className={classnames(styles.modalScrollContainer)}\n ref={contentContainerRefCallback}\n onScroll={handleScroll}\n data-qa=\"modal-content-scroll-container\"\n >\n <div\n className={classnames(styles.contentStickyContainer)}\n ref={stickyContainerRefCallback}\n >\n <TextAreaGrowLimiter\n {...growLimiterContextValue}\n className={styles.growLimiter}\n >\n {children}\n </TextAreaGrowLimiter>\n </div>\n <div ref={spacePreserverRef} />\n </div>\n {hasVerticalScroll && <Scrollbar {...verticalScrollbarProps} />}\n </>\n )}\n </ContentOverlayRoot>\n </div>\n </div>\n {showDivider && (\n <div\n className={classnames(styles.dividerContainer, {\n [styles.dividerContainerHidden]: !bottomDividerVisibleRef.current,\n })}\n ref={bottomDividerContainerRef}\n >\n <Divider />\n </div>\n )}\n </>\n );\n};\n"],"names":["_jsxs","_Fragment","_jsx"],"mappings":"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"}
@@ -4,11 +4,12 @@ import 'react';
4
4
  import 'classnames';
5
5
  import '@hh.ru/magritte-common-func-utils';
6
6
  import '@hh.ru/magritte-common-use-multiple-refs';
7
+ import '@hh.ru/magritte-ui-content-overlay';
7
8
  import '@hh.ru/magritte-ui-divider';
8
9
  import './ModalHeader.js';
9
10
  import '@hh.ru/magritte-ui-scrollbar';
10
11
  import '@hh.ru/magritte-ui-textarea';
11
- export { M as ModalContentWithHeader } from './ModalContentWithHeader-CEfPPenv.js';
12
+ export { M as ModalContentWithHeader } from './ModalContentWithHeader-B1NgCeR0.js';
12
13
  import '@hh.ru/magritte-ui-icon';
13
14
  import '@hh.ru/magritte-ui-title';
14
15
  //# sourceMappingURL=ModalContentWithHeader.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ModalContentWithHeader.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;"}
1
+ {"version":3,"file":"ModalContentWithHeader.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;"}
package/ModalHeader.js CHANGED
@@ -5,7 +5,7 @@ import classnames from 'classnames';
5
5
  import { isIconElement } from '@hh.ru/magritte-ui-icon';
6
6
  import { Title } from '@hh.ru/magritte-ui-title';
7
7
 
8
- var styles = {"content":"magritte-content___o6ktq_9-2-10","options":"magritte-options___qfErQ_9-2-10","actions":"magritte-actions___nQILV_9-2-10","actions-with-link":"magritte-actions-with-link___hnDux_9-2-10","actionsWithLink":"magritte-actions-with-link___hnDux_9-2-10","content-with-image":"magritte-content-with-image___YarBO_9-2-10","contentWithImage":"magritte-content-with-image___YarBO_9-2-10","actions-single":"magritte-actions-single___usfKu_9-2-10","actionsSingle":"magritte-actions-single___usfKu_9-2-10","image-container":"magritte-image-container___ioL3y_9-2-10","imageContainer":"magritte-image-container___ioL3y_9-2-10","title-wrapper":"magritte-title-wrapper___O--QR_9-2-10","titleWrapper":"magritte-title-wrapper___O--QR_9-2-10","wrapper":"magritte-wrapper___zH8vB_9-2-10","only-actions":"magritte-only-actions___ZC4jx_9-2-10","onlyActions":"magritte-only-actions___ZC4jx_9-2-10"};
8
+ var styles = {"content":"magritte-content___o6ktq_9-3-0","options":"magritte-options___qfErQ_9-3-0","actions":"magritte-actions___nQILV_9-3-0","actions-with-link":"magritte-actions-with-link___hnDux_9-3-0","actionsWithLink":"magritte-actions-with-link___hnDux_9-3-0","content-with-image":"magritte-content-with-image___YarBO_9-3-0","contentWithImage":"magritte-content-with-image___YarBO_9-3-0","actions-single":"magritte-actions-single___usfKu_9-3-0","actionsSingle":"magritte-actions-single___usfKu_9-3-0","image-container":"magritte-image-container___ioL3y_9-3-0","imageContainer":"magritte-image-container___ioL3y_9-3-0","title-wrapper":"magritte-title-wrapper___O--QR_9-3-0","titleWrapper":"magritte-title-wrapper___O--QR_9-3-0","wrapper":"magritte-wrapper___zH8vB_9-3-0","only-actions":"magritte-only-actions___ZC4jx_9-3-0","onlyActions":"magritte-only-actions___ZC4jx_9-3-0"};
9
9
 
10
10
  const ModalHeader = forwardRef(({ title, headerImageUrl, headerImage, headerHeight, titleAlignment, titleElement, titleMaxLines, titleSize, titleDescription, titleDescriptionMaxLines, titleStyle, titleDescriptionStyle, options, actions: _actions, actionLink, labelId, wrapperRef, }, ref) => {
11
11
  const actions = Array.isArray(_actions) ? _actions.slice(0, 5) : _actions;
package/index.css CHANGED
@@ -2,14 +2,14 @@
2
2
  --magritte-color-component-modal-background-action-v23-2-3:#20262b99;
3
3
  --magritte-gradient-component-modal-background-fade-v23-2-3:linear-gradient(180deg, #00000000 0%, #0000007a 100%);
4
4
  }
5
- .magritte-content___o6ktq_9-2-10{
5
+ .magritte-content___o6ktq_9-3-0{
6
6
  display:flex;
7
7
  align-items:flex-start;
8
8
  }
9
- .magritte-content___o6ktq_9-2-10 + .magritte-options___qfErQ_9-2-10{
9
+ .magritte-content___o6ktq_9-3-0 + .magritte-options___qfErQ_9-3-0{
10
10
  margin-top:24px;
11
11
  }
12
- .magritte-actions___nQILV_9-2-10{
12
+ .magritte-actions___nQILV_9-3-0{
13
13
  position:relative;
14
14
  z-index:1;
15
15
  display:flex;
@@ -18,10 +18,10 @@
18
18
  margin-left:auto;
19
19
  --magritte-ui-link-padding-override:9px;
20
20
  }
21
- .magritte-actions-with-link___hnDux_9-2-10{
21
+ .magritte-actions-with-link___hnDux_9-3-0{
22
22
  padding:0 8px 0 28px;
23
23
  }
24
- .magritte-content-with-image___YarBO_9-2-10{
24
+ .magritte-content-with-image___YarBO_9-3-0{
25
25
  position:relative;
26
26
  flex-direction:column;
27
27
  justify-content:flex-end;
@@ -31,22 +31,22 @@
31
31
  padding:12px 24px 24px;
32
32
  box-sizing:border-box;
33
33
  }
34
- .magritte-content-with-image___YarBO_9-2-10 .magritte-actions___nQILV_9-2-10{
34
+ .magritte-content-with-image___YarBO_9-3-0 .magritte-actions___nQILV_9-3-0{
35
35
  order:-1;
36
36
  gap:0;
37
37
  margin-right:-16px;
38
38
  margin-top:-4px;
39
39
  margin-bottom:auto;
40
40
  }
41
- .magritte-content-with-image___YarBO_9-2-10 .magritte-actions___nQILV_9-2-10:not(.magritte-actions-with-link___hnDux_9-2-10){
41
+ .magritte-content-with-image___YarBO_9-3-0 .magritte-actions___nQILV_9-3-0:not(.magritte-actions-with-link___hnDux_9-3-0){
42
42
  padding:0 4px;
43
43
  background-color:var(--magritte-color-component-modal-background-action-v23-2-3);
44
44
  border-radius:12px;
45
45
  }
46
- .magritte-content-with-image___YarBO_9-2-10 .magritte-actions___nQILV_9-2-10.magritte-actions-single___usfKu_9-2-10:not(.magritte-actions-with-link___hnDux_9-2-10){
46
+ .magritte-content-with-image___YarBO_9-3-0 .magritte-actions___nQILV_9-3-0.magritte-actions-single___usfKu_9-3-0:not(.magritte-actions-with-link___hnDux_9-3-0){
47
47
  padding:0;
48
48
  }
49
- .magritte-image-container___ioL3y_9-2-10{
49
+ .magritte-image-container___ioL3y_9-3-0{
50
50
  position:absolute;
51
51
  left:0;
52
52
  bottom:0;
@@ -54,17 +54,17 @@
54
54
  background-size:cover;
55
55
  --modal-header-gradient:var(--magritte-gradient-component-modal-background-fade-v23-2-3);
56
56
  }
57
- .magritte-title-wrapper___O--QR_9-2-10{
57
+ .magritte-title-wrapper___O--QR_9-3-0{
58
58
  position:relative;
59
59
  width:100%;
60
60
  }
61
- .magritte-wrapper___zH8vB_9-2-10{
61
+ .magritte-wrapper___zH8vB_9-3-0{
62
62
  margin-bottom:24px;
63
63
  }
64
- .magritte-only-actions___ZC4jx_9-2-10 .magritte-actions___nQILV_9-2-10{
64
+ .magritte-only-actions___ZC4jx_9-3-0 .magritte-actions___nQILV_9-3-0{
65
65
  padding-left:0;
66
66
  }
67
- .magritte-only-actions___ZC4jx_9-2-10 .magritte-actions-with-link___hnDux_9-2-10{
67
+ .magritte-only-actions___ZC4jx_9-3-0 .magritte-actions-with-link___hnDux_9-3-0{
68
68
  padding-left:12px;
69
69
  }
70
70
 
@@ -83,7 +83,7 @@
83
83
  .magritte-night-theme{
84
84
  --magritte-color-component-modal-background-content-v23-2-3:#1B1B1B;
85
85
  }
86
- .magritte-modal-overlay___lK22l_9-2-10{
86
+ .magritte-modal-overlay___lK22l_9-3-0{
87
87
  position:fixed;
88
88
  top:0;
89
89
  right:0;
@@ -97,13 +97,13 @@
97
97
  user-select:text;
98
98
  transition-property:opacity, transform;
99
99
  }
100
- .magritte-overlay-left___JtHK4_9-2-10{
100
+ .magritte-overlay-left___JtHK4_9-3-0{
101
101
  justify-content:flex-start;
102
102
  }
103
- .magritte-overlay-right___uKTDt_9-2-10{
103
+ .magritte-overlay-right___uKTDt_9-3-0{
104
104
  justify-content:flex-end;
105
105
  }
106
- .magritte-modal___RAW6S_9-2-10{
106
+ .magritte-modal___RAW6S_9-3-0{
107
107
  display:flex;
108
108
  box-sizing:border-box;
109
109
  margin:0 12px;
@@ -119,30 +119,30 @@
119
119
  transition-property:opacity, transform;
120
120
  container-type:inline-size;
121
121
  }
122
- .magritte-modal___RAW6S_9-2-10.magritte-size-small___2JTM2_9-2-10{
122
+ .magritte-modal___RAW6S_9-3-0.magritte-size-small___2JTM2_9-3-0{
123
123
  width:480px;
124
124
  }
125
- .magritte-modal___RAW6S_9-2-10.magritte-size-medium___cWCe7_9-2-10{
125
+ .magritte-modal___RAW6S_9-3-0.magritte-size-medium___cWCe7_9-3-0{
126
126
  width:620px;
127
127
  }
128
- .magritte-no-vertical-paddings___Z3-oM_9-2-10{
128
+ .magritte-no-vertical-paddings___Z3-oM_9-3-0{
129
129
  padding-top:0;
130
130
  padding-bottom:0;
131
131
  }
132
- .magritte-no-horizontal-paddings___aT95Y_9-2-10{
132
+ .magritte-no-horizontal-paddings___aT95Y_9-3-0{
133
133
  padding-left:0;
134
134
  padding-right:0;
135
135
  }
136
- .magritte-modal-full-height___gIM4E_9-2-10{
136
+ .magritte-modal-full-height___gIM4E_9-3-0{
137
137
  height:100%;
138
138
  }
139
- .magritte-modal-content-wrapper___23XFT_9-2-10{
139
+ .magritte-modal-content-wrapper___23XFT_9-3-0{
140
140
  display:flex;
141
141
  flex-direction:column;
142
142
  min-height:0;
143
143
  flex:1 1;
144
144
  }
145
- .magritte-modal-content___46QFS_9-2-10{
145
+ .magritte-modal-content___46QFS_9-3-0{
146
146
  position:relative;
147
147
  display:flex;
148
148
  flex-direction:column;
@@ -153,233 +153,235 @@
153
153
  width:calc(100% + 24px);
154
154
  width:calc(100cqw + 24px);
155
155
  }
156
- .magritte-modal-scroll-container___Tf8Ns_9-2-10{
156
+ .magritte-modal-scroll-container___Tf8Ns_9-3-0{
157
+ display:flex;
158
+ flex-direction:column;
157
159
  flex:1 1;
158
160
  min-height:0;
159
161
  overflow-y:auto;
160
162
  overscroll-behavior:none;
161
163
  scrollbar-width:none;
162
164
  }
163
- .magritte-modal-scroll-container___Tf8Ns_9-2-10::-webkit-scrollbar{
165
+ .magritte-modal-scroll-container___Tf8Ns_9-3-0::-webkit-scrollbar{
164
166
  display:none;
165
167
  }
166
- .magritte-modal-content-wrapper__one-line___tYg8d_9-2-10{
168
+ .magritte-modal-content-wrapper__one-line___tYg8d_9-3-0{
167
169
  flex-direction:row-reverse;
168
170
  }
169
- .magritte-modal-content-wrapper__one-line___tYg8d_9-2-10 .magritte-modal-content___46QFS_9-2-10{
171
+ .magritte-modal-content-wrapper__one-line___tYg8d_9-3-0 .magritte-modal-content___46QFS_9-3-0{
170
172
  width:auto;
171
173
  container-type:inline-size;
172
174
  margin-right:0;
173
175
  }
174
- .magritte-modal-content-wrapper__one-line___tYg8d_9-2-10 .magritte-content-sticky-container___nqEXj_9-2-10{
176
+ .magritte-modal-content-wrapper__one-line___tYg8d_9-3-0 .magritte-content-sticky-container___nqEXj_9-3-0{
175
177
  max-width:calc(100% - 16px);
176
178
  max-width:calc(100cqw - 16px);
177
179
  }
178
- .magritte-divider-container___qP3VK_9-2-10{
180
+ .magritte-divider-container___qP3VK_9-3-0{
179
181
  margin:0 -24px;
180
182
  }
181
- .magritte-divider-container___qP3VK_9-2-10.magritte-divider-container-hidden___EIxB-_9-2-10{
183
+ .magritte-divider-container___qP3VK_9-3-0.magritte-divider-container-hidden___EIxB-_9-3-0{
182
184
  display:none;
183
185
  }
184
- .magritte-modal-footer___8xPqQ_9-2-10{
186
+ .magritte-modal-footer___8xPqQ_9-3-0{
185
187
  margin:0 -24px -24px;
186
188
  background-color:var(--magritte-color-component-modal-background-content-v23-2-3);
187
189
  z-index:1;
188
190
  --magritte-ui-action-bar-background-color-override:var(--magritte-color-component-modal-background-content-v23-2-3);
189
191
  }
190
- .magritte-modal-buttons-container___1O1Nr_9-2-10{
192
+ .magritte-modal-buttons-container___1O1Nr_9-3-0{
191
193
  display:flex;
192
194
  gap:12px;
193
195
  }
194
- .magritte-animation-timeout___w-j7K_9-2-10{
196
+ .magritte-animation-timeout___w-j7K_9-3-0{
195
197
  --enter-animation-duration:0;
196
198
  --exit-animation-duration:0;
197
199
  }
198
200
  @media (prefers-reduced-motion: no-preference){
199
- .magritte-animation-timeout___w-j7K_9-2-10{
201
+ .magritte-animation-timeout___w-j7K_9-3-0{
200
202
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
201
203
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
202
204
  }
203
205
  }
204
- .magritte-animation-enter-center___7jogC_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
206
+ .magritte-animation-enter-center___7jogC_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
205
207
  opacity:0;
206
208
  }
207
- .magritte-animation-enter-center___7jogC_9-2-10 .magritte-modal___RAW6S_9-2-10{
209
+ .magritte-animation-enter-center___7jogC_9-3-0 .magritte-modal___RAW6S_9-3-0{
208
210
  opacity:0;
209
211
  transform:scale(0.96);
210
212
  }
211
- .magritte-animation-enter-center-active___fywwW_9-2-10{
213
+ .magritte-animation-enter-center-active___fywwW_9-3-0{
212
214
  --enter-animation-duration:0;
213
215
  --exit-animation-duration:0;
214
216
  }
215
217
  @media (prefers-reduced-motion: no-preference){
216
- .magritte-animation-enter-center-active___fywwW_9-2-10{
218
+ .magritte-animation-enter-center-active___fywwW_9-3-0{
217
219
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
218
220
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
219
221
  }
220
222
  }
221
- .magritte-animation-enter-center-active___fywwW_9-2-10 .magritte-modal___RAW6S_9-2-10,
222
- .magritte-animation-enter-center-active___fywwW_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
223
+ .magritte-animation-enter-center-active___fywwW_9-3-0 .magritte-modal___RAW6S_9-3-0,
224
+ .magritte-animation-enter-center-active___fywwW_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
223
225
  opacity:1;
224
226
  transition-duration:var(--enter-animation-duration);
225
227
  transition-timing-function:var(--magritte-semantic-animation-ease-in-out-300-timing-function-v23-2-3);
226
228
  transform:scale(1);
227
229
  }
228
- .magritte-animation-exit-center___3Fa6x_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
230
+ .magritte-animation-exit-center___3Fa6x_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
229
231
  opacity:1;
230
232
  }
231
- .magritte-animation-exit-center___3Fa6x_9-2-10 .magritte-modal___RAW6S_9-2-10{
233
+ .magritte-animation-exit-center___3Fa6x_9-3-0 .magritte-modal___RAW6S_9-3-0{
232
234
  opacity:1;
233
235
  transform:scale(1);
234
236
  }
235
- .magritte-animation-exit-center-active___tY0UA_9-2-10{
237
+ .magritte-animation-exit-center-active___tY0UA_9-3-0{
236
238
  --enter-animation-duration:0;
237
239
  --exit-animation-duration:0;
238
240
  }
239
241
  @media (prefers-reduced-motion: no-preference){
240
- .magritte-animation-exit-center-active___tY0UA_9-2-10{
242
+ .magritte-animation-exit-center-active___tY0UA_9-3-0{
241
243
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
242
244
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
243
245
  }
244
246
  }
245
- .magritte-animation-exit-center-active___tY0UA_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
247
+ .magritte-animation-exit-center-active___tY0UA_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
246
248
  opacity:0;
247
249
  }
248
- .magritte-animation-exit-center-active___tY0UA_9-2-10 .magritte-modal___RAW6S_9-2-10{
250
+ .magritte-animation-exit-center-active___tY0UA_9-3-0 .magritte-modal___RAW6S_9-3-0{
249
251
  opacity:0;
250
252
  transform:scale(0.96);
251
253
  }
252
- .magritte-animation-exit-center-active___tY0UA_9-2-10 .magritte-modal___RAW6S_9-2-10,
253
- .magritte-animation-exit-center-active___tY0UA_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
254
+ .magritte-animation-exit-center-active___tY0UA_9-3-0 .magritte-modal___RAW6S_9-3-0,
255
+ .magritte-animation-exit-center-active___tY0UA_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
254
256
  transition-duration:var(--exit-animation-duration);
255
257
  transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v23-2-3);
256
258
  }
257
- .magritte-animation-enter-left___5YB8B_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
259
+ .magritte-animation-enter-left___5YB8B_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
258
260
  opacity:0;
259
261
  }
260
- .magritte-animation-enter-left___5YB8B_9-2-10 .magritte-modal___RAW6S_9-2-10{
262
+ .magritte-animation-enter-left___5YB8B_9-3-0 .magritte-modal___RAW6S_9-3-0{
261
263
  opacity:0;
262
264
  transform:translateX(-100%);
263
265
  }
264
- .magritte-animation-enter-left-active___5GK8s_9-2-10{
266
+ .magritte-animation-enter-left-active___5GK8s_9-3-0{
265
267
  --enter-animation-duration:0;
266
268
  --exit-animation-duration:0;
267
269
  }
268
270
  @media (prefers-reduced-motion: no-preference){
269
- .magritte-animation-enter-left-active___5GK8s_9-2-10{
271
+ .magritte-animation-enter-left-active___5GK8s_9-3-0{
270
272
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
271
273
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
272
274
  }
273
275
  }
274
- .magritte-animation-enter-left-active___5GK8s_9-2-10 .magritte-modal___RAW6S_9-2-10,
275
- .magritte-animation-enter-left-active___5GK8s_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
276
+ .magritte-animation-enter-left-active___5GK8s_9-3-0 .magritte-modal___RAW6S_9-3-0,
277
+ .magritte-animation-enter-left-active___5GK8s_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
276
278
  opacity:1;
277
279
  transition-duration:var(--enter-animation-duration);
278
280
  transition-timing-function:var(--magritte-semantic-animation-ease-in-out-300-timing-function-v23-2-3);
279
281
  transform:translateX(0);
280
282
  }
281
- .magritte-animation-exit-left___OnkQE_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
283
+ .magritte-animation-exit-left___OnkQE_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
282
284
  opacity:1;
283
285
  }
284
- .magritte-animation-exit-left___OnkQE_9-2-10 .magritte-modal___RAW6S_9-2-10{
286
+ .magritte-animation-exit-left___OnkQE_9-3-0 .magritte-modal___RAW6S_9-3-0{
285
287
  opacity:1;
286
288
  transform:translateX(0);
287
289
  }
288
- .magritte-animation-exit-left-active___AEGxY_9-2-10{
290
+ .magritte-animation-exit-left-active___AEGxY_9-3-0{
289
291
  --enter-animation-duration:0;
290
292
  --exit-animation-duration:0;
291
293
  }
292
294
  @media (prefers-reduced-motion: no-preference){
293
- .magritte-animation-exit-left-active___AEGxY_9-2-10{
295
+ .magritte-animation-exit-left-active___AEGxY_9-3-0{
294
296
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
295
297
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
296
298
  }
297
299
  }
298
- .magritte-animation-exit-left-active___AEGxY_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
300
+ .magritte-animation-exit-left-active___AEGxY_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
299
301
  opacity:0;
300
302
  }
301
- .magritte-animation-exit-left-active___AEGxY_9-2-10 .magritte-modal___RAW6S_9-2-10{
303
+ .magritte-animation-exit-left-active___AEGxY_9-3-0 .magritte-modal___RAW6S_9-3-0{
302
304
  opacity:0;
303
305
  transform:translateX(-100%);
304
306
  }
305
- .magritte-animation-exit-left-active___AEGxY_9-2-10 .magritte-modal___RAW6S_9-2-10,
306
- .magritte-animation-exit-left-active___AEGxY_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
307
+ .magritte-animation-exit-left-active___AEGxY_9-3-0 .magritte-modal___RAW6S_9-3-0,
308
+ .magritte-animation-exit-left-active___AEGxY_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
307
309
  transition-duration:var(--exit-animation-duration);
308
310
  transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v23-2-3);
309
311
  }
310
- .magritte-animation-enter-right___2aXOm_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
312
+ .magritte-animation-enter-right___2aXOm_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
311
313
  opacity:0;
312
314
  }
313
- .magritte-animation-enter-right___2aXOm_9-2-10 .magritte-modal___RAW6S_9-2-10{
315
+ .magritte-animation-enter-right___2aXOm_9-3-0 .magritte-modal___RAW6S_9-3-0{
314
316
  opacity:0;
315
317
  transform:translateX(100%);
316
318
  }
317
- .magritte-animation-enter-right-active___8wX4-_9-2-10{
319
+ .magritte-animation-enter-right-active___8wX4-_9-3-0{
318
320
  --enter-animation-duration:0;
319
321
  --exit-animation-duration:0;
320
322
  }
321
323
  @media (prefers-reduced-motion: no-preference){
322
- .magritte-animation-enter-right-active___8wX4-_9-2-10{
324
+ .magritte-animation-enter-right-active___8wX4-_9-3-0{
323
325
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
324
326
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
325
327
  }
326
328
  }
327
- .magritte-animation-enter-right-active___8wX4-_9-2-10 .magritte-modal___RAW6S_9-2-10,
328
- .magritte-animation-enter-right-active___8wX4-_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
329
+ .magritte-animation-enter-right-active___8wX4-_9-3-0 .magritte-modal___RAW6S_9-3-0,
330
+ .magritte-animation-enter-right-active___8wX4-_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
329
331
  opacity:1;
330
332
  transition-duration:var(--enter-animation-duration);
331
333
  transition-timing-function:var(--magritte-semantic-animation-ease-in-out-300-timing-function-v23-2-3);
332
334
  transform:translateX(0);
333
335
  }
334
- .magritte-animation-exit-right___iczoc_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
336
+ .magritte-animation-exit-right___iczoc_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
335
337
  opacity:1;
336
338
  }
337
- .magritte-animation-exit-right___iczoc_9-2-10 .magritte-modal___RAW6S_9-2-10{
339
+ .magritte-animation-exit-right___iczoc_9-3-0 .magritte-modal___RAW6S_9-3-0{
338
340
  opacity:1;
339
341
  transform:translateX(0);
340
342
  }
341
- .magritte-animation-exit-right-active___eFS4O_9-2-10{
343
+ .magritte-animation-exit-right-active___eFS4O_9-3-0{
342
344
  --enter-animation-duration:0;
343
345
  --exit-animation-duration:0;
344
346
  }
345
347
  @media (prefers-reduced-motion: no-preference){
346
- .magritte-animation-exit-right-active___eFS4O_9-2-10{
348
+ .magritte-animation-exit-right-active___eFS4O_9-3-0{
347
349
  --enter-animation-duration:var(--magritte-semantic-animation-ease-in-out-300-duration-v23-2-3);
348
350
  --exit-animation-duration:var(--magritte-semantic-animation-ease-in-out-200-duration-v23-2-3);
349
351
  }
350
352
  }
351
- .magritte-animation-exit-right-active___eFS4O_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
353
+ .magritte-animation-exit-right-active___eFS4O_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
352
354
  opacity:0;
353
355
  }
354
- .magritte-animation-exit-right-active___eFS4O_9-2-10 .magritte-modal___RAW6S_9-2-10{
356
+ .magritte-animation-exit-right-active___eFS4O_9-3-0 .magritte-modal___RAW6S_9-3-0{
355
357
  opacity:0;
356
358
  transform:translateX(100%);
357
359
  }
358
- .magritte-animation-exit-right-active___eFS4O_9-2-10 .magritte-modal___RAW6S_9-2-10,
359
- .magritte-animation-exit-right-active___eFS4O_9-2-10.magritte-modal-overlay___lK22l_9-2-10{
360
+ .magritte-animation-exit-right-active___eFS4O_9-3-0 .magritte-modal___RAW6S_9-3-0,
361
+ .magritte-animation-exit-right-active___eFS4O_9-3-0.magritte-modal-overlay___lK22l_9-3-0{
360
362
  transition-duration:var(--exit-animation-duration);
361
363
  transition-timing-function:var(--magritte-semantic-animation-ease-in-out-200-timing-function-v23-2-3);
362
364
  }
363
- .magritte-content-scroll-preserver___Tw5Px_9-2-10{
365
+ .magritte-content-scroll-preserver___Tw5Px_9-3-0{
364
366
  width:100%;
365
367
  height:0;
366
368
  }
367
- .magritte-tree-selector-container___fdhI-_9-2-10{
369
+ .magritte-tree-selector-container___fdhI-_9-3-0{
368
370
  height:100%;
369
371
  max-width:calc(100% - 24px);
370
372
  max-width:100cqw;
371
373
  --magritte-ui-scrollbar-offset-right:-24px;
372
374
  }
373
- .magritte-content-sticky-container___nqEXj_9-2-10{
375
+ .magritte-content-sticky-container___nqEXj_9-3-0{
374
376
  display:flex;
375
377
  flex-direction:column;
376
378
  position:sticky;
377
379
  top:0;
378
380
  min-height:100%;
379
- height:100%;
381
+ flex:1 0 auto;
380
382
  max-width:calc(100% - 24px);
381
383
  max-width:100cqw;
382
384
  }
383
- .magritte-grow-limiter___zeIwy_9-2-10{
385
+ .magritte-grow-limiter___zeIwy_9-3-0{
384
386
  flex:1 0;
385
387
  }
package/index.js CHANGED
@@ -13,8 +13,9 @@ import '@hh.ru/magritte-common-use-no-bubbling';
13
13
  import '@hh.ru/magritte-ui-action-bar';
14
14
  import '@hh.ru/magritte-ui-breakpoint';
15
15
  import '@hh.ru/magritte-ui-layer';
16
- import './ModalContentWithHeader-CEfPPenv.js';
16
+ import './ModalContentWithHeader-B1NgCeR0.js';
17
17
  import '@hh.ru/magritte-common-func-utils';
18
+ import '@hh.ru/magritte-ui-content-overlay';
18
19
  import '@hh.ru/magritte-ui-divider';
19
20
  import './ModalHeader.js';
20
21
  import '@hh.ru/magritte-ui-icon';
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hh.ru/magritte-ui-modal",
3
- "version": "9.2.10",
3
+ "version": "9.3.0",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "sideEffects": [
@@ -30,6 +30,7 @@
30
30
  "@hh.ru/magritte-internal-layer-name": "3.1.1",
31
31
  "@hh.ru/magritte-ui-action-bar": "5.0.13",
32
32
  "@hh.ru/magritte-ui-breakpoint": "6.0.1",
33
+ "@hh.ru/magritte-ui-content-overlay": "1.1.0",
33
34
  "@hh.ru/magritte-ui-divider": "3.0.7",
34
35
  "@hh.ru/magritte-ui-icon": "13.1.1",
35
36
  "@hh.ru/magritte-ui-layer": "3.0.5",
@@ -50,5 +51,5 @@
50
51
  "publishConfig": {
51
52
  "access": "public"
52
53
  },
53
- "gitHead": "90a91eaf0ef55ef0ae534be060b7bf4c27736f36"
54
+ "gitHead": "b20ca79252fa840d3d5fafb398e47efdfe3a00a9"
54
55
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"ModalContentWithHeader-CEfPPenv.js","sources":["../src/ModalContentWithHeader.tsx"],"sourcesContent":["import { FC, PropsWithChildren, useCallback, useLayoutEffect, useRef, useState } from 'react';\nimport classnames from 'classnames';\n\nimport { requestAnimation } from '@hh.ru/magritte-common-func-utils';\nimport { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';\nimport { Divider } from '@hh.ru/magritte-ui-divider';\nimport { ModalHeader } from '@hh.ru/magritte-ui-modal/ModalHeader';\nimport { ModalHeaderProps, ModalHeight } from '@hh.ru/magritte-ui-modal/types';\nimport { Scrollbar, useScrollbar } from '@hh.ru/magritte-ui-scrollbar';\nimport { TextAreaGrowLimiter } from '@hh.ru/magritte-ui-textarea';\n\nimport styles from './modal.less';\n\nconst checkIsScrolledToBottom = (el: HTMLElement) => {\n return Math.abs(el.scrollHeight - el.scrollTop - el.clientHeight) < 1;\n};\n\nconst clamp = (value: number, min: number, max: number) => Math.min(Math.max(value, min), max);\n\n// Минимальная высота до которой может сжаться хедер\nconst HEADER_SHRINK_MIN_HEIGHT = 148;\n// Минимальная высота отступа между хедером и контентом\nconst HEADER_MARGIN_MIN_HEIGHT = 12;\n// Максимальная высота отступа между хедером и контентом\nconst HEADER_MARGIN_MAX_HEIGHT = 24;\nconst HEADER_MARGIN_HEIGHT_DELTA = HEADER_MARGIN_MAX_HEIGHT - HEADER_MARGIN_MIN_HEIGHT;\n\n// Вычисляет минимальную высоту до которой может сжаться хедер с учетом высоты контента, чтобы не спровоцировать\n// изменение размера модалки\nconst calcHeaderShrinkLimit = (\n headerHeight: number,\n headerMaxHeight: number,\n contentHeight: number,\n contentScrollHeight: number,\n marginHeight: number\n) => {\n // Высота контента скрытого под скроллом когда хедер и марджин под ним имеет максимальную допустимую высоту\n const contentScrollDelta =\n contentScrollHeight - // Высота контента скрытого под скроллом в текущем состоянии\n contentHeight + // Высота контейнера содержащего контент\n (HEADER_MARGIN_MAX_HEIGHT - marginHeight) + // Дельта между текущей высотой марджина и максимальной допустимой\n (headerMaxHeight - headerHeight); // Дельта между текущей высотой хедера и максимальной допустимой\n\n const headerShrinkMinHeight = headerMaxHeight - (contentScrollDelta - HEADER_MARGIN_HEIGHT_DELTA);\n\n return Math.max(headerShrinkMinHeight, HEADER_SHRINK_MIN_HEIGHT);\n};\n\nconst shrinkByDelta = (\n headerImageContainer: HTMLDivElement | null,\n headerWrapper: HTMLDivElement | null,\n headerMinHeight: number,\n headerMaxHeight: number,\n scrollDeltaY: number\n) => {\n if (!headerImageContainer || !headerWrapper) {\n return;\n }\n\n const marginHeight = clamp(\n HEADER_MARGIN_MAX_HEIGHT - scrollDeltaY,\n HEADER_MARGIN_MIN_HEIGHT,\n HEADER_MARGIN_MAX_HEIGHT\n );\n headerWrapper.style.marginBottom = `${marginHeight}px`;\n\n const headerHeight = clamp(\n // Тут прибаляем дельту марджина потому что сначала должен сжаться отступ\n Math.floor(headerMaxHeight - scrollDeltaY + HEADER_MARGIN_HEIGHT_DELTA),\n headerMinHeight,\n headerMaxHeight\n );\n headerImageContainer.style.height = `${headerHeight}px`;\n};\n\nexport const ModalContentWithHeader: FC<\n PropsWithChildren<\n ModalHeaderProps & { labelId: string; isTreeSelectorChild: boolean; height?: ModalHeight; showDivider: boolean }\n >\n> = ({\n labelId,\n children,\n headerHeight: _headerHeight = 0,\n isTreeSelectorChild,\n height,\n showDivider = true,\n ...modalHeaderProps\n}) => {\n const { title, headerImageUrl, headerImage, actions, actionLink, options } = modalHeaderProps;\n\n const bottomDividerVisibleRef = useRef(false);\n const contentContainerRef = useRef<HTMLDivElement>(null);\n const headerImageContainerRef = useRef<HTMLDivElement>(null);\n const headerWrapperRef = useRef<HTMLDivElement>(null);\n const spacePreserverRef = useRef<HTMLDivElement>(null);\n const stickyContainerRef = useRef<HTMLDivElement>(null);\n const hasHeaderImageRef = useRef(!!headerImageUrl || !!headerImage);\n hasHeaderImageRef.current = !!headerImageUrl || !!headerImage;\n const headerHeightRef = useRef(0);\n headerHeightRef.current = hasHeaderImageRef.current ? Math.max(_headerHeight, 200) : 0;\n const minHeaderHeightRef = useRef(0);\n\n const bottomDividerContainerRef = useRef<HTMLDivElement>(null);\n const topDividerContainerRef = useRef<HTMLDivElement>(null);\n\n const withoutHeader = !title && !hasHeaderImageRef.current && !actions && !actionLink && !options;\n const onlyActions = !title && !hasHeaderImageRef.current && !options && (actions || actionLink);\n\n const [growLimiterContextValue, _] = useState(() => ({\n containerRef: contentContainerRef,\n }));\n\n const isTopDividerVisible = () => {\n if (!contentContainerRef.current) {\n return false;\n }\n\n const topDividerVisible = hasHeaderImageRef.current\n ? contentContainerRef.current.scrollTop >\n headerHeightRef.current - minHeaderHeightRef.current + HEADER_MARGIN_HEIGHT_DELTA\n : contentContainerRef.current.scrollTop !== 0;\n\n return topDividerVisible && (options || !hasHeaderImageRef.current) && !onlyActions && !withoutHeader;\n };\n\n const updateHeaderDimensions = useCallback(() => {\n if (\n !headerImageContainerRef.current ||\n !headerWrapperRef.current ||\n !stickyContainerRef.current ||\n !spacePreserverRef.current ||\n !contentContainerRef.current\n ) {\n return;\n }\n\n if (!hasHeaderImageRef.current) {\n spacePreserverRef.current.style.height = '0';\n return;\n }\n\n minHeaderHeightRef.current = calcHeaderShrinkLimit(\n headerImageContainerRef.current.clientHeight,\n headerHeightRef.current,\n contentContainerRef.current.clientHeight,\n stickyContainerRef.current.scrollHeight,\n parseInt(headerWrapperRef.current.style.marginBottom || '0', 10)\n );\n\n shrinkByDelta(\n headerImageContainerRef.current,\n headerWrapperRef.current,\n minHeaderHeightRef.current,\n headerHeightRef.current,\n contentContainerRef.current.scrollTop\n );\n const preserverSize = headerHeightRef.current - minHeaderHeightRef.current + HEADER_MARGIN_HEIGHT_DELTA;\n spacePreserverRef.current.style.height = `${preserverSize}px`;\n }, []);\n\n useLayoutEffect(() => {\n if (contentContainerRef.current) {\n const observer = new ResizeObserver(\n requestAnimation(() => {\n if (!contentContainerRef.current) {\n return;\n }\n const isScrollable =\n contentContainerRef.current.scrollHeight > contentContainerRef.current.clientHeight;\n const hasScroll = isScrollable && !checkIsScrolledToBottom(contentContainerRef.current);\n bottomDividerVisibleRef.current = hasScroll;\n bottomDividerContainerRef.current?.classList.toggle(\n styles.dividerContainerHidden,\n !bottomDividerVisibleRef.current\n );\n updateHeaderDimensions();\n })\n );\n observer.observe(contentContainerRef.current);\n return () => observer.disconnect();\n }\n\n return undefined;\n }, [updateHeaderDimensions]);\n\n useLayoutEffect(() => {\n updateHeaderDimensions();\n if (!options && (headerImageUrl || headerImage)) {\n topDividerContainerRef.current?.classList.toggle(styles.dividerContainerHidden, true);\n }\n }, [headerImageUrl, headerImage, updateHeaderDimensions, options]);\n\n const handleScroll = () => {\n if (!contentContainerRef.current) {\n return;\n }\n\n bottomDividerVisibleRef.current = !checkIsScrolledToBottom(contentContainerRef.current);\n bottomDividerContainerRef.current?.classList.toggle(\n styles.dividerContainerHidden,\n !bottomDividerVisibleRef.current\n );\n topDividerContainerRef.current?.classList.toggle(styles.dividerContainerHidden, !isTopDividerVisible());\n if (hasHeaderImageRef.current) {\n shrinkByDelta(\n headerImageContainerRef.current,\n headerWrapperRef.current,\n minHeaderHeightRef.current,\n headerHeightRef.current,\n contentContainerRef.current.scrollTop\n );\n }\n };\n\n const { hasVerticalScroll, verticalScrollbarProps, ...scrollbar } = useScrollbar({ axis: 'vertical' });\n const contentContainerRefCallback = useMultipleRefs(contentContainerRef, scrollbar.scrollContainerRef);\n const stickyContainerRefCallback = useMultipleRefs(stickyContainerRef, scrollbar.contentWrapperRef);\n\n return (\n <>\n <div\n className={classnames(styles.modalContentWrapper, {\n [styles.modalContentWrapperOneLine]: onlyActions,\n })}\n >\n <ModalHeader\n {...modalHeaderProps}\n headerHeight={headerHeightRef.current}\n labelId={labelId}\n wrapperRef={headerWrapperRef}\n ref={headerImageContainerRef}\n />\n <div\n className={classnames(styles.dividerContainer, {\n [styles.dividerContainerHidden]: !isTopDividerVisible(),\n })}\n ref={topDividerContainerRef}\n >\n <Divider />\n </div>\n <div className={classnames(styles.modalContent, scrollbar.hoverContainerCssClass)}>\n {isTreeSelectorChild ? (\n <div className={styles.treeSelectorContainer}>{children}</div>\n ) : (\n <>\n <div\n className={classnames(styles.modalScrollContainer)}\n ref={contentContainerRefCallback}\n onScroll={handleScroll}\n data-qa=\"modal-content-scroll-container\"\n >\n <div\n className={classnames(styles.contentStickyContainer)}\n ref={stickyContainerRefCallback}\n >\n <TextAreaGrowLimiter {...growLimiterContextValue} className={styles.growLimiter}>\n {children}\n </TextAreaGrowLimiter>\n </div>\n <div ref={spacePreserverRef} />\n </div>\n {hasVerticalScroll && <Scrollbar {...verticalScrollbarProps} />}\n </>\n )}\n </div>\n </div>\n {showDivider && (\n <div\n className={classnames(styles.dividerContainer, {\n [styles.dividerContainerHidden]: !bottomDividerVisibleRef.current,\n })}\n ref={bottomDividerContainerRef}\n >\n <Divider />\n </div>\n )}\n </>\n );\n};\n"],"names":["_jsxs","_Fragment","_jsx"],"mappings":"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"}