initial-data.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. const data = {
  2. trainings: [
  3. {
  4. id: 'training0',
  5. title: 'Indoor HIIT + Core',
  6. type: {
  7. id: 'type0',
  8. name: 'HIIT',
  9. description: 'High Intensity Interval Training'
  10. },
  11. createdAt: '2019-11-11T21:13:43.284Z',
  12. trainingDate: '2019-11-12T11:45:00.000Z',
  13. location: 'Yoga Room',
  14. registration: [],
  15. attendance: 14,
  16. ratings: [],
  17. published: true,
  18. content: [
  19. {
  20. id: 'block0',
  21. sequence: 0,
  22. title: 'Warmup',
  23. duration: 153,
  24. variation: '',
  25. format: {
  26. id: 'format0',
  27. name: 'Sequence',
  28. description: 'Simple sequence of exercises'
  29. },
  30. tracks: [
  31. {
  32. id: 0,
  33. title: "Hold on, I'm coming",
  34. artist: 'Sam & Dave',
  35. duration: 153,
  36. link: 'https://open.spotify.com/track/6PgVDY8GTkxF3GmhVGPzoB'
  37. }
  38. ],
  39. exercises: [
  40. {
  41. id: 'exercise0',
  42. name: 'lateral jump squat',
  43. description: '',
  44. video: '',
  45. targets: ['Glutes'],
  46. baseExercise: {
  47. id: 'baseExercise0',
  48. name: 'squat'
  49. }
  50. }
  51. ],
  52. description: 'Warm up everything.'
  53. },
  54. {
  55. id: 'block1',
  56. sequence: 1,
  57. title: 'Circuit',
  58. duration: 720,
  59. variation: '',
  60. format: {
  61. id: 'format1',
  62. name: 'Circuit',
  63. description: ''
  64. },
  65. tracks: [
  66. {
  67. id: 0,
  68. artist: 'Daniel Portman',
  69. title: "You're Not Alone",
  70. duration: 180,
  71. link: 'https://open.spotify.com/track/0a4lBQU2DEP6QtisqTldkq'
  72. },
  73. {
  74. id: 1,
  75. artist: 'ATFC & David Penn',
  76. title: 'Hipcats',
  77. duration: 180,
  78. link: 'https://open.spotify.com/track/38HvJkH21S2bRciZHohv68'
  79. },
  80. {
  81. id: 2,
  82. artist: 'Eli Brown',
  83. title: 'In the Dance',
  84. duration: 180,
  85. link:
  86. 'https://open.spotify.com/track/0IHFbC9dNZzyZEWy7EZVl1?si=LKAA4MpZRy6oSOk1uZyKBg'
  87. },
  88. {
  89. id: 3,
  90. artist: 'Biscits',
  91. title: 'Do It Like This',
  92. duration: 180,
  93. link:
  94. 'https://open.spotify.com/track/6JR7gYT1P4t1koPPgq4miN?si=1dJpkq5FTHaG36gXsfHeAA'
  95. }
  96. ],
  97. exercises: [
  98. {
  99. id: 'exercise1',
  100. name: 'boxer',
  101. description: '',
  102. video: '',
  103. targets: ['Thighs', 'Glutes'],
  104. baseExercise: {
  105. id: 'baseExercise1',
  106. name: 'on the spot run'
  107. }
  108. },
  109. {
  110. id: 'exercise2',
  111. name: 'rotational drop squat',
  112. description: '',
  113. video: '',
  114. targets: ['Thighs', 'Glutes'],
  115. baseExercise: {
  116. id: 'baseExercise0',
  117. name: 'squat'
  118. }
  119. }
  120. ]
  121. }
  122. ]
  123. }
  124. ],
  125. polls: []
  126. }
  127. export default data