@fluentui/react-positioning 9.18.0 → 9.18.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,12 +1,31 @@
1
1
  # Change Log - @fluentui/react-positioning
2
2
 
3
- This log was last generated on Thu, 12 Jun 2025 09:39:14 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 18 Jun 2025 17:29:27 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.18.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.18.2)
8
+
9
+ Wed, 18 Jun 2025 17:29:27 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.18.1..@fluentui/react-positioning_v9.18.2)
11
+
12
+ ### Patches
13
+
14
+ - Bump @fluentui/react-shared-contexts to v9.24.0 ([PR #34675](https://github.com/microsoft/fluentui/pull/34675) by beachball)
15
+ - Bump @fluentui/react-utilities to v9.21.1 ([PR #34675](https://github.com/microsoft/fluentui/pull/34675) by beachball)
16
+
17
+ ## [9.18.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.18.1)
18
+
19
+ Fri, 13 Jun 2025 12:32:51 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.18.0..@fluentui/react-positioning_v9.18.1)
21
+
22
+ ### Patches
23
+
24
+ - fix: update logic for triggering updates ([PR #34639](https://github.com/microsoft/fluentui/pull/34639) by olfedias@microsoft.com)
25
+
7
26
  ## [9.18.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-positioning_v9.18.0)
8
27
 
9
- Thu, 12 Jun 2025 09:39:14 GMT
28
+ Thu, 12 Jun 2025 09:43:33 GMT
10
29
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-positioning_v9.17.2..@fluentui/react-positioning_v9.18.0)
11
30
 
12
31
  ### Minor changes
package/README.md CHANGED
@@ -1,23 +1,25 @@
1
1
  # @fluentui/react-positioning
2
2
 
3
- A react hook wrapper around [Popper.js](https://popper.js.org/) for Fluent UI.
3
+ A React utilities built on top of [Floating UI](https://floating-ui.com/) for positioning elements in the DOM.
4
4
 
5
5
  ## Usage
6
6
 
7
7
  ```tsx
8
- import React from 'react';
9
- import { usePopper } from '@fluentui/react-positioning';
8
+ import * as React from 'react';
9
+ import { usePositiniong } from '@fluentui/react-positioning';
10
10
 
11
- function PopupExample: React.FC = ({ children }) => {
12
- const {targetRef, containerRef} = usePopper();
11
+ const PopupExample: React.FC = ({ children }) => {
12
+ const { targetRef, containerRef } = usePositiniong();
13
13
  const [open, setOpen] = React.useState(false);
14
14
 
15
15
  const onClick = () => setOpen(s => !s);
16
16
  return (
17
17
  <>
18
- <button ref={targetRef} onClick={onClick}> Toggle popup </button>
19
- { open && <div ref={containerRef}>{children}</div> }
18
+ <button ref={targetRef} onClick={onClick}>
19
+ Toggle popup
20
+ </button>
21
+ {open && <div ref={containerRef}>{children}</div>}
20
22
  </>
21
- )
22
- }
23
+ );
24
+ };
23
25
  ```
@@ -11,6 +11,9 @@ export function createSafeZoneAreaStateStore() {
11
11
  return isActive;
12
12
  },
13
13
  toggleActive (newIsActive) {
14
+ if (isActive === newIsActive) {
15
+ return;
16
+ }
14
17
  isActive = newIsActive;
15
18
  listeners.forEach((listener)=>listener(isActive));
16
19
  },
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/SafeZoneArea.tsx"],"sourcesContent":["import { mergeClasses } from '@griffel/react';\nimport { useId } from '@fluentui/react-utilities';\nimport type { Side as PlacementSide } from '@floating-ui/dom';\nimport * as React from 'react';\nimport { useSyncExternalStore } from 'use-sync-external-store/shim';\n\nimport { useStyles } from './SafeZoneArea.styles';\n\nexport type SafeZoneAreaImperativeHandle = {\n updateSVG: (options: {\n containerPlacementSide: PlacementSide;\n containerRect: DOMRect;\n targetRect: DOMRect;\n mouseCoordinates: { x: number; y: number };\n }) => void;\n};\n\nexport type SafeZoneAreaProps = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug: boolean;\n\n /** A reference to the SafeZoneArea imperative handle. */\n imperativeRef: React.Ref<SafeZoneAreaImperativeHandle>;\n\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseEnter: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseMove: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseLeave: (e: React.MouseEvent) => void;\n\n stateStore: ReturnType<typeof createSafeZoneAreaStateStore>;\n};\n\nexport function createSafeZoneAreaStateStore() {\n let isActive = false;\n const listeners: ((value: boolean) => void)[] = [];\n\n return {\n isActive() {\n return isActive;\n },\n toggleActive(newIsActive: boolean) {\n isActive = newIsActive;\n listeners.forEach(listener => listener(isActive));\n },\n\n subscribe(listener: (value: boolean) => void) {\n listeners.push(listener);\n\n return () => {\n const index = listeners.indexOf(listener);\n\n if (index > -1) {\n listeners.splice(index, 1);\n }\n };\n },\n };\n}\n\n/**\n * A component that renders a safe zone area with SVG shapes. Uses `useSyncExternalStore` to manage its active state\n * to avoid causing re-renders in `useSafeZoneArea()` as the hook might be used in host components like `Menu`.\n *\n * Draws two shapes:\n * - a triangle that points to the target element which is an actual safe zone\n * - a rectangle for a clip path that clips out the target element\n *\n * @internal\n */\nexport const SafeZoneArea = React.memo((props: SafeZoneAreaProps) => {\n const { debug, onMouseEnter, onMouseMove, onMouseLeave, stateStore } = props;\n\n const clipPathId = useId();\n const styles = useStyles();\n\n const active = useSyncExternalStore(stateStore.subscribe, stateStore.isActive);\n const svgRef = React.useRef<SVGSVGElement>(null);\n\n React.useImperativeHandle(\n props.imperativeRef,\n () => ({\n updateSVG({ containerPlacementSide, containerRect, mouseCoordinates, targetRect }) {\n const svgEl = svgRef.current;\n\n if (!svgEl) {\n return;\n }\n\n const trianglePathEl = svgEl.children.item(0) as SVGPathElement;\n const debugRectEl = svgEl.children.item(2) as SVGPathElement | null;\n const clipPathEl = svgEl.children.item(1) as SVGClipPathElement;\n const clipPathRect = clipPathEl.firstElementChild as SVGRectElement;\n\n const SIZE_MULTIPLIER = 0.9;\n\n let svgStyle: Partial<CSSStyleDeclaration>;\n\n let tringlePoints: [number, number][] = [];\n let clipPoints: [number, number][] = [];\n\n switch (containerPlacementSide) {\n case 'top':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${targetRect.bottom - containerRect.bottom}px`,\n transform: `translate(${containerRect.left}px, ${containerRect.bottom}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, 0],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - containerRect.bottom) / SIZE_MULTIPLIER],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.bottom - containerRect.bottom],\n [containerRect.width, targetRect.bottom - containerRect.bottom],\n [containerRect.width, 0],\n ];\n\n break;\n\n case 'bottom':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${containerRect.top - targetRect.top}px`,\n transform: `translate(${containerRect.left}px, ${targetRect.top}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, containerRect.top - targetRect.top],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - targetRect.top) * SIZE_MULTIPLIER],\n [0, containerRect.top - targetRect.top],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.top - targetRect.top],\n [containerRect.width, containerRect.top - targetRect.top],\n [containerRect.width, 0],\n [targetRect.right - containerRect.left, 0],\n [targetRect.right - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, 0],\n ];\n\n break;\n\n case 'left':\n svgStyle = {\n width: `${targetRect.right - containerRect.right}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${containerRect.right}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - containerRect.right) / SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.top],\n [0, containerRect.height],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.height],\n [targetRect.right - containerRect.right, containerRect.height],\n [targetRect.right - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, 0],\n ];\n\n break;\n\n default:\n svgStyle = {\n width: `${containerRect.left - targetRect.left}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${targetRect.left}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - targetRect.left) * SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.y],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.bottom - containerRect.top],\n [0, targetRect.bottom - containerRect.top],\n [0, containerRect.height],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n\n break;\n }\n\n const trianglePath = `M ${tringlePoints.flatMap(p => p).join(' ')} z`;\n const clipPath = `M ${clipPoints.flatMap(p => p).join(' ')} z`;\n\n Object.assign(svgEl.style, svgStyle);\n\n trianglePathEl.setAttributeNS(null, 'd', trianglePath);\n clipPathRect.setAttributeNS(null, 'd', clipPath);\n debugRectEl?.setAttributeNS(null, 'd', clipPath);\n },\n }),\n [],\n );\n\n return (\n <div className={mergeClasses(styles.wrapper, active && styles.wrapperActive)} data-safe-zone=\"\">\n {active ? (\n <svg aria-hidden className={styles.svg} xmlns=\"http://www.w3.org/2000/svg\" ref={svgRef}>\n <path\n className={mergeClasses(styles.triangle, debug && styles.triangleDebug)}\n clipPath={`url(#${clipPathId})`}\n onMouseEnter={onMouseEnter}\n onMouseMove={onMouseMove}\n onMouseLeave={onMouseLeave}\n />\n <clipPath id={clipPathId}>\n <path />\n </clipPath>\n\n {debug && <path className={styles.rectDebug} />}\n </svg>\n ) : null}\n </div>\n );\n});\n"],"names":["mergeClasses","useId","React","useSyncExternalStore","useStyles","createSafeZoneAreaStateStore","isActive","listeners","toggleActive","newIsActive","forEach","listener","subscribe","push","index","indexOf","splice","SafeZoneArea","memo","props","debug","onMouseEnter","onMouseMove","onMouseLeave","stateStore","clipPathId","styles","active","svgRef","useRef","useImperativeHandle","imperativeRef","updateSVG","containerPlacementSide","containerRect","mouseCoordinates","targetRect","svgEl","current","trianglePathEl","children","item","debugRectEl","clipPathEl","clipPathRect","firstElementChild","SIZE_MULTIPLIER","svgStyle","tringlePoints","clipPoints","width","height","bottom","transform","left","x","y","top","right","trianglePath","flatMap","p","join","clipPath","Object","assign","style","setAttributeNS","div","className","wrapper","wrapperActive","data-safe-zone","svg","aria-hidden","xmlns","ref","path","triangle","triangleDebug","id","rectDebug"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
1
+ {"version":3,"sources":["../src/SafeZoneArea.tsx"],"sourcesContent":["import { mergeClasses } from '@griffel/react';\nimport { useId } from '@fluentui/react-utilities';\nimport type { Side as PlacementSide } from '@floating-ui/dom';\nimport * as React from 'react';\nimport { useSyncExternalStore } from 'use-sync-external-store/shim';\n\nimport { useStyles } from './SafeZoneArea.styles';\n\nexport type SafeZoneAreaImperativeHandle = {\n updateSVG: (options: {\n containerPlacementSide: PlacementSide;\n containerRect: DOMRect;\n targetRect: DOMRect;\n mouseCoordinates: { x: number; y: number };\n }) => void;\n};\n\nexport type SafeZoneAreaProps = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug: boolean;\n\n /** A reference to the SafeZoneArea imperative handle. */\n imperativeRef: React.Ref<SafeZoneAreaImperativeHandle>;\n\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseEnter: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseMove: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseLeave: (e: React.MouseEvent) => void;\n\n stateStore: ReturnType<typeof createSafeZoneAreaStateStore>;\n};\n\nexport function createSafeZoneAreaStateStore() {\n let isActive = false;\n const listeners: ((value: boolean) => void)[] = [];\n\n return {\n isActive() {\n return isActive;\n },\n toggleActive(newIsActive: boolean) {\n if (isActive === newIsActive) {\n return;\n }\n\n isActive = newIsActive;\n listeners.forEach(listener => listener(isActive));\n },\n\n subscribe(listener: (value: boolean) => void) {\n listeners.push(listener);\n\n return () => {\n const index = listeners.indexOf(listener);\n\n if (index > -1) {\n listeners.splice(index, 1);\n }\n };\n },\n };\n}\n\n/**\n * A component that renders a safe zone area with SVG shapes. Uses `useSyncExternalStore` to manage its active state\n * to avoid causing re-renders in `useSafeZoneArea()` as the hook might be used in host components like `Menu`.\n *\n * Draws two shapes:\n * - a triangle that points to the target element which is an actual safe zone\n * - a rectangle for a clip path that clips out the target element\n *\n * @internal\n */\nexport const SafeZoneArea = React.memo((props: SafeZoneAreaProps) => {\n const { debug, onMouseEnter, onMouseMove, onMouseLeave, stateStore } = props;\n\n const clipPathId = useId();\n const styles = useStyles();\n\n const active = useSyncExternalStore(stateStore.subscribe, stateStore.isActive);\n const svgRef = React.useRef<SVGSVGElement>(null);\n\n React.useImperativeHandle(\n props.imperativeRef,\n () => ({\n updateSVG({ containerPlacementSide, containerRect, mouseCoordinates, targetRect }) {\n const svgEl = svgRef.current;\n\n if (!svgEl) {\n return;\n }\n\n const trianglePathEl = svgEl.children.item(0) as SVGPathElement;\n const debugRectEl = svgEl.children.item(2) as SVGPathElement | null;\n const clipPathEl = svgEl.children.item(1) as SVGClipPathElement;\n const clipPathRect = clipPathEl.firstElementChild as SVGRectElement;\n\n const SIZE_MULTIPLIER = 0.9;\n\n let svgStyle: Partial<CSSStyleDeclaration>;\n\n let tringlePoints: [number, number][] = [];\n let clipPoints: [number, number][] = [];\n\n switch (containerPlacementSide) {\n case 'top':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${targetRect.bottom - containerRect.bottom}px`,\n transform: `translate(${containerRect.left}px, ${containerRect.bottom}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, 0],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - containerRect.bottom) / SIZE_MULTIPLIER],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.bottom - containerRect.bottom],\n [containerRect.width, targetRect.bottom - containerRect.bottom],\n [containerRect.width, 0],\n ];\n\n break;\n\n case 'bottom':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${containerRect.top - targetRect.top}px`,\n transform: `translate(${containerRect.left}px, ${targetRect.top}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, containerRect.top - targetRect.top],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - targetRect.top) * SIZE_MULTIPLIER],\n [0, containerRect.top - targetRect.top],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.top - targetRect.top],\n [containerRect.width, containerRect.top - targetRect.top],\n [containerRect.width, 0],\n [targetRect.right - containerRect.left, 0],\n [targetRect.right - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, 0],\n ];\n\n break;\n\n case 'left':\n svgStyle = {\n width: `${targetRect.right - containerRect.right}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${containerRect.right}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - containerRect.right) / SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.top],\n [0, containerRect.height],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.height],\n [targetRect.right - containerRect.right, containerRect.height],\n [targetRect.right - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, 0],\n ];\n\n break;\n\n default:\n svgStyle = {\n width: `${containerRect.left - targetRect.left}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${targetRect.left}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - targetRect.left) * SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.y],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.bottom - containerRect.top],\n [0, targetRect.bottom - containerRect.top],\n [0, containerRect.height],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n\n break;\n }\n\n const trianglePath = `M ${tringlePoints.flatMap(p => p).join(' ')} z`;\n const clipPath = `M ${clipPoints.flatMap(p => p).join(' ')} z`;\n\n Object.assign(svgEl.style, svgStyle);\n\n trianglePathEl.setAttributeNS(null, 'd', trianglePath);\n clipPathRect.setAttributeNS(null, 'd', clipPath);\n debugRectEl?.setAttributeNS(null, 'd', clipPath);\n },\n }),\n [],\n );\n\n return (\n <div className={mergeClasses(styles.wrapper, active && styles.wrapperActive)} data-safe-zone=\"\">\n {active ? (\n <svg aria-hidden className={styles.svg} xmlns=\"http://www.w3.org/2000/svg\" ref={svgRef}>\n <path\n className={mergeClasses(styles.triangle, debug && styles.triangleDebug)}\n clipPath={`url(#${clipPathId})`}\n onMouseEnter={onMouseEnter}\n onMouseMove={onMouseMove}\n onMouseLeave={onMouseLeave}\n />\n <clipPath id={clipPathId}>\n <path />\n </clipPath>\n\n {debug && <path className={styles.rectDebug} />}\n </svg>\n ) : null}\n </div>\n );\n});\n"],"names":["mergeClasses","useId","React","useSyncExternalStore","useStyles","createSafeZoneAreaStateStore","isActive","listeners","toggleActive","newIsActive","forEach","listener","subscribe","push","index","indexOf","splice","SafeZoneArea","memo","props","debug","onMouseEnter","onMouseMove","onMouseLeave","stateStore","clipPathId","styles","active","svgRef","useRef","useImperativeHandle","imperativeRef","updateSVG","containerPlacementSide","containerRect","mouseCoordinates","targetRect","svgEl","current","trianglePathEl","children","item","debugRectEl","clipPathEl","clipPathRect","firstElementChild","SIZE_MULTIPLIER","svgStyle","tringlePoints","clipPoints","width","height","bottom","transform","left","x","y","top","right","trianglePath","flatMap","p","join","clipPath","Object","assign","style","setAttributeNS","div","className","wrapper","wrapperActive","data-safe-zone","svg","aria-hidden","xmlns","ref","path","triangle","triangleDebug","id","rectDebug"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
@@ -11,6 +11,10 @@ export function useSafeZoneArea({ debug = false, disabled = false, onSafeZoneEnt
11
11
  const targetRef = React.useRef(null);
12
12
  const timeoutIdRef = React.useRef(null);
13
13
  const mouseMoveIdRef = React.useRef(null);
14
+ const mouseCoordinatesRef = React.useRef({
15
+ x: 0,
16
+ y: 0
17
+ });
14
18
  const containerListenerRef = React.useMemo(()=>{
15
19
  if (disabled) {
16
20
  return ()=>{
@@ -49,33 +53,18 @@ export function useSafeZoneArea({ debug = false, disabled = false, onSafeZoneEnt
49
53
  }
50
54
  let targetEl = null;
51
55
  function onTargetMouseMove(e) {
52
- const targetWindow = targetDocument === null || targetDocument === void 0 ? void 0 : targetDocument.defaultView;
53
- if (!targetWindow) {
54
- return;
55
- }
56
+ mouseCoordinatesRef.current = {
57
+ x: e.clientX,
58
+ y: e.clientY
59
+ };
56
60
  if (timeoutIdRef.current) {
57
- targetWindow.clearTimeout(timeoutIdRef.current);
61
+ var _targetDocument_defaultView;
62
+ targetDocument === null || targetDocument === void 0 ? void 0 : (_targetDocument_defaultView = targetDocument.defaultView) === null || _targetDocument_defaultView === void 0 ? void 0 : _targetDocument_defaultView.clearTimeout(timeoutIdRef.current);
58
63
  timeoutIdRef.current = null;
59
64
  }
60
65
  if (!stateStore.isActive()) {
61
66
  stateStore.toggleActive(true);
62
67
  }
63
- mouseMoveIdRef.current = targetWindow.requestAnimationFrame(()=>{
64
- var _safeZoneAreaRef_current;
65
- const containerEl = containerRef.current;
66
- if (!containerEl || !targetEl) {
67
- return;
68
- }
69
- (_safeZoneAreaRef_current = safeZoneAreaRef.current) === null || _safeZoneAreaRef_current === void 0 ? void 0 : _safeZoneAreaRef_current.updateSVG({
70
- containerPlacementSide: parseFloatingUIPlacement(containerEl.dataset.popperPlacement).side,
71
- containerRect: containerEl.getBoundingClientRect(),
72
- mouseCoordinates: {
73
- x: e.clientX,
74
- y: e.clientY
75
- },
76
- targetRect: targetEl.getBoundingClientRect()
77
- });
78
- });
79
68
  }
80
69
  return (el)=>{
81
70
  if (el === null) {
@@ -123,6 +112,39 @@ export function useSafeZoneArea({ debug = false, disabled = false, onSafeZoneEnt
123
112
  const onSvgMouseLeave = useEventCallback((e)=>{
124
113
  onSafeZoneLeave === null || onSafeZoneLeave === void 0 ? void 0 : onSafeZoneLeave(e);
125
114
  });
115
+ React.useEffect(()=>{
116
+ return stateStore.subscribe((isActive)=>{
117
+ if (isActive) {
118
+ function updateSVGs() {
119
+ const containerEl = containerRef.current;
120
+ const targetEl = targetRef.current;
121
+ const targetWindow = targetDocument === null || targetDocument === void 0 ? void 0 : targetDocument.defaultView;
122
+ if (containerEl && targetEl) {
123
+ var _safeZoneAreaRef_current;
124
+ (_safeZoneAreaRef_current = safeZoneAreaRef.current) === null || _safeZoneAreaRef_current === void 0 ? void 0 : _safeZoneAreaRef_current.updateSVG({
125
+ containerPlacementSide: parseFloatingUIPlacement(containerEl.dataset.popperPlacement).side,
126
+ containerRect: containerEl.getBoundingClientRect(),
127
+ mouseCoordinates: mouseCoordinatesRef.current,
128
+ targetRect: targetEl.getBoundingClientRect()
129
+ });
130
+ }
131
+ if (targetWindow) {
132
+ mouseMoveIdRef.current = targetWindow.requestAnimationFrame(updateSVGs);
133
+ }
134
+ }
135
+ updateSVGs();
136
+ return;
137
+ }
138
+ if (mouseMoveIdRef.current) {
139
+ var _targetDocument_defaultView;
140
+ targetDocument === null || targetDocument === void 0 ? void 0 : (_targetDocument_defaultView = targetDocument.defaultView) === null || _targetDocument_defaultView === void 0 ? void 0 : _targetDocument_defaultView.cancelAnimationFrame(mouseMoveIdRef.current);
141
+ mouseMoveIdRef.current = null;
142
+ }
143
+ });
144
+ }, [
145
+ stateStore,
146
+ targetDocument
147
+ ]);
126
148
  return {
127
149
  containerRef: useMergedRefs(containerRef, containerListenerRef),
128
150
  targetRef: useMergedRefs(targetRef, targetListenerRef),
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/useSafeZoneArea.tsx"],"sourcesContent":["import { useFluent_unstable } from '@fluentui/react-shared-contexts';\nimport { useEventCallback, useMergedRefs } from '@fluentui/react-utilities';\nimport type { Placement } from '@floating-ui/dom';\nimport * as React from 'react';\n\nimport { createSafeZoneAreaStateStore, type SafeZoneAreaImperativeHandle, SafeZoneArea } from './SafeZoneArea';\nimport { parseFloatingUIPlacement } from './utils';\n\nexport type SafeBufferAreaOptions = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug?: boolean;\n\n /** Disables the safe zone area. */\n disabled?: boolean;\n\n /** The time in milliseconds to wait before clearing the safe zone. */\n timeout?: number;\n\n /** Called when the mouse enters the safe zone. */\n onSafeZoneEnter?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse moves within the safe zone. */\n onSafeZoneMove?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse leaves the safe zone. */\n onSafeZoneLeave?: (e: React.MouseEvent) => void;\n\n /** Called when the safe zone times out, even if a cursor is still over a safe zone. */\n onSafeZoneTimeout?: () => void;\n};\n\nexport function useSafeZoneArea({\n debug = false,\n disabled = false,\n\n onSafeZoneEnter,\n onSafeZoneMove,\n onSafeZoneLeave,\n onSafeZoneTimeout,\n\n timeout = 1500,\n}: SafeBufferAreaOptions = {}) {\n const [stateStore] = React.useState(createSafeZoneAreaStateStore);\n const { targetDocument } = useFluent_unstable();\n\n const safeZoneAreaRef = React.useRef<SafeZoneAreaImperativeHandle>(null);\n const containerRef = React.useRef<HTMLElement>(null);\n const targetRef = React.useRef<HTMLElement>(null);\n\n const timeoutIdRef = React.useRef<number | null>(null);\n const mouseMoveIdRef = React.useRef<number | null>(null);\n\n const containerListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let containerEl: HTMLElement | null = null;\n\n function onContainerMouseEnter() {\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n stateStore.toggleActive(false);\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n containerEl?.removeEventListener('mouseenter', onContainerMouseEnter);\n }\n\n containerEl = el;\n el?.addEventListener('mouseenter', onContainerMouseEnter);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const targetListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let targetEl: HTMLElement | null = null;\n\n function onTargetMouseMove(e: MouseEvent) {\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n if (!stateStore.isActive()) {\n stateStore.toggleActive(true);\n }\n\n mouseMoveIdRef.current = targetWindow.requestAnimationFrame(() => {\n const containerEl = containerRef.current;\n\n if (!containerEl || !targetEl) {\n return;\n }\n\n safeZoneAreaRef.current?.updateSVG({\n containerPlacementSide: parseFloatingUIPlacement(containerEl.dataset.popperPlacement as Placement).side,\n containerRect: containerEl.getBoundingClientRect(),\n mouseCoordinates: { x: e.clientX, y: e.clientY },\n targetRect: targetEl.getBoundingClientRect(),\n });\n });\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n const targetWindow = targetDocument?.defaultView;\n\n if (targetWindow) {\n if (mouseMoveIdRef.current) {\n targetWindow.cancelAnimationFrame(mouseMoveIdRef.current);\n mouseMoveIdRef.current = null;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n }\n\n targetEl?.removeEventListener('mousemove', onTargetMouseMove);\n }\n\n targetEl = el;\n el?.addEventListener('mousemove', onTargetMouseMove);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const onSvgMouseEnter = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneEnter?.(e);\n\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n // React 17 still uses pooled synthetic events\n e.persist();\n\n timeoutIdRef.current = targetWindow.setTimeout(() => {\n stateStore.toggleActive(false);\n onSafeZoneTimeout?.();\n }, timeout);\n });\n\n const onSvgMouseMove = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneMove?.(e);\n });\n\n const onSvgMouseLeave = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneLeave?.(e);\n });\n\n return {\n containerRef: useMergedRefs(containerRef, containerListenerRef),\n targetRef: useMergedRefs(targetRef, targetListenerRef),\n\n elementToRender: React.useMemo(\n () =>\n disabled ? null : (\n <SafeZoneArea\n debug={debug}\n onMouseEnter={onSvgMouseEnter}\n onMouseMove={onSvgMouseMove}\n onMouseLeave={onSvgMouseLeave}\n imperativeRef={safeZoneAreaRef}\n stateStore={stateStore}\n />\n ),\n [disabled, debug, onSvgMouseEnter, onSvgMouseMove, onSvgMouseLeave, stateStore],\n ),\n };\n}\n"],"names":["useFluent_unstable","useEventCallback","useMergedRefs","React","createSafeZoneAreaStateStore","SafeZoneArea","parseFloatingUIPlacement","useSafeZoneArea","debug","disabled","onSafeZoneEnter","onSafeZoneMove","onSafeZoneLeave","onSafeZoneTimeout","timeout","stateStore","useState","targetDocument","safeZoneAreaRef","useRef","containerRef","targetRef","timeoutIdRef","mouseMoveIdRef","containerListenerRef","useMemo","containerEl","onContainerMouseEnter","targetWindow","defaultView","current","clearTimeout","toggleActive","el","removeEventListener","addEventListener","targetListenerRef","targetEl","onTargetMouseMove","e","isActive","requestAnimationFrame","updateSVG","containerPlacementSide","dataset","popperPlacement","side","containerRect","getBoundingClientRect","mouseCoordinates","x","clientX","y","clientY","targetRect","cancelAnimationFrame","onSvgMouseEnter","persist","setTimeout","onSvgMouseMove","onSvgMouseLeave","elementToRender","onMouseEnter","onMouseMove","onMouseLeave","imperativeRef"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
1
+ {"version":3,"sources":["../src/useSafeZoneArea.tsx"],"sourcesContent":["import { useFluent_unstable } from '@fluentui/react-shared-contexts';\nimport { useEventCallback, useMergedRefs } from '@fluentui/react-utilities';\nimport type { Placement } from '@floating-ui/dom';\nimport * as React from 'react';\n\nimport { createSafeZoneAreaStateStore, type SafeZoneAreaImperativeHandle, SafeZoneArea } from './SafeZoneArea';\nimport { parseFloatingUIPlacement } from './utils';\n\nexport type SafeBufferAreaOptions = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug?: boolean;\n\n /** Disables the safe zone area. */\n disabled?: boolean;\n\n /** The time in milliseconds to wait before clearing the safe zone. */\n timeout?: number;\n\n /** Called when the mouse enters the safe zone. */\n onSafeZoneEnter?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse moves within the safe zone. */\n onSafeZoneMove?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse leaves the safe zone. */\n onSafeZoneLeave?: (e: React.MouseEvent) => void;\n\n /** Called when the safe zone times out, even if a cursor is still over a safe zone. */\n onSafeZoneTimeout?: () => void;\n};\n\nexport function useSafeZoneArea({\n debug = false,\n disabled = false,\n\n onSafeZoneEnter,\n onSafeZoneMove,\n onSafeZoneLeave,\n onSafeZoneTimeout,\n\n timeout = 1500,\n}: SafeBufferAreaOptions = {}) {\n const [stateStore] = React.useState(createSafeZoneAreaStateStore);\n const { targetDocument } = useFluent_unstable();\n\n const safeZoneAreaRef = React.useRef<SafeZoneAreaImperativeHandle>(null);\n const containerRef = React.useRef<HTMLElement>(null);\n const targetRef = React.useRef<HTMLElement>(null);\n\n const timeoutIdRef = React.useRef<number | null>(null);\n const mouseMoveIdRef = React.useRef<number | null>(null);\n\n const mouseCoordinatesRef = React.useRef<{ x: number; y: number }>({ x: 0, y: 0 });\n\n const containerListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let containerEl: HTMLElement | null = null;\n\n function onContainerMouseEnter() {\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n stateStore.toggleActive(false);\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n containerEl?.removeEventListener('mouseenter', onContainerMouseEnter);\n }\n\n containerEl = el;\n el?.addEventListener('mouseenter', onContainerMouseEnter);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const targetListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let targetEl: HTMLElement | null = null;\n\n function onTargetMouseMove(e: MouseEvent) {\n mouseCoordinatesRef.current = { x: e.clientX, y: e.clientY };\n\n if (timeoutIdRef.current) {\n targetDocument?.defaultView?.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n if (!stateStore.isActive()) {\n stateStore.toggleActive(true);\n }\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n const targetWindow = targetDocument?.defaultView;\n\n if (targetWindow) {\n if (mouseMoveIdRef.current) {\n targetWindow.cancelAnimationFrame(mouseMoveIdRef.current);\n mouseMoveIdRef.current = null;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n }\n\n targetEl?.removeEventListener('mousemove', onTargetMouseMove);\n }\n\n targetEl = el;\n el?.addEventListener('mousemove', onTargetMouseMove);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const onSvgMouseEnter = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneEnter?.(e);\n\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n // React 17 still uses pooled synthetic events\n e.persist();\n\n timeoutIdRef.current = targetWindow.setTimeout(() => {\n stateStore.toggleActive(false);\n onSafeZoneTimeout?.();\n }, timeout);\n });\n\n const onSvgMouseMove = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneMove?.(e);\n });\n\n const onSvgMouseLeave = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneLeave?.(e);\n });\n\n React.useEffect(() => {\n return stateStore.subscribe(isActive => {\n if (isActive) {\n function updateSVGs() {\n const containerEl = containerRef.current;\n const targetEl = targetRef.current;\n const targetWindow = targetDocument?.defaultView;\n\n if (containerEl && targetEl) {\n safeZoneAreaRef.current?.updateSVG({\n containerPlacementSide: parseFloatingUIPlacement(containerEl.dataset.popperPlacement as Placement).side,\n containerRect: containerEl.getBoundingClientRect(),\n mouseCoordinates: mouseCoordinatesRef.current,\n targetRect: targetEl.getBoundingClientRect(),\n });\n }\n\n if (targetWindow) {\n mouseMoveIdRef.current = targetWindow.requestAnimationFrame(updateSVGs);\n }\n }\n\n updateSVGs();\n return;\n }\n\n if (mouseMoveIdRef.current) {\n targetDocument?.defaultView?.cancelAnimationFrame(mouseMoveIdRef.current);\n mouseMoveIdRef.current = null;\n }\n });\n }, [stateStore, targetDocument]);\n\n return {\n containerRef: useMergedRefs(containerRef, containerListenerRef),\n targetRef: useMergedRefs(targetRef, targetListenerRef),\n\n elementToRender: React.useMemo(\n () =>\n disabled ? null : (\n <SafeZoneArea\n debug={debug}\n onMouseEnter={onSvgMouseEnter}\n onMouseMove={onSvgMouseMove}\n onMouseLeave={onSvgMouseLeave}\n imperativeRef={safeZoneAreaRef}\n stateStore={stateStore}\n />\n ),\n [disabled, debug, onSvgMouseEnter, onSvgMouseMove, onSvgMouseLeave, stateStore],\n ),\n };\n}\n"],"names":["useFluent_unstable","useEventCallback","useMergedRefs","React","createSafeZoneAreaStateStore","SafeZoneArea","parseFloatingUIPlacement","useSafeZoneArea","debug","disabled","onSafeZoneEnter","onSafeZoneMove","onSafeZoneLeave","onSafeZoneTimeout","timeout","stateStore","useState","targetDocument","safeZoneAreaRef","useRef","containerRef","targetRef","timeoutIdRef","mouseMoveIdRef","mouseCoordinatesRef","x","y","containerListenerRef","useMemo","containerEl","onContainerMouseEnter","targetWindow","defaultView","current","clearTimeout","toggleActive","el","removeEventListener","addEventListener","targetListenerRef","targetEl","onTargetMouseMove","e","clientX","clientY","isActive","cancelAnimationFrame","onSvgMouseEnter","persist","setTimeout","onSvgMouseMove","onSvgMouseLeave","useEffect","subscribe","updateSVGs","updateSVG","containerPlacementSide","dataset","popperPlacement","side","containerRect","getBoundingClientRect","mouseCoordinates","targetRect","requestAnimationFrame","elementToRender","onMouseEnter","onMouseMove","onMouseLeave","imperativeRef"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
@@ -30,6 +30,9 @@ function createSafeZoneAreaStateStore() {
30
30
  return isActive;
31
31
  },
32
32
  toggleActive (newIsActive) {
33
+ if (isActive === newIsActive) {
34
+ return;
35
+ }
33
36
  isActive = newIsActive;
34
37
  listeners.forEach((listener)=>listener(isActive));
35
38
  },
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/SafeZoneArea.tsx"],"sourcesContent":["import { mergeClasses } from '@griffel/react';\nimport { useId } from '@fluentui/react-utilities';\nimport type { Side as PlacementSide } from '@floating-ui/dom';\nimport * as React from 'react';\nimport { useSyncExternalStore } from 'use-sync-external-store/shim';\n\nimport { useStyles } from './SafeZoneArea.styles';\n\nexport type SafeZoneAreaImperativeHandle = {\n updateSVG: (options: {\n containerPlacementSide: PlacementSide;\n containerRect: DOMRect;\n targetRect: DOMRect;\n mouseCoordinates: { x: number; y: number };\n }) => void;\n};\n\nexport type SafeZoneAreaProps = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug: boolean;\n\n /** A reference to the SafeZoneArea imperative handle. */\n imperativeRef: React.Ref<SafeZoneAreaImperativeHandle>;\n\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseEnter: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseMove: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseLeave: (e: React.MouseEvent) => void;\n\n stateStore: ReturnType<typeof createSafeZoneAreaStateStore>;\n};\n\nexport function createSafeZoneAreaStateStore() {\n let isActive = false;\n const listeners: ((value: boolean) => void)[] = [];\n\n return {\n isActive() {\n return isActive;\n },\n toggleActive(newIsActive: boolean) {\n isActive = newIsActive;\n listeners.forEach(listener => listener(isActive));\n },\n\n subscribe(listener: (value: boolean) => void) {\n listeners.push(listener);\n\n return () => {\n const index = listeners.indexOf(listener);\n\n if (index > -1) {\n listeners.splice(index, 1);\n }\n };\n },\n };\n}\n\n/**\n * A component that renders a safe zone area with SVG shapes. Uses `useSyncExternalStore` to manage its active state\n * to avoid causing re-renders in `useSafeZoneArea()` as the hook might be used in host components like `Menu`.\n *\n * Draws two shapes:\n * - a triangle that points to the target element which is an actual safe zone\n * - a rectangle for a clip path that clips out the target element\n *\n * @internal\n */\nexport const SafeZoneArea = React.memo((props: SafeZoneAreaProps) => {\n const { debug, onMouseEnter, onMouseMove, onMouseLeave, stateStore } = props;\n\n const clipPathId = useId();\n const styles = useStyles();\n\n const active = useSyncExternalStore(stateStore.subscribe, stateStore.isActive);\n const svgRef = React.useRef<SVGSVGElement>(null);\n\n React.useImperativeHandle(\n props.imperativeRef,\n () => ({\n updateSVG({ containerPlacementSide, containerRect, mouseCoordinates, targetRect }) {\n const svgEl = svgRef.current;\n\n if (!svgEl) {\n return;\n }\n\n const trianglePathEl = svgEl.children.item(0) as SVGPathElement;\n const debugRectEl = svgEl.children.item(2) as SVGPathElement | null;\n const clipPathEl = svgEl.children.item(1) as SVGClipPathElement;\n const clipPathRect = clipPathEl.firstElementChild as SVGRectElement;\n\n const SIZE_MULTIPLIER = 0.9;\n\n let svgStyle: Partial<CSSStyleDeclaration>;\n\n let tringlePoints: [number, number][] = [];\n let clipPoints: [number, number][] = [];\n\n switch (containerPlacementSide) {\n case 'top':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${targetRect.bottom - containerRect.bottom}px`,\n transform: `translate(${containerRect.left}px, ${containerRect.bottom}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, 0],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - containerRect.bottom) / SIZE_MULTIPLIER],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.bottom - containerRect.bottom],\n [containerRect.width, targetRect.bottom - containerRect.bottom],\n [containerRect.width, 0],\n ];\n\n break;\n\n case 'bottom':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${containerRect.top - targetRect.top}px`,\n transform: `translate(${containerRect.left}px, ${targetRect.top}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, containerRect.top - targetRect.top],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - targetRect.top) * SIZE_MULTIPLIER],\n [0, containerRect.top - targetRect.top],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.top - targetRect.top],\n [containerRect.width, containerRect.top - targetRect.top],\n [containerRect.width, 0],\n [targetRect.right - containerRect.left, 0],\n [targetRect.right - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, 0],\n ];\n\n break;\n\n case 'left':\n svgStyle = {\n width: `${targetRect.right - containerRect.right}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${containerRect.right}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - containerRect.right) / SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.top],\n [0, containerRect.height],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.height],\n [targetRect.right - containerRect.right, containerRect.height],\n [targetRect.right - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, 0],\n ];\n\n break;\n\n default:\n svgStyle = {\n width: `${containerRect.left - targetRect.left}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${targetRect.left}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - targetRect.left) * SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.y],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.bottom - containerRect.top],\n [0, targetRect.bottom - containerRect.top],\n [0, containerRect.height],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n\n break;\n }\n\n const trianglePath = `M ${tringlePoints.flatMap(p => p).join(' ')} z`;\n const clipPath = `M ${clipPoints.flatMap(p => p).join(' ')} z`;\n\n Object.assign(svgEl.style, svgStyle);\n\n trianglePathEl.setAttributeNS(null, 'd', trianglePath);\n clipPathRect.setAttributeNS(null, 'd', clipPath);\n debugRectEl?.setAttributeNS(null, 'd', clipPath);\n },\n }),\n [],\n );\n\n return (\n <div className={mergeClasses(styles.wrapper, active && styles.wrapperActive)} data-safe-zone=\"\">\n {active ? (\n <svg aria-hidden className={styles.svg} xmlns=\"http://www.w3.org/2000/svg\" ref={svgRef}>\n <path\n className={mergeClasses(styles.triangle, debug && styles.triangleDebug)}\n clipPath={`url(#${clipPathId})`}\n onMouseEnter={onMouseEnter}\n onMouseMove={onMouseMove}\n onMouseLeave={onMouseLeave}\n />\n <clipPath id={clipPathId}>\n <path />\n </clipPath>\n\n {debug && <path className={styles.rectDebug} />}\n </svg>\n ) : null}\n </div>\n );\n});\n"],"names":["SafeZoneArea","createSafeZoneAreaStateStore","isActive","listeners","toggleActive","newIsActive","forEach","listener","subscribe","push","index","indexOf","splice","React","memo","props","debug","onMouseEnter","onMouseMove","onMouseLeave","stateStore","clipPathId","useId","styles","useStyles","active","useSyncExternalStore","svgRef","useRef","useImperativeHandle","imperativeRef","updateSVG","containerPlacementSide","containerRect","mouseCoordinates","targetRect","svgEl","current","trianglePathEl","children","item","debugRectEl","clipPathEl","clipPathRect","firstElementChild","SIZE_MULTIPLIER","svgStyle","tringlePoints","clipPoints","width","height","bottom","transform","left","x","y","top","right","trianglePath","flatMap","p","join","clipPath","Object","assign","style","setAttributeNS","createElement","div","className","mergeClasses","wrapper","wrapperActive","data-safe-zone","svg","aria-hidden","xmlns","ref","path","triangle","triangleDebug","id","rectDebug"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
1
+ {"version":3,"sources":["../src/SafeZoneArea.tsx"],"sourcesContent":["import { mergeClasses } from '@griffel/react';\nimport { useId } from '@fluentui/react-utilities';\nimport type { Side as PlacementSide } from '@floating-ui/dom';\nimport * as React from 'react';\nimport { useSyncExternalStore } from 'use-sync-external-store/shim';\n\nimport { useStyles } from './SafeZoneArea.styles';\n\nexport type SafeZoneAreaImperativeHandle = {\n updateSVG: (options: {\n containerPlacementSide: PlacementSide;\n containerRect: DOMRect;\n targetRect: DOMRect;\n mouseCoordinates: { x: number; y: number };\n }) => void;\n};\n\nexport type SafeZoneAreaProps = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug: boolean;\n\n /** A reference to the SafeZoneArea imperative handle. */\n imperativeRef: React.Ref<SafeZoneAreaImperativeHandle>;\n\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseEnter: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseMove: (e: React.MouseEvent) => void;\n // eslint-disable-next-line @nx/workspace-consistent-callback-type\n onMouseLeave: (e: React.MouseEvent) => void;\n\n stateStore: ReturnType<typeof createSafeZoneAreaStateStore>;\n};\n\nexport function createSafeZoneAreaStateStore() {\n let isActive = false;\n const listeners: ((value: boolean) => void)[] = [];\n\n return {\n isActive() {\n return isActive;\n },\n toggleActive(newIsActive: boolean) {\n if (isActive === newIsActive) {\n return;\n }\n\n isActive = newIsActive;\n listeners.forEach(listener => listener(isActive));\n },\n\n subscribe(listener: (value: boolean) => void) {\n listeners.push(listener);\n\n return () => {\n const index = listeners.indexOf(listener);\n\n if (index > -1) {\n listeners.splice(index, 1);\n }\n };\n },\n };\n}\n\n/**\n * A component that renders a safe zone area with SVG shapes. Uses `useSyncExternalStore` to manage its active state\n * to avoid causing re-renders in `useSafeZoneArea()` as the hook might be used in host components like `Menu`.\n *\n * Draws two shapes:\n * - a triangle that points to the target element which is an actual safe zone\n * - a rectangle for a clip path that clips out the target element\n *\n * @internal\n */\nexport const SafeZoneArea = React.memo((props: SafeZoneAreaProps) => {\n const { debug, onMouseEnter, onMouseMove, onMouseLeave, stateStore } = props;\n\n const clipPathId = useId();\n const styles = useStyles();\n\n const active = useSyncExternalStore(stateStore.subscribe, stateStore.isActive);\n const svgRef = React.useRef<SVGSVGElement>(null);\n\n React.useImperativeHandle(\n props.imperativeRef,\n () => ({\n updateSVG({ containerPlacementSide, containerRect, mouseCoordinates, targetRect }) {\n const svgEl = svgRef.current;\n\n if (!svgEl) {\n return;\n }\n\n const trianglePathEl = svgEl.children.item(0) as SVGPathElement;\n const debugRectEl = svgEl.children.item(2) as SVGPathElement | null;\n const clipPathEl = svgEl.children.item(1) as SVGClipPathElement;\n const clipPathRect = clipPathEl.firstElementChild as SVGRectElement;\n\n const SIZE_MULTIPLIER = 0.9;\n\n let svgStyle: Partial<CSSStyleDeclaration>;\n\n let tringlePoints: [number, number][] = [];\n let clipPoints: [number, number][] = [];\n\n switch (containerPlacementSide) {\n case 'top':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${targetRect.bottom - containerRect.bottom}px`,\n transform: `translate(${containerRect.left}px, ${containerRect.bottom}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, 0],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - containerRect.bottom) / SIZE_MULTIPLIER],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.bottom - containerRect.bottom],\n [targetRect.left - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.top - containerRect.bottom],\n [targetRect.right - containerRect.left, targetRect.bottom - containerRect.bottom],\n [containerRect.width, targetRect.bottom - containerRect.bottom],\n [containerRect.width, 0],\n ];\n\n break;\n\n case 'bottom':\n svgStyle = {\n width: `${containerRect.width}px`,\n height: `${containerRect.top - targetRect.top}px`,\n transform: `translate(${containerRect.left}px, ${targetRect.top}px)`,\n };\n\n tringlePoints = [\n [containerRect.width, containerRect.top - targetRect.top],\n [mouseCoordinates.x - containerRect.left, (mouseCoordinates.y - targetRect.top) * SIZE_MULTIPLIER],\n [0, containerRect.top - targetRect.top],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.top - targetRect.top],\n [containerRect.width, containerRect.top - targetRect.top],\n [containerRect.width, 0],\n [targetRect.right - containerRect.left, 0],\n [targetRect.right - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, targetRect.height],\n [targetRect.left - containerRect.left, 0],\n ];\n\n break;\n\n case 'left':\n svgStyle = {\n width: `${targetRect.right - containerRect.right}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${containerRect.right}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - containerRect.right) / SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.top],\n [0, containerRect.height],\n [0, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, containerRect.height],\n [targetRect.right - containerRect.right, containerRect.height],\n [targetRect.right - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.bottom - containerRect.top],\n [targetRect.left - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, targetRect.top - containerRect.top],\n [targetRect.right - containerRect.right, 0],\n ];\n\n break;\n\n default:\n svgStyle = {\n width: `${containerRect.left - targetRect.left}px`,\n height: `${containerRect.height}px`,\n transform: `translate(${targetRect.left}px, ${containerRect.top}px)`,\n };\n\n tringlePoints = [\n [(mouseCoordinates.x - targetRect.left) * SIZE_MULTIPLIER, mouseCoordinates.y - containerRect.y],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n clipPoints = [\n [0, 0],\n [0, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.top - containerRect.top],\n [targetRect.width, targetRect.bottom - containerRect.top],\n [0, targetRect.bottom - containerRect.top],\n [0, containerRect.height],\n [containerRect.left - targetRect.left, containerRect.height],\n [containerRect.left - targetRect.left, 0],\n ];\n\n break;\n }\n\n const trianglePath = `M ${tringlePoints.flatMap(p => p).join(' ')} z`;\n const clipPath = `M ${clipPoints.flatMap(p => p).join(' ')} z`;\n\n Object.assign(svgEl.style, svgStyle);\n\n trianglePathEl.setAttributeNS(null, 'd', trianglePath);\n clipPathRect.setAttributeNS(null, 'd', clipPath);\n debugRectEl?.setAttributeNS(null, 'd', clipPath);\n },\n }),\n [],\n );\n\n return (\n <div className={mergeClasses(styles.wrapper, active && styles.wrapperActive)} data-safe-zone=\"\">\n {active ? (\n <svg aria-hidden className={styles.svg} xmlns=\"http://www.w3.org/2000/svg\" ref={svgRef}>\n <path\n className={mergeClasses(styles.triangle, debug && styles.triangleDebug)}\n clipPath={`url(#${clipPathId})`}\n onMouseEnter={onMouseEnter}\n onMouseMove={onMouseMove}\n onMouseLeave={onMouseLeave}\n />\n <clipPath id={clipPathId}>\n <path />\n </clipPath>\n\n {debug && <path className={styles.rectDebug} />}\n </svg>\n ) : null}\n </div>\n );\n});\n"],"names":["SafeZoneArea","createSafeZoneAreaStateStore","isActive","listeners","toggleActive","newIsActive","forEach","listener","subscribe","push","index","indexOf","splice","React","memo","props","debug","onMouseEnter","onMouseMove","onMouseLeave","stateStore","clipPathId","useId","styles","useStyles","active","useSyncExternalStore","svgRef","useRef","useImperativeHandle","imperativeRef","updateSVG","containerPlacementSide","containerRect","mouseCoordinates","targetRect","svgEl","current","trianglePathEl","children","item","debugRectEl","clipPathEl","clipPathRect","firstElementChild","SIZE_MULTIPLIER","svgStyle","tringlePoints","clipPoints","width","height","bottom","transform","left","x","y","top","right","trianglePath","flatMap","p","join","clipPath","Object","assign","style","setAttributeNS","createElement","div","className","mergeClasses","wrapper","wrapperActive","data-safe-zone","svg","aria-hidden","xmlns","ref","path","triangle","triangleDebug","id","rectDebug"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
@@ -22,6 +22,10 @@ function useSafeZoneArea({ debug = false, disabled = false, onSafeZoneEnter, onS
22
22
  const targetRef = _react.useRef(null);
23
23
  const timeoutIdRef = _react.useRef(null);
24
24
  const mouseMoveIdRef = _react.useRef(null);
25
+ const mouseCoordinatesRef = _react.useRef({
26
+ x: 0,
27
+ y: 0
28
+ });
25
29
  const containerListenerRef = _react.useMemo(()=>{
26
30
  if (disabled) {
27
31
  return ()=>{
@@ -60,33 +64,18 @@ function useSafeZoneArea({ debug = false, disabled = false, onSafeZoneEnter, onS
60
64
  }
61
65
  let targetEl = null;
62
66
  function onTargetMouseMove(e) {
63
- const targetWindow = targetDocument === null || targetDocument === void 0 ? void 0 : targetDocument.defaultView;
64
- if (!targetWindow) {
65
- return;
66
- }
67
+ mouseCoordinatesRef.current = {
68
+ x: e.clientX,
69
+ y: e.clientY
70
+ };
67
71
  if (timeoutIdRef.current) {
68
- targetWindow.clearTimeout(timeoutIdRef.current);
72
+ var _targetDocument_defaultView;
73
+ targetDocument === null || targetDocument === void 0 ? void 0 : (_targetDocument_defaultView = targetDocument.defaultView) === null || _targetDocument_defaultView === void 0 ? void 0 : _targetDocument_defaultView.clearTimeout(timeoutIdRef.current);
69
74
  timeoutIdRef.current = null;
70
75
  }
71
76
  if (!stateStore.isActive()) {
72
77
  stateStore.toggleActive(true);
73
78
  }
74
- mouseMoveIdRef.current = targetWindow.requestAnimationFrame(()=>{
75
- var _safeZoneAreaRef_current;
76
- const containerEl = containerRef.current;
77
- if (!containerEl || !targetEl) {
78
- return;
79
- }
80
- (_safeZoneAreaRef_current = safeZoneAreaRef.current) === null || _safeZoneAreaRef_current === void 0 ? void 0 : _safeZoneAreaRef_current.updateSVG({
81
- containerPlacementSide: (0, _utils.parseFloatingUIPlacement)(containerEl.dataset.popperPlacement).side,
82
- containerRect: containerEl.getBoundingClientRect(),
83
- mouseCoordinates: {
84
- x: e.clientX,
85
- y: e.clientY
86
- },
87
- targetRect: targetEl.getBoundingClientRect()
88
- });
89
- });
90
79
  }
91
80
  return (el)=>{
92
81
  if (el === null) {
@@ -134,6 +123,39 @@ function useSafeZoneArea({ debug = false, disabled = false, onSafeZoneEnter, onS
134
123
  const onSvgMouseLeave = (0, _reactutilities.useEventCallback)((e)=>{
135
124
  onSafeZoneLeave === null || onSafeZoneLeave === void 0 ? void 0 : onSafeZoneLeave(e);
136
125
  });
126
+ _react.useEffect(()=>{
127
+ return stateStore.subscribe((isActive)=>{
128
+ if (isActive) {
129
+ function updateSVGs() {
130
+ const containerEl = containerRef.current;
131
+ const targetEl = targetRef.current;
132
+ const targetWindow = targetDocument === null || targetDocument === void 0 ? void 0 : targetDocument.defaultView;
133
+ if (containerEl && targetEl) {
134
+ var _safeZoneAreaRef_current;
135
+ (_safeZoneAreaRef_current = safeZoneAreaRef.current) === null || _safeZoneAreaRef_current === void 0 ? void 0 : _safeZoneAreaRef_current.updateSVG({
136
+ containerPlacementSide: (0, _utils.parseFloatingUIPlacement)(containerEl.dataset.popperPlacement).side,
137
+ containerRect: containerEl.getBoundingClientRect(),
138
+ mouseCoordinates: mouseCoordinatesRef.current,
139
+ targetRect: targetEl.getBoundingClientRect()
140
+ });
141
+ }
142
+ if (targetWindow) {
143
+ mouseMoveIdRef.current = targetWindow.requestAnimationFrame(updateSVGs);
144
+ }
145
+ }
146
+ updateSVGs();
147
+ return;
148
+ }
149
+ if (mouseMoveIdRef.current) {
150
+ var _targetDocument_defaultView;
151
+ targetDocument === null || targetDocument === void 0 ? void 0 : (_targetDocument_defaultView = targetDocument.defaultView) === null || _targetDocument_defaultView === void 0 ? void 0 : _targetDocument_defaultView.cancelAnimationFrame(mouseMoveIdRef.current);
152
+ mouseMoveIdRef.current = null;
153
+ }
154
+ });
155
+ }, [
156
+ stateStore,
157
+ targetDocument
158
+ ]);
137
159
  return {
138
160
  containerRef: (0, _reactutilities.useMergedRefs)(containerRef, containerListenerRef),
139
161
  targetRef: (0, _reactutilities.useMergedRefs)(targetRef, targetListenerRef),
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/useSafeZoneArea.tsx"],"sourcesContent":["import { useFluent_unstable } from '@fluentui/react-shared-contexts';\nimport { useEventCallback, useMergedRefs } from '@fluentui/react-utilities';\nimport type { Placement } from '@floating-ui/dom';\nimport * as React from 'react';\n\nimport { createSafeZoneAreaStateStore, type SafeZoneAreaImperativeHandle, SafeZoneArea } from './SafeZoneArea';\nimport { parseFloatingUIPlacement } from './utils';\n\nexport type SafeBufferAreaOptions = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug?: boolean;\n\n /** Disables the safe zone area. */\n disabled?: boolean;\n\n /** The time in milliseconds to wait before clearing the safe zone. */\n timeout?: number;\n\n /** Called when the mouse enters the safe zone. */\n onSafeZoneEnter?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse moves within the safe zone. */\n onSafeZoneMove?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse leaves the safe zone. */\n onSafeZoneLeave?: (e: React.MouseEvent) => void;\n\n /** Called when the safe zone times out, even if a cursor is still over a safe zone. */\n onSafeZoneTimeout?: () => void;\n};\n\nexport function useSafeZoneArea({\n debug = false,\n disabled = false,\n\n onSafeZoneEnter,\n onSafeZoneMove,\n onSafeZoneLeave,\n onSafeZoneTimeout,\n\n timeout = 1500,\n}: SafeBufferAreaOptions = {}) {\n const [stateStore] = React.useState(createSafeZoneAreaStateStore);\n const { targetDocument } = useFluent_unstable();\n\n const safeZoneAreaRef = React.useRef<SafeZoneAreaImperativeHandle>(null);\n const containerRef = React.useRef<HTMLElement>(null);\n const targetRef = React.useRef<HTMLElement>(null);\n\n const timeoutIdRef = React.useRef<number | null>(null);\n const mouseMoveIdRef = React.useRef<number | null>(null);\n\n const containerListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let containerEl: HTMLElement | null = null;\n\n function onContainerMouseEnter() {\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n stateStore.toggleActive(false);\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n containerEl?.removeEventListener('mouseenter', onContainerMouseEnter);\n }\n\n containerEl = el;\n el?.addEventListener('mouseenter', onContainerMouseEnter);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const targetListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let targetEl: HTMLElement | null = null;\n\n function onTargetMouseMove(e: MouseEvent) {\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n if (!stateStore.isActive()) {\n stateStore.toggleActive(true);\n }\n\n mouseMoveIdRef.current = targetWindow.requestAnimationFrame(() => {\n const containerEl = containerRef.current;\n\n if (!containerEl || !targetEl) {\n return;\n }\n\n safeZoneAreaRef.current?.updateSVG({\n containerPlacementSide: parseFloatingUIPlacement(containerEl.dataset.popperPlacement as Placement).side,\n containerRect: containerEl.getBoundingClientRect(),\n mouseCoordinates: { x: e.clientX, y: e.clientY },\n targetRect: targetEl.getBoundingClientRect(),\n });\n });\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n const targetWindow = targetDocument?.defaultView;\n\n if (targetWindow) {\n if (mouseMoveIdRef.current) {\n targetWindow.cancelAnimationFrame(mouseMoveIdRef.current);\n mouseMoveIdRef.current = null;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n }\n\n targetEl?.removeEventListener('mousemove', onTargetMouseMove);\n }\n\n targetEl = el;\n el?.addEventListener('mousemove', onTargetMouseMove);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const onSvgMouseEnter = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneEnter?.(e);\n\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n // React 17 still uses pooled synthetic events\n e.persist();\n\n timeoutIdRef.current = targetWindow.setTimeout(() => {\n stateStore.toggleActive(false);\n onSafeZoneTimeout?.();\n }, timeout);\n });\n\n const onSvgMouseMove = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneMove?.(e);\n });\n\n const onSvgMouseLeave = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneLeave?.(e);\n });\n\n return {\n containerRef: useMergedRefs(containerRef, containerListenerRef),\n targetRef: useMergedRefs(targetRef, targetListenerRef),\n\n elementToRender: React.useMemo(\n () =>\n disabled ? null : (\n <SafeZoneArea\n debug={debug}\n onMouseEnter={onSvgMouseEnter}\n onMouseMove={onSvgMouseMove}\n onMouseLeave={onSvgMouseLeave}\n imperativeRef={safeZoneAreaRef}\n stateStore={stateStore}\n />\n ),\n [disabled, debug, onSvgMouseEnter, onSvgMouseMove, onSvgMouseLeave, stateStore],\n ),\n };\n}\n"],"names":["useSafeZoneArea","debug","disabled","onSafeZoneEnter","onSafeZoneMove","onSafeZoneLeave","onSafeZoneTimeout","timeout","stateStore","React","useState","createSafeZoneAreaStateStore","targetDocument","useFluent_unstable","safeZoneAreaRef","useRef","containerRef","targetRef","timeoutIdRef","mouseMoveIdRef","containerListenerRef","useMemo","containerEl","onContainerMouseEnter","targetWindow","defaultView","current","clearTimeout","toggleActive","el","removeEventListener","addEventListener","targetListenerRef","targetEl","onTargetMouseMove","e","isActive","requestAnimationFrame","updateSVG","containerPlacementSide","parseFloatingUIPlacement","dataset","popperPlacement","side","containerRect","getBoundingClientRect","mouseCoordinates","x","clientX","y","clientY","targetRect","cancelAnimationFrame","onSvgMouseEnter","useEventCallback","persist","setTimeout","onSvgMouseMove","onSvgMouseLeave","useMergedRefs","elementToRender","createElement","SafeZoneArea","onMouseEnter","onMouseMove","onMouseLeave","imperativeRef"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
1
+ {"version":3,"sources":["../src/useSafeZoneArea.tsx"],"sourcesContent":["import { useFluent_unstable } from '@fluentui/react-shared-contexts';\nimport { useEventCallback, useMergedRefs } from '@fluentui/react-utilities';\nimport type { Placement } from '@floating-ui/dom';\nimport * as React from 'react';\n\nimport { createSafeZoneAreaStateStore, type SafeZoneAreaImperativeHandle, SafeZoneArea } from './SafeZoneArea';\nimport { parseFloatingUIPlacement } from './utils';\n\nexport type SafeBufferAreaOptions = {\n /** Enables debug mode: makes drawn shapes visible. */\n debug?: boolean;\n\n /** Disables the safe zone area. */\n disabled?: boolean;\n\n /** The time in milliseconds to wait before clearing the safe zone. */\n timeout?: number;\n\n /** Called when the mouse enters the safe zone. */\n onSafeZoneEnter?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse moves within the safe zone. */\n onSafeZoneMove?: (e: React.MouseEvent) => void;\n\n /** Called when the mouse leaves the safe zone. */\n onSafeZoneLeave?: (e: React.MouseEvent) => void;\n\n /** Called when the safe zone times out, even if a cursor is still over a safe zone. */\n onSafeZoneTimeout?: () => void;\n};\n\nexport function useSafeZoneArea({\n debug = false,\n disabled = false,\n\n onSafeZoneEnter,\n onSafeZoneMove,\n onSafeZoneLeave,\n onSafeZoneTimeout,\n\n timeout = 1500,\n}: SafeBufferAreaOptions = {}) {\n const [stateStore] = React.useState(createSafeZoneAreaStateStore);\n const { targetDocument } = useFluent_unstable();\n\n const safeZoneAreaRef = React.useRef<SafeZoneAreaImperativeHandle>(null);\n const containerRef = React.useRef<HTMLElement>(null);\n const targetRef = React.useRef<HTMLElement>(null);\n\n const timeoutIdRef = React.useRef<number | null>(null);\n const mouseMoveIdRef = React.useRef<number | null>(null);\n\n const mouseCoordinatesRef = React.useRef<{ x: number; y: number }>({ x: 0, y: 0 });\n\n const containerListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let containerEl: HTMLElement | null = null;\n\n function onContainerMouseEnter() {\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n stateStore.toggleActive(false);\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n containerEl?.removeEventListener('mouseenter', onContainerMouseEnter);\n }\n\n containerEl = el;\n el?.addEventListener('mouseenter', onContainerMouseEnter);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const targetListenerRef = React.useMemo(() => {\n if (disabled) {\n return () => {\n // do nothing\n };\n }\n\n let targetEl: HTMLElement | null = null;\n\n function onTargetMouseMove(e: MouseEvent) {\n mouseCoordinatesRef.current = { x: e.clientX, y: e.clientY };\n\n if (timeoutIdRef.current) {\n targetDocument?.defaultView?.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n if (!stateStore.isActive()) {\n stateStore.toggleActive(true);\n }\n }\n\n return (el: HTMLElement | null) => {\n if (el === null) {\n const targetWindow = targetDocument?.defaultView;\n\n if (targetWindow) {\n if (mouseMoveIdRef.current) {\n targetWindow.cancelAnimationFrame(mouseMoveIdRef.current);\n mouseMoveIdRef.current = null;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n }\n\n targetEl?.removeEventListener('mousemove', onTargetMouseMove);\n }\n\n targetEl = el;\n el?.addEventListener('mousemove', onTargetMouseMove);\n };\n }, [disabled, stateStore, targetDocument]);\n\n const onSvgMouseEnter = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneEnter?.(e);\n\n const targetWindow = targetDocument?.defaultView;\n\n if (!targetWindow) {\n return;\n }\n\n if (timeoutIdRef.current) {\n targetWindow.clearTimeout(timeoutIdRef.current);\n timeoutIdRef.current = null;\n }\n\n // React 17 still uses pooled synthetic events\n e.persist();\n\n timeoutIdRef.current = targetWindow.setTimeout(() => {\n stateStore.toggleActive(false);\n onSafeZoneTimeout?.();\n }, timeout);\n });\n\n const onSvgMouseMove = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneMove?.(e);\n });\n\n const onSvgMouseLeave = useEventCallback((e: React.MouseEvent) => {\n onSafeZoneLeave?.(e);\n });\n\n React.useEffect(() => {\n return stateStore.subscribe(isActive => {\n if (isActive) {\n function updateSVGs() {\n const containerEl = containerRef.current;\n const targetEl = targetRef.current;\n const targetWindow = targetDocument?.defaultView;\n\n if (containerEl && targetEl) {\n safeZoneAreaRef.current?.updateSVG({\n containerPlacementSide: parseFloatingUIPlacement(containerEl.dataset.popperPlacement as Placement).side,\n containerRect: containerEl.getBoundingClientRect(),\n mouseCoordinates: mouseCoordinatesRef.current,\n targetRect: targetEl.getBoundingClientRect(),\n });\n }\n\n if (targetWindow) {\n mouseMoveIdRef.current = targetWindow.requestAnimationFrame(updateSVGs);\n }\n }\n\n updateSVGs();\n return;\n }\n\n if (mouseMoveIdRef.current) {\n targetDocument?.defaultView?.cancelAnimationFrame(mouseMoveIdRef.current);\n mouseMoveIdRef.current = null;\n }\n });\n }, [stateStore, targetDocument]);\n\n return {\n containerRef: useMergedRefs(containerRef, containerListenerRef),\n targetRef: useMergedRefs(targetRef, targetListenerRef),\n\n elementToRender: React.useMemo(\n () =>\n disabled ? null : (\n <SafeZoneArea\n debug={debug}\n onMouseEnter={onSvgMouseEnter}\n onMouseMove={onSvgMouseMove}\n onMouseLeave={onSvgMouseLeave}\n imperativeRef={safeZoneAreaRef}\n stateStore={stateStore}\n />\n ),\n [disabled, debug, onSvgMouseEnter, onSvgMouseMove, onSvgMouseLeave, stateStore],\n ),\n };\n}\n"],"names":["useSafeZoneArea","debug","disabled","onSafeZoneEnter","onSafeZoneMove","onSafeZoneLeave","onSafeZoneTimeout","timeout","stateStore","React","useState","createSafeZoneAreaStateStore","targetDocument","useFluent_unstable","safeZoneAreaRef","useRef","containerRef","targetRef","timeoutIdRef","mouseMoveIdRef","mouseCoordinatesRef","x","y","containerListenerRef","useMemo","containerEl","onContainerMouseEnter","targetWindow","defaultView","current","clearTimeout","toggleActive","el","removeEventListener","addEventListener","targetListenerRef","targetEl","onTargetMouseMove","e","clientX","clientY","isActive","cancelAnimationFrame","onSvgMouseEnter","useEventCallback","persist","setTimeout","onSvgMouseMove","onSvgMouseLeave","useEffect","subscribe","updateSVGs","updateSVG","containerPlacementSide","parseFloatingUIPlacement","dataset","popperPlacement","side","containerRect","getBoundingClientRect","mouseCoordinates","targetRect","requestAnimationFrame","useMergedRefs","elementToRender","createElement","SafeZoneArea","onMouseEnter","onMouseMove","onMouseLeave","imperativeRef"],"rangeMappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;","mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluentui/react-positioning",
3
- "version": "9.18.0",
3
+ "version": "9.18.2",
4
4
  "description": "A react wrapper around Popper.js for Fluent UI",
5
5
  "main": "lib-commonjs/index.js",
6
6
  "module": "lib/index.js",
@@ -19,9 +19,9 @@
19
19
  "dependencies": {
20
20
  "@floating-ui/dom": "^1.6.12",
21
21
  "@floating-ui/devtools": "0.2.1",
22
- "@fluentui/react-shared-contexts": "^9.23.1",
22
+ "@fluentui/react-shared-contexts": "^9.24.0",
23
23
  "@fluentui/react-theme": "^9.1.24",
24
- "@fluentui/react-utilities": "^9.21.0",
24
+ "@fluentui/react-utilities": "^9.21.1",
25
25
  "@griffel/react": "^1.5.22",
26
26
  "@swc/helpers": "^0.5.1",
27
27
  "use-sync-external-store": "^1.2.0"