-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathModals.js
394 lines (362 loc) · 10 KB
/
Modals.js
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
import React, { Component } from 'react';
import ReactGA from 'react-ga';
import Tabs from 'react-bootstrap/Tabs';
import Tab from 'react-bootstrap/Tab';
import Button from 'react-bootstrap/Button';
import Modal from 'react-bootstrap/Modal';
import {
faExclamationTriangle,
faInfoCircle,
faTrashAlt,
faShareAlt,
faLink,
faCopy
} from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import {
TwitterShareButton,
WhatsappShareButton,
RedditShareButton,
PocketShareButton,
EmailShareButton,
TwitterIcon,
WhatsappIcon,
RedditIcon,
PocketIcon,
EmailIcon
} from 'react-share';
import {
title,
author,
contributors,
// repository,
// bugs,
version
} from '../package.json';
import './styles/Modals.css';
/**
* Modal displaying warning about an invalid build retrived from URL
*
* @class InvalidBuildModal
* @extends {Component}
*/
export class InvalidBuildModal extends Component {
constructor(props) {
super(props);
this.state = {
modal: true
};
this.toggle = this.toggle.bind(this);
}
toggle() {
this.setState(prevState => ({
modal: !prevState.modal
}));
}
render() {
return (
<Modal centered show={this.state.modal} onHide={this.toggle}>
<Modal.Header closeButton>
<span>
<FontAwesomeIcon
icon={faExclamationTriangle}
className="modal-icon"
/>
</span>
Invalid Talent Build
</Modal.Header>
<Modal.Body className="modal-body">
<div>
The talent build you're trying to view is invalid. Make sure you've
copied and pasted the link correctly.
<br />
<br />
</div>
<div data-testid="invalid-modal-body">
<b>Reason:</b> {this.props.message}
</div>
</Modal.Body>
<Modal.Footer>
<Button variant="primary" onClick={this.toggle}>
Close
</Button>
</Modal.Footer>
</Modal>
);
}
}
/**
* Modal displaying information about the application
*
* @class AboutModal
* @extends {Component}
*/
export class AboutModal extends Component {
constructor(props) {
super(props);
this.state = {
modal: false
};
this.toggle = this.toggle.bind(this);
}
shouldComponentUpdate(nextProps, nextState) {
if (this.state.modal !== nextState.modal) {
return true;
} else {
return false;
}
}
toggle() {
this.setState(prevState => ({
modal: !prevState.modal
}));
}
render() {
return (
<Modal centered show={this.state.modal} onHide={this.toggle}>
<Modal.Header closeButton>
<span>
<FontAwesomeIcon icon={faInfoCircle} className="modal-icon" />
</span>
{title}
</Modal.Header>
<Modal.Body>
<Tabs defaultActiveKey="about" className="tab-title">
<Tab eventKey="about" title="About">
<div>
<img
id="modal-app-icon"
src={`${process.env.PUBLIC_URL}/logo192.png`}
alt="RoK Talents Logo"
></img>
Talent builder for Rise of Kingdoms. Best viewed on PC/laptop.
</div>
<br />
<div>
<span className="about-label">App version:</span> {version}
</div>
<div>
<span className="about-label">Creator:</span>{' '}
<a href={author.url} target="_blank" rel="noopener noreferrer">
{author.name}
</a>
</div>
<div>
<span className="about-label">Contributors:</span>{' '}
{contributors.join(', ')}
</div>
{/* <div>
<span className="about-label">Code:</span>{' '}
<a href={repository.url} target="_blank" rel="noopener noreferrer">
GitHub
</a>
</div>
<div>
<span className="about-label">Report a bug:</span>{' '}
<a href={bugs.url} target="_blank" rel="noopener noreferrer">
Report
</a>
</div> */}
<div>
<span className="about-label">Support development:</span>{' '}
<a
href="https://www.buymeacoffee.com/simonho"
target="_blank"
rel="noopener noreferrer"
>
<img
id="coffee"
src="https://cdn.buymeacoffee.com/buttons/default-orange.png"
alt="Buy Me A Coffee"
></img>
</a>
</div>
</Tab>
<Tab eventKey="instructions" title="Instructions">
<ol>
<li>Choose commander in the top-right dropdown list</li>
<li>Assign points by clicking on talent nodes</li>
<li>Check your build stats in the Stats panel</li>
<li>
Click the Share button to get a{' '}
<strong>shareable link</strong> to your build
</li>
</ol>
<Button
id="button-tour"
variant="success"
size="sm"
onClick={() => {
this.toggle();
this.props.toggleTour();
}}
>
Show Guided Tour
</Button>
</Tab>
</Tabs>
</Modal.Body>
</Modal>
);
}
}
/**
* Modal displaying reset/delete confirmation
*
* @class ResetModal
* @extends {Component}
*/
export class ResetModal extends Component {
constructor(props) {
super(props);
this.state = {
modal: false
};
this.toggle = this.toggle.bind(this);
}
shouldComponentUpdate(nextProps, nextState) {
if (this.state.modal !== nextState.modal) {
return true;
} else {
return false;
}
}
toggle() {
this.setState(prevState => ({
modal: !prevState.modal
}));
}
render() {
return (
<Modal centered show={this.state.modal} onHide={this.toggle}>
<Modal.Header closeButton>
<span>
<FontAwesomeIcon icon={faTrashAlt} className="modal-icon" />
</span>
Reset
</Modal.Header>
<Modal.Body className="modal-body">
<div>Are you sure you want to reset the talent build?</div>
<div>This will remove all assigned talent points.</div>
</Modal.Body>
<Modal.Footer>
<Button
variant="danger"
onClick={() => {
this.props.resetTalents();
this.toggle();
}}
>
Reset
</Button>
<Button variant="secondary" onClick={this.toggle}>
Cancel
</Button>
</Modal.Footer>
</Modal>
);
}
}
/**
* Modal displaying sharing options for talent build
*
* @class ShareModal
* @extends {Component}
*/
export class ShareModal extends Component {
constructor(props) {
super(props);
this.state = {
modal: false
};
this.toggle = this.toggle.bind(this);
}
shouldComponentUpdate(nextProps, nextState) {
if (this.state.modal !== nextState.modal) {
return true;
} else {
return false;
}
}
toggle() {
this.setState(prevState => ({
modal: !prevState.modal
}));
}
copyURL() {
const input = document.getElementById('url');
input.readOnly = true;
input.select();
document.execCommand('copy');
document.getElementById('copyButton').innerHTML = '\u2713';
ReactGA.event({
category: 'Share',
action: 'Copy URL'
});
}
render() {
return (
<Modal centered show={this.state.modal} onHide={this.toggle}>
<Modal.Header closeButton>
<span>
<FontAwesomeIcon icon={faShareAlt} className="modal-icon" />
</span>
Share Talent Build
</Modal.Header>
<Modal.Body>
<div className="share-modal-label">
Copy talent build link to your clipboard:
</div>
<div className="input-group mb-3">
<div className="input-group-prepend">
<span className="input-group-text">
<FontAwesomeIcon icon={faLink} />
</span>
</div>
<input
id="url"
type="text"
className="form-control"
defaultValue={window.location.href}
></input>
<div className="input-group-append">
<button
id="copyButton"
className="btn btn-success"
type="button"
onClick={this.copyURL}
>
<FontAwesomeIcon icon={faCopy} />
</button>
</div>
</div>
<hr />
<div className="share-modal-label">Share to social media:</div>
<div id="share-modal-social">
<EmailShareButton url={window.location.href}>
<EmailIcon size={32} round />
</EmailShareButton>
<RedditShareButton url={window.location.href}>
<RedditIcon size={32} round />
</RedditShareButton>
<TwitterShareButton url={window.location.href}>
<TwitterIcon size={32} round />
</TwitterShareButton>
<WhatsappShareButton url={window.location.href}>
<WhatsappIcon size={32} round />
</WhatsappShareButton>
<PocketShareButton url={window.location.href}>
<PocketIcon size={32} round />
</PocketShareButton>
</div>
</Modal.Body>
<Modal.Footer>
<Button variant="primary" onClick={this.toggle}>
Close
</Button>
</Modal.Footer>
</Modal>
);
}
}
export default { InvalidBuildModal, AboutModal, ResetModal, ShareModal };