-
Notifications
You must be signed in to change notification settings - Fork 0
/
TotalContainer.js
498 lines (449 loc) · 18.9 KB
/
TotalContainer.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
import "./styles.css";
import React, { useState, useEffect } from "react";
import { PlayerPosMap, slotcodes } from "./constants";
import SangTable from "./SangTable";
import {isFetchable} from './util';
function TotalContainer() {
const [selectedPosition, setSelectedPosition] = useState(0);
const [playerList, setPlayerList] = useState([]);
const [playerDPCountMap, setPlayerDPCountMap] = useState(new Map())
const [playerMap, setPlayerMap] = useState(new Map())
const [selectedMode, setSelectedMode] = useState(0);
const [selectedWeek, setSelectedWeek] = useState(11);
// console.log(isFetchable('https://raw.githubusercontent.com/seoular/test/main/bovada5'))
const scrapeEspnStats = async (week) => {
//https://fantasy.espn.com/apis/v3/games/ffl/seasons/2023/segments/0/leagues/995547?view=mMatchup&view=mMatchupScore
const getUrl =
"https://raw.githubusercontent.com/seoular/OddsVis/main/ESPNAPIFiles/latestHppr"
// we may need to return to this but currently just use the latest one as it has past history as well
// "https://raw.githubusercontent.com/seoular/OddsVis/main/ESPNAPIFiles/week" + week + "hppr";
await fetch(getUrl)
.then((response) => {
return response.json();
})
.then((r) => {
let data = [];
const d = r;
for (const tm of d.teams) {
const tmid = tm.id;
for (const p of tm.roster.entries) {
const name = p.playerPoolEntry.player.fullName;
const slot = p.lineupSlotId;
const pos = slotcodes[slot];
// Injured status (need try/catch because of D/ST)
let inj = "NA";
try {
inj = p.playerPoolEntry.player.injuryStatus;
} catch (error) {
// Do nothing, leave 'NA' as the default value for injured status
}
// Projected/actual points
let proj = null,
act = null;
for (const stat of p.playerPoolEntry.player.stats) {
if (stat.scoringPeriodId !== week) {
continue;
}
if (stat.statSourceId === 0) {
act = stat.appliedTotal;
} else if (stat.statSourceId === 1) {
proj = stat.appliedTotal;
}
}
data.push([week, tmid, name, slot, pos, inj, proj, act]);
playerMap.set(name, {
proj: proj?.toFixed(2),
act: act?.toFixed(2)
});
}
}
}).catch((e) => {
playerMap.clear()
});
setPlayerMap(playerMap)
};
const scrapeData = async (pos, mode, week) => {
const sangPProps = new Map();
const dpCountMap = new Map();
let receptionMultiplier = .5;
if(mode == 0)
receptionMultiplier = .5;
else if(mode == 1)
receptionMultiplier = 0;
else if (mode == 2)
receptionMultiplier = 1;
//https://www.bovada.lv/services/sports/event/v2/events/A/description/football/nfl
var getUrl = 'https://raw.githubusercontent.com/seoular/test/main/bovada6'
//'https://raw.githubusercontent.com/seoular/OddsVis/main/BovadaAPIFiles/week' + week;
let testedInts = 5;
let lastTestedInt = 5;
let sangFlag = false;
while(await isFetchable('https://raw.githubusercontent.com/seoular/test/main/bovada' + testedInts)){
console.log('loop hit' + testedInts + lastTestedInt)
if(testedInts > lastTestedInt){
sangFlag = true;
lastTestedInt++;
}
await fetch('https://raw.githubusercontent.com/seoular/test/main/bovada' + testedInts)
.then((response) => {
return response.json();
})
.then((data) => {
let allNflGames = data[0].events.slice();
for (let i = 0; i < allNflGames.length; i++) {
let eachGameTDOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-1870")
?.markets.find(
(y) =>
y.descriptionKey == "Anytime Touchdown Scorer" &&
y.period.id == "119"
)?.outcomes;
let eachGameRushingOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-93")
?.markets.filter((y) => y.marketTypeId == "121337");
let eachGameReceivingOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-94")
?.markets.filter((y) => y.marketTypeId == "121333");
let eachGameReceptionOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-94")
?.markets.filter((y) => y.marketTypeId == "121332");
let eachGamePassingYdOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-1188")
?.markets.filter((y) => y.marketTypeId == "121348");
let eachGamePassingTDOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-1188")
?.markets.filter((y) => y.marketTypeId == "121335");
let eachGameIntOutcomes = allNflGames[i].displayGroups
.find((x) => x.id == "100-1188")
?.markets.filter((y) => y.marketTypeId == "121329");
if (typeof eachGameTDOutcomes !== "undefined") {
let amonRaFlag = false;
for (let j = 0; j < eachGameTDOutcomes.length; j++) {
let playerOdds = eachGameTDOutcomes[j];
if(playerOdds.description == 'CJ Stroud' ||playerOdds.description == 'C.J. Stroud'){
console.log(playerOdds.description + ' td outcomes ' + (1 / playerOdds.price.decimal) * 6)
}
if(playerOdds.description == 'Amon-Ra St.Brown' || playerOdds.description == 'Amon-Ra St. Brown'){
playerOdds.description = 'Amon-Ra St. Brown'
// console.log((1 / playerOdds.price.decimal) * 6)
}
if( !amonRaFlag ) {
if(sangFlag && sangPProps.has(playerOdds.description)){
//compare to past value future functionality
sangPProps.delete(playerOdds.description)
dpCountMap.delete(playerOdds.description)
sangFlag = false;
}
sangPProps.set(
playerOdds.description,
(1 / playerOdds.price.decimal) * 6
);
dpCountMap.set(
playerOdds.description,
1
)
}
if (name == 'Amon-Ra St. Brown'){
amonRaFlag = true;
}
}
}
if (typeof eachGameRushingOutcomes !== "undefined") {
let amonRaFlag = false;
for (let j = 0; j < eachGameRushingOutcomes.length; j++) {
let playerOdds = eachGameRushingOutcomes[j];
let name = playerOdds.description.slice(22);
if(name == 'CJ Stroud' ||name == 'C.J. Stroud'){
console.log(name + ' rush outcomes ' + playerOdds.outcomes[0].price.handicap / 10)
}
if(name == 'Amon-Ra St.Brown' || name == 'Amon-Ra St. Brown'){
name = 'Amon-Ra St. Brown'
}
let temp = sangPProps.get(name);
if (typeof temp == "undefined") {
temp = 0;
}
if( !amonRaFlag ) {
if(sangFlag && sangPProps.has(name)){
//compare to past value future functionality
sangPProps.delete(name)
dpCountMap.delete(name)
sangFlag = false;
}
sangPProps.set(
name,
temp + playerOdds.outcomes[0].price.handicap / 10
);
let tempCount = dpCountMap.get(name);
if( typeof tempCount == "undefined"){
tempCount = 0;
}
dpCountMap.set(
name,
tempCount + 1
)
}
if (name == 'Amon-Ra St. Brown'){
amonRaFlag = true;
}
}
}
if (typeof eachGameReceivingOutcomes !== "undefined") {
let amonRaFlag = false;
for (let j = 0; j < eachGameReceivingOutcomes.length; j++) {
let playerOdds = eachGameReceivingOutcomes[j];
let name = playerOdds.description.slice(24);
if(name == 'CJ Stroud' || name == 'C.J. Stroud'){
console.log(name + ' recyd outcomes ' + playerOdds.outcomes[0].price.handicap / 10)
}
if(name == 'Amon-Ra St.Brown' || name == 'Amon-Ra St. Brown'){
name = 'Amon-Ra St. Brown'
// console.log(playerOdds.outcomes[0].price.handicap / 10)
}
let temp = sangPProps.get(name);
if (typeof temp == "undefined") {
temp = 0;
}
if( !amonRaFlag ) {
if(sangFlag && sangPProps.has(name)){
//compare to past value future functionality
sangPProps.delete(name)
dpCountMap.delete(name)
sangFlag = false;
}
sangPProps.set(
name,
temp + playerOdds.outcomes[0].price.handicap / 10
);
let tempCount = dpCountMap.get(name);
if( typeof tempCount == "undefined"){
tempCount = 0;
}
dpCountMap.set(
name,
tempCount + 1
)
}
if (name == 'Amon-Ra St. Brown'){
amonRaFlag = true;
}
}
}
if (typeof eachGameReceptionOutcomes !== "undefined") {
let amonRaFlag = false;
for (let j = 0; j < eachGameReceptionOutcomes.length; j++) {
let playerOdds = eachGameReceptionOutcomes[j];
let name = playerOdds.description.slice(19);
if(name == 'CJ Stroud' || name == 'C.J. Stroud'){
console.log(name + ' reception outcomes ' + playerOdds.outcomes[0].price.handicap * receptionMultiplier)
}
if(name == 'Amon-Ra St.Brown' || name == 'Amon-Ra St. Brown'){
name = 'Amon-Ra St. Brown'
// console.log(playerOdds.outcomes[0].price.handicap * receptionMultiplier)
}
let temp = sangPProps.get(name);
if (typeof temp == "undefined") {
temp = 0;
}
if( !amonRaFlag ) {
if(sangFlag && sangPProps.has(name)){
//compare to past value future functionality
sangPProps.delete(name)
dpCountMap.delete(name)
sangFlag = false;
}
sangPProps.set(
name,
temp + playerOdds.outcomes[0].price.handicap * receptionMultiplier
);
let tempCount = dpCountMap.get(name);
if( typeof tempCount == "undefined"){
tempCount = 0;
}
dpCountMap.set(
name,
tempCount + 1
)
}
if (name == 'Amon-Ra St. Brown'){
amonRaFlag = true;
}
}
}
if (typeof eachGamePassingYdOutcomes !== "undefined") {
for (let j = 0; j < eachGamePassingYdOutcomes.length; j++) {
let playerOdds = eachGamePassingYdOutcomes[j];
let name = playerOdds.description.slice(22);
if(name == 'CJ Stroud' || name == 'C.J. Stroud'){
console.log(name + ' passyd outcomes ' + playerOdds.outcomes[0].price.handicap / 25)
}
let temp = sangPProps.get(name);
if (typeof temp == "undefined") {
temp = 0;
}
if(sangFlag && sangPProps.has(name)){
//compare to past value future functionality
sangPProps.delete(name)
dpCountMap.delete(name)
sangFlag = false;
}
sangPProps.set(
name,
temp + playerOdds.outcomes[0].price.handicap / 25
);
let tempCount = dpCountMap.get(name);
if( typeof tempCount == "undefined"){
tempCount = 0;
}
dpCountMap.set(
name,
tempCount + 1
)
}
}
if (typeof eachGamePassingTDOutcomes !== "undefined") {
for (let j = 0; j < eachGamePassingTDOutcomes.length; j++) {
let playerOdds = eachGamePassingTDOutcomes[j];
let name = playerOdds.description.slice(27);
if(name == 'CJ Stroud' || name == 'C.J. Stroud'){
console.log(name + ' passtd outcomes ' + playerOdds.outcomes[0].price.handicap * 4)
}
let temp = sangPProps.get(name);
if (typeof temp == "undefined") {
temp = 0;
}
if(sangFlag && sangPProps.has(name)){
//compare to past value future functionality
sangPProps.delete(name)
dpCountMap.delete(name)
sangFlag = false;
}
sangPProps.set(
name,
temp + playerOdds.outcomes[0].price.handicap * 4
);
let tempCount = dpCountMap.get(name);
if( typeof tempCount == "undefined"){
tempCount = 0;
}
dpCountMap.set(
name,
tempCount + 1
)
}
}
if (typeof eachGameIntOutcomes !== "undefined") {
for (let j = 0; j < eachGameIntOutcomes.length; j++) {
let playerOdds = eachGameIntOutcomes[j];
let name = playerOdds.description.slice(29);
if(name == 'CJ Stroud' || name == 'C.J. Stroud'){
console.log(name + ' int outcomes ' + playerOdds.outcomes[0].price.handicap * -2)
console.log(sangPProps.has(name) + ' ' + sangFlag)
}
let temp = sangPProps.get(name);
if (typeof temp == "undefined") {
temp = 0;
}
if(sangFlag && sangPProps.has(name)){
//compare to past value future functionality
sangPProps.delete(name)
dpCountMap.delete(name)
sangFlag = false;
}
sangPProps.set(
name,
temp + playerOdds.outcomes[0].price.handicap * -2
);
if(name == 'CJ Stroud' || name == 'C.J. Stroud'){
console.log('postcheck ' + sangPProps.has(name) + ' ' + sangFlag)
}
}
}
}
console.log(Array.from(dpCountMap.entries()).sort((a, b) => b[1] - a[1]))
console.log(Array.from(sangPProps.entries()).sort((a, b) => b[1] - a[1]))
const mapEntries = Array.from(sangPProps.entries());
// Sort the array based on the numeric value (assuming values are numbers)
mapEntries.sort((a, b) => b[1] - a[1]);
// Create a new Map from the sorted array
const sortedMap = new Map(mapEntries);
let finalList = Array.from(sortedMap.entries()).filter(
(x) =>
typeof PlayerPosMap.get(x[0]) !== "undefined" &&
(PlayerPosMap.get(x[0]) == pos || pos == 99 || (pos == 98 && PlayerPosMap.get(x[0]) !== 0)) &&
x[1] > 5
);
setPlayerDPCountMap(dpCountMap)
setPlayerList(finalList);
});
testedInts++;
sangFlag = false;
}
};
useEffect(() => {
scrapeEspnStats(selectedWeek)
}, [selectedWeek])
useEffect(() => {
scrapeData(selectedPosition, selectedMode, selectedWeek).catch(console.error);
}, [selectedPosition, selectedMode, selectedWeek]);
const redirectToPatreon = () => {
window.location.href = 'https://www.patreon.com/evProjecter';
}
return (
<div>
<div>
<div style={{display:'flex', marginLeft: '20px', marginBottom:'5px', marginTop:'15px'}}>
Fantasy Football Projections Powered by Vegas Player Props
</div>
<div style={{display:'flex'}}>
<select
defaultValue={selectedPosition}
onChange={(e) => {
setSelectedPosition(parseInt(e.target.value));
}}
style={{ display: "flex", marginLeft: "20px" }}
>
<option value="0">QB</option>
<option value="1">RB</option>
<option value="2">WR</option>
<option value="3">TE</option>
<option value="98">FLEX</option>
<option value="99">SUPERFLEX</option>
</select>
<select
defaultValue={selectedMode}
onChange={(e) => {
setSelectedMode(parseInt(e.target.value));
}}
style={{ display: "flex", marginLeft: "20px" }}
>
<option value="0">Half PPR</option>
<option value="1">Standard</option>
<option value="2">Full PPR</option>
</select>
<select
defaultValue={selectedWeek}
onChange={(e) => {
setSelectedWeek(parseInt(e.target.value));
}}
style={{ display: "flex", marginLeft: "20px" }}
>
<option value="11">Week 11</option>
<option value="10">Week 10</option>
</select>
</div>
<SangTable evList={playerList} espnPlayerMap={playerMap} dpCountMap={playerDPCountMap} />
</div>
<div class="updateTimeSection" >
EV values last updated Friday, 11/17 at 5:59pm ET
</div>
<div class="patreonSection">
<div>
Access the Pro version with extra statistical insight and future functionality by supporting my Patreon link below
</div>
<button class="button" onClick={(e) => {redirectToPatreon()}}><span>evProjecterPro</span></button>
</div>
</div>
);
}
export default TotalContainer;