@cauca-911/material 20.2.11 → 20.2.13

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 (246) hide show
  1. package/.eslintrc.json +77 -0
  2. package/README.md +24 -5
  3. package/README_PACKAGE.md +5 -0
  4. package/karma.conf.js +50 -0
  5. package/ng-package.json +7 -0
  6. package/package.json +23 -38
  7. package/{assets → src/assets}/i18n/cauca/en-material.json +104 -104
  8. package/{assets → src/assets}/i18n/cauca/es-material.json +104 -104
  9. package/{assets → src/assets}/i18n/cauca/fr-material.json +106 -106
  10. package/src/lib/cauca-material.component.html +1 -0
  11. package/src/lib/cauca-material.component.spec.ts +29 -0
  12. package/src/lib/cauca-material.component.ts +12 -0
  13. package/src/lib/cauca-material.service.spec.ts +16 -0
  14. package/src/lib/cauca-material.service.ts +7 -0
  15. package/src/lib/components/button/button.component.html +52 -0
  16. package/src/lib/components/button/button.component.scss +6 -0
  17. package/src/lib/components/button/button.component.spec.ts +134 -0
  18. package/src/lib/components/button/button.component.ts +21 -0
  19. package/src/lib/components/buttons/base-button.ts +35 -0
  20. package/src/lib/components/buttons/basic-button/basic-button.component.html +5 -0
  21. package/src/lib/components/buttons/basic-button/basic-button.component.scss +12 -0
  22. package/src/lib/components/buttons/basic-button/basic-button.component.spec.ts +106 -0
  23. package/src/lib/components/buttons/basic-button/basic-button.component.ts +17 -0
  24. package/src/lib/components/buttons/fab-button/fab-button.component.html +3 -0
  25. package/src/lib/components/buttons/fab-button/fab-button.component.scss +12 -0
  26. package/src/lib/components/buttons/fab-button/fab-button.component.spec.ts +82 -0
  27. package/src/lib/components/buttons/fab-button/fab-button.component.ts +16 -0
  28. package/src/lib/components/buttons/flat-button/flat-button.component.html +5 -0
  29. package/src/lib/components/buttons/flat-button/flat-button.component.scss +12 -0
  30. package/src/lib/components/buttons/flat-button/flat-button.component.spec.ts +106 -0
  31. package/src/lib/components/buttons/flat-button/flat-button.component.ts +17 -0
  32. package/src/lib/components/buttons/icon-button/icon-button.component.html +3 -0
  33. package/src/lib/components/buttons/icon-button/icon-button.component.scss +23 -0
  34. package/src/lib/components/buttons/icon-button/icon-button.component.spec.ts +38 -0
  35. package/src/lib/components/buttons/icon-button/icon-button.component.ts +15 -0
  36. package/src/lib/components/buttons/link-button/link-button.component.html +1 -0
  37. package/src/lib/components/buttons/link-button/link-button.component.scss +3 -0
  38. package/src/lib/components/buttons/link-button/link-button.component.spec.ts +97 -0
  39. package/src/lib/components/buttons/link-button/link-button.component.ts +25 -0
  40. package/src/lib/components/buttons/menu-item/menu-item.component.html +5 -0
  41. package/src/lib/components/buttons/menu-item/menu-item.component.scss +6 -0
  42. package/src/lib/components/buttons/menu-item/menu-item.component.spec.ts +66 -0
  43. package/src/lib/components/buttons/menu-item/menu-item.component.ts +19 -0
  44. package/src/lib/components/buttons/raised-button/raised-button.component.html +5 -0
  45. package/src/lib/components/buttons/raised-button/raised-button.component.scss +12 -0
  46. package/src/lib/components/buttons/raised-button/raised-button.component.spec.ts +108 -0
  47. package/src/lib/components/buttons/raised-button/raised-button.component.ts +17 -0
  48. package/src/lib/components/buttons/refresh-button/refresh-button.component.html +1 -0
  49. package/src/lib/components/buttons/refresh-button/refresh-button.component.scss +0 -0
  50. package/src/lib/components/buttons/refresh-button/refresh-button.component.spec.ts +81 -0
  51. package/src/lib/components/buttons/refresh-button/refresh-button.component.ts +19 -0
  52. package/src/lib/components/buttons/round-button/round-button.component.html +3 -0
  53. package/src/lib/components/buttons/round-button/round-button.component.scss +34 -0
  54. package/src/lib/components/buttons/round-button/round-button.component.spec.ts +26 -0
  55. package/src/lib/components/buttons/round-button/round-button.component.ts +14 -0
  56. package/src/lib/components/buttons/stroked-button/stroked-button.component.html +5 -0
  57. package/src/lib/components/buttons/stroked-button/stroked-button.component.scss +23 -0
  58. package/src/lib/components/buttons/stroked-button/stroked-button.component.spec.ts +114 -0
  59. package/src/lib/components/buttons/stroked-button/stroked-button.component.ts +17 -0
  60. package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.html +9 -0
  61. package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.scss +7 -0
  62. package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.spec.ts +68 -0
  63. package/src/lib/components/cauca-date-time-picker/cauca-date-time-picker.component.ts +155 -0
  64. package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.html +6 -0
  65. package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.scss +25 -0
  66. package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.spec.ts +23 -0
  67. package/src/lib/components/cauca-date-time-picker/components/desktop-time-picker/desktop-time-picker.component.ts +23 -0
  68. package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.html +53 -0
  69. package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.scss +124 -0
  70. package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.spec.ts +93 -0
  71. package/src/lib/components/cauca-date-time-picker/components/dialog-date-time-picker/dialog-date-time-picker.component.ts +227 -0
  72. package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.html +9 -0
  73. package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.scss +15 -0
  74. package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.spec.ts +103 -0
  75. package/src/lib/components/cauca-date-time-picker/components/mobile-time-picker/mobile-time-picker.component.ts +47 -0
  76. package/src/lib/components/cauca-date-time-picker/models/dialog-date-time-picker-data.ts +29 -0
  77. package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.html +11 -0
  78. package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.scss +3 -0
  79. package/src/lib/components/deprecated-components/cauca-input-file/cauca-input-file.component.ts +87 -0
  80. package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.html +8 -0
  81. package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.scss +3 -0
  82. package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.spec.ts +35 -0
  83. package/src/lib/components/deprecated-components/cauca-input-multiple-langue/cauca-input-multiple-langue.component.ts +57 -0
  84. package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.html +19 -0
  85. package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.scss +142 -0
  86. package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.spec.ts +30 -0
  87. package/src/lib/components/deprecated-components/cauca-menu-sidebar/cauca-menu-sidebar.component.ts +112 -0
  88. package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.html +26 -0
  89. package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.scss +52 -0
  90. package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.spec.ts +28 -0
  91. package/src/lib/components/deprecated-components/cauca-menu-vertical/cauca-menu-vertical.component.ts +53 -0
  92. package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.html +7 -0
  93. package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.scss +4 -0
  94. package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.spec.ts +39 -0
  95. package/src/lib/components/deprecated-components/cauca-simple-dialog/cauca-simple-dialog.component.ts +20 -0
  96. package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.html +7 -0
  97. package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.scss +41 -0
  98. package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.spec.ts +24 -0
  99. package/src/lib/components/deprecated-components/cauca-slideshow/cauca-slideshow.component.ts +67 -0
  100. package/src/lib/components/deprecated-components/shared/models/menu-item.ts +11 -0
  101. package/src/lib/components/deprecated-components/shared/models/simple-dialog-data.ts +5 -0
  102. package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.html +10 -0
  103. package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.scss +14 -0
  104. package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.spec.ts +90 -0
  105. package/src/lib/components/dialogs/alert-dialog/alert-dialog.component.ts +41 -0
  106. package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.html +11 -0
  107. package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.scss +29 -0
  108. package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.spec.ts +137 -0
  109. package/src/lib/components/dialogs/confirm-dialog/confirm-dialog.component.ts +47 -0
  110. package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.html +17 -0
  111. package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.scss +14 -0
  112. package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.spec.ts +96 -0
  113. package/src/lib/components/dialogs/delete-dialog/delete-dialog.component.ts +40 -0
  114. package/src/lib/components/dialogs/delete-dialog/models/delete-dialog-data.spec.ts +7 -0
  115. package/src/lib/components/dialogs/delete-dialog/models/delete-dialog-data.ts +5 -0
  116. package/src/lib/components/dialogs/dialog-styles.css +9 -0
  117. package/src/lib/components/dialogs/dialog-styles.scss +9 -0
  118. package/src/lib/components/dialogs/error-dialog/error-dialog.component.html +10 -0
  119. package/src/lib/components/dialogs/error-dialog/error-dialog.component.scss +10 -0
  120. package/src/lib/components/dialogs/error-dialog/error-dialog.component.spec.ts +91 -0
  121. package/src/lib/components/dialogs/error-dialog/error-dialog.component.ts +32 -0
  122. package/src/lib/components/dialogs/services/dialog.service.spec.ts +82 -0
  123. package/src/lib/components/dialogs/services/dialog.service.ts +107 -0
  124. package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.html +24 -0
  125. package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.scss +22 -0
  126. package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.spec.ts +126 -0
  127. package/src/lib/components/dialogs/text-input-dialog/text-input-dialog.component.ts +66 -0
  128. package/src/lib/components/inputs/color-picker/color-picker.component.html +9 -0
  129. package/src/lib/components/inputs/color-picker/color-picker.component.scss +0 -0
  130. package/src/lib/components/inputs/color-picker/color-picker.component.spec.ts +29 -0
  131. package/src/lib/components/inputs/color-picker/color-picker.component.ts +111 -0
  132. package/src/lib/components/inputs/date-range-picker/date-range-picker.component.html +13 -0
  133. package/src/lib/components/inputs/date-range-picker/date-range-picker.component.scss +0 -0
  134. package/src/lib/components/inputs/date-range-picker/date-range-picker.component.spec.ts +80 -0
  135. package/src/lib/components/inputs/date-range-picker/date-range-picker.component.ts +46 -0
  136. package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.html +40 -0
  137. package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.scss +39 -0
  138. package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.spec.ts +135 -0
  139. package/src/lib/components/inputs/dropdown-chip-autocomplete/dropdown-chip-autocomplete.component.ts +263 -0
  140. package/src/lib/components/inputs/password/password-criteria/password-criteria.component.html +6 -0
  141. package/src/lib/components/inputs/password/password-criteria/password-criteria.component.scss +27 -0
  142. package/src/lib/components/inputs/password/password-criteria/password-criteria.component.spec.ts +90 -0
  143. package/src/lib/components/inputs/password/password-criteria/password-criteria.component.ts +17 -0
  144. package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.html +5 -0
  145. package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.scss +8 -0
  146. package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.spec.ts +98 -0
  147. package/src/lib/components/inputs/password/password-criteria-viewer/password-criteria-viewer.component.ts +16 -0
  148. package/src/lib/components/inputs/password/password-input/password-input.component.html +11 -0
  149. package/src/lib/components/inputs/password/password-input/password-input.component.scss +12 -0
  150. package/src/lib/components/inputs/password/password-input/password-input.component.spec.ts +141 -0
  151. package/src/lib/components/inputs/password/password-input/password-input.component.ts +67 -0
  152. package/src/lib/components/inputs/password/password-selection/password-selection.component.html +15 -0
  153. package/src/lib/components/inputs/password/password-selection/password-selection.component.scss +32 -0
  154. package/src/lib/components/inputs/password/password-selection/password-selection.component.spec.ts +138 -0
  155. package/src/lib/components/inputs/password/password-selection/password-selection.component.ts +100 -0
  156. package/src/lib/components/inputs/select-with-search/select-with-search.component.html +19 -0
  157. package/src/lib/components/inputs/select-with-search/select-with-search.component.scss +0 -0
  158. package/src/lib/components/inputs/select-with-search/select-with-search.component.spec.ts +213 -0
  159. package/src/lib/components/inputs/select-with-search/select-with-search.component.ts +108 -0
  160. package/src/lib/components/layout/expandable-panel/expandable-panel.component.html +12 -0
  161. package/src/lib/components/layout/expandable-panel/expandable-panel.component.scss +43 -0
  162. package/src/lib/components/layout/expandable-panel/expandable-panel.component.spec.ts +48 -0
  163. package/src/lib/components/layout/expandable-panel/expandable-panel.component.ts +19 -0
  164. package/src/lib/components/layout/group-container/group-container.component.html +6 -0
  165. package/src/lib/components/layout/group-container/group-container.component.scss +22 -0
  166. package/src/lib/components/layout/group-container/group-container.component.spec.ts +34 -0
  167. package/src/lib/components/layout/group-container/group-container.component.ts +14 -0
  168. package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.html +13 -0
  169. package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.scss +27 -0
  170. package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.spec.ts +144 -0
  171. package/src/lib/components/layout/menu-expandable-panel/menu-expandable-panel.component.ts +52 -0
  172. package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.html +4 -0
  173. package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.scss +10 -0
  174. package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.spec.ts +80 -0
  175. package/src/lib/components/layout/menu-expandable-panel-item/menu-expandable-panel-item.component.ts +28 -0
  176. package/src/lib/components/layout/page-title/page-title.component.html +28 -0
  177. package/src/lib/components/layout/page-title/page-title.component.scss +40 -0
  178. package/src/lib/components/layout/page-title/page-title.component.spec.ts +162 -0
  179. package/src/lib/components/layout/page-title/page-title.component.ts +28 -0
  180. package/src/lib/components/layout/sections/main-section/main-section.component.html +6 -0
  181. package/src/lib/components/layout/sections/main-section/main-section.component.scss +27 -0
  182. package/src/lib/components/layout/sections/main-section/main-section.component.spec.ts +42 -0
  183. package/src/lib/components/layout/sections/main-section/main-section.component.ts +13 -0
  184. package/src/lib/components/layout/sections/section-column/section-column.component.html +3 -0
  185. package/src/lib/components/layout/sections/section-column/section-column.component.scss +18 -0
  186. package/src/lib/components/layout/sections/section-column/section-column.component.spec.ts +35 -0
  187. package/src/lib/components/layout/sections/section-column/section-column.component.ts +12 -0
  188. package/src/lib/components/layout/sections/section-field/section-field.component.html +21 -0
  189. package/src/lib/components/layout/sections/section-field/section-field.component.scss +44 -0
  190. package/src/lib/components/layout/sections/section-field/section-field.component.spec.ts +74 -0
  191. package/src/lib/components/layout/sections/section-field/section-field.component.ts +22 -0
  192. package/src/lib/components/list-paginator/list-paginator.component.html +16 -0
  193. package/src/lib/components/list-paginator/list-paginator.component.scss +46 -0
  194. package/src/lib/components/list-paginator/list-paginator.component.spec.ts +248 -0
  195. package/src/lib/components/list-paginator/list-paginator.component.ts +81 -0
  196. package/src/lib/components/misc/loading-error/loading-error.component.html +11 -0
  197. package/src/lib/components/misc/loading-error/loading-error.component.scss +0 -0
  198. package/src/lib/components/misc/loading-error/loading-error.component.spec.ts +75 -0
  199. package/src/lib/components/misc/loading-error/loading-error.component.ts +18 -0
  200. package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.html +3 -0
  201. package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.scss +0 -0
  202. package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.spec.ts +43 -0
  203. package/src/lib/components/misc/loading-spinner-indicator/loading-spinner-indicator.component.ts +16 -0
  204. package/src/lib/components/misc/snack-bar/snack-bar.component.html +16 -0
  205. package/src/lib/components/misc/snack-bar/snack-bar.component.scss +84 -0
  206. package/src/lib/components/misc/snack-bar/snack-bar.component.spec.ts +136 -0
  207. package/src/lib/components/misc/snack-bar/snack-bar.component.ts +39 -0
  208. package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.html +11 -0
  209. package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.scss +0 -0
  210. package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.spec.ts +67 -0
  211. package/src/lib/components/notifications/saving-confirmed-box/saving-confirmed-box.component.ts +15 -0
  212. package/src/lib/components/notifications/saving-error-box/saving-error-box.component.html +11 -0
  213. package/src/lib/components/notifications/saving-error-box/saving-error-box.component.scss +0 -0
  214. package/src/lib/components/notifications/saving-error-box/saving-error-box.component.spec.ts +77 -0
  215. package/src/lib/components/notifications/saving-error-box/saving-error-box.component.ts +17 -0
  216. package/src/lib/components/presenters/badge/badge.component.html +6 -0
  217. package/src/lib/components/presenters/badge/badge.component.scss +10 -0
  218. package/src/lib/components/presenters/badge/badge.component.spec.ts +41 -0
  219. package/src/lib/components/presenters/badge/badge.component.ts +18 -0
  220. package/src/lib/components/presenters/icon/icon.component.scss +9 -0
  221. package/src/lib/components/presenters/icon/icon.component.spec.ts +38 -0
  222. package/src/lib/components/presenters/icon/icon.component.ts +37 -0
  223. package/src/lib/core/breadcrumb.service.spec.ts +35 -0
  224. package/src/lib/core/breadcrumb.service.ts +24 -0
  225. package/src/lib/core/directives/auto-trim-and-lower.directive.spec.ts +22 -0
  226. package/src/lib/core/directives/auto-trim-and-lower.directive.ts +19 -0
  227. package/src/lib/core/directives/form-error/form-error.module.ts +21 -0
  228. package/src/lib/core/directives/form-error/has-error-root.directive.ts +29 -0
  229. package/src/lib/core/directives/form-error/has-error.directive.ts +95 -0
  230. package/src/lib/core/loading-state.service.spec.ts +57 -0
  231. package/src/lib/core/loading-state.service.ts +44 -0
  232. package/src/lib/core/models/breadcrumb-location.ts +6 -0
  233. package/src/lib/core/models/password-validation.ts +20 -0
  234. package/src/lib/core/validators/password/password-validator.spec.ts +155 -0
  235. package/src/lib/core/validators/password/password-validator.ts +30 -0
  236. package/src/lib/provide-cauca-material.ts +10 -0
  237. package/src/public-api.ts +74 -0
  238. package/src/test.ts +17 -0
  239. package/tsconfig.lib.json +22 -0
  240. package/tsconfig.lib.prod.json +4 -0
  241. package/tsconfig.spec.json +17 -0
  242. package/LICENSE +0 -21
  243. package/fesm2022/cauca-911-material.mjs +0 -4731
  244. package/fesm2022/cauca-911-material.mjs.map +0 -1
  245. package/index.d.ts +0 -795
  246. /package/{assets → src/assets}/images/loading.gif +0 -0
@@ -0,0 +1,67 @@
1
+ import { Component, OnInit, ElementRef, Input, ViewChild } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+
4
+ @Component({
5
+ selector: 'cauca-slideshow',
6
+ templateUrl: './cauca-slideshow.component.html',
7
+ styleUrls: ['./cauca-slideshow.component.scss'],
8
+ imports: [CommonModule],
9
+ })
10
+ export class CaucaSlideshowComponent implements OnInit {
11
+ @ViewChild('container', { static: true })
12
+ public container: ElementRef;
13
+ @Input()
14
+ public height = '150px';
15
+ @Input()
16
+ public autoPlay = true;
17
+ public states = [];
18
+ public selectedIndex = 0;
19
+
20
+ private timer = null;
21
+ private items = [];
22
+
23
+ @Input()
24
+ public set images(list: string[]) {
25
+ this.items = list;
26
+ this.restart();
27
+ }
28
+ public get images(): string[] {
29
+ return this.items;
30
+ }
31
+
32
+ public ngOnInit(): void {
33
+ this.container.nativeElement.style.height = this.height;
34
+ this.container.nativeElement.style.width = '100%';
35
+ }
36
+
37
+ public getState(index: number): string {
38
+ if (this.states[index]) {
39
+ return this.states[index];
40
+ }
41
+
42
+ return (this.selectedIndex === index ? 'in' : 'out');
43
+ }
44
+
45
+ public restart(): void {
46
+ if (this.timer) {
47
+ window.clearInterval(this.timer);
48
+ }
49
+ if (this.images && this.images.length) {
50
+ this.timer = window.setInterval(() => this.changed('next'), 5000);
51
+ }
52
+ }
53
+
54
+ public next(): void {
55
+ if (this.selectedIndex < this.items.length - 1) {
56
+ this.selectedIndex++;
57
+ } else {
58
+ this.selectedIndex = 0;
59
+ }
60
+ }
61
+
62
+ private changed(action: string): void {
63
+ this.states[this.selectedIndex] = 'out';
64
+ this[action]();
65
+ this.states[this.selectedIndex] = 'in';
66
+ }
67
+ }
@@ -0,0 +1,11 @@
1
+ export class MenuItem {
2
+ public activated: boolean;
3
+ public childs: MenuItem[] = [];
4
+
5
+ public constructor(
6
+ public label: string,
7
+ public path: string,
8
+ public icon: string | string[] = '',
9
+ ) {
10
+ }
11
+ }
@@ -0,0 +1,5 @@
1
+ export class SimpleDialogData {
2
+ public title: string;
3
+ public message: string;
4
+ public buttons: string[] = [];
5
+ }
@@ -0,0 +1,10 @@
1
+ <div mat-dialog-title>
2
+ <div class="h6">{{ title | translate }}</div>
3
+ <cauca-icon-button id="closeButton" (buttonClick)="closeClick()" icon="close" />
4
+ </div>
5
+ <div class="alert-dialog-content" mat-dialog-content>
6
+ <p>{{ message | translate }}</p>
7
+ </div>
8
+ <mat-dialog-actions align="end">
9
+ <cauca-raised-button id="okButton" label="ok" color="primary" (buttonClick)="closeClick()" />
10
+ </mat-dialog-actions>
@@ -0,0 +1,14 @@
1
+ @use "../dialog-styles";
2
+
3
+ :host > div:first-child {
4
+ display: flex;
5
+ align-items: center;
6
+
7
+ div:first-child {
8
+ flex: 1;
9
+ }
10
+ }
11
+
12
+ .alert-dialog-content {
13
+ white-space: pre-wrap;
14
+ }
@@ -0,0 +1,90 @@
1
+ import { ComponentFixture, fakeAsync, TestBed } from '@angular/core/testing';
2
+
3
+ import { AlertDialogComponent } from './alert-dialog.component';
4
+ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
5
+ import { TranslateModule, TranslatePipe } from '@ngx-translate/core';
6
+ import { MockComponents, MockModule, MockPipe, ngMocks } from 'ng-mocks';
7
+ import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';
8
+ import { of } from 'rxjs';
9
+ import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
10
+ import { RaisedButtonComponent } from '../../buttons/raised-button/raised-button.component';
11
+
12
+ describe('AlertDialogComponent', () => {
13
+ let component: AlertDialogComponent;
14
+ let fixture: ComponentFixture<AlertDialogComponent>;
15
+ let mockMatDialog: any;
16
+ let breakpointObserverMock: jasmine.SpyObj<BreakpointObserver>;
17
+
18
+ beforeEach(async () => {
19
+ breakpointObserverMock = jasmine.createSpyObj('BreakpointObserver', ['observe']);
20
+ breakpointObserverMock.observe.and.returnValue(of({ matches: true, breakpoints: {} }));
21
+
22
+ mockMatDialog = jasmine.createSpyObj('MatDialogRef', ['close', 'addPanelClass', 'updateSize']);
23
+ await TestBed.configureTestingModule({
24
+ imports: [
25
+ AlertDialogComponent,
26
+ MockModule(TranslateModule)
27
+ ],
28
+ declarations: [
29
+ MockPipe(TranslatePipe, value => value),
30
+ ...MockComponents(IconButtonComponent, RaisedButtonComponent)
31
+ ],
32
+ providers: [
33
+ { provide: MatDialogRef, useValue: mockMatDialog },
34
+ { provide: MAT_DIALOG_DATA, useValue: [] },
35
+ { provide: BreakpointObserver, useValue: breakpointObserverMock },
36
+ ]
37
+ })
38
+ .compileComponents();
39
+
40
+ fixture = TestBed.createComponent(AlertDialogComponent);
41
+ component = fixture.componentInstance;
42
+ fixture.detectChanges();
43
+ });
44
+
45
+ it('should create', () => {
46
+ expect(component).toBeTruthy();
47
+ });
48
+
49
+ it('should initially add a global style class', () => {
50
+ expect(mockMatDialog.addPanelClass).toHaveBeenCalledWith('dialog-global-style');
51
+ });
52
+
53
+ it('should update dialog size when breakpoint matches', fakeAsync(() => {
54
+ mockMatDialog.updateSize.calls.reset();
55
+ const breakpointState: BreakpointState = { matches: true, breakpoints: {} };
56
+ breakpointObserverMock.observe.and.returnValue(of(breakpointState));
57
+
58
+ TestBed.createComponent(AlertDialogComponent);
59
+ fixture.detectChanges();
60
+
61
+ expect(mockMatDialog.updateSize).toHaveBeenCalledWith('100vw');
62
+ }));
63
+
64
+ it('should update dialog size when breakpoint does not match', fakeAsync(() => {
65
+ mockMatDialog.updateSize.calls.reset();
66
+ const breakpointState: BreakpointState = { matches: false, breakpoints: {} };
67
+ breakpointObserverMock.observe.and.returnValue(of(breakpointState));
68
+
69
+ TestBed.createComponent(AlertDialogComponent);
70
+ fixture.detectChanges();
71
+
72
+ expect(mockMatDialog.updateSize).toHaveBeenCalledWith('auto');
73
+ }));
74
+
75
+ it('should close dialog when pressing ok', async () => {
76
+ const closeButton = ngMocks.find<RaisedButtonComponent>('#okButton', null)?.componentInstance;
77
+
78
+ closeButton.buttonClick.emit();
79
+
80
+ expect(mockMatDialog.close).toHaveBeenCalled();
81
+ });
82
+
83
+ it('should close dialog when pressing close', async () => {
84
+ const closeButton = ngMocks.find<IconButtonComponent>('#closeButton', null)?.componentInstance;
85
+
86
+ closeButton.buttonClick.emit();
87
+
88
+ expect(mockMatDialog.close).toHaveBeenCalled();
89
+ });
90
+ });
@@ -0,0 +1,41 @@
1
+ import { Component, Inject } from '@angular/core';
2
+ import { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from '@angular/material/dialog';
3
+ import { ConfirmationOptions } from '../services/dialog.service';
4
+ import { TranslateModule } from '@ngx-translate/core';
5
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
6
+ import { BreakpointObserver } from '@angular/cdk/layout';
7
+ import { RaisedButtonComponent } from '../../buttons/raised-button/raised-button.component';
8
+ import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
9
+
10
+ @Component({
11
+ selector: 'cauca-alert-dialog',
12
+ templateUrl: './alert-dialog.component.html',
13
+ styleUrls: ['./alert-dialog.component.scss'],
14
+ standalone: true,
15
+ imports: [TranslateModule, RaisedButtonComponent, IconButtonComponent, MatDialogModule]
16
+ })
17
+ export class AlertDialogComponent {
18
+
19
+ public title: string = '';
20
+ public message: string = '';
21
+
22
+ public constructor(
23
+ public dialogRef: MatDialogRef<AlertDialogComponent>,
24
+ @Inject(MAT_DIALOG_DATA) public data: AlertDialogData,
25
+ breakdownObserver: BreakpointObserver) {
26
+ this.title = data.title;
27
+ this.message = data.message;
28
+ dialogRef.addPanelClass("dialog-global-style");
29
+ breakdownObserver.observe('(max-width: 500px)').pipe(takeUntilDestroyed()).subscribe(result => dialogRef.updateSize(result.matches ? '100vw' : 'auto'));
30
+ }
31
+
32
+ public closeClick(): void {
33
+ this.dialogRef.close();
34
+ }
35
+ }
36
+
37
+ export interface AlertDialogData {
38
+ title: string;
39
+ message: string;
40
+ options: ConfirmationOptions;
41
+ }
@@ -0,0 +1,11 @@
1
+ <div mat-dialog-title>
2
+ <div class="h6 title">{{ title | translate: options.titleArgs }}</div>
3
+ <cauca-icon-button id="close-button" (buttonClick)="cancelClick()" icon="close" />
4
+ </div>
5
+ <div mat-dialog-content>
6
+ <p class="message">{{ message | translate: options.messageArgs }}</p>
7
+ </div>
8
+ <mat-dialog-actions align="end" class="action-buttons">
9
+ <cauca-stroked-button class="no-button" [label]="options.noText" [color]="options.noColor" (buttonClick)="noClick()" />
10
+ <cauca-raised-button class="yes-button" [label]="options.yesText" [color]="options.yesColor" (buttonClick)="yesClick()" />
11
+ </mat-dialog-actions>
@@ -0,0 +1,29 @@
1
+ @use "../dialog-styles";
2
+
3
+ :host > div:first-child {
4
+ display: flex;
5
+ align-items: center;
6
+
7
+ div:first-child {
8
+ flex: 1;
9
+ }
10
+ }
11
+
12
+ .yes-button {
13
+ padding-left: 8px;
14
+ }
15
+
16
+ .message {
17
+ white-space: pre-wrap;
18
+ }
19
+
20
+ .title {
21
+ padding-top: 8px;
22
+ }
23
+
24
+ .action-buttons {
25
+ display: flex;
26
+ align-items: center;
27
+ flex-direction: row;
28
+ gap: 8px;
29
+ }
@@ -0,0 +1,137 @@
1
+ import { ComponentFixture, fakeAsync, TestBed } from '@angular/core/testing';
2
+
3
+ import { ConfirmDialogComponent } from './confirm-dialog.component';
4
+ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
5
+ import { MatIconModule } from '@angular/material/icon';
6
+ import { MockComponents, MockModule, MockPipe, ngMocks } from 'ng-mocks';
7
+ import { ConfirmationOptions, ConfirmationResult } from '../services/dialog.service';
8
+ import { TranslateModule, TranslatePipe } from '@ngx-translate/core';
9
+ import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';
10
+ import { of } from 'rxjs';
11
+ import { StrokedButtonComponent } from '../../buttons/stroked-button/stroked-button.component';
12
+ import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
13
+ import { RaisedButtonComponent } from '../../buttons/raised-button/raised-button.component';
14
+
15
+
16
+ describe('ConfirmDialogComponent', () => {
17
+ let component: ConfirmDialogComponent;
18
+ let fixture: ComponentFixture<ConfirmDialogComponent>;
19
+ let mockMatDialog: any;
20
+ let breakpointObserverMock: jasmine.SpyObj<BreakpointObserver>;
21
+
22
+ const defaultConfirmationOptions: ConfirmationOptions = {
23
+ noText: 'no',
24
+ noColor: undefined,
25
+ yesText: 'yes',
26
+ yesColor: 'primary',
27
+ messageArgs: null,
28
+ titleArgs: null,
29
+ };
30
+
31
+ beforeEach(async () => {
32
+ breakpointObserverMock = jasmine.createSpyObj('BreakpointObserver', ['observe']);
33
+ breakpointObserverMock.observe.and.returnValue(of({ matches: true, breakpoints: {} }));
34
+
35
+ mockMatDialog = jasmine.createSpyObj('MatDialogRef', ['close', 'addPanelClass', 'updateSize']);
36
+ await TestBed.configureTestingModule({
37
+ declarations: [
38
+ ConfirmDialogComponent,
39
+ ...MockComponents(StrokedButtonComponent, IconButtonComponent, RaisedButtonComponent),
40
+ MockPipe(TranslatePipe, value => value),
41
+ ],
42
+ providers: [
43
+ { provide: MatDialogRef<ConfirmDialogComponent>, useValue: mockMatDialog },
44
+ { provide: MAT_DIALOG_DATA, useValue: { title: 'title', message: 'message', options: defaultConfirmationOptions } },
45
+ { provide: BreakpointObserver, useValue: breakpointObserverMock },
46
+ ],
47
+ imports: [
48
+ MockModule(TranslateModule),
49
+ MatIconModule,
50
+ ]
51
+ })
52
+ .compileComponents();
53
+
54
+ fixture = TestBed.createComponent(ConfirmDialogComponent);
55
+ component = fixture.componentInstance;
56
+ fixture.detectChanges();
57
+ });
58
+
59
+ afterEach(() => {
60
+ mockMatDialog.close.calls.reset();
61
+ });
62
+
63
+ it('should create', () => {
64
+ expect(component).toBeTruthy();
65
+ });
66
+
67
+ it('should initially add a global style class', () => {
68
+ expect(mockMatDialog.addPanelClass).toHaveBeenCalledWith('dialog-global-style');
69
+ });
70
+
71
+ it('should update dialog size when breakpoint matches', fakeAsync(() => {
72
+ mockMatDialog.updateSize.calls.reset();
73
+ const breakpointState: BreakpointState = { matches: true, breakpoints: {} };
74
+ breakpointObserverMock.observe.and.returnValue(of(breakpointState));
75
+ TestBed.createComponent(ConfirmDialogComponent);
76
+
77
+ fixture.detectChanges();
78
+
79
+ expect(mockMatDialog.updateSize).toHaveBeenCalledWith('100vw');
80
+ }));
81
+
82
+ it('should update dialog size when breakpoint does not match', fakeAsync(() => {
83
+ mockMatDialog.updateSize.calls.reset();
84
+ const breakpointState: BreakpointState = { matches: false, breakpoints: {} };
85
+ breakpointObserverMock.observe.and.returnValue(of(breakpointState));
86
+ TestBed.createComponent(ConfirmDialogComponent);
87
+
88
+ fixture.detectChanges();
89
+
90
+ expect(mockMatDialog.updateSize).toHaveBeenCalledWith('auto');
91
+ }));
92
+
93
+ it('should display the provided title and message', () => {
94
+ expect(fixture.nativeElement.querySelector('.title').textContent).toBe('title');
95
+ expect(fixture.nativeElement.querySelector('.message').textContent).toBe('message');
96
+ });
97
+
98
+ it('should render the yes button according to specification', () => {
99
+ const button = ngMocks.find<RaisedButtonComponent>('.yes-button').componentInstance;
100
+
101
+ expect(button.label).toBe(defaultConfirmationOptions.yesText);
102
+ expect(button.color).toBe(defaultConfirmationOptions.yesColor);
103
+ });
104
+
105
+ it('should render the no button according to specification', () => {
106
+ const button = ngMocks.find<StrokedButtonComponent>('.no-button').componentInstance;
107
+
108
+ expect(button.label).toBe(defaultConfirmationOptions.noText);
109
+ expect(button.color).toBe(defaultConfirmationOptions.noColor);
110
+ });
111
+
112
+ it('should close dialog with true when pressing ok', async () => {
113
+ const button = ngMocks.find<RaisedButtonComponent>('.yes-button').componentInstance;
114
+
115
+ button.buttonClick.emit();
116
+ fixture.detectChanges();
117
+
118
+ expect(mockMatDialog.close).toHaveBeenCalledOnceWith(ConfirmationResult.Yes);
119
+ });
120
+
121
+ it('should close dialog without true when pressing close', async () => {
122
+ const button = ngMocks.find<IconButtonComponent>('#close-button').componentInstance;
123
+
124
+ button.buttonClick.emit();
125
+
126
+ expect(mockMatDialog.close).toHaveBeenCalledOnceWith(ConfirmationResult.Cancel);
127
+ });
128
+
129
+ it('should close dialog without true when pressing no', async () => {
130
+ const button = ngMocks.find<StrokedButtonComponent>('.no-button').componentInstance;
131
+
132
+ button.buttonClick.emit();
133
+ fixture.detectChanges();
134
+
135
+ expect(mockMatDialog.close).toHaveBeenCalledOnceWith(ConfirmationResult.No);
136
+ });
137
+ });
@@ -0,0 +1,47 @@
1
+ import { Component, Inject } from '@angular/core';
2
+ import { MatDialogRef, MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
3
+ import { AlertDialogData } from '../alert-dialog/alert-dialog.component';
4
+ import { ConfirmationOptions, ConfirmationResult } from '../services/dialog.service';
5
+ import { TranslateModule } from '@ngx-translate/core';
6
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
7
+ import { BreakpointObserver } from '@angular/cdk/layout';
8
+ import { RaisedButtonComponent } from '../../buttons/raised-button/raised-button.component';
9
+ import { StrokedButtonComponent } from '../../buttons/stroked-button/stroked-button.component';
10
+ import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
11
+
12
+ @Component({
13
+ selector: 'cauca-confirm-dialog',
14
+ templateUrl: './confirm-dialog.component.html',
15
+ styleUrls: ['./confirm-dialog.component.scss'],
16
+ standalone: true,
17
+ imports: [TranslateModule, MatDialogModule, RaisedButtonComponent, StrokedButtonComponent, IconButtonComponent]
18
+ })
19
+ export class ConfirmDialogComponent {
20
+
21
+ public title: string = '';
22
+ public message: string = '';
23
+ public options: ConfirmationOptions;
24
+
25
+ public constructor(
26
+ public dialogRef: MatDialogRef<ConfirmDialogComponent>,
27
+ @Inject(MAT_DIALOG_DATA) public data: AlertDialogData,
28
+ breakdownObserver: BreakpointObserver) {
29
+ this.title = data.title;
30
+ this.message = data.message;
31
+ this.options = data.options;
32
+ dialogRef.addPanelClass("dialog-global-style");
33
+ breakdownObserver.observe('(max-width: 500px)').pipe(takeUntilDestroyed()).subscribe(result => dialogRef.updateSize(result.matches ? '100vw' : 'auto'));
34
+ }
35
+
36
+ public noClick(): void {
37
+ this.dialogRef.close(ConfirmationResult.No);
38
+ }
39
+
40
+ public yesClick(): void {
41
+ this.dialogRef.close(ConfirmationResult.Yes);
42
+ }
43
+
44
+ public cancelClick(): void {
45
+ this.dialogRef.close(ConfirmationResult.Cancel);
46
+ }
47
+ }
@@ -0,0 +1,17 @@
1
+ <div mat-dialog-title>
2
+ @if (itemGenderIsFemale)
3
+ {
4
+ <div class="h6 title">{{ ('deleteDialog.titleFemale' | translate:{itemType}) }}</div>
5
+ } @else
6
+ {
7
+ <div class="h6 title">{{ ('deleteDialog.titleMale' | translate:{itemType}) }}</div>
8
+ }
9
+ <cauca-icon-button id="closeButton" (buttonClick)="closeClick()" icon="close" />
10
+ </div>
11
+ <div mat-dialog-content>
12
+ <p>{{('deleteDialog.message' | translate:{itemName})}}</p>
13
+ </div>
14
+ <mat-dialog-actions align="end">
15
+ <cauca-stroked-button id="cancelButton" label="cancel" color="primary" (buttonClick)="closeClick()"/>
16
+ <cauca-raised-button id="deleteButton" label="delete" color="warn" (buttonClick)="deleteClick()" />
17
+ </mat-dialog-actions>
@@ -0,0 +1,14 @@
1
+ @use "../dialog-styles";
2
+
3
+ :host > div:first-child {
4
+ display: flex;
5
+ align-items: center;
6
+
7
+ div:first-child {
8
+ flex: 1;
9
+ }
10
+ }
11
+
12
+ .mat-mdc-dialog-actions {
13
+ column-gap: 8px;
14
+ }
@@ -0,0 +1,96 @@
1
+ import { ComponentFixture, fakeAsync, TestBed } from '@angular/core/testing';
2
+
3
+ import { DeleteDialogComponent } from './delete-dialog.component';
4
+ import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
5
+ import { MockComponents, MockModule, MockPipe, ngMocks } from 'ng-mocks';
6
+ import { TranslateModule, TranslatePipe } from '@ngx-translate/core';
7
+ import { BreakpointObserver, BreakpointState } from '@angular/cdk/layout';
8
+ import { of } from 'rxjs';
9
+ import { RaisedButtonComponent } from '../../buttons/raised-button/raised-button.component';
10
+ import { StrokedButtonComponent } from '../../buttons/stroked-button/stroked-button.component';
11
+ import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
12
+
13
+ describe('DeleteDialogComponent', () => {
14
+ let component: DeleteDialogComponent;
15
+ let fixture: ComponentFixture<DeleteDialogComponent>;
16
+ let mockMatDialog: jasmine.SpyObj<MatDialogRef<DeleteDialogComponent>>;
17
+ let breakpointObserverMock: jasmine.SpyObj<BreakpointObserver>;
18
+
19
+ beforeEach(async () => {
20
+ breakpointObserverMock = jasmine.createSpyObj('BreakpointObserver', ['observe']);
21
+ breakpointObserverMock.observe.and.returnValue(of({ matches: true, breakpoints: {} }));
22
+
23
+ mockMatDialog = jasmine.createSpyObj('MatDialogRef', ['close', 'addPanelClass', 'updateSize']);
24
+ await TestBed.configureTestingModule({
25
+ imports: [DeleteDialogComponent, MockModule(TranslateModule)],
26
+ declarations: [
27
+ ...MockComponents(StrokedButtonComponent, RaisedButtonComponent, IconButtonComponent),
28
+ MockPipe(TranslatePipe, value => value),
29
+ ],
30
+ providers: [
31
+ { provide: MatDialogRef, useValue: mockMatDialog },
32
+ { provide: MAT_DIALOG_DATA, useValue: [] },
33
+ { provide: BreakpointObserver, useValue: breakpointObserverMock },
34
+ ]
35
+ })
36
+ .compileComponents();
37
+
38
+ fixture = TestBed.createComponent(DeleteDialogComponent);
39
+ component = fixture.componentInstance;
40
+ fixture.detectChanges();
41
+ });
42
+
43
+ it('should create', () => {
44
+ expect(component).toBeTruthy();
45
+ });
46
+
47
+ it('should initially add a global style class', () => {
48
+ expect(mockMatDialog.addPanelClass).toHaveBeenCalledWith('dialog-global-style');
49
+ });
50
+
51
+ it('should update dialog size when breakpoint matches', fakeAsync(() => {
52
+ mockMatDialog.updateSize.calls.reset();
53
+ const breakpointState: BreakpointState = { matches: true, breakpoints: {} };
54
+ breakpointObserverMock.observe.and.returnValue(of(breakpointState));
55
+ TestBed.createComponent(DeleteDialogComponent);
56
+
57
+ fixture.detectChanges();
58
+
59
+ expect(mockMatDialog.updateSize).toHaveBeenCalledWith('100vw');
60
+ }));
61
+
62
+ it('should update dialog size when breakpoint does not match', fakeAsync(() => {
63
+ mockMatDialog.updateSize.calls.reset();
64
+ const breakpointState: BreakpointState = { matches: false, breakpoints: {} };
65
+ breakpointObserverMock.observe.and.returnValue(of(breakpointState));
66
+ TestBed.createComponent(DeleteDialogComponent);
67
+
68
+ fixture.detectChanges();
69
+
70
+ expect(mockMatDialog.updateSize).toHaveBeenCalledWith('auto');
71
+ }));
72
+
73
+ it('should close dialog with true when pressing delete', async () => {
74
+ const deleteButton = ngMocks.find<StrokedButtonComponent>('#deleteButton', null)?.componentInstance;
75
+
76
+ deleteButton.buttonClick.emit();
77
+
78
+ expect(mockMatDialog.close).toHaveBeenCalledWith(true);
79
+ });
80
+
81
+ it('should close dialog without true when pressing close', async () => {
82
+ const closeButton = ngMocks.find<IconButtonComponent>('#closeButton', null)?.componentInstance;
83
+
84
+ closeButton.buttonClick.emit();
85
+
86
+ expect(mockMatDialog.close).not.toHaveBeenCalledWith(true);
87
+ });
88
+
89
+ it('should close dialog without true when pressing cancel', async () => {
90
+ const cancelButton = ngMocks.find<RaisedButtonComponent>('#cancelButton', null)?.componentInstance;
91
+
92
+ cancelButton.buttonClick.emit();
93
+
94
+ expect(mockMatDialog.close).not.toHaveBeenCalledWith(true);
95
+ });
96
+ });
@@ -0,0 +1,40 @@
1
+ import { Component, Inject } from '@angular/core';
2
+ import { MAT_DIALOG_DATA, MatDialogModule, MatDialogRef } from '@angular/material/dialog';
3
+ import { DeleteDialogData } from './models/delete-dialog-data';
4
+ import { TranslateModule } from '@ngx-translate/core';
5
+ import { BreakpointObserver } from '@angular/cdk/layout';
6
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
7
+ import { RaisedButtonComponent } from '../../buttons/raised-button/raised-button.component';
8
+ import { StrokedButtonComponent } from '../../buttons/stroked-button/stroked-button.component';
9
+ import { IconButtonComponent } from '../../buttons/icon-button/icon-button.component';
10
+
11
+ @Component({
12
+ selector: 'cauca-delete-dialog',
13
+ templateUrl: './delete-dialog.component.html',
14
+ styleUrls: ['./delete-dialog.component.scss'],
15
+ standalone: true,
16
+ imports: [MatDialogModule, TranslateModule, StrokedButtonComponent, IconButtonComponent, RaisedButtonComponent]
17
+ })
18
+ export class DeleteDialogComponent {
19
+ public itemGenderIsFemale: boolean = false;
20
+ public itemName: string = '';
21
+ public itemType: string = '';
22
+
23
+ public constructor(public dialogRef: MatDialogRef<DeleteDialogComponent>,
24
+ @Inject(MAT_DIALOG_DATA) public data: DeleteDialogData,
25
+ breakdownObserver: BreakpointObserver) {
26
+ this.itemGenderIsFemale = data.female;
27
+ this.itemName = data.name ? data.name : '';
28
+ this.itemType = data.type ? data.type.toLowerCase() : '';
29
+ dialogRef.addPanelClass("dialog-global-style");
30
+ breakdownObserver.observe('(max-width: 500px)').pipe(takeUntilDestroyed()).subscribe(result => dialogRef.updateSize(result.matches ? '100vw' : 'auto'));
31
+ }
32
+
33
+ public deleteClick(): void {
34
+ this.dialogRef.close(true);
35
+ }
36
+
37
+ public closeClick(): void {
38
+ this.dialogRef.close(false);
39
+ }
40
+ }
@@ -0,0 +1,7 @@
1
+ import { DeleteDialogData } from './delete-dialog-data';
2
+
3
+ describe('DeleteDialogData', () => {
4
+ it('should create an instance', () => {
5
+ expect(new DeleteDialogData()).toBeTruthy();
6
+ });
7
+ });
@@ -0,0 +1,5 @@
1
+ export class DeleteDialogData {
2
+ public name: string = '';
3
+ public type: string = '';
4
+ public female: boolean;
5
+ }
@@ -0,0 +1,9 @@
1
+ @media (max-width: 500px) {
2
+ ::ng-deep .dialog-global-style {
3
+ max-width: 100vw !important;
4
+ }
5
+ }
6
+
7
+ ::ng-deep .dialog-global-style {
8
+ margin: auto !important;
9
+ }