-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8494393
commit b37d5bc
Showing
1 changed file
with
139 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
--- | ||
id: sheet | ||
title: Sheet | ||
--- | ||
|
||
import { PropsTable, Description } from '@site/src/components'; | ||
|
||
# Sheet | ||
<Description name="Sheet" /> | ||
<PropsTable name="Sheet" /> | ||
|
||
## Использование | ||
Компонент `Sheet` может содержать любой контент напрямую через `children`. | ||
|
||
Также есть возможность добавить любой контент в заголовок и футер с помощью свойств `contentHeader` и `contentFooter`. | ||
|
||
```tsx live | ||
import React, { useState } from 'react'; | ||
import { Sheet, Button } from '@salutejs/caldera-online'; | ||
|
||
export function App() { | ||
const [opened, setOpened] = useState(false); | ||
|
||
return ( | ||
<> | ||
<Button onClick={() => setOpened(true)}>Открыть</Button> | ||
|
||
<Sheet opened={opened} | ||
onClose={() => setOpened(false)} | ||
contentHeader={ | ||
<div> | ||
<h4>header</h4> | ||
</div> | ||
} | ||
contentFooter={ | ||
<div> | ||
<p>footer</p> | ||
</div> | ||
} | ||
> | ||
<div style={{ 'padding-bottom': '300px' }}>body</div> | ||
</Sheet> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
## Примеры | ||
|
||
### Закрепление заголовка и футера | ||
|
||
С помощью свойств `isHeaderFixed` и `isFooterFixed` можно закрепить заголовок и футер. | ||
В этом случае при появлении прокрутки контент будет скроллится под них. | ||
|
||
```tsx live | ||
import React, { useState } from 'react'; | ||
import { Sheet, Button } from '@salutejs/caldera-online'; | ||
|
||
export function App() { | ||
const [opened, setOpened] = useState(false); | ||
|
||
return ( | ||
<> | ||
<Button onClick={() => setOpened(true)}>Открыть</Button> | ||
<Sheet opened={opened} | ||
onClose={() => setOpened(false)} | ||
contentHeader={ | ||
<div> | ||
<h4>header</h4> | ||
</div> | ||
} | ||
contentFooter={ | ||
<div> | ||
<p>footer</p> | ||
</div> | ||
} | ||
isFooterFixed | ||
isHeaderFixed | ||
> | ||
<div style={{ 'padding-bottom': '300px' }}>body</div> | ||
</Sheet> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
### Подложка | ||
|
||
Наличие или отсутствие подложки задается с помощью свойства `withOverlay`. | ||
|
||
В случае, когда подложка отсутствует, у пользователя появляется возможность взаимодействовать с контентом вне шторки. | ||
|
||
```tsx live | ||
import React, { useState } from 'react'; | ||
import { Sheet, Button } from '@salutejs/caldera-online'; | ||
|
||
export function App() { | ||
const [opened, setOpened] = useState(false); | ||
|
||
return ( | ||
<> | ||
<Button onClick={() => setOpened(!opened)}> | ||
{opened ? 'Закрыть' : 'Открыть'} | ||
</Button> | ||
<Sheet opened={opened} | ||
onClose={() => setOpened(false)} | ||
withOverlay={false} | ||
> | ||
<div style={{ 'padding-bottom': '300px' }}>body</div> | ||
</Sheet> | ||
</> | ||
); | ||
} | ||
``` | ||
|
||
К подложке можно добавить эффект размытия при помощи свойства `withBlur`. | ||
|
||
```tsx live | ||
import React, { useState } from 'react'; | ||
import { Sheet, Button } from '@salutejs/caldera-online'; | ||
|
||
export function App() { | ||
const [opened, setOpened] = useState(false); | ||
|
||
return ( | ||
<> | ||
<Button onClick={() => setOpened(!opened)}> | ||
{opened ? 'Закрыть' : 'Открыть'} | ||
</Button> | ||
<Sheet opened={opened} | ||
onClose={() => setOpened(false)} | ||
withBlur | ||
> | ||
<div style={{ 'padding-bottom': '300px' }}>body</div> | ||
</Sheet> | ||
</> | ||
); | ||
} | ||
``` |