@chat21/chat21-web-widget 5.1.33 → 5.1.34-rc1

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 (201) hide show
  1. package/.angular-mcp-cache/package.json +1 -0
  2. package/.cursor/angular18-accessibility-auditor-skill.md +442 -0
  3. package/.cursor/mcp.json +15 -0
  4. package/.github/workflows/docker-community-push-latest.yml +23 -13
  5. package/.github/workflows/docker-image-tag-community-tag-push.yml +22 -12
  6. package/.github/workflows/playwright.yml +27 -0
  7. package/CHANGELOG.md +130 -6
  8. package/Dockerfile +4 -5
  9. package/angular.json +24 -4
  10. package/docs/changelog/this-branch.md +36 -0
  11. package/env.sample +3 -2
  12. package/mocks/voice-websocket-mock/server.cjs +245 -0
  13. package/nginx.conf +22 -2
  14. package/package.json +10 -3
  15. package/playwright.config.ts +41 -0
  16. package/src/app/app.component.html +2 -2
  17. package/src/app/app.component.scss +25 -14
  18. package/src/app/app.component.spec.ts +21 -6
  19. package/src/app/app.component.ts +10 -9
  20. package/src/app/app.module.ts +15 -0
  21. package/src/app/component/conversation-detail/conversation/conversation.component.html +25 -11
  22. package/src/app/component/conversation-detail/conversation/conversation.component.scss +40 -2
  23. package/src/app/component/conversation-detail/conversation/conversation.component.spec.ts +644 -75
  24. package/src/app/component/conversation-detail/conversation/conversation.component.ts +100 -14
  25. package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.html +25 -13
  26. package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.spec.ts +123 -5
  27. package/src/app/component/conversation-detail/conversation-audio-recorder/conversation-audio-recorder.component.ts +1 -0
  28. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.html +23 -10
  29. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.scss +33 -2
  30. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.spec.ts +242 -149
  31. package/src/app/component/conversation-detail/conversation-content/conversation-content.component.ts +8 -6
  32. package/src/app/component/conversation-detail/conversation-emojii/conversation-emojii.component.spec.ts +53 -3
  33. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.html +200 -96
  34. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.scss +211 -6
  35. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.spec.ts +452 -78
  36. package/src/app/component/conversation-detail/conversation-footer/conversation-footer.component.ts +291 -76
  37. package/src/app/component/conversation-detail/conversation-header/conversation-header.component.html +113 -53
  38. package/src/app/component/conversation-detail/conversation-header/conversation-header.component.scss +12 -4
  39. package/src/app/component/conversation-detail/conversation-header/conversation-header.component.spec.ts +274 -29
  40. package/src/app/component/conversation-detail/conversation-internal-frame/conversation-internal-frame.component.html +23 -9
  41. package/src/app/component/conversation-detail/conversation-internal-frame/conversation-internal-frame.component.spec.ts +80 -8
  42. package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.html +29 -23
  43. package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.spec.ts +185 -16
  44. package/src/app/component/conversation-detail/conversation-preview/conversation-preview.component.ts +34 -14
  45. package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.html +46 -0
  46. package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.scss +83 -0
  47. package/src/app/component/conversation-detail/stream-audio-spectrum/stream-audio-spectrum.component.ts +192 -0
  48. package/src/app/component/error-alert/error-alert.component.spec.ts +65 -5
  49. package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.html +16 -7
  50. package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.scss +21 -0
  51. package/src/app/component/eyeeye-catcher-card/eyeeye-catcher-card.component.spec.ts +89 -7
  52. package/src/app/component/form/form-builder/form-builder.component.html +1 -1
  53. package/src/app/component/form/form-builder/form-builder.component.spec.ts +163 -21
  54. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.html +8 -4
  55. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.scss +10 -5
  56. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.spec.ts +90 -16
  57. package/src/app/component/form/inputs/form-checkbox/form-checkbox.component.ts +26 -0
  58. package/src/app/component/form/inputs/form-label/form-label.component.spec.ts +45 -11
  59. package/src/app/component/form/inputs/form-radio-button/form-radio-button.component.spec.ts +24 -6
  60. package/src/app/component/form/inputs/form-select/form-select.component.spec.ts +14 -5
  61. package/src/app/component/form/inputs/form-text/form-text.component.html +14 -12
  62. package/src/app/component/form/inputs/form-text/form-text.component.scss +11 -1
  63. package/src/app/component/form/inputs/form-text/form-text.component.spec.ts +113 -17
  64. package/src/app/component/form/inputs/form-text/form-text.component.ts +35 -3
  65. package/src/app/component/form/inputs/form-textarea/form-textarea.component.html +13 -11
  66. package/src/app/component/form/inputs/form-textarea/form-textarea.component.scss +6 -5
  67. package/src/app/component/form/inputs/form-textarea/form-textarea.component.spec.ts +149 -13
  68. package/src/app/component/form/inputs/form-textarea/form-textarea.component.ts +26 -0
  69. package/src/app/component/form/prechat-form/prechat-form.component.html +14 -11
  70. package/src/app/component/form/prechat-form/prechat-form.component.spec.ts +102 -10
  71. package/src/app/component/form/prechat-form/prechat-form.component.ts +8 -1
  72. package/src/app/component/form/prechat-form-test-mock.ts +35 -0
  73. package/src/app/component/home/home.component.html +38 -31
  74. package/src/app/component/home/home.component.scss +4 -2
  75. package/src/app/component/home/home.component.spec.ts +226 -11
  76. package/src/app/component/home-conversations/home-conversations.component.html +30 -26
  77. package/src/app/component/home-conversations/home-conversations.component.scss +3 -0
  78. package/src/app/component/home-conversations/home-conversations.component.spec.ts +212 -36
  79. package/src/app/component/last-message/last-message.component.html +15 -9
  80. package/src/app/component/last-message/last-message.component.scss +16 -2
  81. package/src/app/component/last-message/last-message.component.spec.ts +204 -23
  82. package/src/app/component/last-message/last-message.component.ts +4 -1
  83. package/src/app/component/launcher-button/launcher-button.component.html +8 -13
  84. package/src/app/component/launcher-button/launcher-button.component.spec.ts +104 -8
  85. package/src/app/component/list-all-conversations/list-all-conversations.component.html +12 -17
  86. package/src/app/component/list-all-conversations/list-all-conversations.component.scss +2 -0
  87. package/src/app/component/list-conversations/list-conversations.component.html +22 -22
  88. package/src/app/component/menu-options/menu-options.component.html +30 -20
  89. package/src/app/component/menu-options/menu-options.component.spec.ts +125 -9
  90. package/src/app/component/message/audio/audio.component.html +13 -15
  91. package/src/app/component/message/audio/audio.component.spec.ts +140 -5
  92. package/src/app/component/message/audio/audio.component.ts +1 -5
  93. package/src/app/component/message/audio-sync/audio-sync.component.html +18 -0
  94. package/src/app/component/message/audio-sync/audio-sync.component.scss +65 -0
  95. package/src/app/component/message/audio-sync/audio-sync.component.spec.ts +103 -0
  96. package/src/app/component/message/audio-sync/audio-sync.component.ts +643 -0
  97. package/src/app/component/message/avatar/avatar.component.html +2 -2
  98. package/src/app/component/message/avatar/avatar.component.spec.ts +99 -7
  99. package/src/app/component/message/bubble-message/bubble-message.component.html +43 -51
  100. package/src/app/component/message/bubble-message/bubble-message.component.scss +59 -1
  101. package/src/app/component/message/bubble-message/bubble-message.component.spec.ts +154 -57
  102. package/src/app/component/message/bubble-message/bubble-message.component.ts +152 -109
  103. package/src/app/component/message/buttons/action-button/action-button.component.html +3 -4
  104. package/src/app/component/message/buttons/action-button/action-button.component.spec.ts +49 -5
  105. package/src/app/component/message/buttons/link-button/link-button.component.scss +5 -8
  106. package/src/app/component/message/buttons/link-button/link-button.component.spec.ts +50 -5
  107. package/src/app/component/message/buttons/text-button/text-button.component.spec.ts +44 -5
  108. package/src/app/component/message/carousel/carousel.component.html +29 -16
  109. package/src/app/component/message/carousel/carousel.component.scss +20 -8
  110. package/src/app/component/message/carousel/carousel.component.spec.ts +80 -3
  111. package/src/app/component/message/carousel/carousel.component.ts +16 -0
  112. package/src/app/component/message/frame/frame.component.html +9 -4
  113. package/src/app/component/message/frame/frame.component.spec.ts +34 -15
  114. package/src/app/component/message/frame/frame.component.ts +7 -2
  115. package/src/app/component/message/html/html.component.html +1 -1
  116. package/src/app/component/message/html/html.component.scss +1 -1
  117. package/src/app/component/message/html/html.component.spec.ts +24 -7
  118. package/src/app/component/message/image/image.component.html +12 -10
  119. package/src/app/component/message/image/image.component.scss +16 -0
  120. package/src/app/component/message/image/image.component.spec.ts +101 -15
  121. package/src/app/component/message/image/image.component.ts +90 -51
  122. package/src/app/component/message/info-message/info-message.component.spec.ts +26 -14
  123. package/src/app/component/message/json-sources/json-sources.component.html +38 -0
  124. package/src/app/component/message/json-sources/json-sources.component.scss +201 -0
  125. package/src/app/component/message/json-sources/json-sources.component.ts +89 -0
  126. package/src/app/component/message/like-unlike/like-unlike.component.html +7 -9
  127. package/src/app/component/message/like-unlike/like-unlike.component.spec.ts +31 -3
  128. package/src/app/component/message/return-receipt/return-receipt.component.spec.ts +38 -17
  129. package/src/app/component/message/text/text.component.html +3 -3
  130. package/src/app/component/message/text/text.component.scss +80 -86
  131. package/src/app/component/message/text/text.component.spec.ts +106 -13
  132. package/src/app/component/message-attachment/message-attachment.component.spec.ts +134 -13
  133. package/src/app/component/selection-department/selection-department.component.html +21 -23
  134. package/src/app/component/selection-department/selection-department.component.spec.ts +159 -14
  135. package/src/app/component/selection-department/selection-department.component.ts +8 -1
  136. package/src/app/component/send-button/send-button.component.html +5 -13
  137. package/src/app/component/send-button/send-button.component.spec.ts +2 -2
  138. package/src/app/component/star-rating-widget/star-rating-widget.component.html +51 -81
  139. package/src/app/directives/tooltip.directive.spec.ts +8 -4
  140. package/src/app/modals/confirm-close/confirm-close.component.html +20 -8
  141. package/src/app/modals/confirm-close/confirm-close.component.scss +3 -0
  142. package/src/app/modals/confirm-close/confirm-close.component.spec.ts +13 -4
  143. package/src/app/modals/confirm-close/confirm-close.component.ts +8 -1
  144. package/src/app/pipe/html-entites-encode.pipe.spec.ts +35 -2
  145. package/src/app/pipe/marked.pipe.spec.ts +38 -2
  146. package/src/app/pipe/marked.pipe.ts +51 -41
  147. package/src/app/providers/app-config.service.ts +4 -2
  148. package/src/app/providers/brand.service.spec.ts +23 -2
  149. package/src/app/providers/brand.service.ts +1 -1
  150. package/src/app/providers/global-settings.service.spec.ts +1009 -14
  151. package/src/app/providers/global-settings.service.ts +82 -2
  152. package/src/app/providers/json-sources-parser.service.ts +175 -0
  153. package/src/app/providers/translator.service.ts +26 -6
  154. package/src/app/providers/tts-audio-playback-coordinator.service.spec.ts +117 -0
  155. package/src/app/providers/tts-audio-playback-coordinator.service.ts +109 -0
  156. package/src/app/providers/url-preview.service.ts +82 -0
  157. package/src/app/providers/voice/STT&TTS/openai-voice.config.ts +12 -0
  158. package/src/app/providers/voice/STT&TTS/openai-voice.provider.ts +171 -0
  159. package/src/app/providers/voice/STT&TTS/speech-provider.abstract.ts +39 -0
  160. package/src/app/providers/voice/audio.types.ts +40 -0
  161. package/src/app/providers/voice/vad.service.spec.ts +28 -0
  162. package/src/app/providers/voice/vad.service.ts +70 -0
  163. package/src/app/providers/voice/voice-streaming.service.spec.ts +23 -0
  164. package/src/app/providers/voice/voice-streaming.service.ts +702 -0
  165. package/src/app/providers/voice/voice-streaming.types.ts +112 -0
  166. package/src/app/providers/voice/voice.service.spec.ts +227 -0
  167. package/src/app/providers/voice/voice.service.ts +973 -0
  168. package/src/app/sass/_variables.scss +3 -0
  169. package/src/app/sass/animations.scss +19 -1
  170. package/src/app/shims/onnxruntime-web-wasm.ts +4 -0
  171. package/src/app/utils/globals.ts +21 -1
  172. package/src/app/utils/json-sources-utils.ts +27 -0
  173. package/src/app/utils/url-utils.ts +98 -0
  174. package/src/app/utils/utils-resources.ts +1 -1
  175. package/src/assets/i18n/en.json +106 -99
  176. package/src/assets/i18n/es.json +107 -100
  177. package/src/assets/i18n/fr.json +107 -100
  178. package/src/assets/i18n/it.json +107 -98
  179. package/src/assets/onnx/ort-wasm-simd-threaded.mjs +59 -0
  180. package/src/assets/onnx/ort-wasm-simd-threaded.wasm +0 -0
  181. package/src/assets/sounds/keyboard.mp3 +0 -0
  182. package/src/assets/twp/chatbot-panel.html +3 -1
  183. package/src/assets/twp/index-dev.html +18 -0
  184. package/src/assets/twp/tiledesk_widget_files/widget-css-override-example.css +14 -0
  185. package/src/assets/vad/silero_vad_legacy.onnx +0 -0
  186. package/src/assets/vad/vad.worklet.bundle.min.js +1 -0
  187. package/src/chat21-core/models/message.ts +2 -1
  188. package/src/chat21-core/providers/chat-manager.spec.ts +72 -0
  189. package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +3 -2
  190. package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +12 -0
  191. package/src/chat21-core/providers/scripts/script.service.spec.ts +12 -2
  192. package/src/chat21-core/providers/tiledesk/tiledesk-requests.service.ts +1 -1
  193. package/src/chat21-core/utils/constants.ts +4 -0
  194. package/src/chat21-core/utils/utils-message.ts +45 -6
  195. package/src/chat21-core/utils/utils.ts +5 -2
  196. package/src/widget-config-template.json +4 -1
  197. package/src/widget-config.json +4 -1
  198. package/tests/widget-form-rich.spec.ts +67 -0
  199. package/tests/widget-index-dev-settings.spec.ts +52 -0
  200. package/tests/widget-twp-iframe.spec.ts +39 -0
  201. package/tsconfig.json +5 -0
@@ -1,27 +1,119 @@
1
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
1
+ import { Injectable } from '@angular/core';
2
+ import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2
3
  import { ImageRepoService } from '../../../../chat21-core/providers/abstract/image-repo.service';
3
4
 
4
5
  import { AvatarComponent } from './avatar.component';
5
6
 
7
+ @Injectable()
8
+ class ImageRepoStub extends ImageRepoService {
9
+ getImagePhotoUrl(uid: string): string {
10
+ return `https://cdn.test/photo/${uid}`;
11
+ }
12
+ checkImageExists(_uid: string, _cb: (exist: boolean) => void): void {}
13
+ }
14
+
6
15
  describe('AvatarComponent', () => {
7
16
  let component: AvatarComponent;
8
17
  let fixture: ComponentFixture<AvatarComponent>;
9
18
 
10
- beforeEach(async(() => {
19
+ beforeEach(waitForAsync(() => {
11
20
  TestBed.configureTestingModule({
12
- declarations: [ AvatarComponent ],
13
- providers: [ ImageRepoService ]
14
- })
15
- .compileComponents();
21
+ declarations: [AvatarComponent],
22
+ providers: [{ provide: ImageRepoService, useClass: ImageRepoStub }],
23
+ }).compileComponents();
16
24
  }));
17
25
 
18
26
  beforeEach(() => {
19
27
  fixture = TestBed.createComponent(AvatarComponent);
20
28
  component = fixture.componentInstance;
21
- fixture.detectChanges();
29
+ component.baseLocation = 'https://app.test';
22
30
  });
23
31
 
24
32
  it('should create', () => {
33
+ component.senderID = 'user_1';
34
+ component.senderFullname = 'Alice';
35
+ fixture.detectChanges();
25
36
  expect(component).toBeTruthy();
26
37
  });
38
+
39
+ it('ngOnInit should prefer remote photo when checkImageExists returns true', () => {
40
+ const remote = 'https://cdn.test/photo/bot_1';
41
+ spyOn(AvatarComponent.prototype as any, 'checkImageExists').and.callFake((_url: string, cb: (b: boolean) => void) => {
42
+ cb(true);
43
+ });
44
+ component.senderID = 'bot_1';
45
+ component.senderFullname = 'Support Bot';
46
+ component.ngOnInit();
47
+ expect(component.url).toBe(remote);
48
+ });
49
+
50
+ it('ngOnInit should keep default bot asset when remote image missing', () => {
51
+ spyOn(AvatarComponent.prototype as any, 'checkImageExists').and.callFake((_url: string, cb: (b: boolean) => void) => {
52
+ cb(false);
53
+ });
54
+ component.senderID = 'bot_1';
55
+ component.senderFullname = 'Bot';
56
+ component.ngOnInit();
57
+ expect(component.url).toBe(component.baseLocation + '/assets/images/tommy_bot_tiledesk.svg');
58
+ });
59
+
60
+ it('ngOnInit should use human default when not bot and photo missing', () => {
61
+ spyOn(AvatarComponent.prototype as any, 'checkImageExists').and.callFake((_url: string, cb: (b: boolean) => void) => {
62
+ cb(false);
63
+ });
64
+ component.senderID = 'user_99';
65
+ component.senderFullname = 'Bob';
66
+ component.ngOnInit();
67
+ expect(component.url).toBe(component.baseLocation + '/assets/images/chat_human_avatar.svg');
68
+ });
69
+
70
+ it('checkImageExists should invoke callback on image load', (done) => {
71
+ const imgCtor = window.Image;
72
+ (window as any).Image = function MockImage(this: any) {
73
+ setTimeout(() => this.onload && this.onload(), 0);
74
+ return this;
75
+ } as any;
76
+ component.checkImageExists('https://x', (ok) => {
77
+ (window as any).Image = imgCtor;
78
+ expect(ok).toBe(true);
79
+ done();
80
+ });
81
+ });
82
+
83
+ it('checkImageExists should invoke callback false on error', (done) => {
84
+ const imgCtor = window.Image;
85
+ (window as any).Image = function MockImage(this: any) {
86
+ setTimeout(() => this.onerror && this.onerror(), 0);
87
+ return this;
88
+ } as any;
89
+ component.checkImageExists('https://bad', (ok) => {
90
+ (window as any).Image = imgCtor;
91
+ expect(ok).toBe(false);
92
+ done();
93
+ });
94
+ });
95
+
96
+ it('onBotImgError should swap to local bot svg', () => {
97
+ const target = { src: 'bad' } as any;
98
+ component.baseLocation = 'https://host';
99
+ component.onBotImgError({ target });
100
+ expect(target.src).toContain('tommy_bot_tiledesk.svg');
101
+ });
102
+
103
+ it('onHumanImgError should swap to local human svg', () => {
104
+ const target = { src: 'bad' } as any;
105
+ component.baseLocation = 'https://host';
106
+ component.onHumanImgError({ target });
107
+ expect(target.src).toContain('chat_human_avatar.svg');
108
+ });
109
+
110
+ it('template should expose accessible name on avatar image (bot)', () => {
111
+ spyOn(AvatarComponent.prototype as any, 'checkImageExists').and.stub();
112
+ component.senderID = 'bot_x';
113
+ component.senderFullname = 'Helper Bot';
114
+ fixture.detectChanges();
115
+ const img = (fixture.nativeElement as HTMLElement).querySelector('img');
116
+ expect(img?.getAttribute('alt')).toBeTruthy();
117
+ expect(img?.getAttribute('role')).toBe('img');
118
+ });
27
119
  });
@@ -1,26 +1,4 @@
1
- <!-- [ngClass]="{'button-in-msg' : message.metadata && message.metadata.button}" -->
2
- <!-- ngStyle]="{'padding': (isImage(message) || isFrame(message))?'1px':'0 8px'}" -->
3
- <!-- 'width': (isImage(message) || isFrame(message))? sizeImage?.width + 'px': null -->
4
-
5
-
6
-
7
- <!-- <div id="bubble-message" *ngIf="isAudio(message)" [ngStyle]="{'padding': '0'}" class="messages primary-color">
8
- <div>
9
- <chat-audio-track *ngIf="isAudio(message)"
10
- [metadata]="message.metadata"
11
- ></chat-audio-track>
12
- </div>
13
- </div>
14
-
15
-
16
- [ngStyle]="{'padding': (isImage(message) || isFrame(message) || isAudio(message))?'0 0px':'0 8px'}"
17
- -->
18
-
19
-
20
-
21
-
22
-
23
- <div id="bubble-message" class="messages primary-color">
1
+ <div class="bubble-message messages primary-color">
24
2
  <div>
25
3
 
26
4
  <div *ngIf="messageType(MESSAGE_TYPE_OTHERS, message) && !isSameSender"
@@ -28,17 +6,7 @@
28
6
  [ngStyle]="{'margin': (isImage(message) || isFrame(message))? '12px 16px 8px 16px': '12px 16px 0px 16px'}" class="message_sender_fullname">
29
7
  {{message?.sender_fullname}}
30
8
  </div>
31
- <!-- message type:: image -->
32
- <!-- <div *ngIf="message.type == 'image' && message.metadata" [ngStyle] = "{ 'max-width': getSizeImg(message).width, 'max-height': getSizeImg(message).height }">
33
- <img class="message-contentX message-content-imageX" [src]="message.metadata.src" />
34
- </div> -->
35
-
36
- <!-- <img *ngIf="message.type == 'image' && message.metadata" class="message-contentX message-content-imageX"
37
- [src]="message.metadata.src" [width]="getSizeImg(message).width"
38
- [height]="getSizeImg(message).height" /> -->
39
9
 
40
- <!-- [width]="getMetadataSize(message.metadata).width"
41
- [height]="getMetadataSize(message.metadata).height" -->
42
10
  <chat-image *ngIf="isImage(message)"
43
11
  [metadata]="message.metadata"
44
12
  [width]="sizeImage?.width"
@@ -53,17 +21,42 @@
53
21
  (onElementRendered)="onElementRenderedFN($event)">
54
22
  </chat-frame>
55
23
 
56
- <!-- <chat-audio *ngIf="isAudio(message)"
57
- [metadata]="message.metadata"
58
- (onElementRendered)="onElementRenderedFN($event)">
59
- </chat-audio> -->
60
24
 
61
- <chat-audio *ngIf="isAudio(message)"
25
+ <chat-audio *ngIf="isAudio(message)"
62
26
  [metadata]="message.metadata"
63
27
  [color]="fontColor"
64
- [stylesMap]="stylesMap">
28
+ [stylesMap]="stylesMap"
29
+ [translationMap]="translationMap">
65
30
  </chat-audio>
66
-
31
+
32
+ <!-- Json sources -->
33
+ <chat-json-sources *ngIf="jsonSources !== null && jsonSources.length > 0"
34
+ [items]="jsonSources"
35
+ (onElementRendered)="onElementRenderedFN($event)">
36
+ </chat-json-sources>
37
+ <!-- TTS player: only when voice proxy is NOT active (avoids double playback)
38
+ and the message was not already played by the proxy (avoids replay on session end) -->
39
+ <chat-audio-sync *ngIf="isAudioTTS(message) && !(voiceService.isWssVoiceActive$ | async) && !voiceService.wasProxyHandled(message?.uid)"
40
+ [message]="message"
41
+ [color]="fontColor">
42
+ </chat-audio-sync>
43
+
44
+ <!-- Karaoke display for TTS messages while a WSS voice session is active -->
45
+ <p *ngIf="isAudioTTS(message) && (voiceService.isWssVoiceActive$ | async) && _wssKaraokeWords$"
46
+ class="wss-karaoke"
47
+ [style.color]="fontColor">
48
+ <span *ngFor="let w of (_wssKaraokeWords$ | async); trackBy: trackKaraokeWord"
49
+ class="wss-word"
50
+ [class.future]="w.state === 'future'"
51
+ [class.active]="w.state === 'active'"
52
+ [class.past]="w.state === 'past'">{{ w.text }}&nbsp;</span>
53
+ </p>
54
+
55
+ <!-- Text fallback for TTS messages after the voice proxy session ended -->
56
+ <chat-text *ngIf="isAudioTTS(message) && !(voiceService.isWssVoiceActive$ | async) && voiceService.wasProxyHandled(message?.uid) && message?.text"
57
+ [text]="message?.text"
58
+ [color]="fontColor">
59
+ </chat-text>
67
60
 
68
61
  <!-- <chat-frame *ngIf="message.metadata && message.metadata.type && message.metadata.type.includes('video')"
69
62
  [metadata]="message.metadata"
@@ -75,7 +68,14 @@
75
68
  <!-- <div *ngIf="message.type == 'text'"> -->
76
69
 
77
70
  <!-- tooltip="{{message.timestamp | dateAgo}} ({{message.timestamp | date:'shortDate'}} {{message.timestamp | date:'HH:mm:ss'}})" placement="bottom" -->
78
- <div *ngIf="message?.text && !isAudio(message)" >
71
+ <div *ngIf="message?.text && (!isAudio(message) && !isAudioTTS(message)) && !isJsonSources(message)" >
72
+
73
+ <!-- Word-by-word streaming reveal during an active voice session -->
74
+ <p *ngIf="_isStreaming" class="streaming-text" [style.color]="fontColor">
75
+ <span *ngFor="let w of _streamingWords; trackBy: trackWord"
76
+ class="stream-word"
77
+ [style.animation-delay]="(w.index * 80) + 'ms'">{{w.word}} </span>
78
+ </p>
79
79
 
80
80
  <!-- [htmlEnabled]="(message?.type==='html')? true : false" -->
81
81
  <chat-text *ngIf="message?.type !=='html'"
@@ -85,7 +85,7 @@
85
85
  (onAfterMessageRender)="onAfterMessageRenderFN($event)">
86
86
  </chat-text>
87
87
 
88
- <chat-html *ngIf="message?.type==='html'"
88
+ <chat-html *ngIf="jsonSources === null && message?.type==='html'"
89
89
  [htmlText]="message?.text"
90
90
  [fontSize]="stylesMap.get('buttonFontSize')"
91
91
  [themeColor]="stylesMap.get('themeColor')"
@@ -93,13 +93,5 @@
93
93
  </chat-html>
94
94
 
95
95
  </div>
96
-
97
96
  </div>
98
-
99
- </div>
100
-
101
-
102
-
103
-
104
-
105
-
97
+ </div>
@@ -1,5 +1,10 @@
1
1
  /* ====== SET MESSAGES ====== */
2
2
 
3
+ :host(.hidden-bubble) {
4
+ display: none !important;
5
+ }
6
+
7
+
3
8
  .messages {
4
9
  border-radius: var(--border-radius-bubble-message);
5
10
  padding: 0;
@@ -32,4 +37,57 @@
32
37
  chat-audio {
33
38
  display: flex;
34
39
  }
35
- }
40
+ }
41
+ .streaming-text {
42
+ padding: 0;
43
+ margin: 0;
44
+ line-height: 1.5;
45
+
46
+ .stream-word {
47
+ display: inline;
48
+ opacity: 0;
49
+ animation: stream-word-in 200ms ease-out forwards;
50
+ }
51
+ }
52
+
53
+ @keyframes stream-word-in {
54
+ from {
55
+ opacity: 0;
56
+ transform: translateY(3px);
57
+ }
58
+ to {
59
+ opacity: 1;
60
+ transform: translateY(0);
61
+ }
62
+ }
63
+
64
+ // -- WSS TTS Karaoke ----------------------------------------------------------
65
+ .wss-karaoke {
66
+ // Match chat-text (ShadowDom) visual layout so there's no jump when voice opens.
67
+ // font-size must be set explicitly: the parent has font-size:10px but chat-text
68
+ // overrides it via :host { font-size: var(--font-size-bubble-message, 14px) }.
69
+ display: block;
70
+ margin: 0;
71
+ padding: 12px 16px;
72
+ font-size: var(--font-size-bubble-message, 14px);
73
+ line-height: 1.4em;
74
+ font-weight: 300;
75
+ overflow: hidden;
76
+ }
77
+
78
+ .wss-word {
79
+ display: inline;
80
+ transition: opacity 120ms ease;
81
+
82
+ &.future {
83
+ opacity: 0.35;
84
+ }
85
+
86
+ &.active {
87
+ opacity: 1;
88
+ }
89
+
90
+ &.past {
91
+ opacity: 1;
92
+ }
93
+ }
@@ -1,26 +1,62 @@
1
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
1
+ import { NO_ERRORS_SCHEMA } from '@angular/core';
2
+ import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2
3
  import { By } from '@angular/platform-browser';
4
+ import { of } from 'rxjs';
5
+ import { MAX_WIDTH_IMAGES, MIN_WIDTH_IMAGES } from 'src/chat21-core/utils/constants';
6
+ import { VoiceService } from 'src/app/providers/voice/voice.service';
7
+ import { JsonSourcesParserService } from 'src/app/providers/json-sources-parser.service';
3
8
 
4
9
  import { BubbleMessageComponent } from './bubble-message.component';
5
- import { NO_ERRORS_SCHEMA } from '@angular/core';
6
10
 
7
11
  describe('BubbleMessageComponent', () => {
8
12
  let component: BubbleMessageComponent;
9
13
  let fixture: ComponentFixture<BubbleMessageComponent>;
10
14
 
11
- beforeEach(async(() => {
15
+ const voiceServiceMock = {
16
+ isWssVoiceActive: false,
17
+ markProxyHandled: jasmine.createSpy('markProxyHandled'),
18
+ voiceTtsKaraoke$: of({ text: '', words: [], activeIndex: -1 }),
19
+ };
20
+
21
+ const jsonSourcesParserMock = {
22
+ parseBaseFromMessage: jasmine.createSpy('parseBaseFromMessage').and.returnValue(null),
23
+ enrichSources: jasmine.createSpy('enrichSources').and.resolveTo(null),
24
+ };
25
+
26
+ const textMessage: any = {
27
+ attributes: { projectId: 'p1' },
28
+ channel_type: 'group',
29
+ recipient: 'support-group-x',
30
+ recipient_fullname: 'Guest ',
31
+ sender: 'bot_1',
32
+ sender_fullname: 'BOT2',
33
+ status: 150,
34
+ text: 'Hello',
35
+ timestamp: 1629273999970,
36
+ type: 'text',
37
+ uid: 'm1',
38
+ isSender: false,
39
+ };
40
+
41
+ beforeEach(waitForAsync(() => {
12
42
  TestBed.configureTestingModule({
13
- declarations: [ BubbleMessageComponent ],
43
+ declarations: [BubbleMessageComponent],
14
44
  schemas: [NO_ERRORS_SCHEMA],
15
- imports: [
45
+ providers: [
46
+ { provide: VoiceService, useValue: voiceServiceMock },
47
+ { provide: JsonSourcesParserService, useValue: jsonSourcesParserMock },
16
48
  ],
17
- })
18
- .compileComponents();
49
+ }).compileComponents();
19
50
  }));
20
51
 
21
52
  beforeEach(() => {
22
53
  fixture = TestBed.createComponent(BubbleMessageComponent);
23
54
  component = fixture.componentInstance;
55
+ component.stylesMap = new Map([
56
+ ['buttonFontSize', '14px'],
57
+ ['themeColor', '#000'],
58
+ ['foregroundColor', '#fff'],
59
+ ]);
24
60
  fixture.detectChanges();
25
61
  });
26
62
 
@@ -28,54 +64,115 @@ describe('BubbleMessageComponent', () => {
28
64
  expect(component).toBeTruthy();
29
65
  });
30
66
 
31
- it('should have a "chat-text" child element', () => {
32
- const messages: any = {
33
- attributes: {
34
- projectId: "6013ec749b32000045be650e",
35
- tiledesk_message_id: "611cbf8ffb379b00346660e7"
36
- },
37
- channel_type: "group",
38
- recipient: "support-group-6013ec749b32000045be650e-4904aee91f8b487aad117bcda860549d",
39
- recipient_fullname: "Guest ",
40
- sender: "bot_602256f6c001b800342cb76f",
41
- sender_fullname: "BOT2",
42
- status: 150,
43
- text: "Hello 👋. I'm a bot 🤖.\n\nChoose one of the options below or write a message to reach our staff.",
44
- timestamp: 1629273999970,
45
- type: "text",
46
- uid: "-MhNI3eaIoLTOLoX3TAu",
47
- isSender: false
48
- }
49
- component.message = messages
50
- // component.textColor = 'black'
51
- fixture.detectChanges()
52
- const textChild = fixture.debugElement.query(By.css('chat-text'))
53
- textChild.properties.text
54
- expect(textChild).toBeTruthy();
55
- })
56
-
57
- it('should have a text inside "chat-text" child element', () => {
58
- const messages: any = {
59
- attributes: {
60
- projectId: "6013ec749b32000045be650e",
61
- tiledesk_message_id: "611cbf8ffb379b00346660e7"
62
- },
63
- channel_type: "group",
64
- recipient: "support-group-6013ec749b32000045be650e-4904aee91f8b487aad117bcda860549d",
65
- recipient_fullname: "Guest ",
66
- sender: "bot_602256f6c001b800342cb76f",
67
- sender_fullname: "BOT2",
68
- status: 150,
69
- text: "Hello 👋. I'm a bot 🤖.\n\nChoose one of the options below or write a message to reach our staff.",
70
- timestamp: 1629273999970,
71
- type: "text",
72
- uid: "-MhNI3eaIoLTOLoX3TAu",
73
- isSender: false
74
- }
75
- component.message = messages
76
- // component.textColor = 'black'
77
- fixture.detectChanges()
78
- const textChild = fixture.debugElement.query(By.css('chat-text'))
79
- expect(textChild.properties.text).toEqual(messages.text)
80
- })
67
+ it('should have a chat-text child for plain text messages', () => {
68
+ component.message = textMessage;
69
+ fixture.detectChanges();
70
+ expect(fixture.debugElement.query(By.css('chat-text'))).toBeTruthy();
71
+ });
72
+
73
+ it('should bind chat-text inputs from message', () => {
74
+ component.message = textMessage;
75
+ fixture.detectChanges();
76
+ const textChild = fixture.debugElement.query(By.css('chat-text'));
77
+ expect(textChild.properties.text).toEqual(textMessage.text);
78
+ });
79
+
80
+ describe('ngOnChanges', () => {
81
+ it('should compute sizeImage from message metadata object', () => {
82
+ component.message = {
83
+ ...textMessage,
84
+ metadata: { width: 100, height: 50 },
85
+ };
86
+ component.ngOnChanges();
87
+ expect(component.sizeImage.width).toBe(100);
88
+ });
89
+
90
+ it('should cap width when metadata exceeds MAX_WIDTH_IMAGES (calcImageSize)', () => {
91
+ component.message = {
92
+ ...textMessage,
93
+ metadata: { width: MAX_WIDTH_IMAGES * 2, height: 100 },
94
+ };
95
+ component.ngOnChanges();
96
+ expect(component.sizeImage.width).toBe(MAX_WIDTH_IMAGES);
97
+ });
98
+
99
+ it('should scale up narrow thumbnails when width <= 55 (calcImageSize)', () => {
100
+ component.message = {
101
+ ...textMessage,
102
+ metadata: { width: 40, height: 80 },
103
+ };
104
+ component.ngOnChanges();
105
+ expect(component.sizeImage.width).toBe(MIN_WIDTH_IMAGES);
106
+ expect(component.sizeImage.height).toBe(MIN_WIDTH_IMAGES / (40 / 80));
107
+ });
108
+
109
+ it('should keep metadata dimensions for mid-sized images', () => {
110
+ component.message = {
111
+ ...textMessage,
112
+ metadata: { width: 120, height: 60 },
113
+ };
114
+ component.ngOnChanges();
115
+ expect(component.sizeImage.width).toBe(120);
116
+ expect(component.sizeImage.height).toBe(60);
117
+ });
118
+
119
+ it('should leave width undefined when metadata has no width (calcImageSize)', () => {
120
+ component.message = {
121
+ ...textMessage,
122
+ metadata: { width: undefined, height: 10 },
123
+ };
124
+ component.ngOnChanges();
125
+ expect(component.sizeImage.width).toBeUndefined();
126
+ expect(component.sizeImage.height).toBe(10);
127
+ });
128
+
129
+ it('should ignore non-object metadata', () => {
130
+ component.message = { ...textMessage, metadata: 'x' as any };
131
+ component.ngOnChanges();
132
+ expect(component.sizeImage).toEqual({ width: 0, height: 0 });
133
+ });
134
+
135
+ it('should derive fullnameColor from fontColor', () => {
136
+ component.message = textMessage;
137
+ component.fontColor = '#ff0000';
138
+ component.ngOnChanges();
139
+ expect(component.fullnameColor).toBeTruthy();
140
+ });
141
+
142
+ it('should prefer sender fullname color when name present', () => {
143
+ component.message = { ...textMessage, sender_fullname: 'Anna' };
144
+ component.fontColor = '#00ff00';
145
+ component.ngOnChanges();
146
+ expect(component.fullnameColor).toBeTruthy();
147
+ });
148
+ });
149
+
150
+ describe('emitters', () => {
151
+ beforeEach(() => {
152
+ component.message = textMessage;
153
+ });
154
+
155
+ it('onBeforeMessageRenderFN should emit with sanitizer and message', () => {
156
+ spyOn(component.onBeforeMessageRender, 'emit');
157
+ const ev = { messageEl: {}, component: {} };
158
+ component.onBeforeMessageRenderFN(ev);
159
+ expect(component.onBeforeMessageRender.emit).toHaveBeenCalled();
160
+ const arg = (component.onBeforeMessageRender.emit as jasmine.Spy).calls.mostRecent().args[0];
161
+ expect(arg.message).toBe(component.message);
162
+ expect(arg.sanitizer).toBe(component.sanitizer);
163
+ });
164
+
165
+ it('onAfterMessageRenderFN should emit', () => {
166
+ spyOn(component.onAfterMessageRender, 'emit');
167
+ const ev = { messageEl: {}, component: {} };
168
+ component.onAfterMessageRenderFN(ev);
169
+ expect(component.onAfterMessageRender.emit).toHaveBeenCalled();
170
+ });
171
+
172
+ it('onElementRenderedFN should forward element and status', () => {
173
+ spyOn(component.onElementRendered, 'emit');
174
+ component.onElementRenderedFN({ element: 'image', status: true });
175
+ expect(component.onElementRendered.emit).toHaveBeenCalledWith({ element: 'image', status: true });
176
+ });
177
+ });
81
178
  });