Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion packages/core/src/Popper/PopperContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import type {
Side,
} from './utils'
import type { PrimitiveProps } from '@/Primitive'
import { createContext, useForwardExpose, useSize } from '@/shared'
import type { Direction } from '@/shared/types'
import { createContext, useDirection, useForwardExpose, useSize } from '@/shared'

export const PopperContentPropsDefaultValue = {
side: 'bottom' as Side,
Expand Down Expand Up @@ -173,6 +174,11 @@ export interface PopperContentProps extends PrimitiveProps {
* If provided, it will replace the default anchor element.
*/
reference?: ReferenceElement

/**
* The reading direction of the popper content when applicable. <br> If omitted, inherits globally from `ConfigProvider` or assumes LTR (left-to-right) reading mode.
*/
dir?: Direction
}

export interface PopperContentContext {
Expand Down Expand Up @@ -224,6 +230,7 @@ const emits = defineEmits<{

const rootContext = injectPopperRootContext()
const { forwardRef, currentElement: contentElement } = useForwardExpose()
const dir = useDirection(computed(() => props.dir))

const floatingRef = ref<HTMLElement>()

Expand Down Expand Up @@ -317,6 +324,7 @@ const computedMiddleware = computedEager(() => {
transformOrigin({
arrowWidth: arrowWidth.value,
arrowHeight: arrowHeight.value,
dir: dir.value,
}),
props.hideWhenDetached
&& hide({ strategy: 'referenceHidden', ...detectOverflowOptions.value }),
Expand Down
23 changes: 16 additions & 7 deletions packages/core/src/Popper/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export function isNotNull<T>(value: T | null): value is T {
export function transformOrigin(options: {
arrowWidth: number
arrowHeight: number
dir?: 'ltr' | 'rtl'
}): Middleware {
return {
name: 'transformOrigin',
Expand All @@ -26,9 +27,17 @@ export function transformOrigin(options: {
const arrowHeight = isArrowHidden ? 0 : options.arrowHeight

const [placedSide, placedAlign] = getSideAndAlignFromPlacement(placement)
const noArrowAlign = { start: '0%', center: '50%', end: '100%' }[
placedAlign
]
const noArrowAlignX = {
start: options.dir === 'rtl' ? '100%' : '0%',
center: '50%',
end: options.dir === 'rtl' ? '0%' : '100%',
}[placedAlign]

const noArrowAlignY = {
start: '0%',
center: '50%',
end: '100%',
}[placedAlign]

const arrowXCenter = (middlewareData.arrow?.x ?? 0) + arrowWidth / 2
const arrowYCenter = (middlewareData.arrow?.y ?? 0) + arrowHeight / 2
Expand All @@ -37,20 +46,20 @@ export function transformOrigin(options: {
let y = ''

if (placedSide === 'bottom') {
x = isArrowHidden ? noArrowAlign : `${arrowXCenter}px`
x = isArrowHidden ? noArrowAlignX : `${arrowXCenter}px`
y = `${-arrowHeight}px`
}
else if (placedSide === 'top') {
x = isArrowHidden ? noArrowAlign : `${arrowXCenter}px`
x = isArrowHidden ? noArrowAlignX : `${arrowXCenter}px`
y = `${rects.floating.height + arrowHeight}px`
}
else if (placedSide === 'right') {
x = `${-arrowHeight}px`
y = isArrowHidden ? noArrowAlign : `${arrowYCenter}px`
y = isArrowHidden ? noArrowAlignY : `${arrowYCenter}px`
}
else if (placedSide === 'left') {
x = `${rects.floating.width + arrowHeight}px`
y = isArrowHidden ? noArrowAlign : `${arrowYCenter}px`
y = isArrowHidden ? noArrowAlignY : `${arrowYCenter}px`
}
return { data: { x, y } }
},
Expand Down
Loading