-
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.
docs(plasma-new-hope, plasma-web, sdds-serv): Sheet docs added
- Loading branch information
1 parent
81882d4
commit 7944954
Showing
3 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
143 changes: 143 additions & 0 deletions
143
packages/plasma-new-hope/src/components/Sheet/Sheet.template-doc.mdx
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,143 @@ | ||
--- | ||
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 } from '@salutejs/{{ package }}'; | ||
import { Button } from '@salutejs/{{ package }}'; | ||
|
||
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 } from '@salutejs/{{ package }}'; | ||
import { Button } from '@salutejs/{{ package }}'; | ||
|
||
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 } from '@salutejs/{{ package }}'; | ||
import { Button } from '@salutejs/{{ package }}'; | ||
|
||
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 } from '@salutejs/{{ package }}'; | ||
import { Button } from '@salutejs/{{ package }}'; | ||
|
||
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> | ||
</> | ||
); | ||
} | ||
``` |
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,143 @@ | ||
--- | ||
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 } from '@salutejs/plasma-web'; | ||
import { Button } from '@salutejs/plasma-web'; | ||
|
||
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 } from '@salutejs/plasma-web'; | ||
import { Button } from '@salutejs/plasma-web'; | ||
|
||
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 } from '@salutejs/plasma-web'; | ||
import { Button } from '@salutejs/plasma-web'; | ||
|
||
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 } from '@salutejs/plasma-web'; | ||
import { Button } from '@salutejs/plasma-web'; | ||
|
||
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> | ||
</> | ||
); | ||
} | ||
``` |
Oops, something went wrong.