funkwhale/front/ui-docs/components/ui/layout.md

223 wiersze
5.9 KiB
Markdown
Czysty Zwykły widok Historia

<script setup>
import { ref } from 'vue'
import Card from '~/components/ui/Card.vue'
import Alert from '~/components/ui/Alert.vue'
import Layout from '~/components/ui/Layout.vue'
import Spacer from '~/components/ui/Spacer.vue'
import Tab from '~/components/ui/Tab.vue'
import Tabs from '~/components/ui/Tabs.vue'
import Toggle from '~/components/ui/Toggle.vue'
import Button from '~/components/ui/Button.vue'
const isGrowing = ref(true)
const noGap = ref(true)
</script>
```ts
import Layout from "~/components/ui/Layout.vue"
```
# Layout
2025-01-01 23:33:54 +00:00
CSS provides [four methods to arrange items in a container](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_grid_layout/Relationship_of_grid_layout_with_other_layout_methods): Flow, Columns, Flex and Grid. To make typical alignment tasks in the Funkwhale Ui easier, we have created a few useful presets.
## Apply presets
The following containers are responsive. Change your window's size or select a device preset from your browser's dev tools to see how layouts are affected by available space.
2024-12-22 01:27:20 +00:00
<Layout flex style="--gap:8px">
2025-01-01 23:33:54 +00:00
<Card width="163px" title="flex" to="/components/ui/layout/flex" >
<Layout flex style="outline: 4px dashed var(--border-color)">
<Button primary icon="bi-eye" />
<Button outline icon="bi-eye" />
<Button destructive icon="bi-eye" />
</Layout>
</Card>
2025-01-01 23:33:54 +00:00
<Card width="163px" title="grid" to="/components/ui/layout/grid" >
<Layout grid column-width="40" style="outline: 4px dashed var(--border-color)">
<Button primary icon="bi-eye" />
<Button outline icon="bi-eye" style="grid-row: span 2; height: 100%;" />
<Button destructive icon="bi-eye" />
</Layout>
</Card>
<Card width="163px" title="stack" to="/components/ui/layout/stack">
<Layout stack style="--gap:0; margin:-8px; outline: 4px dashed var(--border-color)">
<Button primary icon="bi-eye" />
<Button outline icon="bi-eye" />
<Button destructive icon="bi-eye" />
</Layout></Card>
2025-01-09 14:14:21 +00:00
<Card width="163px" title="columns" to="/components/ui/layout/columns" >
<Layout columns column-width="40" style="outline: 4px dashed var(--border-color)">
<Button primary icon="bi-eye" />
<Button outline icon="bi-eye" />
<Button destructive icon="bi-eye" />
</Layout></Card>
</Layout>
2025-01-01 23:33:54 +00:00
## Add semantics
Add one of these props to your `Layout` component to turn them into semantic containers (without affecting their presentation):
**Headings:** [`"h1" | "h2" | "h3" | "h4" | "h5"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements#usage_notes)
**Sectioning:** [`"nav" | "aside" | "header" | "footer" | "main"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section#usage_notes)
**Forms:** [`"label" | "form"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element#forms)
## Common props
### `no-gap`: Remove the gap between items
<Layout flex>
```vue
<script setup>
const noGap = ref(true);
</script>
<template>
<Toggle v-model="noGap" />
<Layout flex :no-gap="noGap || undefined">
<Card title="A" small />
<Card title="B" small />
<Card title="C" small />
<Card title="D" small />
</Layout>
</template>
```
<div class="preview" style="width:0">
2024-12-30 12:44:38 +00:00
<Toggle v-model="noGap" label="no-gap" />
---
<Layout flex :no-gap="noGap || undefined">
<Card title="A" tiny />
<Card title="B" tiny />
<Card title="C" tiny />
<Card title="D" tiny />
</Layout>
</div>
</Layout>
### Add fixed or flexible Spacers
::: info Only available on:
- **stack**
- **flex**
:::
If you add a spacer with attribute `grow`, it will push the other item until the Layout fills the available space. This only works if the parent element itself grows beyond its minimal contents.
<Layout flex>
```vue
<script setup>
const isGrowing = ref(true);
</script>
<template>
<Toggle v-model="isGrowing" />
2024-12-30 12:44:38 +00:00
<Layout stack style="height:25em;">
<Alert red />
<Alert purple />
<Spacer :grow="isGrowing || undefined" />
<Alert blue />
</Layout>
</template>
```
<div class="preview">
2024-12-30 12:44:38 +00:00
<Toggle v-model="isGrowing" label="grow"/>
---
2024-12-30 12:44:38 +00:00
<Layout stack style="height:25em">
<Alert red />
<Alert purple />
<Spacer :grow="isGrowing || undefined" />
<Alert blue />
</Layout>
</div>
</Layout>
Multiple spacers will distribute their growth evenly.
2024-12-20 15:16:24 +00:00
Note that you can set the minimum space occupied by the `Spacer` with its `size` prop [(docs)](./layout/spacer). Negative values can offset the gap of the `Layout` (but, due to a limitation of flexbox, not eat into the space occupied by adjacent items):
<Layout flex>
```vue
<template>
<Toggle v-model="isGrowing" />
2024-12-30 12:44:38 +00:00
<Layout stack style="height:35em;">
<Alert blue />
<Spacer :size="-32" :grow="isGrowing || undefined" />
<Alert green />
<Alert yellow />
<Spacer :size="-32" :grow="isGrowing || undefined" />
<Alert red />
</Layout>
</template>
```
<div class="preview" style="width:0">
<Toggle v-model="isGrowing" />
---
2024-12-30 12:44:38 +00:00
<Layout stack style="height:35em;">
<Alert blue />
<Spacer :size="-32" :grow="isGrowing || undefined" />
<Alert green />
<Alert yellow />
<Spacer :size="-32" :grow="isGrowing || undefined" />
<Alert red />
</Layout>
</div>
</Layout>
---
<Tabs class="solid" style="border: 32px solid var(--background-color);border-radius: 8px;outline: 1px solid var(--border-color);margin: 0 -32px;">
<Tab title="Flex (default)" icon="⠖">
Items are laid out in a row and wrapped as they overflow the container
2025-01-01 23:33:54 +00:00
[Layout flex](/components/ui/layout/flex)
</Tab>
<Tab title="Grid" icon="ꖛ">
Align items both vertically and horizontally
2025-01-01 23:33:54 +00:00
[Layout grid](/components/ui/layout/grid)
</Tab>
<Tab title="Stack" icon="𝌆">
Add space between vertically stacked items
2025-01-01 23:33:54 +00:00
[Layout stack](/components/ui/layout/stack)
</Tab>
<Tab title="Columns" icon="ꔖ">
Let text and items flow like on a printed newspaper
2025-01-01 23:33:54 +00:00
[Layout columns](/components/ui/layout/columns)
</Tab>
</Tabs>