Skip to content

Commit

Permalink
Expose the --button-width CSS variable on the PopoverPanel compon…
Browse files Browse the repository at this point in the history
…ent (#3058)
  • Loading branch information
RobinMalfait committed Mar 26, 2024
1 parent 056b311 commit bf4dc77
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
1 change: 1 addition & 0 deletions packages/@headlessui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Accept optional `strategy` for the `anchor` prop ([#3034](https://github.com/tailwindlabs/headlessui/pull/3034))
- Expose `--input-width` and `--button-width` CSS variables on the `ComboboxOptions` component ([#3057](https://github.com/tailwindlabs/headlessui/pull/3057))
- Expose the `--button-width` CSS variable on the `PopoverPanel` component ([#3058](https://github.com/tailwindlabs/headlessui/pull/3058))

## [2.0.0-alpha.4] - 2024-01-03

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ let act = _act as unknown as <T>(fn: () => T) => PromiseLike<T>

jest.mock('../../hooks/use-id')

// @ts-expect-error
global.ResizeObserver = class FakeResizeObserver {
observe() {}
disconnect() {}
}

afterAll(() => jest.restoreAllMocks())

function nextFrame() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import React, {
type Ref,
} from 'react'
import { useActivePress } from '../../hooks/use-active-press'
import { useElementSize } from '../../hooks/use-element-size'
import { useEvent } from '../../hooks/use-event'
import { useEventListener } from '../../hooks/use-event-listener'
import { useId } from '../../hooks/use-id'
Expand Down Expand Up @@ -913,7 +914,10 @@ function PanelFn<TTag extends ElementType = typeof DEFAULT_PANEL_TAG>(
}
: undefined,
tabIndex: -1,
...(style ? { style } : {}),
style: {
...style,
'--button-width': useElementSize(state.button, true).width,
} as React.CSSProperties,
})

let direction = useTabDirection()
Expand Down
11 changes: 7 additions & 4 deletions packages/@headlessui-react/src/hooks/use-element-size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ function computeSize(element: HTMLElement | null) {
return { width, height }
}

export function useElementSize(ref: React.MutableRefObject<HTMLElement | null>, unit = false) {
let [size, setSize] = useState(() => computeSize(ref.current))
export function useElementSize(
ref: React.MutableRefObject<HTMLElement | null> | HTMLElement | null,
unit = false
) {
let element = ref === null ? null : 'current' in ref ? ref.current : ref
let [size, setSize] = useState(() => computeSize(element))

useIsoMorphicEffect(() => {
let element = ref.current
if (!element) return

let observer = new ResizeObserver(() => {
Expand All @@ -23,7 +26,7 @@ export function useElementSize(ref: React.MutableRefObject<HTMLElement | null>,
return () => {
observer.disconnect()
}
}, [ref])
}, [element])

if (unit) {
return {
Expand Down

0 comments on commit bf4dc77

Please sign in to comment.