react95-io / React95

🌈🕹 Windows 95 style UI component library for React
https://react95.io
MIT License
6.65k stars 185 forks source link

Add Balloon component #348

Open WesSouza opened 2 years ago

WesSouza commented 2 years ago

Win32 has the Balloon Control which provides a dialog box styled layer that can be used to provide contextual help while a user is interacting with a form, similar to an onboarding tooltip, or dialog from an avatar such as Clippit.

It should automatically position according to the screen boundaries, optimally starting at an anchor point to be determined.

The direction uses the concepts of CSS Logical Properties's Flow Values, where the Balloon is positioned above (block-start), below (block-end), to the left (inline-start) or to the right (inline-end) of the positionRelativeTo coordinates.

type BalloonProps = {
  children?: React.Node;
  direction?: 'block-start' | 'block-end' | 'inline-start' | 'inline-end'
  positionRelativeTo?: DOMRect;
}

defaults = {
  direction: 'block-start'
}

The Balloon tip should be centered at the side of the Balloon direction points at.

If positionRelativeTo is set, the Balloon has absolute position centered with that coordinate.

If positionRelativeTo is not set, the Balloon has block display and static position.

A useRelativePosition hook should be created to help with this positioning logic.

Screenshot 2022-08-06 at 7 33 57 AM