@testgorilla/tgo-coding-test 0.0.1 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (354) hide show
  1. package/README.md +49 -2
  2. package/esm2022/index.mjs +12 -0
  3. package/esm2022/lib/components/code-editor/code-editor.component.mjs +335 -0
  4. package/esm2022/lib/components/code-editor/code-editor.service.mjs +72 -0
  5. package/esm2022/lib/components/code-editor/helpers/c-helper.mjs +40 -0
  6. package/esm2022/lib/components/code-editor/helpers/code-editor-helper.base.mjs +11 -0
  7. package/esm2022/lib/components/code-editor/helpers/code-editor-helper.model.mjs +2 -0
  8. package/esm2022/lib/components/code-editor/helpers/cpp-helper.mjs +41 -0
  9. package/esm2022/lib/components/code-editor/helpers/csharp-helper.mjs +42 -0
  10. package/esm2022/lib/components/code-editor/helpers/go-helper.mjs +42 -0
  11. package/esm2022/lib/components/code-editor/helpers/index.mjs +16 -0
  12. package/esm2022/lib/components/code-editor/helpers/java-helper.mjs +42 -0
  13. package/esm2022/lib/components/code-editor/helpers/javascript-helper.mjs +26 -0
  14. package/esm2022/lib/components/code-editor/helpers/kotlin-helper.mjs +42 -0
  15. package/esm2022/lib/components/code-editor/helpers/php-helper.mjs +26 -0
  16. package/esm2022/lib/components/code-editor/helpers/python-helper.mjs +26 -0
  17. package/esm2022/lib/components/code-editor/helpers/r-helper.mjs +26 -0
  18. package/esm2022/lib/components/code-editor/helpers/ruby-helper.mjs +26 -0
  19. package/esm2022/lib/components/code-editor/helpers/scala-helper.mjs +41 -0
  20. package/esm2022/lib/components/code-editor/helpers/sql-helper.mjs +34 -0
  21. package/esm2022/lib/components/code-editor/helpers/swift-helper.mjs +40 -0
  22. package/esm2022/lib/components/code-editor/helpers/typescript-helper.mjs +41 -0
  23. package/esm2022/lib/components/code-editor/models/code-editor.model.mjs +2 -0
  24. package/esm2022/lib/components/code-editor/models/coding-snapshot.model.mjs +2 -0
  25. package/esm2022/lib/components/coding-question/coding-question.component.mjs +126 -0
  26. package/esm2022/lib/components/coding-section/coding-section.component.mjs +188 -0
  27. package/esm2022/lib/components/common/truncated-text/truncated-text.component.mjs +38 -0
  28. package/esm2022/lib/components/configurations/configurations.component.mjs +97 -0
  29. package/esm2022/lib/components/instructions/instructions.component.mjs +139 -0
  30. package/esm2022/lib/components/panel/panel.component.mjs +34 -0
  31. package/esm2022/lib/components/runnable-editor/runnable-editor.component.mjs +169 -0
  32. package/esm2022/lib/components/tests/test-cases/test-cases.component.mjs +198 -0
  33. package/esm2022/lib/components/tests/test-cases-content/test-cases-content.component.mjs +96 -0
  34. package/esm2022/lib/components/tests/test-cases-status/test-cases-status.component.mjs +21 -0
  35. package/esm2022/lib/components/tests/test-results.component.mjs +127 -0
  36. package/esm2022/lib/components/tgo-coding-test/tgo-coding-test.component.mjs +280 -0
  37. package/esm2022/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.mjs +476 -0
  38. package/esm2022/lib/config/index.mjs +2 -0
  39. package/esm2022/lib/config/tgo-coding-test.config.mjs +2 -0
  40. package/esm2022/lib/config/tgo-coding-test.provider.mjs +34 -0
  41. package/esm2022/lib/config/tgo-coding-test.token.mjs +14 -0
  42. package/esm2022/lib/models/auto-saved-data.mjs +2 -0
  43. package/esm2022/lib/models/code-event.mjs +2 -0
  44. package/esm2022/lib/models/coderunner-execution-results.mjs +2 -0
  45. package/esm2022/lib/models/configs.mjs +2 -0
  46. package/esm2022/lib/models/language-change-action.mjs +2 -0
  47. package/esm2022/lib/models/lat-languages.mjs +3 -0
  48. package/esm2022/lib/models/mixpanel-events.mjs +2 -0
  49. package/esm2022/lib/models/mode.mjs +2 -0
  50. package/esm2022/lib/models/paste-data.mjs +2 -0
  51. package/esm2022/lib/models/programming-language.mjs +2 -0
  52. package/esm2022/lib/models/test-cases.mjs +7 -0
  53. package/esm2022/lib/models/theme.mjs +2 -0
  54. package/esm2022/lib/models/translations.mjs +2 -0
  55. package/esm2022/lib/models/view-mode.mjs +8 -0
  56. package/esm2022/lib/pipes/memoize-func.pipe.mjs +39 -0
  57. package/esm2022/lib/services/candidate-coding-test-services/candidature-api.service.mjs +19 -0
  58. package/esm2022/lib/services/candidate-coding-test-services/coderunner-api.service.mjs +58 -0
  59. package/esm2022/lib/services/candidate-coding-test-services/coding-test-tour.service.mjs +89 -0
  60. package/esm2022/lib/services/candidate-coding-test-services/coding-test.service.mjs +490 -0
  61. package/esm2022/lib/services/candidate-coding-test-services/index.mjs +5 -0
  62. package/esm2022/lib/services/coding-test-config.service.mjs +51 -0
  63. package/esm2022/lib/services/configurations.service.mjs +89 -0
  64. package/esm2022/lib/services/lib-coding-test.service.mjs +106 -0
  65. package/esm2022/lib/services/storage.service.mjs +624 -0
  66. package/esm2022/lib/services/test-cases.service.mjs +30 -0
  67. package/esm2022/lib/services/theme.service.mjs +36 -0
  68. package/esm2022/lib/utils/additional-languages/erlang.mjs +103 -0
  69. package/esm2022/lib/utils/resize-element.mjs +13 -0
  70. package/esm2022/lib/utils/time-to-ms.util.mjs +11 -0
  71. package/esm2022/shared/index.mjs +5 -0
  72. package/esm2022/shared/lib/components/audio-animation/audio-animation.component.mjs +114 -0
  73. package/esm2022/shared/lib/components/audio-animation/index.mjs +2 -0
  74. package/esm2022/shared/lib/components/index.mjs +3 -0
  75. package/esm2022/shared/lib/components/vimeo-video/index.mjs +2 -0
  76. package/esm2022/shared/lib/components/vimeo-video/vimeo-video.component.mjs +101 -0
  77. package/esm2022/shared/lib/models/answer.mjs +2 -0
  78. package/esm2022/shared/lib/models/assessment.mjs +2 -0
  79. package/esm2022/shared/lib/models/environment.mjs +2 -0
  80. package/esm2022/shared/lib/models/index.mjs +9 -0
  81. package/esm2022/shared/lib/models/question-component.mjs +2 -0
  82. package/esm2022/shared/lib/models/question.mjs +2 -0
  83. package/esm2022/shared/lib/models/test.mjs +2 -0
  84. package/esm2022/shared/lib/models/translations.mjs +2 -0
  85. package/esm2022/shared/lib/models/window.mjs +2 -0
  86. package/esm2022/shared/lib/services/api/api.service.mjs +97 -0
  87. package/esm2022/shared/lib/services/api/mocked-api.service.mjs +131 -0
  88. package/esm2022/shared/lib/services/environment/environment.service.mjs +13 -0
  89. package/esm2022/shared/lib/services/index.mjs +10 -0
  90. package/esm2022/shared/lib/services/localization/languages.model.mjs +19 -0
  91. package/esm2022/shared/lib/services/localization/transloco-lazy-module-utils.mjs +27 -0
  92. package/esm2022/shared/lib/services/localization/transloco-testing.module.mjs +11 -0
  93. package/esm2022/shared/lib/services/media/media.service.mjs +129 -0
  94. package/esm2022/shared/lib/services/mixpanel/mixpanel.service.mjs +30 -0
  95. package/esm2022/shared/lib/services/theme/theme.service.mjs +24 -0
  96. package/esm2022/shared/test-mocks/assessment-test.mock.mjs +112 -0
  97. package/esm2022/shared/test-mocks/index.mjs +3 -0
  98. package/esm2022/shared/test-mocks/tgo-ui.mock.mjs +39 -0
  99. package/esm2022/testgorilla-tgo-coding-test.mjs +5 -0
  100. package/fesm2022/testgorilla-tgo-coding-test.mjs +4526 -0
  101. package/fesm2022/testgorilla-tgo-coding-test.mjs.map +1 -0
  102. package/{src/index.ts → index.d.ts} +2 -19
  103. package/lib/components/code-editor/code-editor.component.d.ts +54 -0
  104. package/lib/components/code-editor/code-editor.service.d.ts +12 -0
  105. package/lib/components/code-editor/helpers/c-helper.d.ts +11 -0
  106. package/lib/components/code-editor/helpers/code-editor-helper.base.d.ts +8 -0
  107. package/lib/components/code-editor/helpers/code-editor-helper.model.d.ts +62 -0
  108. package/lib/components/code-editor/helpers/cpp-helper.d.ts +11 -0
  109. package/lib/components/code-editor/helpers/csharp-helper.d.ts +12 -0
  110. package/lib/components/code-editor/helpers/go-helper.d.ts +12 -0
  111. package/lib/components/code-editor/helpers/java-helper.d.ts +12 -0
  112. package/lib/components/code-editor/helpers/javascript-helper.d.ts +10 -0
  113. package/lib/components/code-editor/helpers/kotlin-helper.d.ts +12 -0
  114. package/lib/components/code-editor/helpers/php-helper.d.ts +10 -0
  115. package/lib/components/code-editor/helpers/python-helper.d.ts +10 -0
  116. package/lib/components/code-editor/helpers/r-helper.d.ts +10 -0
  117. package/lib/components/code-editor/helpers/ruby-helper.d.ts +10 -0
  118. package/lib/components/code-editor/helpers/scala-helper.d.ts +12 -0
  119. package/lib/components/code-editor/helpers/sql-helper.d.ts +10 -0
  120. package/lib/components/code-editor/helpers/swift-helper.d.ts +11 -0
  121. package/lib/components/code-editor/helpers/typescript-helper.d.ts +11 -0
  122. package/lib/components/code-editor/models/code-editor.model.d.ts +8 -0
  123. package/lib/components/code-editor/models/coding-snapshot.model.d.ts +4 -0
  124. package/lib/components/coding-question/coding-question.component.d.ts +45 -0
  125. package/lib/components/coding-section/coding-section.component.d.ts +52 -0
  126. package/lib/components/common/truncated-text/truncated-text.component.d.ts +13 -0
  127. package/lib/components/configurations/configurations.component.d.ts +40 -0
  128. package/lib/components/instructions/instructions.component.d.ts +48 -0
  129. package/lib/components/panel/panel.component.d.ts +12 -0
  130. package/lib/components/runnable-editor/runnable-editor.component.d.ts +53 -0
  131. package/lib/components/tests/test-cases/test-cases.component.d.ts +46 -0
  132. package/lib/components/tests/test-cases-content/test-cases-content.component.d.ts +26 -0
  133. package/lib/components/tests/test-cases-status/test-cases-status.component.d.ts +9 -0
  134. package/lib/components/tests/test-results.component.d.ts +33 -0
  135. package/lib/components/tgo-coding-test/tgo-coding-test.component.d.ts +69 -0
  136. package/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.d.ts +101 -0
  137. package/{src/lib/config/index.ts → lib/config/index.d.ts} +0 -1
  138. package/lib/config/tgo-coding-test.config.d.ts +24 -0
  139. package/{src/lib/config/tgo-coding-test.provider.ts → lib/config/tgo-coding-test.provider.d.ts} +6 -18
  140. package/lib/config/tgo-coding-test.token.d.ts +9 -0
  141. package/lib/models/auto-saved-data.d.ts +42 -0
  142. package/lib/models/code-event.d.ts +15 -0
  143. package/lib/models/coderunner-execution-results.d.ts +51 -0
  144. package/lib/models/configs.d.ts +15 -0
  145. package/lib/models/language-change-action.d.ts +4 -0
  146. package/lib/models/lat-languages.d.ts +8 -0
  147. package/lib/models/mixpanel-events.d.ts +3 -0
  148. package/lib/models/mode.d.ts +5 -0
  149. package/lib/models/paste-data.d.ts +4 -0
  150. package/lib/models/programming-language.d.ts +8 -0
  151. package/lib/models/test-cases.d.ts +67 -0
  152. package/lib/models/theme.d.ts +4 -0
  153. package/lib/models/translations.d.ts +1 -0
  154. package/lib/models/view-mode.d.ts +6 -0
  155. package/{src/lib/pipes/memoize-func.pipe.ts → lib/pipes/memoize-func.pipe.d.ts} +6 -14
  156. package/lib/services/candidate-coding-test-services/candidature-api.service.d.ts +10 -0
  157. package/lib/services/candidate-coding-test-services/coderunner-api.service.d.ts +18 -0
  158. package/lib/services/candidate-coding-test-services/coding-test-tour.service.d.ts +22 -0
  159. package/lib/services/candidate-coding-test-services/coding-test.service.d.ts +68 -0
  160. package/{src/lib/services/candidate-coding-test-services/index.ts → lib/services/candidate-coding-test-services/index.d.ts} +1 -1
  161. package/lib/services/coding-test-config.service.d.ts +38 -0
  162. package/lib/services/configurations.service.d.ts +37 -0
  163. package/lib/services/lib-coding-test.service.d.ts +69 -0
  164. package/lib/services/storage.service.d.ts +83 -0
  165. package/lib/services/test-cases.service.d.ts +12 -0
  166. package/lib/services/theme.service.d.ts +17 -0
  167. package/lib/utils/additional-languages/erlang.d.ts +37 -0
  168. package/lib/utils/resize-element.d.ts +2 -0
  169. package/lib/utils/time-to-ms.util.d.ts +1 -0
  170. package/package.json +18 -7
  171. package/shared/index.d.ts +4 -0
  172. package/shared/lib/components/audio-animation/audio-animation.component.d.ts +27 -0
  173. package/shared/lib/components/audio-animation/index.d.ts +1 -0
  174. package/shared/lib/components/index.d.ts +2 -0
  175. package/shared/lib/components/vimeo-video/index.d.ts +1 -0
  176. package/shared/lib/components/vimeo-video/vimeo-video.component.d.ts +24 -0
  177. package/shared/lib/models/answer.d.ts +17 -0
  178. package/shared/lib/models/assessment.d.ts +80 -0
  179. package/shared/lib/models/environment.d.ts +1 -0
  180. package/shared/lib/models/index.d.ts +8 -0
  181. package/shared/lib/models/question-component.d.ts +54 -0
  182. package/shared/lib/models/question.d.ts +102 -0
  183. package/shared/lib/models/test.d.ts +81 -0
  184. package/shared/lib/models/translations.d.ts +1 -0
  185. package/shared/lib/models/window.d.ts +6 -0
  186. package/shared/lib/services/api/api.service.d.ts +25 -0
  187. package/shared/lib/services/api/mocked-api.service.d.ts +35 -0
  188. package/shared/lib/services/environment/environment.service.d.ts +6 -0
  189. package/shared/lib/services/index.d.ts +9 -0
  190. package/shared/lib/services/localization/languages.model.d.ts +15 -0
  191. package/shared/lib/services/localization/transloco-lazy-module-utils.d.ts +11 -0
  192. package/shared/lib/services/localization/transloco-testing.module.d.ts +2 -0
  193. package/shared/lib/services/media/media.service.d.ts +29 -0
  194. package/shared/lib/services/mixpanel/mixpanel.service.d.ts +10 -0
  195. package/shared/lib/services/theme/theme.service.d.ts +8 -0
  196. package/shared/test-mocks/assessment-test.mock.d.ts +21 -0
  197. package/shared/test-mocks/index.d.ts +2 -0
  198. package/shared/test-mocks/tgo-ui.mock.d.ts +21 -0
  199. package/.eslintrc.json +0 -45
  200. package/jest.config.ts +0 -21
  201. package/ng-package.json +0 -14
  202. package/project.json +0 -36
  203. package/src/lib/components/.gitkeep +0 -0
  204. package/src/lib/components/code-editor/code-editor.component.html +0 -10
  205. package/src/lib/components/code-editor/code-editor.component.scss +0 -21
  206. package/src/lib/components/code-editor/code-editor.component.spec.ts +0 -136
  207. package/src/lib/components/code-editor/code-editor.component.ts +0 -369
  208. package/src/lib/components/code-editor/code-editor.mocks.ts +0 -28
  209. package/src/lib/components/code-editor/code-editor.service.spec.ts +0 -160
  210. package/src/lib/components/code-editor/code-editor.service.ts +0 -94
  211. package/src/lib/components/code-editor/helpers/c-helper.spec.ts +0 -39
  212. package/src/lib/components/code-editor/helpers/c-helper.ts +0 -51
  213. package/src/lib/components/code-editor/helpers/code-editor-helper.base.spec.ts +0 -30
  214. package/src/lib/components/code-editor/helpers/code-editor-helper.base.ts +0 -16
  215. package/src/lib/components/code-editor/helpers/code-editor-helper.mocks.ts +0 -24
  216. package/src/lib/components/code-editor/helpers/code-editor-helper.model.ts +0 -67
  217. package/src/lib/components/code-editor/helpers/cpp-helper.spec.ts +0 -40
  218. package/src/lib/components/code-editor/helpers/cpp-helper.ts +0 -52
  219. package/src/lib/components/code-editor/helpers/csharp-helper.spec.ts +0 -42
  220. package/src/lib/components/code-editor/helpers/csharp-helper.ts +0 -55
  221. package/src/lib/components/code-editor/helpers/go-helper.spec.ts +0 -41
  222. package/src/lib/components/code-editor/helpers/go-helper.ts +0 -54
  223. package/src/lib/components/code-editor/helpers/java-helper.spec.ts +0 -41
  224. package/src/lib/components/code-editor/helpers/java-helper.ts +0 -54
  225. package/src/lib/components/code-editor/helpers/javascript-helper.spec.ts +0 -39
  226. package/src/lib/components/code-editor/helpers/javascript-helper.ts +0 -32
  227. package/src/lib/components/code-editor/helpers/kotlin-helper.spec.ts +0 -41
  228. package/src/lib/components/code-editor/helpers/kotlin-helper.ts +0 -54
  229. package/src/lib/components/code-editor/helpers/php-helper.spec.ts +0 -39
  230. package/src/lib/components/code-editor/helpers/php-helper.ts +0 -32
  231. package/src/lib/components/code-editor/helpers/python-helper.spec.ts +0 -39
  232. package/src/lib/components/code-editor/helpers/python-helper.ts +0 -32
  233. package/src/lib/components/code-editor/helpers/r-helper.spec.ts +0 -39
  234. package/src/lib/components/code-editor/helpers/r-helper.ts +0 -32
  235. package/src/lib/components/code-editor/helpers/ruby-helper.spec.ts +0 -39
  236. package/src/lib/components/code-editor/helpers/ruby-helper.ts +0 -32
  237. package/src/lib/components/code-editor/helpers/scala-helper.spec.ts +0 -41
  238. package/src/lib/components/code-editor/helpers/scala-helper.ts +0 -53
  239. package/src/lib/components/code-editor/helpers/sql-helper.spec.ts +0 -87
  240. package/src/lib/components/code-editor/helpers/sql-helper.ts +0 -44
  241. package/src/lib/components/code-editor/helpers/swift-helper.spec.ts +0 -40
  242. package/src/lib/components/code-editor/helpers/swift-helper.ts +0 -51
  243. package/src/lib/components/code-editor/helpers/typescript-helper.spec.ts +0 -40
  244. package/src/lib/components/code-editor/helpers/typescript-helper.ts +0 -52
  245. package/src/lib/components/code-editor/models/code-editor.model.ts +0 -9
  246. package/src/lib/components/code-editor/models/coding-snapshot.model.ts +0 -4
  247. package/src/lib/components/coding-question/coding-question.component.html +0 -78
  248. package/src/lib/components/coding-question/coding-question.component.scss +0 -76
  249. package/src/lib/components/coding-question/coding-question.component.spec.ts +0 -85
  250. package/src/lib/components/coding-question/coding-question.component.ts +0 -102
  251. package/src/lib/components/coding-section/coding-section.component.html +0 -82
  252. package/src/lib/components/coding-section/coding-section.component.scss +0 -64
  253. package/src/lib/components/coding-section/coding-section.component.spec.ts +0 -257
  254. package/src/lib/components/coding-section/coding-section.component.ts +0 -187
  255. package/src/lib/components/coding-test.module.ts +0 -124
  256. package/src/lib/components/common/truncated-text/truncated-text.component.html +0 -6
  257. package/src/lib/components/common/truncated-text/truncated-text.component.scss +0 -18
  258. package/src/lib/components/common/truncated-text/truncated-text.component.spec.ts +0 -84
  259. package/src/lib/components/common/truncated-text/truncated-text.component.ts +0 -37
  260. package/src/lib/components/configurations/configurations.component.html +0 -57
  261. package/src/lib/components/configurations/configurations.component.scss +0 -42
  262. package/src/lib/components/configurations/configurations.component.spec.ts +0 -186
  263. package/src/lib/components/configurations/configurations.component.ts +0 -98
  264. package/src/lib/components/instructions/instructions.component.html +0 -41
  265. package/src/lib/components/instructions/instructions.component.scss +0 -167
  266. package/src/lib/components/instructions/instructions.component.spec.ts +0 -106
  267. package/src/lib/components/instructions/instructions.component.ts +0 -138
  268. package/src/lib/components/panel/panel.component.html +0 -19
  269. package/src/lib/components/panel/panel.component.scss +0 -41
  270. package/src/lib/components/panel/panel.component.spec.ts +0 -40
  271. package/src/lib/components/panel/panel.component.ts +0 -34
  272. package/src/lib/components/runnable-editor/runnable-editor.component.html +0 -75
  273. package/src/lib/components/runnable-editor/runnable-editor.component.scss +0 -55
  274. package/src/lib/components/runnable-editor/runnable-editor.component.spec.ts +0 -124
  275. package/src/lib/components/runnable-editor/runnable-editor.component.ts +0 -155
  276. package/src/lib/components/tests/test-cases/test-cases.component.html +0 -135
  277. package/src/lib/components/tests/test-cases/test-cases.component.scss +0 -220
  278. package/src/lib/components/tests/test-cases/test-cases.component.spec.ts +0 -401
  279. package/src/lib/components/tests/test-cases/test-cases.component.ts +0 -205
  280. package/src/lib/components/tests/test-cases-content/test-cases-content.component.html +0 -94
  281. package/src/lib/components/tests/test-cases-content/test-cases-content.component.scss +0 -103
  282. package/src/lib/components/tests/test-cases-content/test-cases-content.component.spec.ts +0 -122
  283. package/src/lib/components/tests/test-cases-content/test-cases-content.component.ts +0 -102
  284. package/src/lib/components/tests/test-cases-status/test-cases-status.component.html +0 -16
  285. package/src/lib/components/tests/test-cases-status/test-cases-status.component.scss +0 -49
  286. package/src/lib/components/tests/test-cases-status/test-cases-status.component.spec.ts +0 -22
  287. package/src/lib/components/tests/test-cases-status/test-cases-status.component.ts +0 -18
  288. package/src/lib/components/tests/test-results.component.html +0 -119
  289. package/src/lib/components/tests/test-results.component.scss +0 -189
  290. package/src/lib/components/tests/test-results.component.spec.ts +0 -140
  291. package/src/lib/components/tests/test-results.component.ts +0 -98
  292. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.html +0 -96
  293. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.scss +0 -6
  294. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.spec.ts +0 -599
  295. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.ts +0 -279
  296. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.html +0 -36
  297. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.scss +0 -183
  298. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.spec.ts +0 -883
  299. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.ts +0 -575
  300. package/src/lib/config/tgo-coding-test.config.ts +0 -26
  301. package/src/lib/config/tgo-coding-test.token.ts +0 -21
  302. package/src/lib/models/.gitkeep +0 -0
  303. package/src/lib/models/auto-saved-data.ts +0 -51
  304. package/src/lib/models/code-event.ts +0 -17
  305. package/src/lib/models/coderunner-execution-results.ts +0 -58
  306. package/src/lib/models/coding-lib.mocks.ts +0 -246
  307. package/src/lib/models/configs.ts +0 -18
  308. package/src/lib/models/language-change-action.ts +0 -4
  309. package/src/lib/models/lat-languages.ts +0 -12
  310. package/src/lib/models/mixpanel-events.ts +0 -3
  311. package/src/lib/models/mode.ts +0 -5
  312. package/src/lib/models/paste-data.ts +0 -4
  313. package/src/lib/models/programming-language.ts +0 -9
  314. package/src/lib/models/test-cases.ts +0 -74
  315. package/src/lib/models/theme.ts +0 -5
  316. package/src/lib/models/translations.ts +0 -1
  317. package/src/lib/models/view-mode.ts +0 -6
  318. package/src/lib/services/.gitkeep +0 -0
  319. package/src/lib/services/candidate-coding-test-services/candidature-api.service.spec.ts +0 -40
  320. package/src/lib/services/candidate-coding-test-services/candidature-api.service.ts +0 -15
  321. package/src/lib/services/candidate-coding-test-services/coderunner-api.service.spec.ts +0 -134
  322. package/src/lib/services/candidate-coding-test-services/coderunner-api.service.ts +0 -105
  323. package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.spec.ts +0 -161
  324. package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.ts +0 -100
  325. package/src/lib/services/candidate-coding-test-services/coding-test.service.spec.ts +0 -1524
  326. package/src/lib/services/candidate-coding-test-services/coding-test.service.ts +0 -843
  327. package/src/lib/services/coding-test-config.service.ts +0 -48
  328. package/src/lib/services/configurations.service.mocks.ts +0 -77
  329. package/src/lib/services/configurations.service.spec.ts +0 -79
  330. package/src/lib/services/configurations.service.ts +0 -111
  331. package/src/lib/services/index.ts +0 -0
  332. package/src/lib/services/lib-coding-test.service.spec.ts +0 -265
  333. package/src/lib/services/lib-coding-test.service.ts +0 -157
  334. package/src/lib/services/local-storage.service.mocks.ts +0 -22
  335. package/src/lib/services/storage.service.spec.ts +0 -1120
  336. package/src/lib/services/storage.service.ts +0 -729
  337. package/src/lib/services/test-cases.service.spec.ts +0 -53
  338. package/src/lib/services/test-cases.service.ts +0 -29
  339. package/src/lib/services/theme.service.spec.ts +0 -76
  340. package/src/lib/services/theme.service.ts +0 -34
  341. package/src/lib/styles/mixins.scss +0 -86
  342. package/src/lib/styles/styles.scss +0 -112
  343. package/src/lib/styles/variables.scss +0 -105
  344. package/src/lib/utils/.gitkeep +0 -0
  345. package/src/lib/utils/additional-languages/erlang.ts +0 -115
  346. package/src/lib/utils/resize-element.ts +0 -15
  347. package/src/lib/utils/time-to-ms.util.ts +0 -10
  348. package/src/test-setup.ts +0 -1
  349. package/tsconfig.json +0 -16
  350. package/tsconfig.lib.json +0 -12
  351. package/tsconfig.lib.prod.json +0 -9
  352. package/tsconfig.spec.json +0 -13
  353. /package/{src/assets → assets}/i18n/en.json +0 -0
  354. /package/{src/lib/components/code-editor/helpers/index.ts → lib/components/code-editor/helpers/index.d.ts} +0 -0
@@ -1,55 +0,0 @@
1
- @import "../../styles/mixins";
2
-
3
- @include as-split-styles();
4
-
5
- :host {
6
- display: block;
7
- height: 100%;
8
-
9
- @media screen and (max-width: 959px) {
10
- flex: 1 0 600px;
11
- height: auto;
12
- }
13
- }
14
-
15
- .ide {
16
- &-split-area {
17
- // prevents resizing to 0, set threshold
18
- min-height: 65px;
19
- }
20
-
21
- &-container {
22
- height: 100%;
23
- }
24
- }
25
-
26
- .tests {
27
- height: 100%;
28
-
29
- &-lat {
30
- overflow: hidden;
31
-
32
- @media screen and (max-width: 959px) {
33
- flex: 1 0 60vh;
34
- }
35
- }
36
- }
37
-
38
- .coding-section {
39
- display: block;
40
- height: 100%;
41
- }
42
-
43
- .container-mobile {
44
- height: 100%;
45
- display: flex;
46
- flex-direction: column;
47
-
48
- .ide-container {
49
- max-height: 60vh;
50
- }
51
-
52
- .tests {
53
- max-height: 60vh;
54
- }
55
- }
@@ -1,124 +0,0 @@
1
- import { ComponentFixture, discardPeriodicTasks, fakeAsync, flush, TestBed, tick } from '@angular/core/testing';
2
-
3
- import { ChangeDetectorRef, ElementRef, NO_ERRORS_SCHEMA } from '@angular/core';
4
- import { NoopAnimationsModule } from '@angular/platform-browser/animations';
5
- import { MockProvider } from 'ng-mocks';
6
- import { BehaviorSubject, of, Subject } from 'rxjs';
7
- import { MonacoEditorModule } from 'ngx-monaco-editor-v2';
8
- import { RunnableEditorComponent } from './runnable-editor.component';
9
- import { LibCodingTestService } from '../../services/lib-coding-test.service';
10
- import { ConfigurationsService } from '../../services/configurations.service';
11
- import { StorageCodingService } from '../../services/storage.service';
12
- import { CodeEditorLanguages } from '../code-editor/helpers/code-editor-helper.model';
13
- import { CONFIGURATIONS_SERVICE_MOCK } from '../../services/configurations.service.mocks';
14
-
15
- jest.mock('../../utils/resize-element', () => ({
16
- resizeElement: jest.fn(el => of(el)),
17
- }));
18
-
19
- describe('RunnableEditorComponent', () => {
20
- let component: RunnableEditorComponent;
21
- let fixture: ComponentFixture<RunnableEditorComponent>;
22
- const codingTestsSplitRefMock = {
23
- nativeElement: {
24
- offsetHeight: 200,
25
- contentRect: { height: 250 },
26
- },
27
- };
28
- const testsSplitAreaRefMock = {
29
- nativeElement: {
30
- offsetHeight: 50,
31
- },
32
- };
33
- jest.useFakeTimers();
34
-
35
- beforeEach(async () => {
36
- await TestBed.configureTestingModule({
37
- imports: [RunnableEditorComponent, MonacoEditorModule.forRoot(), NoopAnimationsModule],
38
- schemas: [NO_ERRORS_SCHEMA],
39
- providers: [
40
- MockProvider(ChangeDetectorRef),
41
- MockProvider(LibCodingTestService, {
42
- codeChange$: new Subject(),
43
- isBoilerplateLoading$: new Subject(),
44
- languageChange$: new Subject(),
45
- codeReset$: new Subject(),
46
- currentLanguage$: new BehaviorSubject<CodeEditorLanguages>(CodeEditorLanguages.Javascript),
47
- }),
48
- MockProvider(ConfigurationsService, CONFIGURATIONS_SERVICE_MOCK),
49
- MockProvider(StorageCodingService),
50
- ],
51
- }).compileComponents();
52
-
53
- fixture = TestBed.createComponent(RunnableEditorComponent);
54
- component = fixture.componentInstance;
55
- component.isMobile = true;
56
- component.translations = {
57
- HEADINGS: {},
58
- TOOLTIPS: { RESET_CODE: '' },
59
- TEST_RESULTS: {
60
- RUN_TESTS: '',
61
- TEST_CASES: {},
62
- },
63
- MODALS: { RESET_CODE: {} },
64
- }; // Provide translations to prevent template errors
65
- component.codingTestsSplitRef = { ...codingTestsSplitRefMock } as ElementRef;
66
- component.testsSplitAreaRef = { ...testsSplitAreaRefMock } as ElementRef;
67
- });
68
-
69
- describe('when the view is initialized', () => {
70
- describe('and isMobile === true', () => {
71
- it('should NOT set up minTestsSplitHeight', () => {
72
- expect(component.minTestsSplitHeight).toBeFalsy();
73
- });
74
- });
75
-
76
- describe('and isMobile === false', () => {
77
- beforeEach(() => {
78
- component.isMobile = false;
79
- });
80
-
81
- describe('and isFullViewMode === true', () => {
82
- beforeEach(() => {
83
- component.isFullViewMode = true;
84
- component.ngAfterViewInit();
85
- });
86
-
87
- it('should set minTestsSplitHeight according to codingTestsSplitRef height', fakeAsync(() => {
88
- tick();
89
- jest.runAllTimers();
90
- expect(component.minTestsSplitHeight).toEqual(47.6);
91
- flush();
92
- discardPeriodicTasks();
93
- }));
94
-
95
- it('should set currentTestsSplitHeight according to testsPercentHeight', fakeAsync(() => {
96
- tick();
97
- jest.runAllTimers();
98
-
99
- expect(component.currentTestsSplitHeight).toEqual(47.6);
100
- flush();
101
- discardPeriodicTasks();
102
- }));
103
-
104
- it('should set currentIdeSplitHeight according to currentTestsSplitHeight', fakeAsync(() => {
105
- tick();
106
- jest.runAllTimers();
107
- expect(component.currentIdeSplitHeight).toEqual(52.4);
108
- flush();
109
- discardPeriodicTasks();
110
- }));
111
- });
112
-
113
- describe('and isFullViewMode === false', () => {
114
- beforeEach(() => {
115
- component.ngAfterViewInit();
116
- });
117
-
118
- it('should set minTestsSplitHeight according to codingTestsSplitRef height', () => {
119
- expect(component.minTestsSplitHeight).toEqual(59.5);
120
- });
121
- });
122
- });
123
- });
124
- });
@@ -1,155 +0,0 @@
1
- import {
2
- AfterViewInit,
3
- ChangeDetectionStrategy,
4
- ChangeDetectorRef,
5
- Component,
6
- ElementRef,
7
- EventEmitter,
8
- Input,
9
- Output,
10
- ViewChild,
11
- } from '@angular/core';
12
- import { CommonModule } from '@angular/common';
13
- import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
14
- import {
15
- animationFrameScheduler,
16
- concat,
17
- debounceTime,
18
- distinctUntilChanged,
19
- map,
20
- Observable,
21
- observeOn,
22
- of,
23
- } from 'rxjs';
24
- import { AngularSplitModule } from 'angular-split';
25
- import { ApplicationTheme } from '@testgorilla/tgo-ui';
26
-
27
- import { LATLanguages } from '../../models/lat-languages';
28
- import { ExampleTestCase } from '../../models/test-cases';
29
- import { resizeElement } from '../../utils/resize-element';
30
- import {
31
- CodeEditorFuncParam,
32
- CodeEditorLanguages,
33
- CodeEditorTypesMap,
34
- } from '../code-editor/helpers/code-editor-helper.model';
35
- import { PasteData } from '../code-editor/models/code-editor.model';
36
- import { CodingSectionComponent } from '../coding-section/coding-section.component';
37
- import { ConfigurationsComponent } from '../configurations/configurations.component';
38
- import { TestResultsComponent } from '../tests/test-results.component';
39
-
40
- @UntilDestroy()
41
- @Component({
42
- standalone: true,
43
- selector: 'tgo-runnable-editor',
44
- templateUrl: './runnable-editor.component.html',
45
- styleUrls: ['./runnable-editor.component.scss'],
46
- changeDetection: ChangeDetectionStrategy.OnPush,
47
- imports: [
48
- CommonModule,
49
- AngularSplitModule,
50
- CodingSectionComponent,
51
- ConfigurationsComponent,
52
- TestResultsComponent,
53
- ],
54
- })
55
- export class RunnableEditorComponent implements AfterViewInit {
56
- @Input() initCode: string;
57
- @Input() functionParams: CodeEditorFuncParam[];
58
- @Input() functionName: string;
59
- @Input() returnType: keyof CodeEditorTypesMap;
60
- @Input() isFullViewMode: boolean;
61
- @Input() isLAT: boolean;
62
- @Input() isSQL: boolean;
63
- @Input() canAddCustomTestCases: boolean;
64
- @Input() hideTestCases: boolean;
65
- @Input() languages: LATLanguages;
66
- @Input() shouldGenerateInitCode: boolean;
67
- @Input() autoHeight: boolean;
68
- @Input() translations: Record<string, unknown>;
69
- @Input() questionText: string;
70
- @Input() companyColor: string;
71
- @Input() testCasesStatus: any;
72
- @Input() loading: boolean;
73
- @Input() runTestResponse = [];
74
- @Input() exampleTestCases: ExampleTestCase[];
75
- @Input() isRunnableWithLangSelector: boolean;
76
- @Input() applicationTheme: ApplicationTheme;
77
-
78
- @Output() pasteEvent = new EventEmitter<PasteData>();
79
- @Output() codeChange = new EventEmitter<string>();
80
- @Output() runTestClick = new EventEmitter<boolean>();
81
- @Output() languageChange = new EventEmitter<CodeEditorLanguages>();
82
-
83
- @ViewChild('codingTestsSplit', { read: ElementRef }) codingTestsSplitRef: ElementRef;
84
- @ViewChild('testsSplitArea', { read: ElementRef }) testsSplitAreaRef: ElementRef;
85
-
86
- minTestsSplitHeight: number;
87
- currentIdeSplitHeight = 55;
88
- currentTestsSplitHeight = 45;
89
-
90
- MIN_TESTS_HEIGHT_PX = 119;
91
- MIN_LAT_TESTS_HEIGHT_PX = 202;
92
- GUTTER_SIZE = 1;
93
-
94
- isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
95
-
96
- constructor(private changeDetectorRef: ChangeDetectorRef) {}
97
-
98
- ngAfterViewInit(): void {
99
- if (this.isMobile) {
100
- return;
101
- }
102
-
103
- if (this.isFullViewMode) {
104
- this.setCodingSplitListener();
105
- } else {
106
- const { offsetHeight: height } = this.codingTestsSplitRef.nativeElement;
107
- this.minTestsSplitHeight = this.getMinTestsPercentHeight(height);
108
- }
109
- }
110
-
111
- /* listens to area height changes and calculates the maximum % size of coding window area */
112
- private setCodingSplitListener(): void {
113
- concat(this.getInitialMaxHeight$(), resizeElement(this.codingTestsSplitRef.nativeElement))
114
- .pipe(
115
- observeOn(animationFrameScheduler),
116
- debounceTime(300),
117
- map(({ contentRect: { height } }) => height),
118
- distinctUntilChanged(),
119
- untilDestroyed(this)
120
- )
121
- .subscribe(height => {
122
- this.calculateCurrentHeights(height);
123
-
124
- this.changeDetectorRef.detectChanges();
125
- });
126
- }
127
-
128
- private calculateCurrentHeights(fullHeight: number): void {
129
- const { offsetHeight: testsSplitHeight } = this.testsSplitAreaRef.nativeElement;
130
- this.minTestsSplitHeight = this.getMinTestsPercentHeight(fullHeight);
131
-
132
- let testsPercentHeight = this.getPercentHeightFromWhole(fullHeight, testsSplitHeight);
133
-
134
- if (testsPercentHeight < this.minTestsSplitHeight) {
135
- testsPercentHeight = this.minTestsSplitHeight;
136
- }
137
-
138
- this.currentTestsSplitHeight = testsPercentHeight;
139
- this.currentIdeSplitHeight = 100 - this.currentTestsSplitHeight;
140
- }
141
-
142
- private getInitialMaxHeight$(): Observable<any> {
143
- const { offsetHeight: height } = this.codingTestsSplitRef.nativeElement;
144
- return of({ contentRect: { height: this.getMinTestsPercentHeight(height) } });
145
- }
146
-
147
- private getPercentHeightFromWhole(fullHeight: number, areaHeight: number): number {
148
- return (areaHeight * 100) / (fullHeight - this.GUTTER_SIZE * 2);
149
- }
150
-
151
- private getMinTestsPercentHeight(height: number): number {
152
- const minTestsHeightPx = this.isLAT ? this.MIN_LAT_TESTS_HEIGHT_PX : this.MIN_TESTS_HEIGHT_PX;
153
- return (minTestsHeightPx * 100) / height;
154
- }
155
- }
@@ -1,135 +0,0 @@
1
- <div class="test-case-container">
2
- <div
3
- id="test-cases"
4
- class="test-case-tabs-wrapper"
5
- [ngClass]="{
6
- 'test-case-tabs-wrapper-tests-run': areTestsRun,
7
- 'test-case-tabs-wrapper-mobile': isMobile,
8
- 'test-case-tabs-wrapper-hidden': isContentViewOpened
9
- }"
10
- >
11
- @if (!isMobile) {
12
- <mat-tab-group
13
- #tabGroup
14
- class="test-cases-tabs"
15
- [selectedIndex]="activeTestCaseIndex"
16
- (selectedIndexChange)="setActiveTestCaseIndex($event)"
17
- >
18
- @for (testCase of testCases; track testCase; let index = $index) {
19
- <mat-tab label="{{ testCase.name }}">
20
- <ng-template mat-tab-label>
21
- <div class="tab-label-wrapper">
22
- <ng-container
23
- [ngTemplateOutlet]="testCaseHeading"
24
- [ngTemplateOutletContext]="{ testCase: testCase, index: index }"
25
- ></ng-container>
26
- </div>
27
- </ng-template>
28
- </mat-tab>
29
- }
30
- </mat-tab-group>
31
- } @else {
32
- <div class="test-cases-tabs test-cases-tabs-mobile">
33
- @for (testCase of testCases; track testCase; let index = $index) {
34
- <div class="tab-label-wrapper" (click)="setActiveTestCaseIndex(index)">
35
- <div class="test-case-name-status-wrapper">
36
- <ng-container
37
- [ngTemplateOutlet]="testCaseHeading"
38
- [ngTemplateOutletContext]="{ testCase: testCase, index: index }"
39
- ></ng-container>
40
- </div>
41
- @if (isMobile) {
42
- <ui-icon [name]="'Arrow-chevron-right-filled'" [size]="'24'" class="themed-button"></ui-icon>
43
- }
44
- </div>
45
- }
46
- </div>
47
- } @if (canAddCustomTestCases) {
48
- <ui-button
49
- class="add-test-case themed-button"
50
- [variant]="'tertiary'"
51
- [iconName]="'Plus'"
52
- [iconPosition]="'left'"
53
- [disabled]="!isAddTestCasesDisabled"
54
- [fullWidth]="true"
55
- [tooltip]="!isAddTestCasesDisabled ? translations['TOOLTIPS']['CANT_ADD_TEST_CASE'] : null"
56
- [label]="
57
- translations['TEST_RESULTS']['TEST_CASES']['ADD_TEST_CASE'] +
58
- ' (' +
59
- (testCases?.length - exampleTestCases?.length) +
60
- '/' +
61
- maxTestCasesAllowed +
62
- ')'
63
- "
64
- (buttonClickEvent)="addTestCase()"
65
- >
66
- </ui-button>
67
- }
68
- </div>
69
-
70
- @if (!isMobile) {
71
- <div class="test-case-content-wrapper">
72
- <ng-container [ngTemplateOutlet]="testCasesContentTpl"></ng-container>
73
- </div>
74
- } @if (isMobile && isContentViewOpened) {
75
- <div class="test-case-content-wrapper-mobile">
76
- <div class="test-case-mobile-name-wrapper">
77
- <ui-button
78
- [variant]="'icon-button'"
79
- [iconName]="'Arrow-chevron-left-filled'"
80
- [tooltip]="''"
81
- [size]="'small'"
82
- (buttonClickEvent)="closeTestCaseMobileView()"
83
- class="themed-button"
84
- >
85
- </ui-button>
86
- <ng-container
87
- [ngTemplateOutlet]="testCaseHeading"
88
- [ngTemplateOutletContext]="{
89
- testCase: testCases[activeTestCaseIndex],
90
- index: activeTestCaseIndex,
91
- hideStatus: true
92
- }"
93
- ></ng-container>
94
- </div>
95
- <ng-container [ngTemplateOutlet]="testCasesContentTpl"></ng-container>
96
- </div>
97
- }
98
- </div>
99
-
100
- <ng-template #testCaseHeading let-testCase="testCase" let-index="index" let-hideStatus="hideStatus">
101
- <div class="tab-label">
102
- @if (testCase.preloaded) {
103
- <ui-icon [name]="'Lock'" class="preloaded-icon"></ui-icon>
104
- }
105
- <span class="tab-label-value">{{ testCase.name }}</span>
106
- </div>
107
-
108
- @if (!hideStatus && testCasesResult?.length) {
109
- <tgo-test-cases-status
110
- [status]="testCasesResult?.[index]?.status"
111
- [translations]="translations['TEST_RESULTS']['TEST_CASES']['STATUSES']"
112
- ></tgo-test-cases-status>
113
- } @if (!testCase.preloaded) {
114
- <ui-button
115
- [variant]="'icon-button'"
116
- [iconName]="'Delete'"
117
- [tooltip]="translations['TOOLTIPS']['DELETE_TEST_CASE'] || ''"
118
- (buttonClickEvent)="removeTestCase(index)"
119
- class="delete-test-case themed-button"
120
- >
121
- </ui-button>
122
- }
123
- </ng-template>
124
-
125
- <ng-template #testCasesContentTpl>
126
- <tgo-test-cases-content
127
- [testCase]="testCases[activeTestCaseIndex]"
128
- [testCaseResult]="testCasesResult?.[activeTestCaseIndex]"
129
- [areTestsRun]="areTestsRun"
130
- [translations]="translations['TEST_RESULTS']['TEST_CASES']"
131
- [isSQL]="isSQL"
132
- [applicationTheme]="applicationTheme"
133
- (valueChange)="modifyTestCase(activeTestCaseIndex, $event)"
134
- ></tgo-test-cases-content>
135
- </ng-template>
@@ -1,220 +0,0 @@
1
- @import '@testgorilla/tgo-ui/projects/tgo-canopy-ui/theme/variables';
2
-
3
- //todo: fix powered by testgorilla logo position on mobile in scope of https://testgorilla.atlassian.net/browse/CODE-367
4
- .test-case-container {
5
- display: flex;
6
- height: 100%;
7
-
8
- .test-case-tabs-wrapper {
9
- display: flex;
10
- flex-direction: column;
11
- position: relative;
12
- overflow-y: auto;
13
- border-right: 1px solid var(--border-bg-color);
14
- height: 100%;
15
- min-width: 230px;
16
-
17
- &-mobile {
18
- flex: 1;
19
-
20
- &.test-case-tabs-wrapper-hidden {
21
- display: none;
22
- }
23
- }
24
-
25
- &:not(&-mobile) {
26
- ::ng-deep {
27
- .mat-mdc-tab {
28
- .mdc-tab-indicator {
29
- width: 3px;
30
-
31
- .mdc-tab-indicator__content {
32
- border-left: 3px solid transparent;
33
- height: 100%;
34
- }
35
- }
36
-
37
- &:hover .delete-test-case {
38
- display: block;
39
- }
40
-
41
- &.mdc-tab--active {
42
- .tab-label-value {
43
- font-weight: 600;
44
- }
45
-
46
- .mdc-tab-indicator__content {
47
- border-left-color: var(--company-color, $brand-50);
48
- }
49
- }
50
- }
51
- }
52
- }
53
-
54
- .test-cases-tabs {
55
- flex-direction: row;
56
- flex-grow: 1;
57
-
58
- ::ng-deep {
59
- .mdc-tab__content {
60
- justify-content: flex-start;
61
- padding: 14px 16px;
62
- width: 100%;
63
-
64
- .mdc-tab__text-label {
65
- flex-grow: 1;
66
- }
67
-
68
- .tab-label-wrapper {
69
- display: flex;
70
- align-items: center;
71
- justify-content: space-between;
72
- width: 100%;
73
- }
74
- }
75
-
76
- .mat-mdc-tab-labels {
77
- flex-direction: column;
78
- }
79
-
80
- .mat-mdc-tab-header {
81
- width: 100%;
82
- border-bottom: none;
83
- }
84
-
85
- .mdc-tab {
86
- height: 48px;
87
- padding: 0;
88
- border-bottom: 1px solid var(--border-bg-color);
89
- color: var(--secondary-text-color);
90
-
91
- &__text-label {
92
- width: 100%;
93
- }
94
- }
95
- }
96
-
97
- &.mat-mdc-tab-group.mat-primary {
98
- ::ng-deep {
99
- .mat-ink-bar {
100
- background-color: transparent;
101
- }
102
- }
103
- }
104
-
105
- &-mobile {
106
- .test-case-name-status-wrapper {
107
- display: flex;
108
- justify-content: space-between;
109
- flex: 1;
110
- }
111
-
112
- .tab-label-wrapper {
113
- display: flex;
114
- padding: 14px 16px;
115
- cursor: pointer;
116
- border-bottom: 1px solid var(--border-bg-color);
117
- }
118
- }
119
- }
120
-
121
- .add-test-case {
122
- position: sticky;
123
- bottom: 0;
124
- left: 0;
125
- right: 0;
126
- border-top: 1px solid var(--border-bg-color);
127
- border-radius: 0;
128
- z-index: 1;
129
-
130
- ::ng-deep {
131
- mat-icon {
132
- color: var(--company-color, $brand-50);
133
- }
134
-
135
- .mdc-button {
136
- justify-content: flex-start;
137
- background-color: var(--bg-mat-card);
138
-
139
- &:disabled {
140
- opacity: 1;
141
-
142
- .mdc-button__label {
143
- opacity: .75;
144
- }
145
- }
146
-
147
- span {
148
- color: var(--company-theme-specific-color, $brand-50) !important;
149
- }
150
- }
151
- }
152
- }
153
- }
154
-
155
- .delete-test-case {
156
- display: none;
157
- position: absolute;
158
- right: 16px;
159
- cursor: pointer;
160
-
161
- ::ng-deep {
162
- .icon-button:not(:hover) {
163
- background-color: var(--bg-mat-card) !important;
164
- }
165
-
166
- svg {
167
- color: var(--icon-bg-color);
168
- }
169
- }
170
- }
171
-
172
- ::ng-deep .mat-tab-label.cdk-program-focused .delete-test-case svg rect {
173
- fill: #484c4d00;
174
- }
175
-
176
- .test-case-content-wrapper {
177
- flex-grow: 1;
178
- overflow-y: auto;
179
- }
180
-
181
- .preloaded-icon {
182
- margin-right: 4px;
183
-
184
- ::ng-deep {
185
- mat-icon {
186
- svg {
187
- color: var(--icon-secondary-bg-color);
188
- }
189
- }
190
- }
191
- }
192
-
193
- .tab-label {
194
- display: flex;
195
- align-items: center;
196
- color: var(--main-text-color);
197
- }
198
-
199
- .chevron-icon {
200
- margin-left: 8px;
201
- }
202
-
203
- .test-case-content-wrapper-mobile {
204
- overflow: auto;
205
- }
206
-
207
- .test-case-mobile-name-wrapper {
208
- display: flex;
209
- position: relative;
210
- padding: 14px 16px 0;
211
-
212
- .chevron-icon {
213
- margin: 0 4px 0 0;
214
- }
215
-
216
- .delete-test-case {
217
- display: block;
218
- }
219
- }
220
- }