File size: 2,165 Bytes
cbdd38a
 
 
 
 
 
 
 
 
 
3daae40
cbdd38a
 
 
437a7ee
cbdd38a
 
3daae40
cbdd38a
3daae40
cbdd38a
889c2f1
3daae40
cbdd38a
 
3daae40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cbdd38a
 
a0db44f
 
 
 
 
 
 
 
 
 
cbdd38a
 
 
 
3daae40
75f3dfb
cbdd38a
 
75f3dfb
3daae40
 
cbdd38a
 
 
 
 
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
import { ExerciseType } from "@common/enums/exercise-type.enum";
import { Equipment } from "@common/models/equipment.model";
import { Exercise, IExercise } from "@common/models/exercise.model";
import { Muscle } from "@common/models/muscle.model";
import { dbStore } from "seeder/helpers/db-store";
import { IExerciseCSV } from "seeder/helpers/load-exercises-dataset";
import { seederWrapper } from "seeder/helpers/seeder-wrapper";

export default seederWrapper(Exercise, async () => {
  console.log('preparing exercises data... (this may take a while)');
  let randomDuration = 30 + Math.floor(Math.random() * 60);
  const data = await Promise.all(dbStore.excerisesDataset.map(async function (e: IExerciseCSV) {
    return {
      name: e.name,
      category: e.bodyPart,
      exerciseType: e.type,
      ...(
        e.type === ExerciseType.WEIGHT &&
        {
          reps: 10 + Math.floor(Math.random() * 10),
          sets: e.sets,
          duration: 0,
        }
        ||
        {
          duration: randomDuration,
        }
      ),

      expectedDurationRange: (e.type === ExerciseType.WEIGHT && {
        min: 10 + Math.floor(Math.random() * 10),
        max: 30 + Math.floor(Math.random() * 30),
      } ||
      {
        min: randomDuration,
        max: randomDuration,
      }),
      ...(
        e.instructions === "" &&
        {
          instructions: "Do this exercise",
        }
        ||
        {
          instructions: e.instructions,
        }
      ),
      ...(
        e.benefits === "" &&
        {
          benefits: "You will get stronger",
        }
        ||
        {
          benefits: e.benefits,
        }
      ),
      targetMuscles: {
        primary: (await Muscle.findOne({ name: e.target }).exec())._id,
        secondary: (await Muscle.findOne({ name: e.target }).exec())._id,
      },
      equipments: [(await Equipment.findOne({ name: e.equipment }).exec())._id],
      coverImage: e.gif_url,
      media: {
        type: 'image',
        url: e.gif_url,
      },
      isDeleted: false,
    } satisfies IExercise;
  }))
  console.log('inserting exercises...');
  await Exercise.insertMany(data);
})