View update

This commit is contained in:
Dominic Ferrando
2025-09-18 00:01:27 -04:00
parent bd0b7ea828
commit e9f9821222
40 changed files with 1646 additions and 242 deletions
+75
View File
@@ -0,0 +1,75 @@
import { Activity, ActivityPerformance, feetToCm, Gender, inchesToCm, lbToKg, minToMs, Player, secToMs } from "../services/calculator/util";
import { ActivityStandards, LevelCalculator, Standards } from "../services/calculator/main"
import rawStandards from "../data/standards.json" assert { type: "json" }
const player: Player = {
metrics: {
age: 25,
weight: lbToKg(190),
gender: Gender.Male
}
};
const computedPerformances: ActivityPerformance[] = [
// STRENGTH
{
activity: Activity.BenchPress,
performance: lbToKg(225)
},
{
activity: Activity.Deadlift,
performance: lbToKg(270),
},
{
activity: Activity.BackSquat,
performance: lbToKg(190),
},
// POWER
{
activity: Activity.BroadJump,
performance: feetToCm(105) + inchesToCm(5),
},
// ENDURANCE
{
activity: Activity.Run,
performance: minToMs(7) + secToMs(15),
},
// AGILITY
{
activity: Activity.ConeDrill,
performance: secToMs(9),
},
];
// const newStandards: Standards = {
// "Back Squat": [],
// "Deadlift": [],
// "Bench Press": [],
// "Run": [],
// "Dash": [],
// "Treadmill Dash": [],
// "Broad Jump": [],
// "Cone Drill": [],
// };
//
// for (const item of standards) {
// if (!newStandards[item.activityType])
// continue;
//
// newStandards[item.activityType].push({
// metrics: {
// age: item.age,
// weight: item.bodyWeight,
// gender: item.gender
// },
// levels: {
// physicallyActive: item.physicallyActive,
// beginner: item.beginner,
// intermediate: item.intermediate,
// advanced: item.advanced,
// elite: item.elite
// }
// });
// }
//
// Bun.write("./newStandards.json", JSON.stringify(newStandards, null, 2));