@webitel/ui-chats 0.1.51 → 0.1.52

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 (34) hide show
  1. package/package.json +2 -2
  2. package/src/config/config.ts +6 -10
  3. package/src/ui/chat-footer/modules/user-input/components/chat-input-actions-bar.vue +2 -2
  4. package/src/ui/chat-footer/modules/user-input/components/chat-text-field.vue +4 -4
  5. package/src/ui/chat-footer/modules/user-input/enums/ChatAction.enum.ts +0 -5
  6. package/src/ui/messaging/composables/useChatScroll.ts +1 -1
  7. package/src/ui/messaging/composables/useObserveHeightUntilStable.ts +1 -1
  8. package/src/ui/messaging/modules/message/components/chat-message.vue +2 -2
  9. package/src/ui/messaging/modules/message/components/details/chat-message-document.vue +2 -3
  10. package/src/ui/messaging/modules/message/components/details/chat-message-player.vue +5 -6
  11. package/src/ui/messaging/modules/message/composables/useChatMessage.ts +2 -2
  12. package/src/ui/messaging/modules/message/composables/useChatMessageFile.ts +2 -2
  13. package/src/ui/the-chat-container.vue +2 -2
  14. package/src/ui/utils/ResultCallbacks.types.ts +1 -7
  15. package/types/.tsbuildinfo +1 -1
  16. package/types/config/config.d.ts +2 -7
  17. package/types/ui/chat-footer/modules/user-input/components/actions/attach-files-action.vue.d.ts +1 -1
  18. package/types/ui/chat-footer/modules/user-input/components/actions/send-message-action.vue.d.ts +1 -1
  19. package/types/ui/chat-footer/modules/user-input/components/chat-input-actions-bar.vue.d.ts +4 -4
  20. package/types/ui/chat-footer/modules/user-input/components/chat-text-field.vue.d.ts +5 -4
  21. package/types/ui/chat-footer/modules/user-input/enums/ChatAction.enum.d.ts +0 -4
  22. package/types/ui/image-viewer/image-viewer.vue.d.ts +1 -1
  23. package/types/ui/messaging/components/chat-observer.vue.d.ts +2 -2
  24. package/types/ui/messaging/components/scroll-to-bottom-btn.vue.d.ts +2 -2
  25. package/types/ui/messaging/components/the-messages-container.vue.d.ts +1 -1
  26. package/types/ui/messaging/modules/message/components/chat-message.vue.d.ts +2 -2
  27. package/types/ui/messaging/modules/message/components/details/chat-message-image.vue.d.ts +1 -1
  28. package/types/ui/messaging/modules/message/components/details/chat-message-player.vue.d.ts +3 -3
  29. package/types/ui/messaging/modules/message/components/details/chat-message-size-exceeded-error.vue.d.ts +1 -1
  30. package/types/ui/messaging/modules/message/components/details/chat-message-time.vue.d.ts +1 -1
  31. package/types/ui/messaging/modules/message/composables/useChatMessageFile.d.ts +20 -20
  32. package/types/ui/the-chat-container.vue.d.ts +3 -3
  33. package/types/ui/utils/ResultCallbacks.types.d.ts +1 -5
  34. package/src/declaration.d.ts +0 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-chats",
3
- "version": "0.1.51",
3
+ "version": "0.1.52",
4
4
  "description": "Reusable Webitel Frontend Code for Chats UI",
5
5
  "workspaces": [
6
6
  "../../",
@@ -41,7 +41,7 @@
41
41
  "@webitel/api-services": "^0.1.0",
42
42
  "@webitel/chat-web-sdk": "^0.0.19",
43
43
  "@webitel/styleguide": "~26.2",
44
- "@webitel/ui-sdk": "~26.8",
44
+ "@webitel/ui-sdk": "~26.6",
45
45
  "mitt": "^3",
46
46
  "vue": "^3.5"
47
47
  },
@@ -1,17 +1,13 @@
1
+ import type { I18n } from 'vue-i18n';
1
2
  import { messages } from '../locale';
2
3
 
3
- /** Minimal i18n surface ui-chats needs — avoids vue-i18n schema variance issues. */
4
- export type UiChatsI18n = {
5
- global: {
6
- mergeLocaleMessage: (locale: string, message: unknown) => void;
7
- };
8
- };
9
-
10
4
  export type UiChatsConfig = {
11
- i18n?: UiChatsI18n;
5
+ i18n?: I18n;
12
6
  };
13
7
 
14
- export const defaultConfig: UiChatsConfig = {};
8
+ export const defaultConfig: UiChatsConfig = {
9
+ i18n: null,
10
+ };
15
11
 
16
12
  export const setConfig = (conf: UiChatsConfig) => {
17
13
  Object.assign(defaultConfig, conf);
@@ -21,6 +17,6 @@ export const setConfig = (conf: UiChatsConfig) => {
21
17
  }
22
18
 
23
19
  Object.entries(messages).forEach(([locale, localeMessages]) => {
24
- conf.i18n!.global.mergeLocaleMessage(locale, localeMessages);
20
+ conf.i18n.global.mergeLocaleMessage(locale, localeMessages);
25
21
  });
26
22
  };
@@ -20,7 +20,7 @@
20
20
  import { ComponentSize } from '@webitel/ui-sdk/enums';
21
21
  import { computed, inject } from 'vue';
22
22
 
23
- import { ChatAction, type ChatActionSlots } from '../enums/ChatAction.enum';
23
+ import { ChatAction, type SharedActionSlots } from '../enums/ChatAction.enum';
24
24
  import AttachFilesAction from './actions/attach-files-action.vue';
25
25
  import EmojiPickerAction from './actions/emoji-picker-action.vue';
26
26
  import SendMessageAction from './actions/send-message-action.vue';
@@ -36,7 +36,7 @@ const emit = defineEmits<{
36
36
  (e: typeof ChatAction.AttachFiles, files: File[]): void;
37
37
  }>();
38
38
 
39
- defineSlots<ChatActionSlots>();
39
+ const slots = defineSlots<SharedActionSlots>();
40
40
 
41
41
  const ShownActionComponentsList = computed(() => {
42
42
  /**
@@ -16,14 +16,14 @@ import { WtTextarea } from '@webitel/ui-sdk/components';
16
16
  import { ComponentSize } from '@webitel/ui-sdk/enums';
17
17
  import insertTextAtCursor from 'insert-text-at-cursor';
18
18
  import type { Emitter } from 'mitt';
19
- import { computed, inject, useTemplateRef } from 'vue';
19
+ import { computed, inject, type MaybeRef, useTemplateRef } from 'vue';
20
20
  import { useI18n } from 'vue-i18n';
21
21
 
22
22
  import type { UiChatsEmitterEvents } from '../../../../utils/emitter';
23
23
 
24
24
  const { t } = useI18n();
25
25
 
26
- const textModel = defineModel<string>('text', {
26
+ const textModel = defineModel<MaybeRef<string>>('text', {
27
27
  required: true,
28
28
  });
29
29
 
@@ -46,8 +46,8 @@ const textareaEl = computed(() =>
46
46
  chatTextFieldInputRef.value?.$el.querySelector('textarea'),
47
47
  );
48
48
 
49
- function send(text?: string) {
50
- textModel.value = text ?? '';
49
+ function send(text: string) {
50
+ textModel.value = text;
51
51
  }
52
52
 
53
53
  function focus() {
@@ -11,8 +11,3 @@ export type ChatAction = (typeof ChatAction)[keyof typeof ChatAction];
11
11
  export type SharedActionSlots = {
12
12
  [key in `action:${ChatAction}`]?: () => unknown;
13
13
  };
14
-
15
- /** slots `chat-input-actions-bar` itself exposes, keyed by the bare action name */
16
- export type ChatActionSlots = {
17
- [key in ChatAction]?: (props: Record<string, unknown>) => unknown;
18
- };
@@ -211,7 +211,7 @@ export const useChatScroll = ({
211
211
  viewportTransitionTimer = setTimeout(() => {
212
212
  isViewportTransition = false;
213
213
  viewportTransitionTimer = null;
214
- }, 1000);
214
+ }, 500);
215
215
  };
216
216
 
217
217
  /**
@@ -25,7 +25,7 @@ export const useObserveHeightUntilStable = (
25
25
  viewportTransitionTimer = setTimeout(() => {
26
26
  isViewportTransition = false;
27
27
  viewportTransitionTimer = null;
28
- }, 1000);
28
+ }, 500);
29
29
  };
30
30
 
31
31
  const stopObserve = () => {
@@ -136,14 +136,14 @@ const isTransferAgent = computed(
136
136
 
137
137
  const isBot = computed<boolean>(() => props.message.member?.type === 'bot');
138
138
 
139
- const getClientUsername = computed<string | undefined>(() => {
139
+ const getClientUsername = computed<string>(() => {
140
140
  if (isTransferAgent.value) return props.message.member?.name;
141
141
  if (isSelfSide.value) return props?.agentName;
142
142
 
143
143
  return props.username || props.message.member?.name;
144
144
  });
145
145
 
146
- function handlePlayerInitialize(player: object) {
146
+ function handlePlayerInitialize(player) {
147
147
  emit(MessageAction.InitializedPlayer, {
148
148
  player,
149
149
  });
@@ -38,12 +38,11 @@ const documentSize = computed(() => {
38
38
  });
39
39
 
40
40
  function downloadDocument() {
41
- if (!props.file?.url) return;
41
+ if (!props.file) return;
42
42
  const a = document.createElement('a');
43
43
  a.href = props.file.url;
44
44
  a.target = '_blank';
45
- // empty `download` lets the browser derive the filename from the URL
46
- a.download = props.file.name ?? '';
45
+ a.download = props.file.name;
47
46
  a.click();
48
47
  }
49
48
  </script>
@@ -35,7 +35,7 @@ import type { ChatMessageFile } from '../../../../types/ChatMessage.types';
35
35
 
36
36
  const props = defineProps<{
37
37
  file: ChatMessageFile;
38
- type?: string;
38
+ type: string;
39
39
  }>();
40
40
 
41
41
  const emit = defineEmits<{
@@ -52,14 +52,13 @@ const isVideo = computed(() => {
52
52
  });
53
53
  const mediaSrc = computed(() => {
54
54
  return {
55
- src: props.file.streamUrl || props.file.url || '',
56
- type: props.type ?? '',
55
+ src: props.file.streamUrl || props.file.url,
56
+ type: props.type,
57
57
  };
58
58
  });
59
59
 
60
- // `initialized` currently carries no payload, so the argument stays optional
61
- function handlePlayerInitialize(player?: object) {
62
- emit('initialized', player ?? {});
60
+ function handlePlayerInitialize(player) {
61
+ emit('initialized', player);
63
62
  }
64
63
  </script>
65
64
 
@@ -15,8 +15,8 @@ export const useChatMessages = (
15
15
  ) => {
16
16
  function showChatDate(index: number): boolean {
17
17
  const { prevMessage, message } = getMessage(index);
18
- const prevDate = Number(prevMessage?.createdAt) || 0;
19
- const currentDate = Number(message?.createdAt) || 0;
18
+ const prevDate = +prevMessage?.createdAt || 0;
19
+ const currentDate = +message?.createdAt || 0;
20
20
  return (
21
21
  !!prevMessage &&
22
22
  formatDate(prevDate, FormatDateMode.DATE) !==
@@ -3,7 +3,7 @@ import { computed, type Ref, toRef } from 'vue';
3
3
  import type { ChatMessageFile } from '../../../types/ChatMessage.types';
4
4
 
5
5
  export function useChatMessageFile(
6
- file: ChatMessageFile | Ref<ChatMessageFile | undefined> | undefined,
6
+ file: ChatMessageFile | Ref<ChatMessageFile>,
7
7
  ) {
8
8
  const fileRef = toRef(file);
9
9
 
@@ -30,7 +30,7 @@ export function useChatMessageFile(
30
30
  );
31
31
  });
32
32
 
33
- const isMediaType = (value: string | undefined) => {
33
+ const isMediaType = (value: string) => {
34
34
  return !!(value?.includes('audio') || value?.includes('video'));
35
35
  };
36
36
 
@@ -143,10 +143,10 @@ function closeMedia() {
143
143
 
144
144
  const draft = ref<string>('');
145
145
 
146
- const slottedChatActions = computed<ChatAction[]>(() => {
146
+ const slottedChatActions = computed(() => {
147
147
  return Object.keys(slots)
148
148
  .filter((key) => key.startsWith('action:'))
149
- .map((key) => key.replace('action:', '') as ChatAction);
149
+ .map((key) => key.replace('action:', ''));
150
150
  });
151
151
  const isDropzoneDisabled = computed(
152
152
  () => !props.chatActions.includes(ChatAction.AttachFiles),
@@ -1,7 +1 @@
1
- // Defined locally so consumers (and this package's .d.ts) do not depend on
2
- // @webitel/ui-sdk/src/types package-export resolution.
3
- export type ResultCallbacks = {
4
- onSuccess?: () => void;
5
- onError?: (error: Error) => void;
6
- onComplete?: () => void;
7
- };
1
+ export type { ResultCallbacks } from '@webitel/ui-sdk/src/types';