mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
feat(console): toggle tip (#2319)
This commit is contained in:
parent
8787629b0a
commit
f2171653f5
2 changed files with 94 additions and 0 deletions
16
packages/console/src/components/ToggleTip/index.module.scss
Normal file
16
packages/console/src/components/ToggleTip/index.module.scss
Normal file
|
@ -0,0 +1,16 @@
|
|||
@use '@/scss/underscore' as _;
|
||||
|
||||
.content {
|
||||
box-shadow: var(--shadow-2);
|
||||
position: absolute;
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
||||
.overlay {
|
||||
background: transparent;
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
}
|
78
packages/console/src/components/ToggleTip/index.tsx
Normal file
78
packages/console/src/components/ToggleTip/index.tsx
Normal file
|
@ -0,0 +1,78 @@
|
|||
import type { HTMLProps, ReactNode, RefObject } from 'react';
|
||||
import { useRef } from 'react';
|
||||
import ReactModal from 'react-modal';
|
||||
|
||||
import type { HorizontalAlignment } from '@/hooks/use-position';
|
||||
import usePosition from '@/hooks/use-position';
|
||||
|
||||
import type { TipBubblePosition } from '../TipBubble';
|
||||
import TipBubble from '../TipBubble';
|
||||
import {
|
||||
getVerticalAlignment,
|
||||
getHorizontalAlignment,
|
||||
getVerticalOffset,
|
||||
getHorizontalOffset,
|
||||
} from '../TipBubble/utils';
|
||||
import * as styles from './index.module.scss';
|
||||
|
||||
type Props = HTMLProps<HTMLDivElement> & {
|
||||
children: ReactNode;
|
||||
isOpen: boolean;
|
||||
onClose: () => void;
|
||||
anchorRef: RefObject<HTMLElement>;
|
||||
position?: TipBubblePosition;
|
||||
horizontalAlign?: HorizontalAlignment;
|
||||
};
|
||||
|
||||
const ToggleTip = ({
|
||||
children,
|
||||
isOpen,
|
||||
onClose,
|
||||
anchorRef,
|
||||
position = 'top',
|
||||
horizontalAlign = 'start',
|
||||
}: Props) => {
|
||||
const overlayRef = useRef<HTMLDivElement>(null);
|
||||
|
||||
const {
|
||||
position: layoutPosition,
|
||||
positionState,
|
||||
mutate,
|
||||
} = usePosition({
|
||||
verticalAlign: getVerticalAlignment(position),
|
||||
horizontalAlign: getHorizontalAlignment(position, horizontalAlign),
|
||||
offset: {
|
||||
vertical: getVerticalOffset(position),
|
||||
horizontal: getHorizontalOffset(position, horizontalAlign),
|
||||
},
|
||||
anchorRef,
|
||||
overlayRef,
|
||||
});
|
||||
|
||||
return (
|
||||
<ReactModal
|
||||
shouldCloseOnOverlayClick
|
||||
shouldCloseOnEsc
|
||||
isOpen={isOpen}
|
||||
style={{
|
||||
content: {
|
||||
...layoutPosition,
|
||||
},
|
||||
}}
|
||||
className={styles.content}
|
||||
overlayClassName={styles.overlay}
|
||||
onRequestClose={onClose}
|
||||
onAfterOpen={mutate}
|
||||
>
|
||||
<TipBubble
|
||||
ref={overlayRef}
|
||||
position={position}
|
||||
horizontalAlignment={positionState.horizontalAlign}
|
||||
>
|
||||
{children}
|
||||
</TipBubble>
|
||||
</ReactModal>
|
||||
);
|
||||
};
|
||||
|
||||
export default ToggleTip;
|
Loading…
Add table
Reference in a new issue