initial-data.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. const data = {
  2. trainings: [{
  3. id: 'training0',
  4. title: 'Indoor HIIT + Core',
  5. type: {
  6. id: 'type0',
  7. name: 'HIIT',
  8. description: 'High Intensity Interval Training'
  9. },
  10. createdAt: '2019-11-11T21:13:43.284Z',
  11. trainingDate: '2019-11-12T11:45:00.000Z',
  12. location: 'Yoga Room',
  13. registration: [],
  14. attendance: 14,
  15. ratings: [],
  16. published: true,
  17. content: [
  18. {
  19. id: 'block0',
  20. sequence: 0,
  21. title: 'Warmup',
  22. duration: 153,
  23. variation: '',
  24. format: {
  25. id: 'format0',
  26. name: 'Sequence',
  27. description: 'Simple sequence of exercises'
  28. },
  29. tracks: [{
  30. id: 0,
  31. title: "Hold on, I'm coming",
  32. artist: 'Sam & Dave',
  33. duration: 153,
  34. link: 'https://www.youtube.com/watch?v=AREppyQf5uw'
  35. }],
  36. exercises: [{
  37. id: 'exercise0',
  38. name: 'Squat',
  39. variations: [{
  40. id: 'exerciseVariation0',
  41. name: 'lateral jump squat',
  42. description: '',
  43. link: ''
  44. }]
  45. }],
  46. description: 'Warm up everything.'
  47. },
  48. {
  49. id: 'block1',
  50. sequence: 1,
  51. title: 'Circuit',
  52. duration: 720,
  53. variation: '',
  54. format: {
  55. id: 'format1',
  56. name: 'Circuit',
  57. description: ''
  58. },
  59. tracks: [{
  60. artist: 'Daniel Portman',
  61. title: "You're Not Alone",
  62. link: ''
  63. }, {
  64. artist: 'ATFC & David Penn',
  65. title: "Hipcats",
  66. link: ''
  67. }, {
  68. artist: 'Eli Brown',
  69. title: "In the Dance",
  70. link: ''
  71. }, {
  72. artist: 'Biscits',
  73. title: "Do It Like This",
  74. link: ''
  75. }],
  76. exercises: [{
  77. base: [{
  78. name: 'On the Spot Run',
  79. variations: [{
  80. name: 'regular', description: '', video: ''
  81. }, {
  82. name: 'high knees', description: '', video: ''
  83. }, {
  84. name: 'sprint', description: '', video: ''
  85. }, {
  86. name: 'butt kick', description: '', video: ''
  87. }, {
  88. name: 'boxer', description: '', video: ''
  89. }]
  90. }, {
  91. name: 'Squat',
  92. variations: [{
  93. name: 'regular', description: '', video: ''
  94. }, {
  95. name: 'jump', description: '', video: ''
  96. }, {
  97. name: 'sumo', description: '', video: ''
  98. }, {
  99. name: 'drop', description: '', video: ''
  100. }, {
  101. name: '1/4 turn', description: '', video: ''
  102. }, {
  103. name: '1/2 turn', description: '', video: ''
  104. }, {
  105. name: 'prisoner', description: '', video: ''
  106. }, {
  107. name: 'side-to-side', description: '', video: ''
  108. }, {
  109. name: 'in-out', description: '', video: ''
  110. }]
  111. }],
  112. variation: '8 boxers, 4 Rotational Drop Squats'
  113. }, {
  114. base: [{
  115. name: 'Push-Up',
  116. variations: ['regular', 'narrow', 'wide', 'plyo', 'around the world', 'push-back', 'jack']
  117. }, {
  118. name: 'Frog Jump',
  119. variations: ['regular', 'jump', 'sumo', 'drop', '1/4 turn', '1/2 turn', 'prisoner', 'side-to-side', 'in-out']
  120. }, {
  121. name: 'Kick-Out',
  122. variations: ['regular', 'jump', 'sumo', 'drop', '1/4 turn', '1/2 turn', 'prisoner', 'side-to-side', 'in-out']
  123. }],
  124. variation: '8 boxers, 4 Rotational Drop Squats'
  125. }]
  126. }
  127. ]
  128. }
  129. ],
  130. polls: []
  131. }
  132. export default data