Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: flex #785

Merged
merged 12 commits into from
Nov 5, 2024
254 changes: 254 additions & 0 deletions plugins/ui/docs/components/flex.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,254 @@
# Flex
A flexbox-based layout container that utilizes Spectrum dimension values and supports the gap property for consistent spacing between items.
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved

## Example

```python
from deephaven import ui


@ui.component
def flex():
return ui.flex(
ui.view(background_color="red", height="size-800", width="size-800"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="yellow", height="size-800", width="size-800"),
)
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved


my_flex = flex()
```

## Direction

The `direction` prop determines the direction in which the flex items are laid out.

Options:
- `row` (default): the flex items are arranged horizontally from left to right.
- `column`: the flex items are arranged vertically from top to bottom.
- `row-reverse`: the flex items are arranged horizontally from right to left.
- `column-reverse`: the flex items are arranged vertically from bottom to top.

```python
from deephaven import ui


@ui.component
def flex():
return [
ui.flex(
ui.view(background_color="red", height="size-800", width="size-800"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="yellow", height="size-800", width="size-800"),
),
ui.flex(
ui.view(background_color="red", height="size-800", width="size-800"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="yellow", height="size-800", width="size-800"),
direction="row-reverse",
),
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
ui.flex(
ui.view(background_color="red", height="size-800", width="size-800"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="yellow", height="size-800", width="size-800"),
direction="column",
),
ui.flex(
ui.view(background_color="red", height="size-800", width="size-800"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="yellow", height="size-800", width="size-800"),
direction="column-reverse",
),
]


my_flex = flex()
```

## Nesting

Flexboxes can be nested to create more complicated layouts. By using the `flex` prop on the children, the flexbox can expand to fill the remaining space.

```python
from deephaven import ui


@ui.component
def flex():
return [
ui.flex(
ui.view(background_color="red", height="size-800"),
ui.flex(
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-800"),
),
direction="column",
),
]


my_flex = flex()
```


## Wrapping

When enabled, items that overflow wrap into the next row. Resize your browser window to see the items reflow.

```python
from deephaven import ui


@ui.component
def flex():
return ui.flex(
ui.view(background_color="red", height="size-800", width="size-800"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="yellow", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-800"),
ui.view(background_color="orange", height="size-800", width="size-800"),
wrap=True,
width="200px",
align_content="start",
)


my_flex = flex()
```


## Alignment

The `alignItems` prop can align items along the cross-axis. When the direction is set to "column", it controls horizontal alignment, and when it is set to "row", it controls vertical alignment.
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved

Options:
- `stretch` (default): the flex items are stretched to fill the container along the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `start`: the flex items are aligned at the start of the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `end`: the flex items are aligned at the end of the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `center`: the flex items are centered along the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `self-start`: the flex items are aligned at the start of their container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `self-end`: the flex items are aligned at the end of their container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `baseline`: the flex items are aligned based on their baselines
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `first baseline`: the flex items are aligned based on the first baseline of the container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `last baseline`: the flex items are aligned based on the last baseline of the container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `safe center`: the flex items are centered along the cross axis, ensuring they remain within the safe area
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `unsafe center`: the flex items are centered along the cross axis, without considering the safe area
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved

```python
from deephaven import ui


@ui.component
def flex():
vertical = ui.flex(
ui.flex(
ui.view(background_color="red", height="size-800", width="size-400"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-200"),
direction="column",
align_items="start",
),
ui.flex(
ui.view(background_color="red", height="size-800", width="size-400"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-200"),
direction="column",
align_items="center",
),
ui.flex(
ui.view(background_color="red", height="size-800", width="size-400"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-200"),
direction="column",
align_items="end",
),
)
horizontal = ui.flex(
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
ui.flex(
ui.view(background_color="red", width="size-800", height="size-400"),
ui.view(background_color="green", width="size-800", height="size-800"),
ui.view(background_color="blue", width="size-800", height="size-200"),
align_items="start",
),
ui.flex(
ui.view(background_color="red", width="size-800", height="size-400"),
ui.view(background_color="green", width="size-800", height="size-800"),
ui.view(background_color="blue", width="size-800", height="size-200"),
align_items="center",
),
ui.flex(
ui.view(background_color="red", width="size-800", height="size-400"),
ui.view(background_color="green", width="size-800", height="size-800"),
ui.view(background_color="blue", width="size-800", height="size-200"),
align_items="end",
),
direction="column",
)

return ui.flex(vertical, horizontal)


my_flex = flex()
```


## Justification
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved

The `justifyContent` prop aligns items along the main axis. For a "column" direction, it controls vertical alignment, and for a "row" direction, it controls horizontal alignment.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
The `justifyContent` prop aligns items along the main axis. For a "column" direction, it controls vertical alignment, and for a "row" direction, it controls horizontal alignment.
The `justifyContent` prop aligns items along the main axis. "Column" direction controls vertical alignment, and "row" direction controls horizontal alignment.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this capture the same meaning?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think "column" and "row" might be misinterpreted as values for the justify_content prop rather than an external factor that dictates how justify_content behaves but I didn't make that clear in my original phrasing either. I've reworded it to the following to convey that message more clearly:

The justify_content prop is used to align items along the main axis. When the direction is set to "column", it controls the vertical alignment, and when the direction is set to "row", it controls the horizontal alignment.

Will defer to @dsmmcken for this one


Options:
- `stretch` (default): the flex items are stretched to fill the container along the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `start`: the flex items are aligned at the start of the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `end`: the flex items are aligned at the end of the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `center`: the flex items are centered along the cross axis
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `left`: the flex items are packed toward the left edge of the container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `right`: the flex items are packed toward the right edge of the container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `space-between`: the flex items are evenly distributed with the first item at the start and the last item at the end
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `space-around`: the flex items are evenly distributed with equal space around them
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `space-evenly`: the flex items are evenly distributed with equal space between them
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `baseline`: the flex items are aligned based on their baselines
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `first baseline`: the flex items are aligned based on the first baseline of the container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `last baseline`: the flex items are aligned based on the last baseline of the container
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `safe center`: the flex items are centered along the cross axis, ensuring they remain within the safe area
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
- `unsafe center`: the flex items are centered along the cross axis, without considering the safe area
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved

```python
from deephaven import ui


@ui.component
def flex():
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
start = ui.flex(
ui.view(background_color="red", height="size-800", width="size-400"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-200"),
justify_content="start",
width="500px",
ethanalvizo marked this conversation as resolved.
Show resolved Hide resolved
)
center = ui.flex(
ui.view(background_color="red", height="size-800", width="size-400"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-200"),
justify_content="center",
width="500px",
)
end = ui.flex(
ui.view(background_color="red", height="size-800", width="size-400"),
ui.view(background_color="green", height="size-800", width="size-800"),
ui.view(background_color="blue", height="size-800", width="size-200"),
justify_content="end",
width="500px",
)

return ui.flex(start, center, end, direction="column")


my_flex = flex()
```


## API reference

```{eval-rst}
.. dhautofunction:: deephaven.ui.flex
```
3 changes: 3 additions & 0 deletions plugins/ui/src/deephaven/ui/components/flex.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ def flex(
gap: The space to display between both rows and columns of children.
column_gap: The space to display between columns of children.
row_gap: The space to display between rows of children.

Returns:
The rendered flex box.
"""
return component_element(
"Flex",
Expand Down
Loading