-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
414 lines (302 loc) · 12.5 KB
/
app.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
(function(){
"use strict";
// String with all dinos
const dinosJson = '{"Dinos":[{"species":"Triceratops","weight":13000,"height":114,"diet":"herbavor","where":"North America","when":"Late Cretaceous","fact":"First discovered in 1889 by Othniel Charles Marsh"},{"species":"Tyrannosaurus Rex","weight":11905,"height":144,"diet":"carnivor","where":"North America","when":"Late Cretaceous","fact":"The largest known skull measures in at 5 feet long."},{"species":"Anklyosaurus","weight":10500,"height":55,"diet":"herbavor","where":"North America","when":"Late Cretaceous","fact":"Anklyosaurus survived for approximately 135 million years."},{"species":"Brachiosaurus","weight":70000,"height":"372","diet":"herbavor","where":"North America","when":"Late Jurasic","fact":"An asteroid was named 9954 Brachiosaurus in 1991."},{"species":"Stegosaurus","weight":11600,"height":79,"diet":"herbavor","where":"North America, Europe, Asia","when":"Late Jurasic to Early Cretaceous","fact":"The Stegosaurus had between 17 and 22 seperate places and flat spines."},{"species":"Elasmosaurus","weight":16000,"height":59,"diet":"carnivor","where":"North America","when":"Late Cretaceous","fact":"Elasmosaurus was a marine reptile first discovered in Kansas."},{"species":"Pteranodon","weight":44,"height":20,"diet":"carnivor","where":"North America","when":"Late Cretaceous","fact":"Actually a flying reptile, the Pteranodon is not a dinosaur."},{"species":"Pigeon","weight":0.5,"height":9,"diet":"herbavor","where":"World Wide","when":"Holocene","fact":"All birds are living dinosaurs."}]}';
// Definition of Dinos object
function Animals( data ){
this.items = JSON.parse( data ).Dinos;
// Create Dino Objects
this.items = this.items.map( item => {
return new Dino( ...Object.values( item ) );
});
// Gets items
this.getItems = function( randomize, centerHuman ){
if( randomize ){
this.items = this.items.sort(() => Math.random() - 0.5);
}
if( centerHuman ){
let human;
for( let index = 0; index < this.items.length; index++) {
if( this.items[index].species == "Human" ) {
human = this.items.splice( index, 1 )[0];
}
}
this.items.splice( Math.floor(this.items.length/2), 0, human );
}
return this.items;
}
// Add new object to array
this.addItem = function( item ){
this.items.push( item );
}
// Compare #1: Gets objects with highest and lowest weight
this.getHighestWeight = function(){
let highestWeight;
this.items.forEach( ( item ) => {
if( ! highestWeight ){
highestWeight = item;
return;
}
if( item.weight > highestWeight.weight ){
highestWeight = item;
}
} )
return highestWeight;
};
this.getLightestWeight = function() {
let lightestWeight;
this.items.forEach( ( item ) => {
if( ! lightestWeight ){
lightestWeight = item;
return;
}
if( item.weight < lightestWeight.weight ){
lightestWeight = item;
}
} )
return lightestWeight;
};
// Compare #2: Gets tallest and shortest object
this.getTallest = function(){
let tallest;
this.items.forEach( ( item ) => {
if( ! tallest ){
tallest = item;
return;
}
if( item.height > tallest.height ){
tallest = item;
}
} )
return tallest;
};
this.getShortest = function(){
let shortest;
this.items.forEach( ( item ) => {
if( ! shortest ){
shortest = item;
return;
}
if( item.height < shortest.height ){
shortest = item;
}
} )
return shortest;
};
// Get pigeon item
this.getPigeon = function(){
for ( let step = 0; step < this.items.length; step++ ) {
let dino = this.items[step];
if( dino.species == "Pigeon" ){
return dino;
}
}
return null;
}
}
// Create random selection of objects
function getRandomInt( min, max ){
min = Math.ceil( min );
max = Math.floor( max );
return Math.floor( Math.random() * ( max - min ) + min);
}
// Dino Constructor
function Dino( species, weight, height, diet, where, when, fact ){
this.species = species;
this.weight = weight;
this.height = height;
this.diet = diet;
this.where = where;
this.when = when;
this.fact = fact;
// Check if dino is heaviest
this.isHeaviest = function(){
let heaviestAnimal = animals.getHighestWeight()
if( this.species == heaviestAnimal.species && this.weight == heaviestAnimal.weight ){
return true;
}
return false;
};
// Check if dino is lightest
this.isLightest = function(){
let lightestAnimal = animals.getLightestWeight()
if( this.species == lightestAnimal.species && this.weight == lightestAnimal.weight ){
return true;
}
return false;
};
// Check if dino is tallest
this.isTallest = function(){
let tallestAnimal = animals.getTallest()
if( this.species == tallestAnimal.species && this.weight == tallestAnimal.weight ){
return true;
}
return false;
};
// Check if dino is shortest
this.isShortest = function(){
let shortestAnimal = animals.getShortest()
if( this.species == shortestAnimal.species && this.weight == shortestAnimal.weight ){
return true;
}
return false;
};
// Compare #3: Gets oldest and newest time period
this.isOldestPeriod = function(){
return this.when == "Late Jurasic";
}
this.isNewestPeriod = function(){
return this.when == "Holocene";
}
// Construct image URL for tiles
this.getImageUrl = function(){
return './images/' + this.species + ".png"
}
}
// Human Constructor
function Human( name, height, weight, diet ){
this.species = 'Human';
this.name = name;
this.height = parseInt( height, 10 );
this.weight = parseInt( weight, 10 );
this.diet = diet;
this.when = 'Holocene';
this.where = null;
this.fact = null;
this.isHeaviest = false;
this.isLightest = false;
this.isTallest = false;
this.isShortest = false;
if( ! this.weight ){
this.weight = 0;
}
if( ! this.height ){
this.height = 0;
}
// Check if human is heaviest
this.isHeaviest = function(){
let heaviestAnimal = animals.getHighestWeight()
if( this.species == heaviestAnimal.species && this.weight == heaviestAnimal.weight ){
return true;
}
return false;
};
// Check if human is lightest
this.isLightest = function(){
let lightestAnimal = animals.getLightestWeight()
if( this.species == lightestAnimal.species && this.weight == lightestAnimal.weight ){
return true;
}
return false;
};
// Check if human is tallest
this.isTallest = function(){
let tallestAnimal = animals.getTallest()
if( this.species == tallestAnimal.species && this.weight == tallestAnimal.weight ){
return true;
}
return false;
};
// Check if human is shortest
this.isShortest = function(){
let shortestAnimal = animals.getShortest()
if( this.species == shortestAnimal.species && this.weight == shortestAnimal.weight ){
return true;
}
return false;
};
// Compare #3: Gets oldest and newest time period
this.isOldestPeriod = function(){
return this.when == "Late Jurasic";
}
this.isNewestPeriod = function(){
return this.when == "Holocene";
}
// Construct image URL for tiles
this.getImageUrl = function(){
return './images/' + this.species + ".png"
}
}
// Generate Tiles for each Dino in Array
function createTile ( item ){
const tileClass = document.createAttribute( "class" );
tileClass.value = "grid-item";
const tile = document.createElement( 'div' );
tile.setAttributeNode( tileClass );
const title = document.createElement( 'h3' );
const titleContent = document.createTextNode( item.species );
title.appendChild( titleContent );
tile.appendChild( title );
const speciesImage = document.createElement( 'img' );
const speciesImageSrc = document.createAttribute( 'src' );
speciesImageSrc.value = item.getImageUrl();
speciesImage.setAttributeNode( speciesImageSrc );
tile.appendChild( speciesImage );
const speciesLabel = ( item.species == "Human" ? "human" : ( item.species == "Pigeon" ? "pigeon" : "dino" ) );
tile.appendChild( createDataEl( "This " + speciesLabel + " belongs to the " + item.when + " era." ) )
tile.appendChild( createDataEl( "This " + speciesLabel + " is an " + item.diet.toLowerCase() + "." ) )
tile.appendChild( createDataEl( "This " + speciesLabel + " weighs " + item.weight + " lbs." ) )
tile.appendChild( createDataEl( "This " + speciesLabel + " is " + item.height + " inches tall." ) )
if( item.isHeaviest() ) {
tile.appendChild ( createDataEl( item.species + " is the heaviest." ) );
}
if ( item.isLightest() ) {
tile.appendChild ( createDataEl( item.species + " is the lightest." ) );
}
if( item.isTallest() ) {
tile.appendChild ( createDataEl( item.species + " is the tallest." ) );
}
if ( item.isShortest() ) {
tile.appendChild ( createDataEl( item.species + " is the shortest." ) );
}
if ( item.species == "Pigeon" ){
tile.appendChild ( createDataEl( "All birds are dinosaurs." ) );
}
return tile;
};
const createDataEl = function( data ){
const paragraph = document.createElement( 'p' );
const addData = document.createTextNode ( data );
paragraph.appendChild( addData );
return paragraph;
};
const generateTiles = function( items ) {
return items.map( createTile );
};
const insertTiles = function( insertTo, tiles ) {
tiles.forEach( tile => insertTo.appendChild( tile ) );
};
// Remove form from screen
const removeForm = function( form ){
form.remove();
}
// Get human data when form is submitted
const onFormSubmit = function ( event ){
event.preventDefault();
const humanForm = new FormData( event.target );
let humanEntry = {};
humanForm.forEach(function( value, key ){
humanEntry[key] = value;
});
let humanHeight = ( parseInt( humanEntry.feet, 10) * 12 ) + parseInt( humanEntry.inches, 10 );
human = new Human(
humanEntry.name,
humanHeight,
humanEntry.weight,
humanEntry.diet
)
animals.addItem(human);
insertTiles(
grid,
generateTiles( animals.getItems( true, true ) )
);
removeForm( event.target );
};
// On button click, prepare and display infographic
const animals = new Animals( dinosJson );
const form = document.getElementById( 'dino-compare' );
const grid = document.getElementById( 'grid' );
let human;
form.addEventListener( 'submit', onFormSubmit );
return;
})();