@testgorilla/tgo-coding-test 2.0.0 → 2.0.1

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 (255) hide show
  1. package/fesm2022/testgorilla-tgo-coding-test.mjs +4526 -0
  2. package/fesm2022/testgorilla-tgo-coding-test.mjs.map +1 -0
  3. package/{src/index.ts → index.d.ts} +2 -19
  4. package/lib/components/code-editor/code-editor.component.d.ts +54 -0
  5. package/lib/components/code-editor/code-editor.service.d.ts +12 -0
  6. package/lib/components/code-editor/helpers/c-helper.d.ts +11 -0
  7. package/lib/components/code-editor/helpers/code-editor-helper.base.d.ts +8 -0
  8. package/lib/components/code-editor/helpers/code-editor-helper.model.d.ts +62 -0
  9. package/lib/components/code-editor/helpers/cpp-helper.d.ts +11 -0
  10. package/lib/components/code-editor/helpers/csharp-helper.d.ts +12 -0
  11. package/lib/components/code-editor/helpers/go-helper.d.ts +12 -0
  12. package/lib/components/code-editor/helpers/java-helper.d.ts +12 -0
  13. package/lib/components/code-editor/helpers/javascript-helper.d.ts +10 -0
  14. package/lib/components/code-editor/helpers/kotlin-helper.d.ts +12 -0
  15. package/lib/components/code-editor/helpers/php-helper.d.ts +10 -0
  16. package/lib/components/code-editor/helpers/python-helper.d.ts +10 -0
  17. package/lib/components/code-editor/helpers/r-helper.d.ts +10 -0
  18. package/lib/components/code-editor/helpers/ruby-helper.d.ts +10 -0
  19. package/lib/components/code-editor/helpers/scala-helper.d.ts +12 -0
  20. package/lib/components/code-editor/helpers/sql-helper.d.ts +10 -0
  21. package/lib/components/code-editor/helpers/swift-helper.d.ts +11 -0
  22. package/lib/components/code-editor/helpers/typescript-helper.d.ts +11 -0
  23. package/lib/components/code-editor/models/code-editor.model.d.ts +8 -0
  24. package/lib/components/code-editor/models/coding-snapshot.model.d.ts +4 -0
  25. package/lib/components/coding-question/coding-question.component.d.ts +45 -0
  26. package/lib/components/coding-section/coding-section.component.d.ts +52 -0
  27. package/lib/components/common/truncated-text/truncated-text.component.d.ts +13 -0
  28. package/lib/components/configurations/configurations.component.d.ts +40 -0
  29. package/lib/components/instructions/instructions.component.d.ts +48 -0
  30. package/lib/components/panel/panel.component.d.ts +12 -0
  31. package/lib/components/runnable-editor/runnable-editor.component.d.ts +53 -0
  32. package/lib/components/tests/test-cases/test-cases.component.d.ts +46 -0
  33. package/lib/components/tests/test-cases-content/test-cases-content.component.d.ts +26 -0
  34. package/lib/components/tests/test-cases-status/test-cases-status.component.d.ts +9 -0
  35. package/lib/components/tests/test-results.component.d.ts +33 -0
  36. package/lib/components/tgo-coding-test/tgo-coding-test.component.d.ts +69 -0
  37. package/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.d.ts +101 -0
  38. package/{src/lib/config/index.ts → lib/config/index.d.ts} +0 -1
  39. package/lib/config/tgo-coding-test.config.d.ts +24 -0
  40. package/{src/lib/config/tgo-coding-test.provider.ts → lib/config/tgo-coding-test.provider.d.ts} +6 -18
  41. package/lib/config/tgo-coding-test.token.d.ts +9 -0
  42. package/lib/models/auto-saved-data.d.ts +42 -0
  43. package/lib/models/code-event.d.ts +15 -0
  44. package/lib/models/coderunner-execution-results.d.ts +51 -0
  45. package/lib/models/configs.d.ts +15 -0
  46. package/lib/models/language-change-action.d.ts +4 -0
  47. package/lib/models/lat-languages.d.ts +8 -0
  48. package/lib/models/mixpanel-events.d.ts +3 -0
  49. package/lib/models/mode.d.ts +5 -0
  50. package/lib/models/paste-data.d.ts +4 -0
  51. package/lib/models/programming-language.d.ts +8 -0
  52. package/lib/models/test-cases.d.ts +67 -0
  53. package/lib/models/theme.d.ts +4 -0
  54. package/lib/models/translations.d.ts +1 -0
  55. package/lib/models/view-mode.d.ts +6 -0
  56. package/{src/lib/pipes/memoize-func.pipe.ts → lib/pipes/memoize-func.pipe.d.ts} +6 -14
  57. package/lib/services/candidate-coding-test-services/candidature-api.service.d.ts +10 -0
  58. package/lib/services/candidate-coding-test-services/coderunner-api.service.d.ts +18 -0
  59. package/lib/services/candidate-coding-test-services/coding-test-tour.service.d.ts +22 -0
  60. package/lib/services/candidate-coding-test-services/coding-test.service.d.ts +68 -0
  61. package/{src/lib/services/candidate-coding-test-services/index.ts → lib/services/candidate-coding-test-services/index.d.ts} +1 -1
  62. package/lib/services/coding-test-config.service.d.ts +38 -0
  63. package/lib/services/configurations.service.d.ts +37 -0
  64. package/lib/services/lib-coding-test.service.d.ts +69 -0
  65. package/lib/services/storage.service.d.ts +83 -0
  66. package/lib/services/test-cases.service.d.ts +12 -0
  67. package/lib/services/theme.service.d.ts +17 -0
  68. package/lib/utils/additional-languages/erlang.d.ts +37 -0
  69. package/lib/utils/resize-element.d.ts +2 -0
  70. package/lib/utils/time-to-ms.util.d.ts +1 -0
  71. package/package.json +17 -3
  72. package/shared/index.d.ts +4 -0
  73. package/shared/lib/components/audio-animation/audio-animation.component.d.ts +27 -0
  74. package/shared/lib/components/audio-animation/index.d.ts +1 -0
  75. package/shared/lib/components/index.d.ts +2 -0
  76. package/shared/lib/components/vimeo-video/index.d.ts +1 -0
  77. package/shared/lib/components/vimeo-video/vimeo-video.component.d.ts +24 -0
  78. package/shared/lib/models/answer.d.ts +17 -0
  79. package/shared/lib/models/assessment.d.ts +80 -0
  80. package/shared/lib/models/environment.d.ts +1 -0
  81. package/shared/lib/models/index.d.ts +8 -0
  82. package/shared/lib/models/question-component.d.ts +54 -0
  83. package/shared/lib/models/question.d.ts +102 -0
  84. package/shared/lib/models/test.d.ts +81 -0
  85. package/shared/lib/models/translations.d.ts +1 -0
  86. package/shared/lib/models/window.d.ts +6 -0
  87. package/shared/lib/services/api/api.service.d.ts +25 -0
  88. package/shared/lib/services/api/mocked-api.service.d.ts +35 -0
  89. package/shared/lib/services/environment/environment.service.d.ts +6 -0
  90. package/shared/lib/services/index.d.ts +9 -0
  91. package/shared/lib/services/localization/languages.model.d.ts +15 -0
  92. package/shared/lib/services/localization/transloco-lazy-module-utils.d.ts +11 -0
  93. package/shared/lib/services/localization/transloco-testing.module.d.ts +2 -0
  94. package/shared/lib/services/media/media.service.d.ts +29 -0
  95. package/shared/lib/services/mixpanel/mixpanel.service.d.ts +10 -0
  96. package/shared/lib/services/theme/theme.service.d.ts +8 -0
  97. package/shared/test-mocks/assessment-test.mock.d.ts +21 -0
  98. package/shared/test-mocks/index.d.ts +2 -0
  99. package/shared/test-mocks/tgo-ui.mock.d.ts +21 -0
  100. package/.eslintrc.json +0 -46
  101. package/jest.config.ts +0 -26
  102. package/ng-package.json +0 -14
  103. package/project.json +0 -48
  104. package/src/lib/components/.gitkeep +0 -0
  105. package/src/lib/components/code-editor/code-editor.component.html +0 -10
  106. package/src/lib/components/code-editor/code-editor.component.scss +0 -21
  107. package/src/lib/components/code-editor/code-editor.component.spec.ts +0 -136
  108. package/src/lib/components/code-editor/code-editor.component.ts +0 -368
  109. package/src/lib/components/code-editor/code-editor.mocks.ts +0 -28
  110. package/src/lib/components/code-editor/code-editor.service.spec.ts +0 -160
  111. package/src/lib/components/code-editor/code-editor.service.ts +0 -94
  112. package/src/lib/components/code-editor/helpers/c-helper.spec.ts +0 -39
  113. package/src/lib/components/code-editor/helpers/c-helper.ts +0 -51
  114. package/src/lib/components/code-editor/helpers/code-editor-helper.base.spec.ts +0 -30
  115. package/src/lib/components/code-editor/helpers/code-editor-helper.base.ts +0 -16
  116. package/src/lib/components/code-editor/helpers/code-editor-helper.mocks.ts +0 -24
  117. package/src/lib/components/code-editor/helpers/code-editor-helper.model.ts +0 -67
  118. package/src/lib/components/code-editor/helpers/cpp-helper.spec.ts +0 -40
  119. package/src/lib/components/code-editor/helpers/cpp-helper.ts +0 -52
  120. package/src/lib/components/code-editor/helpers/csharp-helper.spec.ts +0 -42
  121. package/src/lib/components/code-editor/helpers/csharp-helper.ts +0 -55
  122. package/src/lib/components/code-editor/helpers/go-helper.spec.ts +0 -41
  123. package/src/lib/components/code-editor/helpers/go-helper.ts +0 -54
  124. package/src/lib/components/code-editor/helpers/java-helper.spec.ts +0 -41
  125. package/src/lib/components/code-editor/helpers/java-helper.ts +0 -54
  126. package/src/lib/components/code-editor/helpers/javascript-helper.spec.ts +0 -39
  127. package/src/lib/components/code-editor/helpers/javascript-helper.ts +0 -32
  128. package/src/lib/components/code-editor/helpers/kotlin-helper.spec.ts +0 -41
  129. package/src/lib/components/code-editor/helpers/kotlin-helper.ts +0 -54
  130. package/src/lib/components/code-editor/helpers/php-helper.spec.ts +0 -39
  131. package/src/lib/components/code-editor/helpers/php-helper.ts +0 -32
  132. package/src/lib/components/code-editor/helpers/python-helper.spec.ts +0 -39
  133. package/src/lib/components/code-editor/helpers/python-helper.ts +0 -32
  134. package/src/lib/components/code-editor/helpers/r-helper.spec.ts +0 -39
  135. package/src/lib/components/code-editor/helpers/r-helper.ts +0 -32
  136. package/src/lib/components/code-editor/helpers/ruby-helper.spec.ts +0 -39
  137. package/src/lib/components/code-editor/helpers/ruby-helper.ts +0 -32
  138. package/src/lib/components/code-editor/helpers/scala-helper.spec.ts +0 -41
  139. package/src/lib/components/code-editor/helpers/scala-helper.ts +0 -53
  140. package/src/lib/components/code-editor/helpers/sql-helper.spec.ts +0 -87
  141. package/src/lib/components/code-editor/helpers/sql-helper.ts +0 -44
  142. package/src/lib/components/code-editor/helpers/swift-helper.spec.ts +0 -40
  143. package/src/lib/components/code-editor/helpers/swift-helper.ts +0 -51
  144. package/src/lib/components/code-editor/helpers/typescript-helper.spec.ts +0 -40
  145. package/src/lib/components/code-editor/helpers/typescript-helper.ts +0 -52
  146. package/src/lib/components/code-editor/models/code-editor.model.ts +0 -9
  147. package/src/lib/components/code-editor/models/coding-snapshot.model.ts +0 -4
  148. package/src/lib/components/coding-question/coding-question.component.html +0 -78
  149. package/src/lib/components/coding-question/coding-question.component.scss +0 -75
  150. package/src/lib/components/coding-question/coding-question.component.spec.ts +0 -85
  151. package/src/lib/components/coding-question/coding-question.component.ts +0 -101
  152. package/src/lib/components/coding-section/coding-section.component.html +0 -82
  153. package/src/lib/components/coding-section/coding-section.component.scss +0 -64
  154. package/src/lib/components/coding-section/coding-section.component.spec.ts +0 -257
  155. package/src/lib/components/coding-section/coding-section.component.ts +0 -186
  156. package/src/lib/components/coding-test.module.ts +0 -124
  157. package/src/lib/components/common/truncated-text/truncated-text.component.html +0 -6
  158. package/src/lib/components/common/truncated-text/truncated-text.component.scss +0 -18
  159. package/src/lib/components/common/truncated-text/truncated-text.component.spec.ts +0 -84
  160. package/src/lib/components/common/truncated-text/truncated-text.component.ts +0 -36
  161. package/src/lib/components/configurations/configurations.component.html +0 -57
  162. package/src/lib/components/configurations/configurations.component.scss +0 -42
  163. package/src/lib/components/configurations/configurations.component.spec.ts +0 -186
  164. package/src/lib/components/configurations/configurations.component.ts +0 -97
  165. package/src/lib/components/instructions/instructions.component.html +0 -41
  166. package/src/lib/components/instructions/instructions.component.scss +0 -173
  167. package/src/lib/components/instructions/instructions.component.spec.ts +0 -106
  168. package/src/lib/components/instructions/instructions.component.ts +0 -137
  169. package/src/lib/components/panel/panel.component.html +0 -19
  170. package/src/lib/components/panel/panel.component.scss +0 -41
  171. package/src/lib/components/panel/panel.component.spec.ts +0 -40
  172. package/src/lib/components/panel/panel.component.ts +0 -33
  173. package/src/lib/components/runnable-editor/runnable-editor.component.html +0 -75
  174. package/src/lib/components/runnable-editor/runnable-editor.component.scss +0 -55
  175. package/src/lib/components/runnable-editor/runnable-editor.component.spec.ts +0 -124
  176. package/src/lib/components/runnable-editor/runnable-editor.component.ts +0 -154
  177. package/src/lib/components/tests/test-cases/test-cases.component.html +0 -135
  178. package/src/lib/components/tests/test-cases/test-cases.component.scss +0 -220
  179. package/src/lib/components/tests/test-cases/test-cases.component.spec.ts +0 -401
  180. package/src/lib/components/tests/test-cases/test-cases.component.ts +0 -204
  181. package/src/lib/components/tests/test-cases-content/test-cases-content.component.html +0 -94
  182. package/src/lib/components/tests/test-cases-content/test-cases-content.component.scss +0 -103
  183. package/src/lib/components/tests/test-cases-content/test-cases-content.component.spec.ts +0 -122
  184. package/src/lib/components/tests/test-cases-content/test-cases-content.component.ts +0 -101
  185. package/src/lib/components/tests/test-cases-status/test-cases-status.component.html +0 -16
  186. package/src/lib/components/tests/test-cases-status/test-cases-status.component.scss +0 -49
  187. package/src/lib/components/tests/test-cases-status/test-cases-status.component.spec.ts +0 -22
  188. package/src/lib/components/tests/test-cases-status/test-cases-status.component.ts +0 -17
  189. package/src/lib/components/tests/test-results.component.html +0 -119
  190. package/src/lib/components/tests/test-results.component.scss +0 -189
  191. package/src/lib/components/tests/test-results.component.spec.ts +0 -140
  192. package/src/lib/components/tests/test-results.component.ts +0 -97
  193. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.html +0 -96
  194. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.scss +0 -6
  195. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.spec.ts +0 -599
  196. package/src/lib/components/tgo-coding-test/tgo-coding-test.component.ts +0 -278
  197. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.html +0 -36
  198. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.scss +0 -183
  199. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.spec.ts +0 -883
  200. package/src/lib/components/tgo-coding-test-candidate-view/tgo-coding-test-candidate-view.component.ts +0 -578
  201. package/src/lib/config/tgo-coding-test.config.ts +0 -26
  202. package/src/lib/config/tgo-coding-test.token.ts +0 -21
  203. package/src/lib/models/.gitkeep +0 -0
  204. package/src/lib/models/auto-saved-data.ts +0 -51
  205. package/src/lib/models/code-event.ts +0 -17
  206. package/src/lib/models/coderunner-execution-results.ts +0 -58
  207. package/src/lib/models/coding-lib.mocks.ts +0 -246
  208. package/src/lib/models/configs.ts +0 -18
  209. package/src/lib/models/language-change-action.ts +0 -4
  210. package/src/lib/models/lat-languages.ts +0 -12
  211. package/src/lib/models/mixpanel-events.ts +0 -3
  212. package/src/lib/models/mode.ts +0 -5
  213. package/src/lib/models/paste-data.ts +0 -4
  214. package/src/lib/models/programming-language.ts +0 -9
  215. package/src/lib/models/test-cases.ts +0 -74
  216. package/src/lib/models/theme.ts +0 -5
  217. package/src/lib/models/translations.ts +0 -1
  218. package/src/lib/models/view-mode.ts +0 -6
  219. package/src/lib/services/.gitkeep +0 -0
  220. package/src/lib/services/candidate-coding-test-services/candidature-api.service.spec.ts +0 -40
  221. package/src/lib/services/candidate-coding-test-services/candidature-api.service.ts +0 -15
  222. package/src/lib/services/candidate-coding-test-services/coderunner-api.service.spec.ts +0 -134
  223. package/src/lib/services/candidate-coding-test-services/coderunner-api.service.ts +0 -105
  224. package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.spec.ts +0 -161
  225. package/src/lib/services/candidate-coding-test-services/coding-test-tour.service.ts +0 -100
  226. package/src/lib/services/candidate-coding-test-services/coding-test.service.spec.ts +0 -1524
  227. package/src/lib/services/candidate-coding-test-services/coding-test.service.ts +0 -843
  228. package/src/lib/services/coding-test-config.service.ts +0 -48
  229. package/src/lib/services/configurations.service.mocks.ts +0 -77
  230. package/src/lib/services/configurations.service.spec.ts +0 -79
  231. package/src/lib/services/configurations.service.ts +0 -111
  232. package/src/lib/services/index.ts +0 -0
  233. package/src/lib/services/lib-coding-test.service.spec.ts +0 -265
  234. package/src/lib/services/lib-coding-test.service.ts +0 -157
  235. package/src/lib/services/local-storage.service.mocks.ts +0 -22
  236. package/src/lib/services/storage.service.spec.ts +0 -1119
  237. package/src/lib/services/storage.service.ts +0 -729
  238. package/src/lib/services/test-cases.service.spec.ts +0 -53
  239. package/src/lib/services/test-cases.service.ts +0 -29
  240. package/src/lib/services/theme.service.spec.ts +0 -76
  241. package/src/lib/services/theme.service.ts +0 -34
  242. package/src/lib/styles/mixins.scss +0 -86
  243. package/src/lib/styles/styles.scss +0 -112
  244. package/src/lib/styles/variables.scss +0 -105
  245. package/src/lib/utils/.gitkeep +0 -0
  246. package/src/lib/utils/additional-languages/erlang.ts +0 -115
  247. package/src/lib/utils/resize-element.ts +0 -15
  248. package/src/lib/utils/time-to-ms.util.ts +0 -10
  249. package/src/test-setup.ts +0 -3
  250. package/tsconfig.json +0 -19
  251. package/tsconfig.lib.json +0 -19
  252. package/tsconfig.lib.prod.json +0 -10
  253. package/tsconfig.spec.json +0 -17
  254. /package/{src/assets → assets}/i18n/en.json +0 -0
  255. /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,154 +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
- selector: 'tgo-runnable-editor',
43
- templateUrl: './runnable-editor.component.html',
44
- styleUrls: ['./runnable-editor.component.scss'],
45
- changeDetection: ChangeDetectionStrategy.OnPush,
46
- imports: [
47
- CommonModule,
48
- AngularSplitModule,
49
- CodingSectionComponent,
50
- ConfigurationsComponent,
51
- TestResultsComponent,
52
- ]
53
- })
54
- export class RunnableEditorComponent implements AfterViewInit {
55
- @Input() initCode: string;
56
- @Input() functionParams: CodeEditorFuncParam[];
57
- @Input() functionName: string;
58
- @Input() returnType: keyof CodeEditorTypesMap;
59
- @Input() isFullViewMode: boolean;
60
- @Input() isLAT: boolean;
61
- @Input() isSQL: boolean;
62
- @Input() canAddCustomTestCases: boolean;
63
- @Input() hideTestCases: boolean;
64
- @Input() languages: LATLanguages;
65
- @Input() shouldGenerateInitCode: boolean;
66
- @Input() autoHeight: boolean;
67
- @Input() translations: Record<string, unknown>;
68
- @Input() questionText: string;
69
- @Input() companyColor: string;
70
- @Input() testCasesStatus: any;
71
- @Input() loading: boolean;
72
- @Input() runTestResponse = [];
73
- @Input() exampleTestCases: ExampleTestCase[];
74
- @Input() isRunnableWithLangSelector: boolean;
75
- @Input() applicationTheme: ApplicationTheme;
76
-
77
- @Output() pasteEvent = new EventEmitter<PasteData>();
78
- @Output() codeChange = new EventEmitter<string>();
79
- @Output() runTestClick = new EventEmitter<boolean>();
80
- @Output() languageChange = new EventEmitter<CodeEditorLanguages>();
81
-
82
- @ViewChild('codingTestsSplit', { read: ElementRef }) codingTestsSplitRef: ElementRef;
83
- @ViewChild('testsSplitArea', { read: ElementRef }) testsSplitAreaRef: ElementRef;
84
-
85
- minTestsSplitHeight: number;
86
- currentIdeSplitHeight = 55;
87
- currentTestsSplitHeight = 45;
88
-
89
- MIN_TESTS_HEIGHT_PX = 119;
90
- MIN_LAT_TESTS_HEIGHT_PX = 202;
91
- GUTTER_SIZE = 1;
92
-
93
- isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
94
-
95
- constructor(private changeDetectorRef: ChangeDetectorRef) {}
96
-
97
- ngAfterViewInit(): void {
98
- if (this.isMobile) {
99
- return;
100
- }
101
-
102
- if (this.isFullViewMode) {
103
- this.setCodingSplitListener();
104
- } else {
105
- const { offsetHeight: height } = this.codingTestsSplitRef.nativeElement;
106
- this.minTestsSplitHeight = this.getMinTestsPercentHeight(height);
107
- }
108
- }
109
-
110
- /* listens to area height changes and calculates the maximum % size of coding window area */
111
- private setCodingSplitListener(): void {
112
- concat(this.getInitialMaxHeight$(), resizeElement(this.codingTestsSplitRef.nativeElement))
113
- .pipe(
114
- observeOn(animationFrameScheduler),
115
- debounceTime(300),
116
- map(({ contentRect: { height } }) => height),
117
- distinctUntilChanged(),
118
- untilDestroyed(this)
119
- )
120
- .subscribe(height => {
121
- this.calculateCurrentHeights(height);
122
-
123
- this.changeDetectorRef.detectChanges();
124
- });
125
- }
126
-
127
- private calculateCurrentHeights(fullHeight: number): void {
128
- const { offsetHeight: testsSplitHeight } = this.testsSplitAreaRef.nativeElement;
129
- this.minTestsSplitHeight = this.getMinTestsPercentHeight(fullHeight);
130
-
131
- let testsPercentHeight = this.getPercentHeightFromWhole(fullHeight, testsSplitHeight);
132
-
133
- if (testsPercentHeight < this.minTestsSplitHeight) {
134
- testsPercentHeight = this.minTestsSplitHeight;
135
- }
136
-
137
- this.currentTestsSplitHeight = testsPercentHeight;
138
- this.currentIdeSplitHeight = 100 - this.currentTestsSplitHeight;
139
- }
140
-
141
- private getInitialMaxHeight$(): Observable<any> {
142
- const { offsetHeight: height } = this.codingTestsSplitRef.nativeElement;
143
- return of({ contentRect: { height: this.getMinTestsPercentHeight(height) } });
144
- }
145
-
146
- private getPercentHeightFromWhole(fullHeight: number, areaHeight: number): number {
147
- return (areaHeight * 100) / (fullHeight - this.GUTTER_SIZE * 2);
148
- }
149
-
150
- private getMinTestsPercentHeight(height: number): number {
151
- const minTestsHeightPx = this.isLAT ? this.MIN_LAT_TESTS_HEIGHT_PX : this.MIN_TESTS_HEIGHT_PX;
152
- return (minTestsHeightPx * 100) / height;
153
- }
154
- }
@@ -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
- }