-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
279 lines (224 loc) · 6.92 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import { DirectLine } from 'botframework-directlinejs';
import { unified } from 'unified';
import remarkParse from 'remark-parse';
import remarkRehype from 'remark-rehype';
import rehypeStringify from 'rehype-stringify';
const SECRET = import.meta.env.VITE_DIRECT_LINE_SECRET;
const DIRECT_LINE_DOMAIN = 'https://europe.directline.botframework.com/v3/directline';
const REGENERATION_TEXT = 'Regeneration...';
const CHAT_DISABLED_CLASS = 'dx-chat-disabled';
const EMAIL_REGEX = /[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/g;
const user = { id: 'user', name: 'You' };
const assistant = { id: null, name: 'Virtual Assistant' };
const EN_MESSAGES = {
'dxChat-emptyListMessage': 'Chat is Empty',
'dxChat-emptyListPrompt': 'AI Assistant is ready to answer your questions.',
'dxChat-textareaPlaceholder': 'Ask AI Assistant...',
};
const connectionStatusHandlers = {
0: () => console.warn('DirectLine connection is uninitialized.'),
1: () => console.log('DirectLine is connecting...'),
2: () => console.log('DirectLine connection is online!'),
3: () => console.error('DirectLine token has expired.'),
4: () => console.error('DirectLine failed to connect. Please check your token or domain.'),
5: () => console.warn('DirectLine connection has ended.'),
};
const handleConnectionStatus = (status) => {
const handler = connectionStatusHandlers[status];
handler();
};
const fetchDirectLineToken = async (secret) => {
try {
const response = await fetch(`${DIRECT_LINE_DOMAIN}/tokens/generate`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${secret}`,
},
});
if (!response.ok) {
throw new Error(`Failed to fetch token: ${response.status}`);
}
const { token } = await response.json();
console.log('Token received successfully!');
return token;
} catch (error) {
console.error('Error fetching Direct Line token:', error);
throw error;
}
};
const initChatService = async () => {
const token = await fetchDirectLineToken(SECRET);
const directLine = new DirectLine({
token,
domain: DIRECT_LINE_DOMAIN,
});
return directLine;
};
const subscribeToChatActivities = (
chatService,
instance,
textArea,
toggleDisabledState,
renderAssistantMessage,
) => {
const handleMessage = (activity) => {
const fromAssistant = activity.from.id !== user.id;
if (activity.type === 'message' && fromAssistant) {
instance.option({ typingUsers: [] });
renderAssistantMessage(activity.text);
toggleDisabledState(false, instance, textArea);
}
};
const handleError = (error) => {
console.error('Error receiving activities:', error);
renderAssistantMessage('Error receiving messages from the assistant.');
};
chatService.activity$.subscribe(handleMessage, handleError);
chatService.connectionStatus$.subscribe(handleConnectionStatus);
};
const toggleDisabledState = (disabled, instance, textArea) => {
instance.element().toggleClass(CHAT_DISABLED_CLASS, disabled);
disabled ? textArea?.blur() : textArea?.focus();
};
const postMessage = (
chatService,
instance,
textArea,
message,
toggleDisabledState,
renderAssistantMessage,
) => {
toggleDisabledState(true, instance, textArea);
instance.option({ typingUsers: [assistant] });
const activity = {
from: user,
type: 'message',
text: message.text,
};
chatService
.postActivity(activity)
.subscribe(
() => console.log('Message sent successfully'),
(error) => {
console.error('Error sending message:', error);
instance.option({ typingUsers: [] });
renderAssistantMessage(`Error sending message: ${error}`);
toggleDisabledState(false, instance, textArea);
}
);
};
const renderAssistantMessage = (dataSource, text) => {
const message = {
id: Date.now(),
timestamp: new Date(),
author: assistant,
text,
};
dataSource.store().push([{ type: 'insert', data: message }]);
};
const emailToLink = (string) => {
const result = string.replace(EMAIL_REGEX, (email) => {
return `<a href="mailto:${email}">${email}</a>`;
})
return result;
};
const markdownProcessor = unified()
.use(remarkParse)
.use(remarkRehype)
.use(rehypeStringify);
const convertToHtml = (value) => {
const precessedValue = markdownProcessor
.processSync(value)
.toString();
const valueWithEmailLinks = emailToLink(precessedValue);
return valueWithEmailLinks;
};
const onCopyButtonClick = (component, text) => {
navigator.clipboard?.writeText(text);
component.option({ icon: 'check' });
setTimeout(() => {
component.option({ icon: 'copy' });
}, 2500);
};
const renderMessageContent = (message, element) => {
$('<div>')
.addClass('dx-chat-messagebubble-text')
.html(convertToHtml(message.text))
.appendTo(element);
const $buttonContainer = $('<div>')
.addClass('dx-bubble-button-container');
$('<div>')
.dxButton({
icon: 'copy',
stylingMode: 'text',
hint: 'Copy',
onClick: ({ component }) => {
onCopyButtonClick(component, message.text);
},
})
.appendTo($buttonContainer);
$buttonContainer.appendTo(element);
};
const createCustomStore = (store) =>
new DevExpress.data.CustomStore({
key: 'id',
load: () => Promise.resolve([...store]),
insert: (message) => new Promise((resolve) => {
setTimeout(() => {
store.push(message);
resolve();
}, 0);
}),
});
$(async () => {
try {
const store = [];
DevExpress.localization.loadMessages({ en: EN_MESSAGES });
const customStore = createCustomStore(store);
const dataSource = new DevExpress.data.DataSource({
store: customStore,
paginate: false,
});
const chatService = await initChatService();
const chatOptions = {
user,
height: 710,
dataSource,
reloadOnChange: false,
showAvatar: false,
showDayHeaders: false,
onMessageEntered: (e) => {
const { message } = e;
dataSource.store().push([{ type: 'insert', data: { id: Date.now(), ...message } }]);
postMessage(
chatService,
instance,
textArea,
message,
toggleDisabledState,
(text) => renderAssistantMessage(dataSource, text),
);
},
messageTemplate: (data, element) => {
const { message } = data;
if (message.text === REGENERATION_TEXT) {
element.text(REGENERATION_TEXT);
return;
}
renderMessageContent(message, element);
},
};
const instance = $('#dx-ai-chat').dxChat(chatOptions).dxChat('instance');
const textArea = instance._messageBox._textArea.element();
subscribeToChatActivities(
chatService,
instance,
textArea,
toggleDisabledState,
(text) => renderAssistantMessage(dataSource, text),
);
} catch (error) {
console.error('Failed to initialize chat:', error);
}
});