Middleware
Objects that change the positioning of the floating element, executed in order as a queue.
Middleware allow you to customize the behavior of the positioning and be as granular as you want, adding your own custom logic.
computePosition()
starts with initial positioning via
placement
— then middleware are executed as an
in-between “middle” step of the initial placement computation and
eventual return of data for rendering.
Each middleware is executed in order:
Example
This (not particularly useful) middleware adds 1
pixel to
the coordinates. To use this middleware, add it to your
middleware
array:
Here, computePosition()
will compute coordinates that will
place the floating element to the right
center of the
reference element, lying flush with it.
Middleware are then executed, resulting in these coordinates getting shifted by one pixel. Then that data is returned for rendering.
Shape
A middleware is an object that has a name
property and a
fn
property. The fn
property provides
the logic of the middleware, which returns new positioning
coordinates or useful data.
Data
Any data can be passed via an optional data
property of
the object that is returned from fn
. This will be
accessible to the consumer via the middlewareData
property:
Function
You may notice that Floating UI’s packaged middleware are actually functions. This is so you can pass options in, changing how the middleware behaves:
It returns an object and uses a closure to pass the configured behavior:
The options
key on a middleware object holds the
dependencies, allowing deep comparison reactivity.
Always return an object
Inside fn
make sure to return an object. It doesn’t
need to contain properties, but to remind you that it should be
pure, you must return an object. Never mutate any values that get
passed in from fn
.
MiddlewareState
An object is passed to fn
containing useful data
about the middleware lifecycle being executed.
In the previous examples, we destructured x
and
y
out of the fn
parameter object. These
are only two properties that get passed into middleware, but
there are many more.
The properties passed are below:
x
This is the x-axis coordinate to position the floating element to.
y
This is the y-axis coordinate to position the floating element to.
elements
This is an object containing the reference and floating elements.
rects
This is an object containing the Rect
s of the
reference and floating elements, an object of shape
{width, height, x, y}
.
middlewareData
This is an object containing all the data of any middleware at
the current step in the lifecycle. The lifecycle loops over the
middleware
array, so later middleware have access to
data from any middleware run prior.
strategy
The positioning strategy.
initialPlacement
The initial (or preferred) placement passed in to
computePosition()
.
placement
The stateful resultant placement. Middleware like
flip
change initialPlacement
to a new one.
platform
An object containing methods to make Floating UI work on the current platform, e.g. DOM or React Native.
Ordering
The order in which middleware are placed in the array matters, as middleware use the coordinates that were returned from previous ones. This means they perform their work based on the current positioning state.
Three shiftByOnePixel
in the middleware array means
the coordinates get shifted by 3 pixels in total:
If the later shiftByOnePixel
implementations had a condition
based on the current value of x
and y
, the
condition can change based on their placement in the array.
Understanding this can help in knowing which order to place middleware in, as placing a middleware before or after another can produce a different result.
In general, offset()
should always go at the beginning of
the middleware array, while arrow()
and hide()
at
the end. The other core middleware can be shifted around
depending on the desired behavior.
Resetting the lifecycle
There are use cases for needing to reset the middleware lifecycle so that other middleware perform fresh logic.
- When
flip()
andautoPlacement()
change the placement, they reset the lifecycle so that other middleware that modify the coordinates based on the currentplacement
do not perform stale logic. size()
resets the lifecycle with the newly applied dimensions, as many middleware read the dimensions to perform their logic.inline()
resets the lifecycle when it changes the reference rect to a custom implementation, similar to a Virtual Element.
In order to do this, add a reset
property to the
returned object from fn
.
Data supplied to middlewareData
is preserved by doing
this, so you can read it at any point after you’ve reset the
lifecycle.