initial-data.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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: 'lateral jump squat',
  39. description: '',
  40. video: '',
  41. targets: ['Glutes'],
  42. baseExercise: {
  43. id: 'baseExercise0',
  44. name: 'squat',
  45. }
  46. }],
  47. description: 'Warm up everything.'
  48. },
  49. {
  50. id: 'block1',
  51. sequence: 1,
  52. title: 'Circuit',
  53. duration: 720,
  54. variation: '',
  55. format: {
  56. id: 'format1',
  57. name: 'Circuit',
  58. description: ''
  59. },
  60. tracks: [{
  61. id: 0,
  62. artist: 'Daniel Portman',
  63. title: "You're Not Alone",
  64. duration: 180,
  65. link: 'https://www.youtube.com/watch?v=J64jRxcygwg'
  66. }, {
  67. id: 1,
  68. artist: 'ATFC & David Penn',
  69. title: "Hipcats",
  70. duration: 180,
  71. link: 'https://www.youtube.com/watch?v=9seTXdfNS2Y'
  72. }, {
  73. id: 2,
  74. artist: 'Eli Brown',
  75. title: "In the Dance",
  76. duration: 180,
  77. link: 'https://www.youtube.com/watch?v=o2mGqfWgZ-k'
  78. }, {
  79. id: 3,
  80. artist: 'Biscits',
  81. title: "Do It Like This",
  82. duration: 180,
  83. link: 'https://www.youtube.com/watch?v=KwK9bUYCaIg'
  84. }],
  85. exercises: [{
  86. id: 'exercise1',
  87. name: 'boxer',
  88. description: '',
  89. video: '',
  90. targets: ['Thighs', 'Glutes'],
  91. baseExercise: {
  92. id: 'baseExercise1',
  93. name: 'on the spot run'
  94. }
  95. }, {
  96. id: 'exercise2',
  97. name: 'rotational drop squat',
  98. description: '',
  99. video: '',
  100. targets: ['Thighs', 'Glutes'],
  101. baseExercise: {
  102. id: 'baseExercise0',
  103. name: 'squat'
  104. }
  105. }]
  106. }
  107. ]
  108. }
  109. ],
  110. polls: []
  111. }
  112. export default data