forked from patternfly/patternfly-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInPageWithDrawer.tsx
More file actions
215 lines (199 loc) · 6.04 KB
/
InPageWithDrawer.tsx
File metadata and controls
215 lines (199 loc) · 6.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import { Fragment, useRef, useState } from 'react';
import {
Brand,
Breadcrumb,
BreadcrumbItem,
Button,
Content,
Drawer,
DrawerActions,
DrawerCloseButton,
DrawerContent,
DrawerPanelContent,
DrawerHead,
Flex,
Nav,
NavItem,
NavList,
Page,
PageSection,
PageSectionTypes,
PageSidebar,
PageSidebarBody,
SkipToContent,
Masthead,
MastheadMain,
MastheadToggle,
MastheadBrand,
MastheadLogo,
PageToggleButton,
Wizard,
WizardStep
} from '@patternfly/react-core';
import pfLogo from '@patternfly/react-core/src/demos/assets/PF-HorizontalLogo-Color.svg';
import BarsIcon from '@patternfly/react-icons/dist/js/icons/bars-icon';
export const WizardFullPageWithDrawerDemo: React.FunctionComponent = () => {
const [isDrawerExpanded, setIsDrawerExpanded] = useState(false);
const [activeItem, setActiveItem] = useState(0);
const drawerRef = useRef<HTMLSpanElement>(null);
const onExpand = () => {
if (drawerRef.current) {
drawerRef.current.focus();
}
};
const onOpenClick = () => {
setIsDrawerExpanded(true);
};
const onCloseClick = () => {
setIsDrawerExpanded(false);
};
const onNavSelect = (_event: React.FormEvent<HTMLElement>, result: { itemId: number | string }) => {
setActiveItem(result.itemId as number);
};
const PageNav = (
<Nav onSelect={onNavSelect} aria-label="Nav">
<NavList>
<NavItem itemId={0} isActive={activeItem === 0}>
System Panel
</NavItem>
<NavItem itemId={1} isActive={activeItem === 1}>
Policy
</NavItem>
<NavItem itemId={2} isActive={activeItem === 2}>
Authentication
</NavItem>
<NavItem itemId={3} isActive={activeItem === 3}>
Network Services
</NavItem>
<NavItem itemId={4} isActive={activeItem === 4}>
Server
</NavItem>
</NavList>
</Nav>
);
const masthead = (
<Masthead id="basic">
<MastheadMain>
<MastheadToggle>
<PageToggleButton variant="plain" aria-label="Global navigation">
<BarsIcon />
</PageToggleButton>
</MastheadToggle>
<MastheadBrand>
<MastheadLogo>
<Brand src={pfLogo} alt="PatternFly" heights={{ default: '36px' }} />
</MastheadLogo>
</MastheadBrand>
</MastheadMain>
</Masthead>
);
const Sidebar = (
<PageSidebar>
<PageSidebarBody>{PageNav}</PageSidebarBody>
</PageSidebar>
);
const pageId = 'main-content-page-layout-default-nav';
const handleClick = (event) => {
event.preventDefault();
const mainContentElement = document.getElementById(pageId);
if (mainContentElement) {
mainContentElement.focus();
}
};
const PageSkipToContent = (
<SkipToContent onClick={handleClick} href={`#${pageId}`}>
Skip to content
</SkipToContent>
);
const PageBreadcrumb = (
<Breadcrumb>
<BreadcrumbItem>Section home</BreadcrumbItem>
<BreadcrumbItem to="#">Section title</BreadcrumbItem>
<BreadcrumbItem to="#">Section title</BreadcrumbItem>
<BreadcrumbItem to="#" isActive>
Section landing
</BreadcrumbItem>
</Breadcrumb>
);
const createStepContentWithDrawer = (stepName: string) => (
<Drawer isInline isExpanded={isDrawerExpanded} onExpand={onExpand}>
<DrawerContent
panelContent={
<DrawerPanelContent widths={{ default: 'width_33' }}>
<DrawerHead>
<span tabIndex={isDrawerExpanded ? 0 : -1} ref={drawerRef}>
Drawer content: {stepName}
</span>
<DrawerActions>
<DrawerCloseButton onClick={onCloseClick} />
</DrawerActions>
</DrawerHead>
</DrawerPanelContent>
}
>
<Flex
className="pf-v6-c-wizard__main-body"
direction={{ default: 'column' }}
spaceItems={{ default: 'spaceItemsLg' }}
height="100%"
>
{!isDrawerExpanded && (
<Button isInline variant="link" onClick={onOpenClick}>
Open drawer
</Button>
)}
<div>{stepName} content</div>
</Flex>
</DrawerContent>
</Drawer>
);
return (
<Fragment>
<Page
masthead={masthead}
sidebar={Sidebar}
isManagedSidebar
skipToContent={PageSkipToContent}
breadcrumb={PageBreadcrumb}
mainContainerId={pageId}
>
<PageSection aria-labelledby="main-title">
<Content>
<h1 id="main-title">Main title</h1>
<p>A demo of a wizard in a page.</p>
</Content>
</PageSection>
<PageSection hasBodyWrapper={false} type={PageSectionTypes.wizard} aria-label="Wizard container">
<Wizard>
<WizardStep body={{ hasNoPadding: true }} name="Information" id="wizard-step-1">
{createStepContentWithDrawer('Information step')}
</WizardStep>
<WizardStep
name="Configuration"
id="wizard-step-2"
steps={[
<WizardStep body={{ hasNoPadding: true }} name="Substep A" id="wizard-step-2a" key="wizard-step-2a">
{createStepContentWithDrawer('Configuration substep A')}
</WizardStep>,
<WizardStep body={{ hasNoPadding: true }} name="Substep B" id="wizard-step-2b" key="wizard-step-2b">
{createStepContentWithDrawer('Configuration substep B')}
</WizardStep>
]}
/>
<WizardStep body={{ hasNoPadding: true }} name="Additional" id="wizard-step-3">
{createStepContentWithDrawer('Additional step')}
</WizardStep>
<WizardStep
body={{ hasNoPadding: true }}
name="Review"
id="wizard-step-4"
footer={{ nextButtonText: 'Finish' }}
>
{createStepContentWithDrawer('Review step')}
</WizardStep>
</Wizard>
</PageSection>
</Page>
</Fragment>
);
};