homework.ts 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. import { ITraining } from "./src/training/types";
  2. const data: { trainings: ITraining[]; polls: any } = {
  3. trainings: [
  4. {
  5. id: "training0",
  6. title: "Homework 1",
  7. type: {
  8. id: "type0",
  9. name: "Core + Legs",
  10. description: "Some all time favorites.",
  11. },
  12. createdAt: "2020-04-07T21:13:43.284Z",
  13. trainingDate: "2020-04-08T09:45:00.000Z",
  14. location: "At home",
  15. registrations: [],
  16. attendance: 0,
  17. ratings: [],
  18. published: true,
  19. blocks: [
  20. {
  21. id: "block0",
  22. sequence: 0,
  23. title: "Work B**ch",
  24. repetitions: 1,
  25. rest: 90,
  26. video: "/media/workbitch.mp4",
  27. format: {
  28. id: "format0",
  29. name: "Sequence",
  30. description: "Sequence of exercises",
  31. },
  32. blocks: [
  33. {
  34. id: "block2",
  35. duration: 16,
  36. exercises: [
  37. {
  38. id: "exercise0",
  39. name: "Pulsing crunch with high knees",
  40. repetitions: 1,
  41. description:
  42. "Jog pulling your knees up high while moving sideways",
  43. videos: ["https://www.youtube.com/watch?v=s5GanRixp6I"],
  44. pictures: [
  45. "https://media1.popsugar-assets.com/files/thumbor/xfgCQbEWOZpPDA_HTMSfgcOnYYE/fit-in/1024x1024/filters:format_auto-!!-:strip_icc-!!-/2015/06/26/981/n/1922729/a7719ba19ea7a1ae_lateral-run-and-hold/i/Tabata-One-Lateral-High-Knee-Run-Hold.jpg",
  46. ],
  47. targets: [],
  48. baseExercise: {
  49. id: "baseExercise1",
  50. name: "Jog on the spot",
  51. },
  52. },
  53. ],
  54. },
  55. {
  56. id: "block3",
  57. duration: 30,
  58. exercises: [
  59. {
  60. id: "exercise1",
  61. name: "Oblique crunch - right",
  62. repetitions: 1,
  63. description:
  64. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  65. videos: [],
  66. pictures: [],
  67. targets: ["Thighs", "Glutes"],
  68. baseExercise: {
  69. id: "baseExercise1",
  70. name: "Squat",
  71. },
  72. },
  73. ],
  74. },
  75. {
  76. id: "block4",
  77. duration: 46,
  78. exercises: [
  79. {
  80. id: "exercise1",
  81. name: "Bicycle crunch",
  82. repetitions: 1,
  83. description:
  84. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  85. videos: [],
  86. pictures: [],
  87. targets: ["Thighs", "Glutes"],
  88. baseExercise: {
  89. id: "baseExercise1",
  90. name: "Squat",
  91. },
  92. },
  93. ],
  94. },
  95. {
  96. id: "block4",
  97. duration: 30,
  98. exercises: [
  99. {
  100. id: "exercise1",
  101. name: "Oblique crunch - left",
  102. repetitions: 1,
  103. description:
  104. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  105. videos: [],
  106. pictures: [],
  107. targets: ["Thighs", "Glutes"],
  108. baseExercise: {
  109. id: "baseExercise1",
  110. name: "Squat",
  111. },
  112. },
  113. ],
  114. },
  115. {
  116. id: "block4",
  117. duration: 45,
  118. exercises: [
  119. {
  120. id: "exercise1",
  121. name: "Russian Twist",
  122. repetitions: 1,
  123. description:
  124. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  125. videos: [],
  126. pictures: [],
  127. targets: ["Thighs", "Glutes"],
  128. baseExercise: {
  129. id: "baseExercise1",
  130. name: "Squat",
  131. },
  132. },
  133. ],
  134. },
  135. {
  136. id: "block4",
  137. duration: 18,
  138. exercises: [
  139. {
  140. id: "exercise1",
  141. name: "Plank",
  142. repetitions: 1,
  143. description:
  144. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  145. videos: [],
  146. pictures: [],
  147. targets: ["Thighs", "Glutes"],
  148. baseExercise: {
  149. id: "baseExercise1",
  150. name: "Squat",
  151. },
  152. },
  153. ],
  154. },
  155. {
  156. id: "block4",
  157. duration: 45,
  158. exercises: [
  159. {
  160. id: "exercise1",
  161. name: "Plank with arm extension",
  162. repetitions: 1,
  163. description:
  164. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  165. videos: [],
  166. pictures: [],
  167. targets: ["Thighs", "Glutes"],
  168. baseExercise: {
  169. id: "baseExercise1",
  170. name: "Squat",
  171. },
  172. },
  173. ],
  174. },
  175. {
  176. id: "block4",
  177. duration: 20,
  178. exercises: [
  179. {
  180. id: "exercise1",
  181. name: "Plank with knee drops",
  182. repetitions: 1,
  183. description:
  184. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  185. videos: [],
  186. pictures: [],
  187. targets: ["Thighs", "Glutes"],
  188. baseExercise: {
  189. id: "baseExercise1",
  190. name: "Squat",
  191. },
  192. },
  193. ],
  194. },
  195. ],
  196. },
  197. {
  198. id: "block0",
  199. sequence: 0,
  200. title: "Sally",
  201. repetitions: 1,
  202. rest: 90,
  203. video: "/media/flowers.mp4",
  204. format: {
  205. id: "format0",
  206. name: "Sequence",
  207. description: "Sequence of exercises",
  208. },
  209. blocks: [
  210. {
  211. id: "block4",
  212. duration: 205,
  213. exercises: [
  214. {
  215. id: "exercise1",
  216. name: "Bring Sally up - bring Sally down",
  217. repetitions: 1,
  218. description:
  219. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  220. videos: [],
  221. pictures: [],
  222. targets: ["Thighs", "Glutes"],
  223. baseExercise: {
  224. id: "baseExercise1",
  225. name: "Squat",
  226. },
  227. },
  228. ],
  229. },
  230. ],
  231. },
  232. {
  233. id: "block0",
  234. sequence: 0,
  235. title: "Killer",
  236. repetitions: 1,
  237. rest: 90,
  238. video: "/media/killer.mp4",
  239. format: {
  240. id: "format0",
  241. name: "Sequence",
  242. description: "Sequence of exercises",
  243. },
  244. blocks: [
  245. {
  246. id: "block2",
  247. duration: 15,
  248. exercises: [
  249. {
  250. id: "exercise0",
  251. name: "Plank",
  252. repetitions: 1,
  253. description:
  254. "Jog pulling your knees up high while moving sideways",
  255. videos: ["https://www.youtube.com/watch?v=s5GanRixp6I"],
  256. pictures: [
  257. "https://media1.popsugar-assets.com/files/thumbor/xfgCQbEWOZpPDA_HTMSfgcOnYYE/fit-in/1024x1024/filters:format_auto-!!-:strip_icc-!!-/2015/06/26/981/n/1922729/a7719ba19ea7a1ae_lateral-run-and-hold/i/Tabata-One-Lateral-High-Knee-Run-Hold.jpg",
  258. ],
  259. targets: [],
  260. baseExercise: {
  261. id: "baseExercise1",
  262. name: "Jog on the spot",
  263. },
  264. },
  265. ],
  266. },
  267. {
  268. id: "block3",
  269. duration: 45,
  270. exercises: [
  271. {
  272. id: "exercise1",
  273. name: "Plank combo 1: Arms, legs, knees",
  274. repetitions: 1,
  275. description:
  276. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  277. videos: [],
  278. pictures: [],
  279. targets: ["Thighs", "Glutes"],
  280. baseExercise: {
  281. id: "baseExercise1",
  282. name: "Squat",
  283. },
  284. },
  285. ],
  286. },
  287. {
  288. id: "block4",
  289. duration: 45,
  290. exercises: [
  291. {
  292. id: "exercise1",
  293. name: "Plank combo 2: Pushup, hydrant",
  294. repetitions: 1,
  295. description:
  296. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  297. videos: [],
  298. pictures: [],
  299. targets: ["Thighs", "Glutes"],
  300. baseExercise: {
  301. id: "baseExercise1",
  302. name: "Squat",
  303. },
  304. },
  305. ],
  306. },
  307. {
  308. id: "block4",
  309. duration: 15,
  310. exercises: [
  311. {
  312. id: "exercise1",
  313. name: "Transition to back, hold knees high",
  314. repetitions: 1,
  315. description:
  316. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  317. videos: [],
  318. pictures: [],
  319. targets: ["Thighs", "Glutes"],
  320. baseExercise: {
  321. id: "baseExercise1",
  322. name: "Squat",
  323. },
  324. },
  325. ],
  326. },
  327. {
  328. id: "block4",
  329. duration: 40,
  330. exercises: [
  331. {
  332. id: "exercise1",
  333. name: "Crunch combo: center - left - center - right",
  334. repetitions: 1,
  335. description:
  336. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  337. videos: [],
  338. pictures: [],
  339. targets: ["Thighs", "Glutes"],
  340. baseExercise: {
  341. id: "baseExercise1",
  342. name: "Squat",
  343. },
  344. },
  345. ],
  346. },
  347. {
  348. id: "block4",
  349. duration: 5,
  350. exercises: [
  351. {
  352. id: "exercise1",
  353. name: "Quick transition",
  354. repetitions: 1,
  355. description:
  356. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  357. videos: [],
  358. pictures: [],
  359. targets: ["Thighs", "Glutes"],
  360. baseExercise: {
  361. id: "baseExercise1",
  362. name: "Squat",
  363. },
  364. },
  365. ],
  366. },
  367. {
  368. id: "block4",
  369. duration: 60,
  370. exercises: [
  371. {
  372. id: "exercise1",
  373. name: "Plank combo 1: Arms, legs, knees",
  374. repetitions: 1,
  375. description:
  376. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  377. videos: [],
  378. pictures: [],
  379. targets: ["Thighs", "Glutes"],
  380. baseExercise: {
  381. id: "baseExercise1",
  382. name: "Squat",
  383. },
  384. },
  385. ],
  386. },
  387. {
  388. id: "block4",
  389. duration: 30,
  390. exercises: [
  391. {
  392. id: "exercise1",
  393. name: "Plank combo 2: Pushup, hydrant",
  394. repetitions: 1,
  395. description:
  396. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  397. videos: [],
  398. pictures: [],
  399. targets: ["Thighs", "Glutes"],
  400. baseExercise: {
  401. id: "baseExercise1",
  402. name: "Squat",
  403. },
  404. },
  405. ],
  406. },
  407. {
  408. id: "block4",
  409. duration: 15,
  410. exercises: [
  411. {
  412. id: "exercise1",
  413. name: "Plank",
  414. repetitions: 1,
  415. description:
  416. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  417. videos: [],
  418. pictures: [],
  419. targets: ["Thighs", "Glutes"],
  420. baseExercise: {
  421. id: "baseExercise1",
  422. name: "Squat",
  423. },
  424. },
  425. ],
  426. },
  427. {
  428. id: "block4",
  429. duration: 15,
  430. exercises: [
  431. {
  432. id: "exercise1",
  433. name: "Plank with fast knee drops",
  434. repetitions: 1,
  435. description:
  436. "Sit down backwards, hip about knee-high. Keep your knees behind the toes.",
  437. videos: [],
  438. pictures: [],
  439. targets: ["Thighs", "Glutes"],
  440. baseExercise: {
  441. id: "baseExercise1",
  442. name: "Squat",
  443. },
  444. },
  445. ],
  446. },
  447. ],
  448. },
  449. ],
  450. },
  451. ],
  452. polls: [],
  453. };
  454. export default data;