auto Placement
Chooses the placement that has the most space available automatically.
This is useful when you don’t know which placement will be best for the floating element, or don’t want to have to explicitly specify it.
Usage
Options
These are the options you can pass to autoPlacement()
.
crossAxis
default: false
Determines whether a “most space” strategy is also used for the
cross axis (which runs along the alignment of the floating
element). May be desirable when the allowedPlacements
are all on the same axis.
alignment
default: undefined
Without options, autoPlacement()
will choose any of the
Side
placements which fit best, i.e. 'top'
,
'right'
, 'bottom'
, or 'left'
.
By specifying an alignment, it will choose those aligned placements.
autoAlignment
default: true
When alignment
is specified, this describes whether to
automatically choose placements with the opposite alignment if
they fit better.
allowedPlacements
default: computed subset of allPlacements
Describes the placements which are allowed to be chosen.
…detectOverflowOptions
All of detectOverflow
’s options
can be passed. For instance:
Deriving options from state
You can derive the options from the middleware lifecycle state:
Final placement
The placement returned is always the final one.
Conflict with flip()
flip()
and autoPlacement()
cannot be used together
inside the same middleware array; make sure you choose only one
of them to use.
The reason is they both try to perform work on the placement but with opposing strategies. Therefore, they will continually try to change the result or work of the other one, leading to a reset loop.
flip()
uses a fallback “no space” strategy. Ensures the preferred placement is kept unless there is no space left.autoPlacement()
uses a primary “most space” strategy. Always chooses the placement with the most space available.