-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_app.tsx
235 lines (217 loc) · 5.69 KB
/
_app.tsx
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
import React, { Component } from 'react';
import Link from 'next/link';
import { AppProps } from 'next/app';
import getConfig from 'next/config';
import AuthProvider, {
AuthContext,
AuthState,
hasDriverPrivilege,
hasFacilitatorPrivilege,
} from '../src/client/auth';
import 'bootstrap/dist/css/bootstrap.css';
import 'react-data-grid/lib/styles.css';
import 'react-datepicker/dist/react-datepicker.css';
import 'react-image-gallery/styles/css/image-gallery.css';
import './app.css';
import './document.css';
import './login.css';
import './facilitator/clients/clients.css';
import './facilitator/index.css';
import './driver/rides/[rideId]/poll.css';
import '../src/common/components/driver/driver-list.css';
import '../src/common/components/driver/ride-detail.css';
import '../src/common/components/driver/driver-map.css';
import '../src/common/components/facilitator/client-images.css';
import '../src/common/components/facilitator/ride.css';
import '../src/common/components/driver//leaflet/leaflet.css';
const { publicRuntimeConfig } = getConfig();
interface LinkData {
type: string;
route?: string;
caption: string;
role?: string;
href?: string;
}
interface LinksProps {
links: LinkData[];
}
function Links(props: LinksProps) {
return (
<React.Fragment>
<button
className="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span className="navbar-toggler-icon" />
</button>
<div className="collapse navbar-collapse" id="navbarSupportedContent">
<ul className="navbar-nav ml-auto">
{props.links.map((link) => (
<li key={link.route} className="nav-item hcp-nav-item">
{link.type === 'external' ? (
<a
className="links nav-link"
href="http://www.hillscarpal.org.au/"
>
{link.caption}
</a>
) : (
<Link href={link.route} className="links nav-link">
{link.caption}
</Link>
)}
</li>
))}
</ul>
</div>
</React.Fragment>
);
}
const loggedOutLinks: LinkData[] = [
{
type: 'external',
href: 'http://www.hillscarpal.org.au/',
caption: 'about us',
},
{
type: 'external',
href: 'http://www.hillscarpal.org.au/',
caption: 'contribute',
},
{
type: 'external',
href: 'http://www.hillscarpal.org.au/donate/',
caption: 'donate',
},
{
type: 'external',
href: 'http://www.hillscarpal.org.au/contact-us/',
caption: 'contact us',
},
];
const loggedInLinks: LinkData[] = [
{
type: 'internal',
route: '/driver/queue',
caption: 'your rides',
role: 'driver',
},
{
type: 'internal',
route: '/driver/rides/find',
caption: 'find a ride',
role: 'driver',
},
{
type: 'internal',
route: '/facilitator',
caption: 'edit rides',
role: 'facilitator',
},
{
type: 'internal',
route: '/facilitator/clients',
caption: 'edit clients',
role: 'facilitator',
},
{
type: 'internal',
route: '/facilitator/drivers',
caption: 'edit drivers',
role: 'facilitator',
},
{
type: 'internal',
route: '/facilitator/facilitators',
caption: 'edit facilitators',
role: 'facilitator',
},
];
function getLinksForRoles(authState: AuthState) {
return loggedInLinks.filter((link) => {
if (link.role === 'facilitator') {
return hasFacilitatorPrivilege(authState);
} else if (link.role === 'driver') {
return hasDriverPrivilege(authState);
}
return true;
});
}
const Nav = () => {
const { authState, logout } = React.useContext(AuthContext);
const [onClient, setOnClient] = React.useState(false);
React.useEffect(() => {
setOnClient(true);
}, []);
const getLogoHref = () => {
if (!onClient || !authState) {
return '/';
} else if (hasFacilitatorPrivilege(authState)) {
return '/facilitator';
} else if (hasDriverPrivilege(authState)) {
return '/driver';
} else {
return '/';
}
};
return (
<nav className="navbar navbar-light bg-light navbar-expand-md hcp-navbar justify-content-between">
<Link className="navbar-brand" href={getLogoHref()}>
<img
src="/styles/CarPal-Logo-emma-transparent.png"
width="100"
height="106"
alt="HillsCarPal"
id="icon"
/>
</Link>
<div className="App-environment-name">
{publicRuntimeConfig.environmentName} Environment
</div>
{onClient ? (
<>
{!authState && <Links links={loggedOutLinks} />}
{authState && (
<React.Fragment>
<Links links={getLinksForRoles(authState)} />
<div>
<button
className="btn btn-success"
id="logOutButton"
onClick={() => {
if (window.confirm('Are you sure you want to logout?')) {
logout();
}
}}
>
{' '}
Log Out{' '}
</button>
</div>
</React.Fragment>
)}
</>
) : (
'Loading...'
)}
</nav>
);
};
class App extends Component<AppProps> {
render() {
return (
<AuthProvider>
<div className="hcp-app">
<Nav />
<this.props.Component {...this.props.pageProps} />
</div>
</AuthProvider>
);
}
}
export default App;