Spaces:
Running
Running
File size: 20,053 Bytes
b39afbe |
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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 |
/**
* Copyright (c) 2023 MERCENARIES.AI PTE. LTD.
* All rights reserved.
*/
import axios from 'axios';
import { marked } from 'marked';
import { ChatMessageStorageTypes, ChatUtils } from 'omni-client-services';
import '../styles/markdown.scss';
import DOMPurify from 'dompurify';
import {EOmniFileTypes} from 'omni-sdk'
const chatComponent = function (workbench) {
const client = window.client;
const state = window.client.chat.state;
const getCurrentLocalTime = () =>
new Intl.DateTimeFormat('en-US', { month: '2-digit', day: '2-digit', hour: '2-digit', minute: '2-digit' }).format(
new Date()
);
const renderMarkdown = async (markdownText) => {
const escapedContent = escapeHtmlSpecialChars(markdownText);
const sanitizedHtml = DOMPurify.sanitize(escapedContent);
const rawHtml = marked.parse(sanitizedHtml, { mangle: false, headerIds: false });
return rawHtml;
};
const parseCommandLine = (line) => {
const commandRegex = /(?:[^\s"]+|"[^"]*")+/g;
const splitLine = line.match(commandRegex);
const [command, ...args] = splitLine.map((arg) => arg.replace(/^"(.+(?="$))"$/, '$1'));
return [command, args];
};
const formatChatMessageAndPush = ({ message, sender, embeds, workflowId }) => {
embeds ??= {};
embeds.audio ??= [];
embeds.commands ??= [];
embeds.images ??= [];
embeds.object ??= [];
embeds.videos ??= [];
if (
message ||
embeds?.images?.length > 0 ||
embeds?.audio?.length > 0 ||
embeds?.videos?.length > 0 ||
embeds.object
) {
message ??= '';
const rawText = typeof message === 'object' ? '``` \n' + JSON.stringify(message, null, 2) + ' \n```' : message;
const text = marked.parse(rawText, { mangle: false, headerIds: false });
const msg = {
sender: sender || 'omni',
text,
whenText: getCurrentLocalTime(),
attachments: 0,
workflowId: workflowId ?? workbench.activeWorkflow?.id
};
let attachments = 0;
if (embeds) {
embeds.audio = embeds.audio.filter((e) => e.expires === Number.MAX_SAFE_INTEGER || e.expires > Date.now());
embeds.images = embeds.images.map((e) => {
if (e.expires === Number.MAX_SAFE_INTEGER || e.expires > Date.now()) {
return e;
}
e.url = '/expired.png';
return e;
});
if (embeds.audio && embeds.audio.length > 0) {
msg.audio = embeds.audio;
attachments += embeds.audio.length;
}
if (embeds.images && embeds.images.length > 0) {
msg.images = embeds.images;
attachments += embeds.images.length;
}
if (embeds.videos && embeds.videos.length > 0) {
msg.videos = embeds.videos;
attachments += embeds.videos.length;
}
if (embeds.commands && embeds.commands.length > 0) {
msg.commands = embeds.commands;
attachments += embeds.commands.length;
}
if (embeds.object && embeds.object.length > 0) {
msg.objects = embeds.object;
attachments += embeds.object.length;
}
}
msg.attachments = attachments;
state.messages.push(msg); // TODO: Move to caller
return msg;
} else {
console.warn('empty message', { message, sender });
return null;
}
};
const onAsyncJobStatusEffectHandler = (element, job) => {
// Still called by UI. Don't remove without full testing of job status.
};
const onChatMessage = async ({ message, sender, embeds }) => {
const formattedMsg = formatChatMessageAndPush({ message, sender, embeds });
if (formattedMsg !== null && workbench !== null && workbench.activeWorkflow !== null) {
await client.chat.updateChatServer({ message, sender, embeds }, Date.now());
}
};
const sendMessage = async () => {
let inputText = state.inputText.trim();
state.inputText = '';
if (inputText?.length > 0) {
await onChatMessage({ message: inputText, sender: 'me' });
if (inputText === '?') {
inputText = '/help';
}
try {
if (inputText[0] !== '/' && inputText[0] !== '@') {
if (!client.workbench.canExecute) {
window.client.sendSystemMessage('Please load a recipe first.', 'text/plain');
return;
}
inputText = '@omni ' + inputText;
}
let script = 'console';
let args = { input: inputText };
let isMention = false;
if (inputText[0] === '/' || inputText[0] === '@') {
if (inputText.length <= 1) {
inputText = '/help';
}
const [l1, l2] = parseCommandLine(inputText);
script = l1.substring(1).replace(/[\W_]+/g, '');
args = l2 || [];
if (inputText[0] === '@') {
const omniscript = script;
script = 'run';
args = args.join(' ');
args = [omniscript, args];
isMention = true;
}
}
console.log('script', script, 'args', args);
let response;
// TODO: rewrite
if (script === 'run') {
const [target, xargs] = args;
let payload = xargs.length ? { text: xargs } : undefined;
if (!isMention) {
const targetJson = JSON.parse(target);
response = await workbench.executeById(targetJson.id, payload);
} else {
if (xargs.length > 0) {
response = await workbench.executeByName(target, payload);
} else {
if (state.messages.length > 2) {
payload = {};
const lastMessage = state.messages[state.messages.length - 2];
payload = {
text: lastMessage.text || lastMessage.html,
images: lastMessage.images,
audio: lastMessage.audio
};
}
response = await workbench.executeByName(target, payload);
}
}
} else {
response = await window.client.runScript(script, args, { fromChatWindow: true });
}
console.log(JSON.stringify(response));
if (!response) {
return;
}
if (response?.error) {
throw response.error;
}
if (response.response && !response.hide) {
await onChatMessage({
message: response.response,
sender: response.sender || 'omni',
embeds: response.embeds
});
}
} catch (error) {
if (typeof error === 'object') {
// eslint-disable-next-line no-ex-assign
error = error.message ?? JSON.stringify(error, null, 2);
} else {
console.error('Failed to send message:' + error);
}
await onChatMessage({
message: '<div class="w-full text-red-500font-semibold">❌ Error</div><div>' + error + '</div>',
sender: 'omni'
});
}
}
};
// Fix issue #143
let isComposing = false;
const handleCompositionStart = () => {
isComposing = true;
};
const handleCompositionEnd = () => {
isComposing = false;
};
const restoreChat = async (workflowId) => {
state.messages.length = 0; // flush
const url = `/api/v1/chat/${client.chat.activeContextId}`;
const res = await axios.get(url, {
withCredentials: true
});
const chatHistory = res.data.result.result;
for (let i = 0; i < chatHistory.length; ++i) {
const chatStorage = chatHistory[i];
if (chatStorage.version !== 0) {
continue;
}
switch (ChatUtils.GetMessageStorageType(chatStorage.msgstore)) {
case ChatMessageStorageTypes.User:
formatChatMessageAndPush(chatStorage.msgstore);
break;
case ChatMessageStorageTypes.Omni:
client.chat._onChatMessage(chatStorage.msgstore);
break;
case ChatMessageStorageTypes.AsyncJob: {
const msg = {
sender: 'omni',
text: chatStorage.msgstore.message,
whenText: chatStorage.msgstore.ts,
attachments: 0,
flags: new Set(),
workflowId: chatStorage.msgstore.workflowId
};
state.messages.push(msg);
break;
}
}
}
// restore startup messages
if (workbench !== null && !workbench.canEdit && workbench.activeWorkflow) {
client.sendSystemMessage(
'ℹ️ This recipe is a **read-only** template. Use the remix button below to create a copy you can edit freely.',
undefined,
{
commands: [
{
title: 'Remix Recipe',
id: 'clone',
args: [],
classes: ['btn btn-secondary']
}
]
}
);
}
};
client.subscribeToGlobalEvent('workbench_workflow_loaded', async (workflowId) => {
await restoreChat(workflowId);
});
client.registerClientScript('clear', async function (args) {
state.messages.length = 0;
await client.chat.clearChat();
return { response: 'Chat history cleared.' };
});
client.subscribeToGlobalEvent('sse_message', async (data) => {
if (data.type === 'chat_message') {
await onChatMessage(data);
return;
}
if (data.type === 'error') {
await onChatMessage({
message:
"<div class='w-full'><span class='text-red-500 font-bold'>Error!</span> " +
(data.componentKey
? "A block returned an error with <span class='font-mono'>componentKey: \"" +
data.componentKey +
'"</span>'
: 'A block with a missing componentKey returned an error.') +
"</div><div>Details: <pre class='font-mono' style='white-space: pre-wrap;'>" +
getErrorDetails(data.error) +
'</pre></div>'
});
}
});
const SpeechRecognition = window.SpeechRecognition || window.webkitSpeechRecognition;
if (SpeechRecognition) {
state.recognition = new SpeechRecognition();
state.recognition.continuous = true;
state.recognition.interimResults = true;
state.recognition.lang = 'en-US';
state.recognition.onresult = (event) => {
let interimTranscript = '';
for (let i = event.resultIndex; i < event.results.length; ++i) {
if (!event.results[i].isFinal) {
interimTranscript += event.results[i][0].transcript;
}
}
if (interimTranscript) {
state.inputText = interimTranscript;
}
};
state.recognitionAvailable = true;
} else {
console.log('Speech recognition is not supported in this browser. Please try using Google Chrome.');
}
const stripHtml = function (html) {
const txt = document.createElement('div');
txt.innerHTML = html;
return txt.innerText.trim();
};
const getErrorDetails = function (error) {
let errorObj = error;
if (typeof error === 'string') {
try {
errorObj = JSON.parse(error);
} catch (e) {}
} else if (typeof error === 'object') {
errorObj = error;
}
return JSON.stringify(errorObj, null, 2);
};
return {
isDraggingOver: false,
openCameraModal: false,
loadCameraModal: false,
streaming: false,
state,
workbench,
onChatMessage,
onAsyncJobStatusEffectHandler,
sendMessage,
handleCompositionStart,
handleCompositionEnd,
renderMarkdown,
ChatUtils,
onClickCopy(node) {
const s = DOMPurify.sanitize(stripHtml(node.text));
navigator.clipboard.writeText(s).then(
function () {
// console.log('Copying to clipboard was successful!');
},
function (err) {
console.error('Could not copy text: ', err);
}
);
this.copyNotification = true;
const that = this;
setTimeout(function () {
that.copyNotification = false;
}, 3000);
},
async startMicrophoneInput() {
if (state.recognition) {
state.recognition.start();
state.recognitionRecording = true;
}
},
async stopMicrophoneInput() {
if (state.recognition) {
state.recognitionRecording = false;
state.recognition.stop();
}
},
showViewerExtension(file) {
// redundant check for backwards compatibility
// TODO: remove redundant checks
if (file.fileType === 'document' || file.mimeType === 'application/pdf' || file.mimeType?.startsWith('text/')) {
if (file.mimeType === 'application/pdf') {
workbench.showExtension('omni-core-viewers', { file }, 'pdf', { winbox: { title: file.fileName } });
} else {
workbench.showExtension('omni-core-viewers', { file }, 'markdown', { winbox: { title: file.fileName } });
}
} else if (file.fileType === 'image' || file.mimeType.startsWith('image')) {
workbench.showExtension('omni-core-filemanager', { focusedObject: file }, undefined, {
winbox: { title: file.fileName }
});
} else if (
file.fileType === 'audio' ||
file.mimeType.startsWith('audio') ||
file.mimeType === 'application/ogg'
) {
workbench.showExtension('omni-core-filemanager', { focusedObject: file }, undefined, {
winbox: { title: file.fileName }
});
}
},
async startCamera() {
console.log('startCamera');
this.loadCameraModal = true;
const video = document.getElementById('video');
const stream = await navigator.mediaDevices.getUserMedia({ video: true });
video.srcObject = stream;
await new Promise((resolve) => {
video.onloadedmetadata = resolve;
});
video.play();
this.loadCameraModal = false;
this.openCameraModal = true;
this.streaming = true;
},
takePhoto() {
const video = document.getElementById('video');
const canvas = document.getElementById('canvas');
const context = canvas.getContext('2d');
// Assuming the video is wider than it is tall, capture a square section from the center.
const size = Math.min(video.videoWidth, video.videoHeight);
const startX = (video.videoWidth - size) / 2;
const startY = (video.videoHeight - size) / 2;
context.drawImage(video, startX, startY, size, size, 0, 0, canvas.width, canvas.height);
canvas.toBlob(async (blob) => {
const file = new File([blob], 'photo.jpg', { type: 'image/jpeg', lastModified: Date.now() });
const uploadedImages = await this.uploadFiles([file]);
// Assuming the uploadedImages contain only image file.
client.clipboard ??= {};
client.clipboard.images ??= [];
client.clipboard.images = client.clipboard.images.concat(uploadedImages);
client.sdkHost.sendChatMessage(
'Files uploaded: ' + uploadedImages.length,
'text/plain',
{ images: uploadedImages }
);
this.stopCamera();
}, 'image/jpeg');
},
stopCamera() {
const video = document.getElementById('video');
video?.srcObject.getTracks().forEach((track) => track.stop());
this.streaming = false;
this.openCameraModal = false;
},
async resendMessage(message) {
state.inputText = stripHtml(message.text);
await this.sendMessage();
},
chatDragOver() {
this.isDraggingOver = true;
},
chatDragLeave() {
this.isDraggingOver = false;
},
async chatHandlePaste(event) {
const items = (event.clipboardData || event.originalEvent.clipboardData).items;
// if text
if (items[0].kind === 'string' || items[0].kind === 'number') {
return;
}
await this.genericFileUpload(
Array.from(items)
.filter((item) => item.kind === 'file')
.map((item) => item.getAsFile())
);
},
async chatEnterKeydown(event) {
// Enter (return) key was pressed.
if (event.shiftKey) {
return;
} // If shift key is also down, do nothing.
if (!event.shiftKey && !isComposing) {
event.preventDefault();
if (event.target.value.trim() !== '') {
event.target.blur(); // Temporarily blur the textarea to capture the completed input.
await sendMessage();
event.target.focus(); // Refocus the textarea.
} else {
// Do something
}
}
},
async chatDrop(event) {
// Deprecated.
this.isDraggingOver = false;
// Deprecated, unreliable across different browsers and requires too much testing.
await this.genericFileUpload(event?.dataTransfer?.files || event?.target?.files, event);
},
async onUploadFileChange(event) {
await this.genericFileUpload(event?.dataTransfer?.files || event?.target?.files, event);
},
async genericFileUpload(files, event) {
await onChatMessage({ message: 'Uploading files...', sender: 'omni' });
const uploaded = await this.uploadFiles(files);
// TODO: Moveto
const audio = uploaded.filter((f) => f.fileType === EOmniFileTypes.audio)
const images = uploaded.filter((f) => f.fileType === EOmniFileTypes.image)
const videos = uploaded.filter((f) => f.fileType === EOmniFileTypes.video)
const documents = uploaded.filter((f) => f.fileType === EOmniFileTypes.document);
client.clipboard ??= {};
client.clipboard.images ??= [];
client.clipboard.audio ??= [];
client.clipboard.video ??=[]
client.clipboard.documents ??= [];
client.clipboard.audio = client.clipboard.audio.concat(audio);
client.clipboard.images = client.clipboard.images.concat(images);
client.clipboard.documents = client.clipboard.documents.concat(documents);
client.clipboard.videos = client.clipboard.video.concat(videos)
let message = 'Files uploaded: ' + uploaded.length;
if (uploaded.length > 0) {
for (let i = 0; i < uploaded.length; i++) {
message += '\n' + uploaded[i].url;
}
}
const cmdFiles = [...client.clipboard.images,...client.clipboard.videos,...client.clipboard.documents, ...client.clipboard.audio].filter(e=>e)
client.sdkHost.sendChatMessage(message, 'text/markdown',
{ audio, images, documents, commands: [
{ 'id': 'run', title: 'Run', args: [null, cmdFiles] }]}, ['no-picture'])
if (event.target) {
event.target.value = ''; // Allow same file to be uploaded multiple times.
}
},
async fileToDataUrl(file) {
/* Encode content of file as https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URLs */
return await new Promise(function (resolve, reject) {
/* Load file into javascript. */
const reader = new FileReader();
reader.onload = (e) => {
resolve(e.target.result);
};
reader.readAsDataURL(file);
});
},
async uploadFiles(files) {
if (files?.length > 0) {
let result = await Promise.all(
Array.from(files).map(async (file) => {
const form = new FormData();
form.append('file', file, file.name || Date.now().toString());
this.imageUrl = await this.fileToDataUrl(file);
/* Send file to CDN. */
const result = await axios.post('/fid', form, {
responseType: 'json',
headers: { 'content-type': 'multipart/form-data' }
});
if (result.data && result.data.length > 0 && result.data[0].ticket && result.data[0].fid) {
return result.data[0];
} else {
console.warn('Failed to upload file', { result, file });
return null;
}
/* break; */
})
);
result = result.filter((r) => r);
return result;
}
return [];
}
};
};
export { chatComponent };
|