| @@ -1,163 +1,20 @@ | ||
| 1 | 1 | jQuery(document).ready(function($) { |
| 2 | 2 | |
| 3 | - // Nonce refresh — v2 (plan-6a68c9). | |
| 4 | - // | |
| 5 | - // The widget no longer relies on a nonce embedded in inline cached HTML. | |
| 6 | - // Before each chat-send / stream-send / upload, we call the REST endpoint | |
| 7 | - // GET /wp-json/mxchat/v1/nonce and use the freshly-issued value. The | |
| 8 | - // endpoint creates the nonce with action `mxchat_chat_send`; the server-side | |
| 9 | - // verifier ALSO still accepts the legacy `mxchat_chat_nonce` action for a | |
| 10 | - // 30-day backwards-compat window so cached pages still in users' browsers | |
| 11 | - // (which carry the legacy inline-localized nonce) keep working. | |
| 12 | - // | |
| 13 | - // Cache: a single module-scoped slot. TTL 12h conservatively (WP nonces are | |
| 14 | - // 24h but we refetch at half-life so a freshly-cached-page user never sees | |
| 15 | - // a borderline-stale nonce). | |
| 16 | - var cachedFreshNonce = null; | |
| 17 | - var cachedFreshNonceFetchedAt = 0; | |
| 18 | - var NONCE_TTL_MS = 12 * 60 * 60 * 1000; | |
| 19 | - var nonceRefreshState = 'idle'; // 'idle' | 'pending' | 'done' | |
| 20 | - var nonceRefreshCallbacks = []; | |
| 21 | - | |
| 22 | - function getRestNonceUrl() { | |
| 23 | - if (typeof mxchatChat !== 'undefined' && mxchatChat.rest_url) { | |
| 24 | - return mxchatChat.rest_url.replace(/\/+$/, '') + '/nonce'; | |
| 25 | - } | |
| 26 | - // Fallback: derive from current origin if mxchatChat.rest_url isn't set. | |
| 27 | - return window.location.origin + '/wp-json/mxchat/v1/nonce'; | |
| 28 | - } | |
| 29 | - | |
| 30 | - function fetchFreshNonceFromRest() { | |
| 31 | - return fetch(getRestNonceUrl(), { | |
| 32 | - credentials: 'same-origin', | |
| 33 | - headers: { 'Accept': 'application/json' } | |
| 34 | - }).then(function (resp) { | |
| 35 | - if (!resp.ok) { | |
| 36 | - throw new Error('REST nonce fetch failed: ' + resp.status); | |
| 37 | - } | |
| 38 | - return resp.json(); | |
| 39 | - }).then(function (data) { | |
| 40 | - if (data && data.nonce) { | |
| 41 | - return data.nonce; | |
| 42 | - } | |
| 43 | - throw new Error('REST nonce response had no nonce field.'); | |
| 44 | - }); | |
| 45 | - } | |
| 46 | - | |
| 47 | - /** | |
| 48 | - * withFreshNonce(cb) — invoke cb() after ensuring mxchatChat.nonce is fresh. | |
| 49 | - * Tries REST endpoint first (cache-bypass design); falls back to the legacy | |
| 50 | - * admin-ajax refresh path if REST is unavailable. Idempotent — concurrent | |
| 51 | - * calls share the same in-flight refresh. | |
| 52 | - */ | |
| 53 | - function withFreshNonce(callback) { | |
| 54 | - if (typeof mxchatChat === 'undefined') { | |
| 3 | + // Nonce refresh is deferred until first user interaction (ensureSession) | |
| 4 | + // to avoid admin-ajax calls on passive page loads. | |
| 5 | + var nonceRefreshed = false; | |
| 6 | + function refreshNonceIfNeeded(callback) { | |
| 7 | + if (nonceRefreshed || typeof mxchatChat === 'undefined' || !mxchatChat.ajax_url) { | |
| 55 | 8 | if (callback) callback(); |
| 56 | 9 | return; |
| 57 | 10 | } |
| 58 | - var now = Date.now(); | |
| 59 | - if (cachedFreshNonce && (now - cachedFreshNonceFetchedAt) < NONCE_TTL_MS) { | |
| 60 | - mxchatChat.nonce = cachedFreshNonce; | |
| 11 | + nonceRefreshed = true; | |
| 12 | + $.post(mxchatChat.ajax_url, { action: 'mxchat_refresh_nonce' }, function(res) { | |
| 13 | + if (res && res.success && res.data && res.data.nonce) { | |
| 14 | + mxchatChat.nonce = res.data.nonce; | |
| 15 | + } | |
| 61 | 16 | if (callback) callback(); |
| 62 | - return; | |
| 63 | - } | |
| 64 | - if (callback) nonceRefreshCallbacks.push(callback); | |
| 65 | - if (nonceRefreshState === 'pending') return; | |
| 66 | - nonceRefreshState = 'pending'; | |
| 67 | - | |
| 68 | - var resolved = function (nonce) { | |
| 69 | - if (nonce) { | |
| 70 | - cachedFreshNonce = nonce; | |
| 71 | - cachedFreshNonceFetchedAt = Date.now(); | |
| 72 | - mxchatChat.nonce = nonce; | |
| 73 | - } | |
| 74 | - nonceRefreshState = 'done'; | |
| 75 | - var pending = nonceRefreshCallbacks; | |
| 76 | - nonceRefreshCallbacks = []; | |
| 77 | - pending.forEach(function (cb) { try { cb(); } catch (e) {} }); | |
| 78 | - }; | |
| 79 | - | |
| 80 | - fetchFreshNonceFromRest() | |
| 81 | - .then(resolved) | |
| 82 | - .catch(function () { | |
| 83 | - // Fallback to the legacy admin-ajax refresh path (issued with the | |
| 84 | - // old action `mxchat_chat_nonce`; the server still accepts both | |
| 85 | - // during the compat window). | |
| 86 | - if (mxchatChat.ajax_url) { | |
| 87 | - $.post(mxchatChat.ajax_url, { action: 'mxchat_refresh_nonce' }) | |
| 88 | - .done(function (res) { | |
| 89 | - if (res && res.success && res.data && res.data.nonce) { | |
| 90 | - resolved(res.data.nonce); | |
| 91 | - return; | |
| 92 | - } | |
| 93 | - resolved(null); | |
| 94 | - }) | |
| 95 | - .fail(function () { resolved(null); }); | |
| 96 | - } else { | |
| 97 | - resolved(null); | |
| 98 | - } | |
| 99 | - }); | |
| 100 | - } | |
| 101 | - | |
| 102 | - // Backwards-compat alias — every existing caller in this file (and any | |
| 103 | - // out-of-tree consumer that hit this internal API) keeps working unchanged. | |
| 104 | - function refreshNonceIfNeeded(callback) { | |
| 105 | - return withFreshNonce(callback); | |
| 106 | - } | |
| 107 | - | |
| 108 | - // Dynamic-settings refresh (plan-32db95). | |
| 109 | - // | |
| 110 | - // Every widget setting ships inline in cached page HTML, so behind a | |
| 111 | - // full-page cache the site owner can't purge (host cache, CDN, the | |
| 112 | - // browser itself) a toggled setting looks broken until the cache turns | |
| 113 | - // over. Same distrust-cached-HTML reasoning as the per-request nonce: | |
| 114 | - // on the FIRST widget open per page load we ask the nonce endpoint for | |
| 115 | - // the current behavior-gate settings (?with_settings=1), merge them over | |
| 116 | - // mxchatChat, and rebuild the header menu. Colors are NOT refreshed — | |
| 117 | - // they're server-inline-styled, so a runtime swap would visibly flash. | |
| 118 | - // On any failure we keep the inline values silently (nonce-fallback | |
| 119 | - // posture). At most one request per page load, only if a widget opens. | |
| 120 | - var dynamicSettingsState = 'idle'; // 'idle' | 'pending' | 'done' | |
| 121 | - | |
| 122 | - function mxchatRefreshDynamicSettings() { | |
| 123 | - if (dynamicSettingsState !== 'idle') return; | |
| 124 | - if (typeof mxchatChat === 'undefined') return; | |
| 125 | - dynamicSettingsState = 'pending'; | |
| 126 | - | |
| 127 | - var applied = function (data) { | |
| 128 | - dynamicSettingsState = 'done'; | |
| 129 | - if (!data) return; // endpoint unavailable — inline values stand. | |
| 130 | - if (data.nonce) { | |
| 131 | - // Seed the nonce cache too: saves the first send's REST | |
| 132 | - // round-trip and keeps us under the endpoint's rate limit. | |
| 133 | - cachedFreshNonce = data.nonce; | |
| 134 | - cachedFreshNonceFetchedAt = Date.now(); | |
| 135 | - mxchatChat.nonce = data.nonce; | |
| 136 | - } | |
| 137 | - if (data.settings && typeof data.settings === 'object') { | |
| 138 | - $.extend(mxchatChat, data.settings); | |
| 139 | - mxchatRebuildHeaderMenus(); | |
| 140 | - } | |
| 141 | - }; | |
| 142 | - | |
| 143 | - fetch(getRestNonceUrl() + '?with_settings=1', { | |
| 144 | - credentials: 'same-origin', | |
| 145 | - headers: { 'Accept': 'application/json' } | |
| 146 | - }).then(function (resp) { | |
| 147 | - if (!resp.ok) throw new Error('settings refresh failed: ' + resp.status); | |
| 148 | - return resp.json(); | |
| 149 | - }).then(applied).catch(function () { | |
| 150 | - // Fallback: legacy admin-ajax refresh path, same as withFreshNonce. | |
| 151 | - if (mxchatChat.ajax_url) { | |
| 152 | - $.post(mxchatChat.ajax_url, { action: 'mxchat_refresh_nonce', with_settings: 1 }) | |
| 153 | - .done(function (res) { | |
| 154 | - applied(res && res.success && res.data ? res.data : null); | |
| 155 | - }) | |
| 156 | - .fail(function () { applied(null); }); | |
| 157 | - } else { | |
| 158 | - applied(null); | |
| 159 | - } | |
| 160 | 17 | }); |
| 161 | 18 | } |
| 162 | 19 | |
| 163 | 20 | // ==================================== |
| @@ -203,10 +60,10 @@ | ||
| 203 | 60 | return Object.keys(this.instances); |
| 204 | 61 | }, |
| 205 | 62 | |
| 206 | 63 | // Session management per bot |
| 207 | - // Returns existing session ID from cookie or localStorage (with in-memory fallback), | |
| 208 | - // or null if none exists. Does NOT create a new session — use ensureSession() for that. | |
| 64 | + // Returns existing session ID from cookie or localStorage, or null if none exists. | |
| 65 | + // Does NOT create a new session — use ensureSession() for that. | |
| 209 | 66 | getChatSession: function(botId) { |
| 210 | 67 | var cookieName = 'mxchat_session_id_' + botId; |
| 211 | 68 | var storageKey = 'mxchat_session_id_' + botId; |
| 212 | 69 | var sessionId = getCookie(cookieName); |
| @@ -215,21 +72,8 @@ | ||
| 215 | 72 | if (!sessionId) { |
| 216 | 73 | try { sessionId = localStorage.getItem(storageKey); } catch (e) {} |
| 217 | 74 | } |
| 218 | 75 | |
| 219 | - // Fallback to in-memory instance when cookie AND localStorage are both blocked | |
| 220 | - // (Safari ITP, strict tracking prevention, cross-origin iframes with partitioned | |
| 221 | - // storage). Without this, ensureSession() can generate and store an ID that | |
| 222 | - // getChatSession() then can't read back, causing null session_ids on send. | |
| 223 | - if (!sessionId && this.instances[botId] && this.instances[botId].sessionId) { | |
| 224 | - sessionId = this.instances[botId].sessionId; | |
| 225 | - } | |
| 226 | - | |
| 227 | - // Guard against stored sentinel values that indicate earlier broken writes. | |
| 228 | - if (sessionId === 'null' || sessionId === 'undefined') { | |
| 229 | - sessionId = null; | |
| 230 | - } | |
| 231 | - | |
| 232 | 76 | // Re-sync cookie from localStorage if cookie was lost |
| 233 | 77 | if (sessionId && !getCookie(cookieName)) { |
| 234 | 78 | document.cookie = cookieName + "=" + sessionId + "; path=/; max-age=86400; SameSite=Lax"; |
| 235 | 79 | } |
| @@ -261,10 +105,12 @@ | ||
| 261 | 105 | // Now that we have a session, do the deferred work |
| 262 | 106 | refreshNonceIfNeeded(); |
| 263 | 107 | trackOriginatingPage(); |
| 264 | 108 | |
| 265 | - // Note: loadChatHistory is handled by showChatContainerForBot with loader UI, | |
| 266 | - // so we do NOT call it here to avoid a race condition. | |
| 109 | + var chatPersistenceEnabled = typeof mxchatChat !== 'undefined' && mxchatChat.chat_persistence_toggle === 'on'; | |
| 110 | + if (chatPersistenceEnabled && mxchatChat.email_collection_enabled !== 'on') { | |
| 111 | + loadChatHistory(botId); | |
| 112 | + } | |
| 267 | 113 | |
| 268 | 114 | return instance.sessionId; |
| 269 | 115 | }, |
| 270 | 116 | |
| @@ -603,102 +449,10 @@ | ||
| 603 | 449 | sendButton.disabled = false; |
| 604 | 450 | sendButton.style.opacity = '1'; |
| 605 | 451 | sendButton.style.pointerEvents = 'auto'; |
| 606 | 452 | } |
| 607 | - // Every completion path re-enables input, so this is the single restore | |
| 608 | - // point for the streaming Stop affordance (no-op when not in stop mode). | |
| 609 | - mxchatRestoreSendButton(botId); | |
| 610 | 453 | } |
| 611 | 454 | |
| 612 | -// --- Streaming Stop control ------------------------------------------------- | |
| 613 | -// One live stream handle per bot instance, so Stop on one widget never aborts | |
| 614 | -// another bot on the same page. | |
| 615 | -var mxchatActiveStreams = {}; | |
| 616 | -// Original send-button markup, captured once per bot the first time the Stop | |
| 617 | -// state is shown (never captured while already in stop mode, so a rapid | |
| 618 | -// stop-then-resend can't save the stop glyph as the "original"). | |
| 619 | -var mxchatSendMarkup = {}; | |
| 620 | - | |
| 621 | -function mxchatShowStopButton(botId) { | |
| 622 | - var btn = getElementDOM(botId, 'send-button'); | |
| 623 | - if (!btn) return; | |
| 624 | - if (!btn.classList.contains('mxchat-stop-mode')) { | |
| 625 | - mxchatSendMarkup[botId] = { | |
| 626 | - html: btn.innerHTML, | |
| 627 | - label: btn.getAttribute('aria-label') | |
| 628 | - }; | |
| 629 | - } | |
| 630 | - | |
| 631 | - // Mirror the send icon's rendered size + color so the stop glyph looks | |
| 632 | - // native, including custom send images/colors and theme overrides. | |
| 633 | - var child = btn.querySelector('svg, img'); | |
| 634 | - var size = 25; | |
| 635 | - var color = ''; | |
| 636 | - if (child) { | |
| 637 | - var rect = child.getBoundingClientRect(); | |
| 638 | - if (rect.width) { | |
| 639 | - size = Math.round(Math.min(rect.width, rect.height)); | |
| 640 | - } | |
| 641 | - var cs = window.getComputedStyle(child); | |
| 642 | - color = (child.tagName.toLowerCase() === 'svg' ? cs.fill : cs.color) || ''; | |
| 643 | - } | |
| 644 | - var stopLabel = (typeof mxchatChat !== 'undefined' && mxchatChat.stop_button_label) || 'Stop response'; | |
| 645 | - btn.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" style="width:' + size + 'px;height:' + size + 'px;' + (color ? 'fill:' + color + ';' : '') + '"><rect x="5" y="5" width="14" height="14" rx="3"></rect></svg>'; | |
| 646 | - // An add-on's DIRECT send-button handler (e.g. mxchat-vision's rebind) can | |
| 647 | - // start a stream synchronously while the originating click is still | |
| 648 | - // bubbling up to our delegated handler. Without this guard, that handler | |
| 649 | - // reads the just-added stop-mode class as a user Stop press and aborts the | |
| 650 | - // brand-new stream — the user's message renders but no reply ever fires | |
| 651 | - // (plan-4bba64 silent message loss). The flag only spans the current event | |
| 652 | - // dispatch: cleared on the next macrotask, long before a real Stop click. | |
| 653 | - btn.__mxchatStopJustShown = true; | |
| 654 | - setTimeout(function () { btn.__mxchatStopJustShown = false; }, 0); | |
| 655 | - btn.classList.add('mxchat-stop-mode'); | |
| 656 | - btn.setAttribute('aria-label', stopLabel); | |
| 657 | - btn.setAttribute('title', stopLabel); | |
| 658 | - // disableChatInput() ran when the turn was sent; the Stop control itself | |
| 659 | - // must stay clickable while the textarea remains disabled. | |
| 660 | - btn.disabled = false; | |
| 661 | - btn.style.opacity = '1'; | |
| 662 | - btn.style.pointerEvents = 'auto'; | |
| 663 | -} | |
| 664 | - | |
| 665 | -function mxchatRestoreSendButton(botId) { | |
| 666 | - var btn = getElementDOM(botId, 'send-button'); | |
| 667 | - var saved = mxchatSendMarkup[botId]; | |
| 668 | - if (!btn || !btn.classList.contains('mxchat-stop-mode') || !saved) return; | |
| 669 | - btn.innerHTML = saved.html; | |
| 670 | - btn.classList.remove('mxchat-stop-mode'); | |
| 671 | - btn.removeAttribute('title'); | |
| 672 | - if (saved.label) { | |
| 673 | - btn.setAttribute('aria-label', saved.label); | |
| 674 | - } | |
| 675 | -} | |
| 676 | - | |
| 677 | -function mxchatStopStreaming(botId) { | |
| 678 | - var entry = mxchatActiveStreams[botId]; | |
| 679 | - if (!entry || !entry.controller) return; | |
| 680 | - entry.aborted = true; | |
| 681 | - try { entry.controller.abort(); } catch (e) {} | |
| 682 | -} | |
| 683 | - | |
| 684 | -// Returns true when a stream rejection came from an intentional Stop click: | |
| 685 | -// keep the partial text as the turn's answer — no error UI, no fallback resend. | |
| 686 | -function mxchatHandleStreamAbort(botId, accumulatedContent, callback) { | |
| 687 | - var entry = mxchatActiveStreams[botId]; | |
| 688 | - if (!entry || !entry.aborted) return false; | |
| 689 | - delete mxchatActiveStreams[botId]; | |
| 690 | - if (!accumulatedContent) { | |
| 691 | - // Stopped before the first chunk: drop the thinking bubble, no orphan message. | |
| 692 | - getElement(botId, 'chat-box').find('.bot-message.temporary-message').remove(); | |
| 693 | - } | |
| 694 | - enableChatInput(botId); // also restores the send icon | |
| 695 | - if (callback) { | |
| 696 | - callback(accumulatedContent || ''); | |
| 697 | - } | |
| 698 | - return true; | |
| 699 | -} | |
| 700 | - | |
| 701 | 455 | // Update your existing sendMessage function |
| 702 | 456 | function sendMessage(botId) { |
| 703 | 457 | botId = botId || 'default'; |
| 704 | 458 | MxChatInstances.ensureSession(botId); |
| @@ -838,15 +592,8 @@ | ||
| 838 | 592 | |
| 839 | 593 | function callMxChat(message, callback, botId) { |
| 840 | 594 | botId = botId || getMxChatBotId(); |
| 841 | 595 | |
| 842 | - // Streaming fallbacks land here: drop any leftover stream handle and | |
| 843 | - // return the button to its send state (no-op for plain non-stream turns). | |
| 844 | - if (mxchatActiveStreams[botId]) { | |
| 845 | - delete mxchatActiveStreams[botId]; | |
| 846 | - } | |
| 847 | - mxchatRestoreSendButton(botId); | |
| 848 | - | |
| 849 | 596 | // Store the message in case we need to retry after session reset |
| 850 | 597 | getElement(botId, 'mxchat-chatbot-wrapper').find('.mxchat-input-holder textarea').data('pending-message', message); |
| 851 | 598 | |
| 852 | 599 | // Get page context if contextual awareness is enabled |
| @@ -854,28 +601,13 @@ | ||
| 854 | 601 | |
| 855 | 602 | // Get instance for session start timestamp (used when persistence is OFF) |
| 856 | 603 | var instance = MxChatInstances.get(botId); |
| 857 | 604 | |
| 858 | - // Guarantee a non-null session_id before the AJAX leaves. ensureSession() is idempotent | |
| 859 | - // and returns the guaranteed-present session id from the in-memory instance even when | |
| 860 | - // cookie/localStorage writes are silently blocked by the browser. | |
| 861 | - var sessionId = MxChatInstances.ensureSession(botId); | |
| 862 | - if (!sessionId || sessionId === 'null' || sessionId === 'undefined') { | |
| 863 | - // Last-resort generation to ensure we never POST a null marker. | |
| 864 | - sessionId = generateSessionId(); | |
| 865 | - MxChatInstances.setChatSession(botId, sessionId); | |
| 866 | - } | |
| 867 | - | |
| 868 | - // Wait for the page-cache nonce refresh to complete before firing the | |
| 869 | - // chat-send AJAX. On cached pages the inline mxchatChat.nonce is stale | |
| 870 | - // until refreshNonceIfNeeded() returns; constructing ajaxData inside the | |
| 871 | - // callback guarantees we read the fresh value. See plan-c5457f. | |
| 872 | - refreshNonceIfNeeded(function() { | |
| 873 | 605 | // Prepare AJAX data |
| 874 | 606 | const ajaxData = { |
| 875 | 607 | action: 'mxchat_handle_chat_request', |
| 876 | 608 | message: message, |
| 877 | - session_id: sessionId, | |
| 609 | + session_id: getChatSession(botId), | |
| 878 | 610 | nonce: mxchatChat.nonce, |
| 879 | 611 | current_page_url: window.location.href, |
| 880 | 612 | current_page_title: document.title, |
| 881 | 613 | bot_id: botId, |
| @@ -881,14 +613,14 @@ | ||
| 881 | 613 | bot_id: botId, |
| 882 | 614 | // Pass session start timestamp so AI context matches what user sees |
| 883 | 615 | session_start_timestamp: instance.sessionStartTimestamp || 0 |
| 884 | 616 | }; |
| 885 | - | |
| 617 | + | |
| 886 | 618 | // Add page context if available |
| 887 | 619 | if (pageContext) { |
| 888 | 620 | ajaxData.page_context = JSON.stringify(pageContext); |
| 889 | 621 | } |
| 890 | - | |
| 622 | + | |
| 891 | 623 | // CHECK FOR VISION FLAGS AND ADD THEM |
| 892 | 624 | if (window.mxchatVisionProcessed) { |
| 893 | 625 | ajaxData.vision_processed = true; |
| 894 | 626 | ajaxData.original_user_message = window.mxchatOriginalMessage || message; |
| @@ -897,9 +629,9 @@ | ||
| 897 | 629 | window.mxchatVisionProcessed = false; |
| 898 | 630 | window.mxchatOriginalMessage = null; |
| 899 | 631 | window.mxchatVisionImagesCount = 0; |
| 900 | 632 | } |
| 901 | - | |
| 633 | + | |
| 902 | 634 | $.ajax({ |
| 903 | 635 | url: mxchatChat.ajax_url, |
| 904 | 636 | type: 'POST', |
| 905 | 637 | dataType: 'json', |
| @@ -1088,9 +820,8 @@ | ||
| 1088 | 820 | |
| 1089 | 821 | replaceLastMessage("bot", errorMessage, '', [], botId); |
| 1090 | 822 | } |
| 1091 | 823 | }); |
| 1092 | - }); // refreshNonceIfNeeded | |
| 1093 | 824 | } |
| 1094 | 825 | |
| 1095 | 826 | function callMxChatStream(message, callback, botId) { |
| 1096 | 827 | botId = botId || getMxChatBotId(); |
| @@ -1109,25 +840,12 @@ | ||
| 1109 | 840 | |
| 1110 | 841 | // Get instance for session start timestamp (used when persistence is OFF) |
| 1111 | 842 | var instance = MxChatInstances.get(botId); |
| 1112 | 843 | |
| 1113 | - // Guarantee a non-null session_id before the fetch. FormData.append() stringifies any | |
| 1114 | - // non-string value via String(), so passing `null` would POST the literal string "null" | |
| 1115 | - // and land in the transcripts table as a ghost session. ensureSession() always returns | |
| 1116 | - // a real string even when cookies/localStorage are blocked. | |
| 1117 | - var streamSessionId = MxChatInstances.ensureSession(botId); | |
| 1118 | - if (!streamSessionId || streamSessionId === 'null' || streamSessionId === 'undefined') { | |
| 1119 | - streamSessionId = generateSessionId(); | |
| 1120 | - MxChatInstances.setChatSession(botId, streamSessionId); | |
| 1121 | - } | |
| 1122 | - | |
| 1123 | - // Wait for the page-cache nonce refresh before constructing formData (which | |
| 1124 | - // captures mxchatChat.nonce by value). Mirrors callMxChat's wrapping. See plan-c5457f. | |
| 1125 | - refreshNonceIfNeeded(function() { | |
| 1126 | 844 | const formData = new FormData(); |
| 1127 | 845 | formData.append('action', 'mxchat_stream_chat'); |
| 1128 | 846 | formData.append('message', message); |
| 1129 | - formData.append('session_id', streamSessionId); | |
| 847 | + formData.append('session_id', getChatSession(botId)); | |
| 1130 | 848 | formData.append('nonce', mxchatChat.nonce); |
| 1131 | 849 | formData.append('current_page_url', window.location.href); |
| 1132 | 850 | formData.append('current_page_title', document.title); |
| 1133 | 851 | formData.append('bot_id', botId); |
| @@ -1153,20 +871,12 @@ | ||
| 1153 | 871 | let accumulatedContent = ''; |
| 1154 | 872 | let testingDataReceived = false; |
| 1155 | 873 | let streamingStarted = false; |
| 1156 | 874 | |
| 1157 | - // Abortable stream: a fresh controller per turn, keyed by bot instance. | |
| 1158 | - // The Stop control (send button swapped in place) aborts both the read | |
| 1159 | - // loop and the underlying request. | |
| 1160 | - var streamControl = { controller: new AbortController(), aborted: false }; | |
| 1161 | - mxchatActiveStreams[botId] = streamControl; | |
| 1162 | - mxchatShowStopButton(botId); | |
| 1163 | - | |
| 1164 | 875 | fetch(mxchatChat.ajax_url, { |
| 1165 | 876 | method: 'POST', |
| 1166 | 877 | body: formData, |
| 1167 | - credentials: 'same-origin', | |
| 1168 | - signal: streamControl.controller.signal | |
| 878 | + credentials: 'same-origin' | |
| 1169 | 879 | }) |
| 1170 | 880 | .then(response => { |
| 1171 | 881 | // Store the response for potential fallback handling |
| 1172 | 882 | const responseClone = response.clone(); |
| @@ -1235,16 +945,8 @@ | ||
| 1235 | 945 | |
| 1236 | 946 | // Re-enable chat input when stream ends with content |
| 1237 | 947 | enableChatInput(botId); |
| 1238 | 948 | |
| 1239 | - // Scroll the user's last message to the top now that the | |
| 1240 | - // bot's full reply has rendered (gives max reading room). | |
| 1241 | - var $chatBoxDone = getElement(botId, 'chat-box'); | |
| 1242 | - var $lastUserMsgDone = $chatBoxDone.find('.user-message').last(); | |
| 1243 | - if ($lastUserMsgDone.length) { | |
| 1244 | - scrollElementToTop($lastUserMsgDone, botId); | |
| 1245 | - } | |
| 1246 | - | |
| 1247 | 949 | if (callback) { |
| 1248 | 950 | callback(accumulatedContent); |
| 1249 | 951 | } |
| 1250 | 952 | return; |
| @@ -1267,16 +969,8 @@ | ||
| 1267 | 969 | |
| 1268 | 970 | // Re-enable chat input after streaming completes |
| 1269 | 971 | enableChatInput(botId); |
| 1270 | 972 | |
| 1271 | - // Scroll the user's last message to the top now | |
| 1272 | - // that the bot's full reply has rendered. | |
| 1273 | - var $chatBoxStreamDone = getElement(botId, 'chat-box'); | |
| 1274 | - var $lastUserMsgStreamDone = $chatBoxStreamDone.find('.user-message').last(); | |
| 1275 | - if ($lastUserMsgStreamDone.length) { | |
| 1276 | - scrollElementToTop($lastUserMsgStreamDone, botId); | |
| 1277 | - } | |
| 1278 | - | |
| 1279 | 973 | if (callback) { |
| 1280 | 974 | callback(accumulatedContent); |
| 1281 | 975 | } |
| 1282 | 976 | return; |
| @@ -1333,9 +1027,8 @@ | ||
| 1333 | 1027 | } |
| 1334 | 1028 | |
| 1335 | 1029 | processStream(); |
| 1336 | 1030 | }).catch(streamError => { |
| 1337 | - if (mxchatHandleStreamAbort(botId, accumulatedContent, callback)) return; | |
| 1338 | 1031 | getElement(botId, 'chat-box').find('.bot-message.temporary-message').remove(); |
| 1339 | 1032 | callMxChat(message, callback, botId); |
| 1340 | 1033 | }); |
| 1341 | 1034 | } |
| @@ -1342,9 +1035,8 @@ | ||
| 1342 | 1035 | |
| 1343 | 1036 | processStream(); |
| 1344 | 1037 | }) |
| 1345 | 1038 | .catch(error => { |
| 1346 | - if (mxchatHandleStreamAbort(botId, accumulatedContent, callback)) return; | |
| 1347 | 1039 | // Check if we have server error data with chat mode |
| 1348 | 1040 | if (error && error.isServerError && error.data) { |
| 1349 | 1041 | // Check for chat mode in error data |
| 1350 | 1042 | if (error.data.chat_mode) { |
| @@ -1357,9 +1049,8 @@ | ||
| 1357 | 1049 | getElement(botId, 'chat-box').find('.bot-message.temporary-message').remove(); |
| 1358 | 1050 | callMxChat(message, callback, botId); |
| 1359 | 1051 | } |
| 1360 | 1052 | }); |
| 1361 | - }); // refreshNonceIfNeeded | |
| 1362 | 1053 | } |
| 1363 | 1054 | |
| 1364 | 1055 | // Helper function to handle non-streaming responses |
| 1365 | 1056 | function handleNonStreamResponse(data, callback, botId) { |
| @@ -1568,17 +1259,8 @@ | ||
| 1568 | 1259 | // Update the event handlers to use the correct function names (using event delegation) |
| 1569 | 1260 | // Use class-based selectors for multi-instance support |
| 1570 | 1261 | $(document).on('click', '.send-button', function() { |
| 1571 | 1262 | var botId = getBotIdFromElement(this); |
| 1572 | - // While a response is streaming the button is a Stop control. | |
| 1573 | - if (this.classList.contains('mxchat-stop-mode')) { | |
| 1574 | - // Same click that just started this stream (an add-on's direct handler | |
| 1575 | - // ran before this delegated one) — not a Stop press. See | |
| 1576 | - // mxchatShowStopButton for the full story (plan-4bba64). | |
| 1577 | - if (this.__mxchatStopJustShown) return; | |
| 1578 | - mxchatStopStreaming(botId); | |
| 1579 | - return; | |
| 1580 | - } | |
| 1581 | 1263 | var modeIndicator = getElementDOM(botId, 'chat-mode-indicator'); |
| 1582 | 1264 | if (!(modeIndicator && modeIndicator.textContent === 'Live Agent')) { |
| 1583 | 1265 | disableChatInput(botId); |
| 1584 | 1266 | } |
| @@ -1597,305 +1279,9 @@ | ||
| 1597 | 1279 | sendMessage(botId); |
| 1598 | 1280 | } |
| 1599 | 1281 | }); |
| 1600 | 1282 | |
| 1601 | -// Builds the list of overflow-menu items for a given bot. | |
| 1602 | -// Adding a future item is one push to this array — do NOT hardcode "only download." | |
| 1603 | -function mxchatGetHeaderMenuItems(botId) { | |
| 1604 | - var items = []; | |
| 1605 | - var settings = (typeof mxchatChat !== 'undefined') ? mxchatChat : {}; | |
| 1606 | - | |
| 1607 | - // The `print_button_*` keys still gate this item for back-compat with | |
| 1608 | - // existing user options. The action is now a transcript download, not print. | |
| 1609 | - if (settings.print_button_enabled === 'on') { | |
| 1610 | - items.push({ | |
| 1611 | - id: 'download-transcript', | |
| 1612 | - label: settings.print_button_label || 'Download Transcript', | |
| 1613 | - icon: '<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>', | |
| 1614 | - action: function() { | |
| 1615 | - mxchatDownloadTranscript(botId); | |
| 1616 | - } | |
| 1617 | - }); | |
| 1618 | - } | |
| 1619 | - | |
| 1620 | - // "Start new chat" — surfaces the EXISTING per-conversation reset | |
| 1621 | - // (MxChatInstances.resetChatSession) so a visitor can start a fresh thread | |
| 1622 | - // without the site owner disabling chat persistence globally. Default OFF; | |
| 1623 | - // gated by the reset_chat_enabled option. plan ac2e81. | |
| 1624 | - if (settings.reset_chat_enabled === 'on') { | |
| 1625 | - items.push({ | |
| 1626 | - id: 'reset-chat', | |
| 1627 | - label: settings.reset_chat_label || 'Start new chat', | |
| 1628 | - icon: '<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="1 4 1 10 7 10"/><path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"/></svg>', | |
| 1629 | - action: function() { | |
| 1630 | - var confirmMsg = settings.reset_chat_confirm || 'Start a new chat? This clears the current conversation.'; | |
| 1631 | - if (window.confirm(confirmMsg)) { | |
| 1632 | - MxChatInstances.resetChatSession(botId); | |
| 1633 | - } | |
| 1634 | - } | |
| 1635 | - }); | |
| 1636 | - } | |
| 1637 | - | |
| 1638 | - return items; | |
| 1639 | -} | |
| 1640 | - | |
| 1641 | -// Builds a clean markdown transcript of the current conversation and triggers | |
| 1642 | -// a file download. Used by the "Download Transcript" menu item. | |
| 1643 | -function mxchatDownloadTranscript(botId) { | |
| 1644 | - var $chatBox = getElement(botId, 'chat-box'); | |
| 1645 | - if (!$chatBox || !$chatBox.length) return; | |
| 1646 | - | |
| 1647 | - var settings = (typeof mxchatChat !== 'undefined') ? mxchatChat : {}; | |
| 1648 | - var headerTitle = settings.print_header_title || 'Chat transcript'; | |
| 1649 | - var now = new Date(); | |
| 1650 | - var stamp = now.toLocaleString(); | |
| 1651 | - | |
| 1652 | - var lines = []; | |
| 1653 | - lines.push('# ' + headerTitle); | |
| 1654 | - lines.push(''); | |
| 1655 | - lines.push('Exported: ' + stamp); | |
| 1656 | - lines.push(''); | |
| 1657 | - lines.push('---'); | |
| 1658 | - lines.push(''); | |
| 1659 | - | |
| 1660 | - $chatBox.find('.user-message, .bot-message, .agent-message').each(function() { | |
| 1661 | - var $msg = $(this); | |
| 1662 | - // Skip thinking placeholders and any in-flight temporary messages. | |
| 1663 | - if ($msg.find('.thinking-dots').length) return; | |
| 1664 | - if ($msg.hasClass('temporary-message')) return; | |
| 1665 | - | |
| 1666 | - var sender; | |
| 1667 | - if ($msg.hasClass('user-message')) sender = 'User'; | |
| 1668 | - else if ($msg.hasClass('agent-message')) sender = 'Live Agent'; | |
| 1669 | - else sender = 'AI Agent'; | |
| 1670 | - | |
| 1671 | - // Strip interactive UI from the cloned message so we get the conversation text. | |
| 1672 | - var $clone = $msg.clone(); | |
| 1673 | - $clone.find('.copy-button, .message-toolbar, .mxchat-copy, button, script, style').remove(); | |
| 1674 | - var text = $clone.text().replace(/ /g, ' ').replace(/[ \t]+\n/g, '\n').replace(/\n{3,}/g, '\n\n').trim(); | |
| 1675 | - if (!text) return; | |
| 1676 | - | |
| 1677 | - lines.push('**' + sender + '**'); | |
| 1678 | - lines.push(''); | |
| 1679 | - lines.push(text); | |
| 1680 | - lines.push(''); | |
| 1681 | - }); | |
| 1682 | - | |
| 1683 | - var content = lines.join('\n'); | |
| 1684 | - var iso = now.toISOString().replace(/[:.]/g, '-').slice(0, 19); | |
| 1685 | - var fname = 'mxchat-transcript-' + iso + '.md'; | |
| 1686 | - var blob = new Blob([content], { type: 'text/markdown;charset=utf-8' }); | |
| 1687 | - var url = URL.createObjectURL(blob); | |
| 1688 | - var a = document.createElement('a'); | |
| 1689 | - a.href = url; | |
| 1690 | - a.download = fname; | |
| 1691 | - a.style.display = 'none'; | |
| 1692 | - document.body.appendChild(a); | |
| 1693 | - a.click(); | |
| 1694 | - setTimeout(function() { | |
| 1695 | - if (a.parentNode) a.parentNode.removeChild(a); | |
| 1696 | - URL.revokeObjectURL(url); | |
| 1697 | - }, 100); | |
| 1698 | -} | |
| 1699 | - | |
| 1700 | -// Reads the bot bubble's actual computed bg+fg and writes them as CSS vars | |
| 1701 | -// on the menu wrap, so the dropdown matches whatever paints the bubble — | |
| 1702 | -// saved options, AI theme CSS, or the mxchat-theme add-on. | |
| 1703 | -function mxchatSyncMenuColors(botId, $wrap) { | |
| 1704 | - if (!$wrap || !$wrap.length) return; | |
| 1705 | - var $bot = $wrap.closest('.mxchat-chatbot-wrapper').find('.bot-message').not('.temporary-message').first(); | |
| 1706 | - if (!$bot.length) return; | |
| 1707 | - var cs = window.getComputedStyle($bot[0]); | |
| 1708 | - if (cs.backgroundColor && cs.backgroundColor !== 'rgba(0, 0, 0, 0)' && cs.backgroundColor !== 'transparent') { | |
| 1709 | - $wrap[0].style.setProperty('--mxchat-menu-bg', cs.backgroundColor); | |
| 1710 | - } | |
| 1711 | - // Bot text color usually lives on a child div, not .bot-message itself. | |
| 1712 | - var $textChild = $bot.find('[style*="color"]').first(); | |
| 1713 | - var fg = ($textChild.length ? window.getComputedStyle($textChild[0]).color : cs.color); | |
| 1714 | - if (fg) $wrap[0].style.setProperty('--mxchat-menu-fg', fg); | |
| 1715 | -} | |
| 1716 | - | |
| 1717 | -// Renders (or re-renders) the item list for one menu wrap. Split out of | |
| 1718 | -// mxchatInitHeaderMenu so the dynamic-settings merge (plan-32db95) can | |
| 1719 | -// rebuild items + trigger visibility WITHOUT re-binding the one-time | |
| 1720 | -// open/close/keyboard wiring. closeMenu is passed in by the init closure; | |
| 1721 | -// a rebuild before init (never happens, but harmless) just skips it. | |
| 1722 | -function mxchatRenderHeaderMenuItems(botId, $wrap, closeMenuFn) { | |
| 1723 | - var $trigger = $wrap.find('.mxchat-menu-trigger'); | |
| 1724 | - var $menu = $wrap.find('.mxchat-header-menu'); | |
| 1725 | - var items = mxchatGetHeaderMenuItems(botId); | |
| 1726 | - | |
| 1727 | - $menu.empty(); | |
| 1728 | - | |
| 1729 | - if (!items.length) { | |
| 1730 | - $trigger.hide(); | |
| 1731 | - $menu.hide(); | |
| 1732 | - return; | |
| 1733 | - } | |
| 1734 | - | |
| 1735 | - // Clear any inline display:none a previous zero-item render left behind — | |
| 1736 | - // open/close visibility is governed by the hidden prop + is-open class. | |
| 1737 | - $trigger.css('display', ''); | |
| 1738 | - $menu.css('display', ''); | |
| 1739 | - | |
| 1740 | - items.forEach(function(item, idx) { | |
| 1741 | - var $btn = $('<button>', { | |
| 1742 | - type: 'button', | |
| 1743 | - 'class': 'mxchat-menu-item', | |
| 1744 | - 'role': 'menuitem', | |
| 1745 | - 'tabindex': '-1', | |
| 1746 | - 'data-menu-id': item.id, | |
| 1747 | - html: '<span class="mxchat-menu-item-icon">' + item.icon + '</span>' + | |
| 1748 | - '<span class="mxchat-menu-item-label"></span>' | |
| 1749 | - }); | |
| 1750 | - $btn.find('.mxchat-menu-item-label').text(item.label); | |
| 1751 | - $btn.on('click', function(e) { | |
| 1752 | - e.preventDefault(); | |
| 1753 | - e.stopPropagation(); | |
| 1754 | - if (closeMenuFn) closeMenuFn(); | |
| 1755 | - try { item.action(); } catch (err) { /* no-op */ } | |
| 1756 | - }); | |
| 1757 | - $menu.append($btn); | |
| 1758 | - }); | |
| 1759 | -} | |
| 1760 | - | |
| 1761 | -// Re-render every menu on the page after a dynamic-settings merge | |
| 1762 | -// (multi-bot: each wrap re-reads its items). An OPEN menu is left alone — | |
| 1763 | -// swapping items under the user mid-interaction yanks focus — and the | |
| 1764 | -// rebuild runs when it closes instead (closeMenu checks the pending flag). | |
| 1765 | -function mxchatRebuildHeaderMenus() { | |
| 1766 | - $('.mxchat-header-menu-wrap').each(function() { | |
| 1767 | - var $wrap = $(this); | |
| 1768 | - var botId = $wrap.data('bot-id'); | |
| 1769 | - if (!botId) return; | |
| 1770 | - if (!$wrap.data('mxchatMenuReady')) { | |
| 1771 | - mxchatInitHeaderMenu(botId); | |
| 1772 | - return; | |
| 1773 | - } | |
| 1774 | - if ($wrap.find('.mxchat-header-menu').hasClass('is-open')) { | |
| 1775 | - $wrap.data('mxchatMenuRebuildPending', true); | |
| 1776 | - return; | |
| 1777 | - } | |
| 1778 | - mxchatRenderHeaderMenuItems(botId, $wrap, $wrap.data('mxchatMenuClose')); | |
| 1779 | - }); | |
| 1780 | -} | |
| 1781 | - | |
| 1782 | -// One-time per-widget init: renders menu items, wires open/close, | |
| 1783 | -// outside-click, Escape, and arrow-key navigation. If no items, hides the | |
| 1784 | -// trigger. Wiring happens even when there are zero items at init, so a | |
| 1785 | -// later dynamic-settings rebuild that adds items has a working trigger. | |
| 1786 | -function mxchatInitHeaderMenu(botId) { | |
| 1787 | - var $wrap = $('.mxchat-header-menu-wrap[data-bot-id="' + botId + '"]').first(); | |
| 1788 | - if (!$wrap.length || $wrap.data('mxchatMenuReady')) return; | |
| 1789 | - | |
| 1790 | - var $trigger = $wrap.find('.mxchat-menu-trigger'); | |
| 1791 | - var $menu = $wrap.find('.mxchat-header-menu'); | |
| 1792 | - | |
| 1793 | - // Initial color sync — covers normal page load. | |
| 1794 | - mxchatSyncMenuColors(botId, $wrap); | |
| 1795 | - | |
| 1796 | - function openMenu() { | |
| 1797 | - // Re-sync each open in case the active theme changed since init. | |
| 1798 | - mxchatSyncMenuColors(botId, $wrap); | |
| 1799 | - $menu.prop('hidden', false).attr('aria-hidden', 'false').addClass('is-open'); | |
| 1800 | - $trigger.attr('aria-expanded', 'true'); | |
| 1801 | - // Focus the first item for keyboard users | |
| 1802 | - setTimeout(function() { | |
| 1803 | - $menu.find('.mxchat-menu-item').first().attr('tabindex', '0').trigger('focus'); | |
| 1804 | - }, 0); | |
| 1805 | - } | |
| 1806 | - function closeMenu(returnFocus) { | |
| 1807 | - $menu.prop('hidden', true).attr('aria-hidden', 'true').removeClass('is-open'); | |
| 1808 | - $trigger.attr('aria-expanded', 'false'); | |
| 1809 | - $menu.find('.mxchat-menu-item').attr('tabindex', '-1'); | |
| 1810 | - if (returnFocus) $trigger.trigger('focus'); | |
| 1811 | - // A dynamic-settings rebuild that arrived while the menu was open | |
| 1812 | - // was deferred (mxchatRebuildHeaderMenus) — run it now. | |
| 1813 | - if ($wrap.data('mxchatMenuRebuildPending')) { | |
| 1814 | - $wrap.removeData('mxchatMenuRebuildPending'); | |
| 1815 | - mxchatRenderHeaderMenuItems(botId, $wrap, closeMenu); | |
| 1816 | - } | |
| 1817 | - } | |
| 1818 | - | |
| 1819 | - // Toggle on trigger click — stop propagation so the .chatbot-top-bar | |
| 1820 | - // click-to-collapse handler does not fire. | |
| 1821 | - $trigger.on('click', function(e) { | |
| 1822 | - e.preventDefault(); | |
| 1823 | - e.stopPropagation(); | |
| 1824 | - if ($menu.hasClass('is-open')) closeMenu(); | |
| 1825 | - else openMenu(); | |
| 1826 | - }); | |
| 1827 | - | |
| 1828 | - // Don't let clicks inside the menu bubble to the top-bar collapse handler. | |
| 1829 | - $menu.on('click', function(e) { | |
| 1830 | - e.stopPropagation(); | |
| 1831 | - }); | |
| 1832 | - | |
| 1833 | - // Outside click closes the menu. | |
| 1834 | - $(document).on('click.mxchatMenu-' + botId, function(e) { | |
| 1835 | - if (!$menu.hasClass('is-open')) return; | |
| 1836 | - if ($wrap.has(e.target).length || $wrap.is(e.target)) return; | |
| 1837 | - closeMenu(); | |
| 1838 | - }); | |
| 1839 | - | |
| 1840 | - // Keyboard: Escape closes and returns focus; arrow keys move focus; Enter activates. | |
| 1841 | - $menu.on('keydown', '.mxchat-menu-item', function(e) { | |
| 1842 | - var $items = $menu.find('.mxchat-menu-item'); | |
| 1843 | - var idx = $items.index(this); | |
| 1844 | - if (e.key === 'Escape') { | |
| 1845 | - e.preventDefault(); | |
| 1846 | - closeMenu(true); | |
| 1847 | - } else if (e.key === 'ArrowDown') { | |
| 1848 | - e.preventDefault(); | |
| 1849 | - var $next = $items.eq((idx + 1) % $items.length); | |
| 1850 | - $items.attr('tabindex', '-1'); | |
| 1851 | - $next.attr('tabindex', '0').trigger('focus'); | |
| 1852 | - } else if (e.key === 'ArrowUp') { | |
| 1853 | - e.preventDefault(); | |
| 1854 | - var $prev = $items.eq((idx - 1 + $items.length) % $items.length); | |
| 1855 | - $items.attr('tabindex', '-1'); | |
| 1856 | - $prev.attr('tabindex', '0').trigger('focus'); | |
| 1857 | - } else if (e.key === 'Enter' || e.key === ' ') { | |
| 1858 | - e.preventDefault(); | |
| 1859 | - $(this).trigger('click'); | |
| 1860 | - } | |
| 1861 | - }); | |
| 1862 | - $trigger.on('keydown', function(e) { | |
| 1863 | - if (e.key === 'Escape' && $menu.hasClass('is-open')) { | |
| 1864 | - e.preventDefault(); | |
| 1865 | - closeMenu(true); | |
| 1866 | - } else if ((e.key === 'ArrowDown' || e.key === 'Enter' || e.key === ' ') && !$menu.hasClass('is-open')) { | |
| 1867 | - e.preventDefault(); | |
| 1868 | - openMenu(); | |
| 1869 | - } | |
| 1870 | - }); | |
| 1871 | - | |
| 1872 | - // Expose closeMenu for out-of-closure re-renders (mxchatRebuildHeaderMenus), | |
| 1873 | - // then do the initial item render. | |
| 1874 | - $wrap.data('mxchatMenuClose', closeMenu); | |
| 1875 | - mxchatRenderHeaderMenuItems(botId, $wrap, closeMenu); | |
| 1876 | - | |
| 1877 | - $wrap.data('mxchatMenuReady', true); | |
| 1878 | -} | |
| 1879 | - | |
| 1880 | -// Initialize header menus for every rendered widget on DOM ready. | |
| 1881 | -$(function() { | |
| 1882 | - $('.mxchat-header-menu-wrap').each(function() { | |
| 1883 | - var botId = $(this).data('bot-id'); | |
| 1884 | - if (botId) mxchatInitHeaderMenu(botId); | |
| 1885 | - }); | |
| 1886 | - | |
| 1887 | - // Embedded (non-floating) widgets are open from the moment the page | |
| 1888 | - // renders — refresh dynamic settings at init (plan-32db95). Floating | |
| 1889 | - // widgets refresh on first launcher open instead. | |
| 1890 | - var hasEmbeddedWidget = $('.mxchat-chatbot-wrapper').filter(function() { | |
| 1891 | - return !$(this).closest('.floating-chatbot').length; | |
| 1892 | - }).length > 0; | |
| 1893 | - if (hasEmbeddedWidget) { | |
| 1894 | - mxchatRefreshDynamicSettings(); | |
| 1895 | - } | |
| 1896 | -}); | |
| 1897 | - | |
| 1283 | + | |
| 1898 | 1284 | function appendMessage(sender, messageText = '', messageHtml = '', images = [], isTemporary = false, botId = 'default') { |
| 1899 | 1285 | try { |
| 1900 | 1286 | // Determine styles based on sender type |
| 1901 | 1287 | let messageClass, bgColor, fontColor; |
| @@ -1987,12 +1373,8 @@ | ||
| 1987 | 1373 | if (lastUserMessage.length) { |
| 1988 | 1374 | scrollElementToTop(lastUserMessage, botId); |
| 1989 | 1375 | } |
| 1990 | 1376 | } |
| 1991 | - | |
| 1992 | - if ((sender === "bot" || sender === "agent") && !isTemporary) { | |
| 1993 | - if (typeof mxchatInitHeaderMenu === 'function') mxchatInitHeaderMenu(botId); | |
| 1994 | - } | |
| 1995 | 1377 | }); |
| 1996 | 1378 | |
| 1997 | 1379 | if (messageText.id) { |
| 1998 | 1380 | var instance = MxChatInstances.get(botId); |
| @@ -2139,12 +1521,8 @@ | ||
| 2139 | 1521 | } |
| 2140 | 1522 | |
| 2141 | 1523 | // Re-enable chat input after response is displayed |
| 2142 | 1524 | enableChatInput(botId); |
| 2143 | - | |
| 2144 | - if (sender === "bot" || sender === "agent") { | |
| 2145 | - if (typeof mxchatInitHeaderMenu === 'function') mxchatInitHeaderMenu(botId); | |
| 2146 | - } | |
| 2147 | 1525 | } else { |
| 2148 | 1526 | appendMessage(sender, responseText, responseHtml, images, false, botId); |
| 2149 | 1527 | // Re-enable chat input after response is displayed |
| 2150 | 1528 | enableChatInput(botId); |
| @@ -2597,14 +1975,13 @@ | ||
| 2597 | 1975 | requestAnimationFrame(smoothScroll); |
| 2598 | 1976 | } |
| 2599 | 1977 | } |
| 2600 | 1978 | |
| 2601 | - function scrollElementToTop(element, botId, topOffset) { | |
| 1979 | + function scrollElementToTop(element, botId) { | |
| 2602 | 1980 | botId = botId || 'default'; |
| 2603 | - topOffset = (typeof topOffset === 'number') ? topOffset : 2; | |
| 2604 | 1981 | var chatBox = getElement(botId, 'chat-box'); |
| 2605 | 1982 | var elementTop = element.position().top + chatBox.scrollTop(); |
| 2606 | - chatBox.animate({ scrollTop: Math.max(0, elementTop - topOffset) }, 500); | |
| 1983 | + chatBox.animate({ scrollTop: elementTop }, 500); | |
| 2607 | 1984 | } |
| 2608 | 1985 | |
| 2609 | 1986 | function showChatWidget(botId) { |
| 2610 | 1987 | botId = botId || 'default'; |
| @@ -2915,19 +2292,9 @@ | ||
| 2915 | 2292 | var content = message.content; |
| 2916 | 2293 | content = content.replace(/\\'/g, "'").replace(/\\"/g, '"'); |
| 2917 | 2294 | content = decodeHTMLEntities(content); |
| 2918 | 2295 | |
| 2919 | - // Skip linkify for messages containing structured HTML | |
| 2920 | - // (forms, product cards, galleries, etc.) to avoid | |
| 2921 | - // markdown formatting corrupting HTML attributes | |
| 2922 | - // (e.g. underscores in name="field_name" becoming <em> tags) | |
| 2923 | - if (content.includes("mxchat-product-card") || | |
| 2924 | - content.includes("mxchat-image-gallery") || | |
| 2925 | - content.includes("mxchat-featured-products") || | |
| 2926 | - content.includes("<form") || | |
| 2927 | - content.includes("<input") || | |
| 2928 | - content.includes("<select") || | |
| 2929 | - content.includes("<textarea")) { | |
| 2296 | + if (content.includes("mxchat-product-card") || content.includes("mxchat-image-gallery")) { | |
| 2930 | 2297 | messageElement.html(content); |
| 2931 | 2298 | } else { |
| 2932 | 2299 | var formattedContent = linkify(content); |
| 2933 | 2300 | messageElement.html(formattedContent); |
| @@ -3041,10 +2408,10 @@ | ||
| 3041 | 2408 | .then(data => { |
| 3042 | 2409 | if (data.success) { |
| 3043 | 2410 | container.style.display = 'none'; |
| 3044 | 2411 | nameElement.textContent = ''; |
| 3045 | - instance.activePdfFile = null; | |
| 3046 | - appendMessage('bot', 'PDF removed.', '', [], false, botId); | |
| 2412 | + activePdfFile = null; | |
| 2413 | + appendMessage('bot', 'PDF removed.'); | |
| 3047 | 2414 | } |
| 3048 | 2415 | }) |
| 3049 | 2416 | .catch(error => { |
| 3050 | 2417 | // Error removing PDF - silently continue |
| @@ -3050,16 +2417,14 @@ | ||
| 3050 | 2417 | // Error removing PDF - silently continue |
| 3051 | 2418 | }); |
| 3052 | 2419 | } |
| 3053 | 2420 | |
| 3054 | - function removeActiveWord(botId) { | |
| 3055 | - botId = botId || 'default'; | |
| 3056 | - var instance = MxChatInstances.get(botId); | |
| 3057 | - const container = getElementDOM(botId, 'active-word-container'); | |
| 3058 | - const nameElement = getElementDOM(botId, 'active-word-name'); | |
| 3059 | - | |
| 3060 | - if (!container || !nameElement || !instance.activeWordFile) return; | |
| 3061 | - | |
| 2421 | + function removeActiveWord() { | |
| 2422 | + const container = document.getElementById('active-word-container'); | |
| 2423 | + const nameElement = document.getElementById('active-word-name'); | |
| 2424 | + | |
| 2425 | + if (!container || !nameElement || !activeWordFile) return; | |
| 2426 | + | |
| 3062 | 2427 | fetch(mxchatChat.ajax_url, { |
| 3063 | 2428 | method: 'POST', |
| 3064 | 2429 | headers: { |
| 3065 | 2430 | 'Content-Type': 'application/x-www-form-urlencoded', |
| @@ -3065,9 +2430,9 @@ | ||
| 3065 | 2430 | 'Content-Type': 'application/x-www-form-urlencoded', |
| 3066 | 2431 | }, |
| 3067 | 2432 | body: new URLSearchParams({ |
| 3068 | 2433 | 'action': 'mxchat_remove_word', |
| 3069 | - 'session_id': getChatSession(botId), | |
| 2434 | + 'session_id': sessionId, | |
| 3070 | 2435 | 'nonce': mxchatChat.nonce |
| 3071 | 2436 | }) |
| 3072 | 2437 | }) |
| 3073 | 2438 | .then(response => response.json()) |
| @@ -3074,10 +2439,10 @@ | ||
| 3074 | 2439 | .then(data => { |
| 3075 | 2440 | if (data.success) { |
| 3076 | 2441 | container.style.display = 'none'; |
| 3077 | 2442 | nameElement.textContent = ''; |
| 3078 | - instance.activeWordFile = null; | |
| 3079 | - appendMessage('bot', 'Word document removed.', '', [], false, botId); | |
| 2443 | + activeWordFile = null; | |
| 2444 | + appendMessage('bot', 'Word document removed.'); | |
| 3080 | 2445 | } |
| 3081 | 2446 | }) |
| 3082 | 2447 | .catch(error => { |
| 3083 | 2448 | // Error removing Word document - silently continue |
| @@ -3238,14 +2603,9 @@ | ||
| 3238 | 2603 | collapseQuickQuestions(botId); |
| 3239 | 2604 | }); |
| 3240 | 2605 | |
| 3241 | 2606 | // Chatbot visibility toggle handlers - use class selector for multi-instance support |
| 3242 | - // Handles click + Enter/Space keypresses for keyboard accessibility (WCAG 2.1 SC 2.1.1). | |
| 3243 | - $(document).on('click keydown', '.floating-chatbot-button', function(e) { | |
| 3244 | - if (e.type === 'keydown') { | |
| 3245 | - if (e.key !== 'Enter' && e.key !== ' ' && e.key !== 'Spacebar') return; | |
| 3246 | - e.preventDefault(); | |
| 3247 | - } | |
| 2607 | + $(document).on('click', '.floating-chatbot-button', function() { | |
| 3248 | 2608 | var botId = getBotIdFromElement(this); |
| 3249 | 2609 | var $chatbot = getElement(botId, 'floating-chatbot'); |
| 3250 | 2610 | var $badge = getElement(botId, 'chat-notification-badge'); |
| 3251 | 2611 | var $preChat = getElement(botId, 'pre-chat-message'); |
| @@ -3250,20 +2610,14 @@ | ||
| 3250 | 2610 | var $badge = getElement(botId, 'chat-notification-badge'); |
| 3251 | 2611 | var $preChat = getElement(botId, 'pre-chat-message'); |
| 3252 | 2612 | |
| 3253 | 2613 | if ($chatbot.hasClass('hidden')) { |
| 3254 | - $chatbot.removeClass('hidden').addClass('visible') | |
| 3255 | - .attr('aria-modal', 'true').attr('role', 'dialog'); | |
| 3256 | - $(this).addClass('hidden').attr('aria-expanded', 'true'); | |
| 2614 | + $chatbot.removeClass('hidden').addClass('visible'); | |
| 2615 | + $(this).addClass('hidden'); | |
| 3257 | 2616 | $badge.hide(); // Hide notification when opening chat |
| 3258 | 2617 | disableScroll(); |
| 3259 | 2618 | $preChat.fadeOut(250); |
| 3260 | 2619 | |
| 3261 | - // First open per page load: re-fetch behavior settings in case | |
| 3262 | - // this page's inline values came from a stale full-page cache | |
| 3263 | - // (plan-32db95). Idempotent — later opens are a no-op. | |
| 3264 | - mxchatRefreshDynamicSettings(); | |
| 3265 | - | |
| 3266 | 2620 | // Load chat history for returning visitors (persistence) |
| 3267 | 2621 | var chatPersistenceEnabled = typeof mxchatChat !== 'undefined' && mxchatChat.chat_persistence_toggle === 'on'; |
| 3268 | 2622 | if (chatPersistenceEnabled) { |
| 3269 | 2623 | MxChatInstances.ensureSession(botId); |
| @@ -3274,60 +2628,25 @@ | ||
| 3274 | 2628 | var instance = MxChatInstances.get(botId); |
| 3275 | 2629 | if (emailBlocker && !instance.emailCheckDone) { |
| 3276 | 2630 | instance.emailCheckDone = true; |
| 3277 | 2631 | resolveEmailState(botId); |
| 3278 | - } else if (!emailBlocker) { | |
| 3279 | - // No email collection — still route through showChatContainerForBot | |
| 3280 | - // so the loader is shown while chat history loads | |
| 3281 | - showChatContainerForBot(botId); | |
| 3282 | 2632 | } |
| 3283 | - | |
| 3284 | - // Move keyboard focus into the message input after the open transition. | |
| 3285 | - setTimeout(function() { | |
| 3286 | - var chatInput = getElementDOM(botId, 'chat-input'); | |
| 3287 | - if (chatInput && !chatInput.disabled) { | |
| 3288 | - try { chatInput.focus({ preventScroll: true }); } catch (err) { chatInput.focus(); } | |
| 3289 | - } | |
| 3290 | - }, 300); | |
| 3291 | 2633 | } else { |
| 3292 | - $chatbot.removeClass('visible').addClass('hidden').removeAttr('aria-modal'); | |
| 3293 | - $(this).removeClass('hidden').attr('aria-expanded', 'false'); | |
| 2634 | + $chatbot.removeClass('visible').addClass('hidden'); | |
| 2635 | + $(this).removeClass('hidden'); | |
| 3294 | 2636 | enableScroll(); |
| 3295 | 2637 | checkPreChatDismissal(botId); |
| 3296 | 2638 | } |
| 3297 | 2639 | }); |
| 3298 | 2640 | |
| 3299 | - // Allow clicking anywhere on the title bar to close the chatbot. | |
| 3300 | - // Returns keyboard focus to the launcher so keyboard users don't get | |
| 3301 | - // stranded at <body> (WCAG SC 2.4.3 Focus Order). :focus-visible is | |
| 3302 | - // heuristic-based so mouse-triggered close won't show a focus ring. | |
| 2641 | + // Allow clicking anywhere on the title bar to close the chatbot | |
| 3303 | 2642 | $(document).on('click', '.chatbot-top-bar', function() { |
| 3304 | 2643 | var botId = getBotIdFromElement(this); |
| 3305 | - getElement(botId, 'floating-chatbot').addClass('hidden').removeClass('visible').removeAttr('aria-modal'); | |
| 3306 | - var $launcher = getElement(botId, 'floating-chatbot-button'); | |
| 3307 | - $launcher.removeClass('hidden').attr('aria-expanded', 'false'); | |
| 2644 | + getElement(botId, 'floating-chatbot').addClass('hidden').removeClass('visible'); | |
| 2645 | + getElement(botId, 'floating-chatbot-button').removeClass('hidden'); | |
| 3308 | 2646 | enableScroll(); |
| 3309 | - try { $launcher.trigger('focus'); } catch (err) { /* no-op */ } | |
| 3310 | 2647 | }); |
| 3311 | 2648 | |
| 3312 | - // Global Escape-key handler — closes any visible chat widget and | |
| 3313 | - // returns focus to its launcher. Standard modal-dismissal pattern; | |
| 3314 | - // pairs with aria-modal="true" set on the widget when it opens. | |
| 3315 | - $(document).on('keydown', function(e) { | |
| 3316 | - if (e.key !== 'Escape' && e.key !== 'Esc') return; | |
| 3317 | - var $visible = $('.floating-chatbot.visible'); | |
| 3318 | - if (!$visible.length) return; | |
| 3319 | - e.preventDefault(); | |
| 3320 | - $visible.each(function() { | |
| 3321 | - var botId = getBotIdFromElement(this); | |
| 3322 | - $(this).addClass('hidden').removeClass('visible').removeAttr('aria-modal'); | |
| 3323 | - var $launcher = getElement(botId, 'floating-chatbot-button'); | |
| 3324 | - $launcher.removeClass('hidden').attr('aria-expanded', 'false'); | |
| 3325 | - try { $launcher.trigger('focus'); } catch (err) { /* no-op */ } | |
| 3326 | - }); | |
| 3327 | - enableScroll(); | |
| 3328 | - }); | |
| 3329 | - | |
| 3330 | 2649 | $(document).on('click', '.close-pre-chat-message', function(e) { |
| 3331 | 2650 | e.stopPropagation(); // Prevent triggering the parent .pre-chat-message click |
| 3332 | 2651 | var botId = getBotIdFromElement(this); |
| 3333 | 2652 | handlePreChatDismissal(botId); |
| @@ -3347,20 +2666,17 @@ | ||
| 3347 | 2666 | var wordInput = getElementDOM(botId, 'word-upload'); |
| 3348 | 2667 | if (wordInput) wordInput.click(); |
| 3349 | 2668 | }); |
| 3350 | 2669 | |
| 3351 | - // PDF file input change handler - delegated, bot-aware (was bound to stale un-suffixed id 'pdf-upload') | |
| 3352 | - $(document).on('change', '.pdf-upload', async function(e) { | |
| 3353 | - var botId = getBotIdFromElement(this); | |
| 3354 | - var instance = MxChatInstances.get(botId); | |
| 3355 | - const file = this.files[0]; | |
| 3356 | - const sessionId = MxChatInstances.ensureSession(botId); | |
| 3357 | - | |
| 2670 | + // PDF file input change handler | |
| 2671 | + addSafeEventListener('pdf-upload', 'change', async function(e) { | |
| 2672 | + const file = e.target.files[0]; | |
| 2673 | + | |
| 3358 | 2674 | if (!file || file.type !== 'application/pdf') { |
| 3359 | 2675 | alert('Please select a valid PDF file.'); |
| 3360 | 2676 | return; |
| 3361 | 2677 | } |
| 3362 | - | |
| 2678 | + | |
| 3363 | 2679 | if (!sessionId) { |
| 3364 | 2680 | alert('Error: No session ID found'); |
| 3365 | 2681 | return; |
| 3366 | 2682 | } |
| @@ -3368,49 +2684,47 @@ | ||
| 3368 | 2684 | if (!mxchatChat || !mxchatChat.ajax_url || !mxchatChat.nonce) { |
| 3369 | 2685 | alert('Error: Ajax configuration missing'); |
| 3370 | 2686 | return; |
| 3371 | 2687 | } |
| 3372 | - | |
| 2688 | + | |
| 3373 | 2689 | // Disable buttons and show loading state |
| 3374 | - const uploadBtn = getElementDOM(botId, 'pdf-upload-btn'); | |
| 3375 | - const sendBtn = getElementDOM(botId, 'send-button'); | |
| 3376 | - if (!uploadBtn) return; | |
| 2690 | + const uploadBtn = document.getElementById('pdf-upload-btn'); | |
| 2691 | + const sendBtn = document.getElementById('send-button'); | |
| 3377 | 2692 | const originalBtnContent = uploadBtn.innerHTML; |
| 3378 | - | |
| 2693 | + | |
| 3379 | 2694 | try { |
| 3380 | - // Wait for page-cache nonce refresh before reading mxchatChat.nonce. See plan-c5457f. | |
| 3381 | - await new Promise(function(resolve) { refreshNonceIfNeeded(resolve); }); | |
| 3382 | 2695 | const formData = new FormData(); |
| 3383 | 2696 | formData.append('action', 'mxchat_upload_pdf'); |
| 3384 | 2697 | formData.append('pdf_file', file); |
| 3385 | 2698 | formData.append('session_id', sessionId); |
| 3386 | 2699 | formData.append('nonce', mxchatChat.nonce); |
| 3387 | - | |
| 2700 | + | |
| 3388 | 2701 | uploadBtn.disabled = true; |
| 3389 | - if (sendBtn) sendBtn.disabled = true; | |
| 2702 | + sendBtn.disabled = true; | |
| 3390 | 2703 | uploadBtn.innerHTML = `<svg class="spinner" viewBox="0 0 50 50"> |
| 3391 | 2704 | <circle cx="25" cy="25" r="20" fill="none" stroke-width="5"></circle> |
| 3392 | 2705 | </svg>`; |
| 3393 | - | |
| 2706 | + | |
| 3394 | 2707 | const response = await fetch(mxchatChat.ajax_url, { |
| 3395 | 2708 | method: 'POST', |
| 3396 | 2709 | body: formData |
| 3397 | 2710 | }); |
| 3398 | - | |
| 2711 | + | |
| 3399 | 2712 | const data = await response.json(); |
| 3400 | - | |
| 2713 | + | |
| 3401 | 2714 | if (data.success) { |
| 3402 | 2715 | // Hide popular questions if they exist |
| 3403 | - if (hasQuickQuestions(botId)) { | |
| 3404 | - collapseQuickQuestions(botId); | |
| 2716 | + const popularQuestionsContainer = document.getElementById('mxchat-popular-questions'); | |
| 2717 | + if (hasQuickQuestions()) { | |
| 2718 | + collapseQuickQuestions(); | |
| 3405 | 2719 | } |
| 3406 | - | |
| 2720 | + | |
| 3407 | 2721 | // Show the active PDF name |
| 3408 | - showActivePdf(data.data.filename, botId); | |
| 3409 | - | |
| 3410 | - appendMessage('bot', data.data.message, '', [], false, botId); | |
| 3411 | - scrollToBottom(botId); | |
| 3412 | - instance.activePdfFile = data.data.filename; | |
| 2722 | + showActivePdf(data.data.filename); | |
| 2723 | + | |
| 2724 | + appendMessage('bot', data.data.message); | |
| 2725 | + scrollToBottom(); | |
| 2726 | + activePdfFile = data.data.filename; | |
| 3413 | 2727 | } else { |
| 3414 | 2728 | alert('Failed to upload PDF. Please try again.'); |
| 3415 | 2729 | } |
| 3416 | 2730 | } catch (error) { |
| @@ -3416,76 +2730,66 @@ | ||
| 3416 | 2730 | } catch (error) { |
| 3417 | 2731 | alert('Error uploading file. Please try again.'); |
| 3418 | 2732 | } finally { |
| 3419 | 2733 | uploadBtn.disabled = false; |
| 3420 | - if (sendBtn) sendBtn.disabled = false; | |
| 2734 | + sendBtn.disabled = false; | |
| 3421 | 2735 | uploadBtn.innerHTML = originalBtnContent; |
| 3422 | 2736 | this.value = ''; // Reset file input |
| 3423 | 2737 | } |
| 3424 | 2738 | }); |
| 3425 | 2739 | |
| 3426 | - // Word file input change handler - delegated, bot-aware (was bound to stale un-suffixed id 'word-upload') | |
| 3427 | - $(document).on('change', '.word-upload', async function(e) { | |
| 3428 | - var botId = getBotIdFromElement(this); | |
| 3429 | - var instance = MxChatInstances.get(botId); | |
| 3430 | - const file = this.files[0]; | |
| 3431 | - const sessionId = MxChatInstances.ensureSession(botId); | |
| 3432 | - | |
| 2740 | + // Word file input change handler | |
| 2741 | + addSafeEventListener('word-upload', 'change', async function(e) { | |
| 2742 | + const file = e.target.files[0]; | |
| 2743 | + | |
| 3433 | 2744 | if (!file || file.type !== 'application/vnd.openxmlformats-officedocument.wordprocessingml.document') { |
| 3434 | 2745 | alert('Please select a valid Word document (.docx).'); |
| 3435 | 2746 | return; |
| 3436 | 2747 | } |
| 3437 | - | |
| 2748 | + | |
| 3438 | 2749 | if (!sessionId) { |
| 3439 | 2750 | alert('Error: No session ID found'); |
| 3440 | 2751 | return; |
| 3441 | 2752 | } |
| 3442 | 2753 | |
| 3443 | - if (!mxchatChat || !mxchatChat.ajax_url || !mxchatChat.nonce) { | |
| 3444 | - alert('Error: Ajax configuration missing'); | |
| 3445 | - return; | |
| 3446 | - } | |
| 3447 | - | |
| 3448 | 2754 | // Disable buttons and show loading state |
| 3449 | - const uploadBtn = getElementDOM(botId, 'word-upload-btn'); | |
| 3450 | - const sendBtn = getElementDOM(botId, 'send-button'); | |
| 3451 | - if (!uploadBtn) return; | |
| 2755 | + const uploadBtn = document.getElementById('word-upload-btn'); | |
| 2756 | + const sendBtn = document.getElementById('send-button'); | |
| 3452 | 2757 | const originalBtnContent = uploadBtn.innerHTML; |
| 3453 | - | |
| 2758 | + | |
| 3454 | 2759 | try { |
| 3455 | - // Wait for page-cache nonce refresh before reading mxchatChat.nonce. See plan-c5457f. | |
| 3456 | - await new Promise(function(resolve) { refreshNonceIfNeeded(resolve); }); | |
| 3457 | 2760 | const formData = new FormData(); |
| 3458 | 2761 | formData.append('action', 'mxchat_upload_word'); |
| 3459 | 2762 | formData.append('word_file', file); |
| 3460 | 2763 | formData.append('session_id', sessionId); |
| 3461 | 2764 | formData.append('nonce', mxchatChat.nonce); |
| 3462 | - | |
| 2765 | + | |
| 3463 | 2766 | uploadBtn.disabled = true; |
| 3464 | - if (sendBtn) sendBtn.disabled = true; | |
| 2767 | + sendBtn.disabled = true; | |
| 3465 | 2768 | uploadBtn.innerHTML = `<svg class="spinner" viewBox="0 0 50 50"> |
| 3466 | 2769 | <circle cx="25" cy="25" r="20" fill="none" stroke-width="5"></circle> |
| 3467 | 2770 | </svg>`; |
| 3468 | - | |
| 2771 | + | |
| 3469 | 2772 | const response = await fetch(mxchatChat.ajax_url, { |
| 3470 | 2773 | method: 'POST', |
| 3471 | 2774 | body: formData |
| 3472 | 2775 | }); |
| 3473 | - | |
| 2776 | + | |
| 3474 | 2777 | const data = await response.json(); |
| 3475 | - | |
| 2778 | + | |
| 3476 | 2779 | if (data.success) { |
| 3477 | 2780 | // Hide popular questions if they exist |
| 3478 | - if (hasQuickQuestions(botId)) { | |
| 3479 | - collapseQuickQuestions(botId); | |
| 2781 | + const popularQuestionsContainer = document.getElementById('mxchat-popular-questions'); | |
| 2782 | + if (hasQuickQuestions()) { | |
| 2783 | + collapseQuickQuestions(); | |
| 3480 | 2784 | } |
| 3481 | - | |
| 2785 | + | |
| 3482 | 2786 | // Show the active Word document name |
| 3483 | - showActiveWord(data.data.filename, botId); | |
| 3484 | - | |
| 3485 | - appendMessage('bot', data.data.message, '', [], false, botId); | |
| 3486 | - scrollToBottom(botId); | |
| 3487 | - instance.activeWordFile = data.data.filename; | |
| 2787 | + showActiveWord(data.data.filename); | |
| 2788 | + | |
| 2789 | + appendMessage('bot', data.data.message); | |
| 2790 | + scrollToBottom(); | |
| 2791 | + activeWordFile = data.data.filename; | |
| 3488 | 2792 | } else { |
| 3489 | 2793 | alert('Failed to upload Word document. Please try again.'); |
| 3490 | 2794 | } |
| 3491 | 2795 | } catch (error) { |
| @@ -3491,25 +2795,25 @@ | ||
| 3491 | 2795 | } catch (error) { |
| 3492 | 2796 | alert('Error uploading file. Please try again.'); |
| 3493 | 2797 | } finally { |
| 3494 | 2798 | uploadBtn.disabled = false; |
| 3495 | - if (sendBtn) sendBtn.disabled = false; | |
| 2799 | + sendBtn.disabled = false; | |
| 3496 | 2800 | uploadBtn.innerHTML = originalBtnContent; |
| 3497 | 2801 | this.value = ''; // Reset file input |
| 3498 | 2802 | } |
| 3499 | 2803 | }); |
| 3500 | 2804 | |
| 3501 | - // Remove button click handlers - delegated, bot-aware (were bound to stale un-suffixed ids) | |
| 3502 | - $(document).on('click', '.remove-pdf-btn', function(e) { | |
| 2805 | + // Remove button click handlers | |
| 2806 | + document.getElementById('remove-pdf-btn')?.addEventListener('click', function(e) { | |
| 3503 | 2807 | e.preventDefault(); |
| 3504 | 2808 | e.stopPropagation(); |
| 3505 | - removeActivePdf(getBotIdFromElement(this)); | |
| 2809 | + removeActivePdf(); | |
| 3506 | 2810 | }); |
| 3507 | - | |
| 3508 | - $(document).on('click', '.remove-word-btn', function(e) { | |
| 2811 | + | |
| 2812 | + document.getElementById('remove-word-btn')?.addEventListener('click', function(e) { | |
| 3509 | 2813 | e.preventDefault(); |
| 3510 | 2814 | e.stopPropagation(); |
| 3511 | - removeActiveWord(getBotIdFromElement(this)); | |
| 2815 | + removeActiveWord(); | |
| 3512 | 2816 | }); |
| 3513 | 2817 | |
| 3514 | 2818 | // Window resize handlers |
| 3515 | 2819 | $(window).on('resize orientationchange', function() { |
| @@ -3547,59 +2851,8 @@ | ||
| 3547 | 2851 | }); |
| 3548 | 2852 | |
| 3549 | 2853 | |
| 3550 | 2854 | // ==================================== |
| 3551 | -// INIT LOADER & CHAT CONTAINER HELPERS | |
| 3552 | -// ==================================== | |
| 3553 | -// These must be outside the email collection block so they're always available | |
| 3554 | -// (used by persistence loading even when email collection is off) | |
| 3555 | - | |
| 3556 | -function showInitLoader(botId) { | |
| 3557 | - var loader = getElementDOM(botId, 'mxchat-init-loader'); | |
| 3558 | - if (loader) loader.style.display = 'flex'; | |
| 3559 | -} | |
| 3560 | - | |
| 3561 | -function hideInitLoader(botId) { | |
| 3562 | - var loader = getElementDOM(botId, 'mxchat-init-loader'); | |
| 3563 | - if (loader) loader.style.display = 'none'; | |
| 3564 | -} | |
| 3565 | - | |
| 3566 | -function showEmailFormForBot(botId) { | |
| 3567 | - hideInitLoader(botId); | |
| 3568 | - var emailBlocker = getElementDOM(botId, 'email-blocker'); | |
| 3569 | - var chatContainer = getElementDOM(botId, 'chat-container'); | |
| 3570 | - if (emailBlocker) emailBlocker.style.display = 'flex'; | |
| 3571 | - if (chatContainer) chatContainer.style.display = 'none'; | |
| 3572 | -} | |
| 3573 | - | |
| 3574 | -function showChatContainerForBot(botId) { | |
| 3575 | - var emailBlocker = getElementDOM(botId, 'email-blocker'); | |
| 3576 | - var chatContainer = getElementDOM(botId, 'chat-container'); | |
| 3577 | - if (emailBlocker) emailBlocker.style.display = 'none'; | |
| 3578 | - | |
| 3579 | - var instance = MxChatInstances.get(botId); | |
| 3580 | - var chatPersistenceEnabled = mxchatChat.chat_persistence_toggle === 'on'; | |
| 3581 | - | |
| 3582 | - // If persistence is on and history hasn't loaded yet, show loader | |
| 3583 | - // while history loads to prevent flash of empty chat | |
| 3584 | - if (chatPersistenceEnabled && !instance.chatHistoryLoaded) { | |
| 3585 | - if (chatContainer) chatContainer.style.display = 'none'; | |
| 3586 | - showInitLoader(botId); | |
| 3587 | - loadChatHistory(botId, function() { | |
| 3588 | - hideInitLoader(botId); | |
| 3589 | - if (chatContainer) chatContainer.style.display = 'flex'; | |
| 3590 | - scrollToBottom(botId, true); | |
| 3591 | - }); | |
| 3592 | - } else { | |
| 3593 | - hideInitLoader(botId); | |
| 3594 | - if (chatContainer) chatContainer.style.display = 'flex'; | |
| 3595 | - if (typeof loadChatHistory === 'function') { | |
| 3596 | - loadChatHistory(botId); | |
| 3597 | - } | |
| 3598 | - } | |
| 3599 | -} | |
| 3600 | - | |
| 3601 | -// ==================================== | |
| 3602 | 2855 | // EMAIL COLLECTION SETUP - MULTI-INSTANCE VERSION |
| 3603 | 2856 | // ==================================== |
| 3604 | 2857 | // Only run email collection setup if it's enabled |
| 3605 | 2858 | if (mxchatChat && mxchatChat.email_collection_enabled === 'on') { |
| @@ -3635,8 +2888,40 @@ | ||
| 3635 | 2888 | `; |
| 3636 | 2889 | document.head.appendChild(style); |
| 3637 | 2890 | } |
| 3638 | 2891 | |
| 2892 | + // Helper functions for email collection (multi-instance aware) | |
| 2893 | + function showEmailFormForBot(botId) { | |
| 2894 | + var emailBlocker = getElementDOM(botId, 'email-blocker'); | |
| 2895 | + var chatContainer = getElementDOM(botId, 'chat-container'); | |
| 2896 | + if (emailBlocker) emailBlocker.style.display = 'flex'; | |
| 2897 | + if (chatContainer) chatContainer.style.display = 'none'; | |
| 2898 | + } | |
| 2899 | + | |
| 2900 | + function showChatContainerForBot(botId) { | |
| 2901 | + var emailBlocker = getElementDOM(botId, 'email-blocker'); | |
| 2902 | + var chatContainer = getElementDOM(botId, 'chat-container'); | |
| 2903 | + if (emailBlocker) emailBlocker.style.display = 'none'; | |
| 2904 | + | |
| 2905 | + var instance = MxChatInstances.get(botId); | |
| 2906 | + var chatPersistenceEnabled = mxchatChat.chat_persistence_toggle === 'on'; | |
| 2907 | + | |
| 2908 | + // If persistence is on and history hasn't loaded yet, keep container | |
| 2909 | + // hidden until history loads to prevent flash of empty chat | |
| 2910 | + if (chatPersistenceEnabled && !instance.chatHistoryLoaded) { | |
| 2911 | + if (chatContainer) chatContainer.style.display = 'none'; | |
| 2912 | + loadChatHistory(botId, function() { | |
| 2913 | + if (chatContainer) chatContainer.style.display = 'flex'; | |
| 2914 | + scrollToBottom(botId, true); | |
| 2915 | + }); | |
| 2916 | + } else { | |
| 2917 | + if (chatContainer) chatContainer.style.display = 'flex'; | |
| 2918 | + if (typeof loadChatHistory === 'function') { | |
| 2919 | + loadChatHistory(botId); | |
| 2920 | + } | |
| 2921 | + } | |
| 2922 | + } | |
| 2923 | + | |
| 3639 | 2924 | function isValidEmailAddress(email) { |
| 3640 | 2925 | const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; |
| 3641 | 2926 | return emailRegex.test(email.trim()) && email.length <= 254; |
| 3642 | 2927 | } |
| @@ -3774,14 +3059,13 @@ | ||
| 3774 | 3059 | |
| 3775 | 3060 | function checkSessionAndEmailForBot(botId) { |
| 3776 | 3061 | const sessionId = MxChatInstances.ensureSession(botId); |
| 3777 | 3062 | |
| 3778 | - // Hide both panels while we check — show loader instead | |
| 3063 | + // Hide both panels while we check — prevents flash of wrong state | |
| 3779 | 3064 | var emailBlocker = getElementDOM(botId, 'email-blocker'); |
| 3780 | 3065 | var chatContainer = getElementDOM(botId, 'chat-container'); |
| 3781 | 3066 | if (emailBlocker) emailBlocker.style.display = 'none'; |
| 3782 | 3067 | if (chatContainer) chatContainer.style.display = 'none'; |
| 3783 | - showInitLoader(botId); | |
| 3784 | 3068 | |
| 3785 | 3069 | fetch(mxchatChat.ajax_url, { |
| 3786 | 3070 | method: 'POST', |
| 3787 | 3071 | headers: { |
| @@ -3961,8 +3245,9 @@ | ||
| 3961 | 3245 | $('.mxchat-chatbot-wrapper').each(function() { |
| 3962 | 3246 | var botId = $(this).data('bot-id') || 'default'; |
| 3963 | 3247 | var emailBlocker = getElementDOM(botId, 'email-blocker'); |
| 3964 | 3248 | |
| 3249 | + // Only check if email blocker exists for this bot | |
| 3965 | 3250 | if (emailBlocker) { |
| 3966 | 3251 | if (isEmbeddedBot(botId)) { |
| 3967 | 3252 | // Embedded bots are always visible — check now |
| 3968 | 3253 | resolveEmailState(botId); |
| @@ -3967,15 +3252,8 @@ | ||
| 3967 | 3252 | // Embedded bots are always visible — check now |
| 3968 | 3253 | resolveEmailState(botId); |
| 3969 | 3254 | } |
| 3970 | 3255 | // Floating bots: handled in the widget open handler |
| 3971 | - } else if (isEmbeddedBot(botId)) { | |
| 3972 | - // Embedded bot, no email collection — load history with loader | |
| 3973 | - var chatPersistenceEnabled = typeof mxchatChat !== 'undefined' && mxchatChat.chat_persistence_toggle === 'on'; | |
| 3974 | - if (chatPersistenceEnabled) { | |
| 3975 | - MxChatInstances.ensureSession(botId); | |
| 3976 | - showChatContainerForBot(botId); | |
| 3977 | - } | |
| 3978 | 3256 | } |
| 3979 | 3257 | }); |
| 3980 | 3258 | } |
| 3981 | 3259 | |
| @@ -4000,10 +3278,8 @@ | ||
| 4000 | 3278 | var instance = MxChatInstances.get(botId); |
| 4001 | 3279 | if (emailBlocker && !instance.emailCheckDone) { |
| 4002 | 3280 | instance.emailCheckDone = true; |
| 4003 | 3281 | resolveEmailState(botId); |
| 4004 | - } else if (!emailBlocker) { | |
| 4005 | - showChatContainerForBot(botId); | |
| 4006 | 3282 | } |
| 4007 | 3283 | } |
| 4008 | 3284 | }); |
| 4009 | 3285 | |
| @@ -4203,312 +3479,6 @@ | ||
| 4203 | 3479 | }, 2000); |
| 4204 | 3480 | }); |
| 4205 | 3481 | } |
| 4206 | 3482 | } |
| 4207 | -}); | |
| 4208 | - | |
| 4209 | -// ============================================================================ | |
| 4210 | -// SATISFACTION RATING (v3.2.6) | |
| 4211 | -// ============================================================================ | |
| 4212 | -// Per-session 👍/👎 prompt that appears in the chat-box after 60s of user | |
| 4213 | -// inactivity following a bot reply. One prompt per session, deduped via | |
| 4214 | -// localStorage. Runs ONLY when the satisfaction_rating_enabled option is on — | |
| 4215 | -// the option (default off) is authoritative. | |
| 4216 | -jQuery(function($) { | |
| 4217 | - if (typeof mxchatChat === 'undefined') return; | |
| 4218 | - // wp_localize_script stringifies scalars: a PHP boolean false arrives as | |
| 4219 | - // '' and true as '1', so this must be an explicit-enable allowlist — the | |
| 4220 | - // old "disabled when exactly false/'off'" check let '' through and the | |
| 4221 | - // bubble rendered on sites with the option off/unset (plan-4bba64). PHP | |
| 4222 | - // now emits 'on'/'off' strings; true/'1'/1 keep cached pre-fix HTML | |
| 4223 | - // (boolean-true localizations) working. | |
| 4224 | - // NOTE (plan-32db95): this gate reads the INLINE value at DOM ready and is | |
| 4225 | - // deliberately NOT re-evaluated after the widget's dynamic-settings refresh | |
| 4226 | - // merges fresh values over mxchatChat (that merge fires on first widget | |
| 4227 | - // open, after this module has already decided). Re-evaluating would mean | |
| 4228 | - // restructuring the whole module to late-bind its listeners — not worth it | |
| 4229 | - // for a prompt that is at worst stale for one page load on a cached page. | |
| 4230 | - var sre = mxchatChat.satisfaction_rating_enabled; | |
| 4231 | - if (sre !== 'on' && sre !== true && sre !== '1' && sre !== 1) return; | |
| 4232 | - | |
| 4233 | - // wp_localize_script stringifies ints, so accept both number and numeric string. | |
| 4234 | - var idleRaw = mxchatChat.satisfaction_rating_idle_seconds; | |
| 4235 | - var idleSeconds = (typeof idleRaw === 'number') ? idleRaw : parseInt(idleRaw, 10); | |
| 4236 | - if (!isFinite(idleSeconds)) idleSeconds = 60; | |
| 4237 | - if (idleSeconds < 5) idleSeconds = 5; | |
| 4238 | - if (idleSeconds > 600) idleSeconds = 600; | |
| 4239 | - var IDLE_MS = idleSeconds * 1000; | |
| 4240 | - var MIN_BOT_REPLIES = 2; | |
| 4241 | - var ratingState = {}; | |
| 4242 | - | |
| 4243 | - function getState(botId) { | |
| 4244 | - if (!ratingState[botId]) { | |
| 4245 | - ratingState[botId] = { idleTimer: null, botReplies: 0, promptShown: false, dismissed: false }; | |
| 4246 | - } | |
| 4247 | - return ratingState[botId]; | |
| 4248 | - } | |
| 4249 | - | |
| 4250 | - function getSessionId(botId) { | |
| 4251 | - if (typeof MxChatInstances !== 'undefined' && MxChatInstances.getChatSession) { | |
| 4252 | - return MxChatInstances.getChatSession(botId); | |
| 4253 | - } | |
| 4254 | - return null; | |
| 4255 | - } | |
| 4256 | - | |
| 4257 | - function isAlreadyRated(sessionId) { | |
| 4258 | - if (!sessionId) return false; | |
| 4259 | - try { return localStorage.getItem('mxchat_rated:' + sessionId) === '1'; } catch (e) { return false; } | |
| 4260 | - } | |
| 4261 | - | |
| 4262 | - function markRated(sessionId) { | |
| 4263 | - if (!sessionId) return; | |
| 4264 | - try { localStorage.setItem('mxchat_rated:' + sessionId, '1'); } catch (e) {} | |
| 4265 | - } | |
| 4266 | - | |
| 4267 | - function esc(s) { | |
| 4268 | - return String(s == null ? '' : s) | |
| 4269 | - .replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>') | |
| 4270 | - .replace(/"/g, '"').replace(/'/g, '''); | |
| 4271 | - } | |
| 4272 | - | |
| 4273 | - // Mirror shouldSkipInlineColors so rating bubbles defer to AI-theme CSS. | |
| 4274 | - function ratingSkipInlineColors(botId) { | |
| 4275 | - if (mxchatChat.skip_inline_colors) return true; | |
| 4276 | - var botAssignments = mxchatChat.bot_theme_assignments || {}; | |
| 4277 | - return botAssignments.hasOwnProperty(botId); | |
| 4278 | - } | |
| 4279 | - | |
| 4280 | - function botBubbleStyleAttr(botId) { | |
| 4281 | - if (ratingSkipInlineColors(botId)) return ''; | |
| 4282 | - var bg = mxchatChat.bot_message_bg_color; | |
| 4283 | - var fg = mxchatChat.bot_message_font_color; | |
| 4284 | - if (!bg && !fg) return ''; | |
| 4285 | - return ' style="background-color: ' + esc(bg || '') + '; color: ' + esc(fg || '') + ';"'; | |
| 4286 | - } | |
| 4287 | - | |
| 4288 | - // Reads the rating bubble's actual computed fg+bg (whatever paints it — | |
| 4289 | - // the inline color pickers OR the mxchat-theme AI customizer's injected CSS) | |
| 4290 | - // and paints the filled "Send" pill so it fills with the bot font color and | |
| 4291 | - // labels in the bubble bg. Mirrors mxchatSyncMenuColors(~:1512) for the read. | |
| 4292 | - // We paint the submit button DIRECTLY (inline longhand) rather than relying | |
| 4293 | - // on the CSS rule's var()s: Chromium resolves an INHERITED custom property | |
| 4294 | - // unreliably inside a descendant's `background`, so a bubble-level var would | |
| 4295 | - // silently fall back to the literal (white-block bug all over again). Inline | |
| 4296 | - // longhand always wins. Same transparent-guard as the menu so we never paint | |
| 4297 | - // a see-through value — in that case the CSS literal fallbacks keep it legible. | |
| 4298 | - function syncRatingBubbleColors(botId) { | |
| 4299 | - var $chatBox = getChatBoxByBotId(botId); | |
| 4300 | - if (!$chatBox || !$chatBox.length) return; | |
| 4301 | - var bubbleEl = $chatBox.find('.mxchat-rating-bot-bubble').last()[0]; | |
| 4302 | - if (!bubbleEl) return; | |
| 4303 | - var cs = window.getComputedStyle(bubbleEl); | |
| 4304 | - var fg = cs.color; | |
| 4305 | - var bg = cs.backgroundColor; | |
| 4306 | - var hasFg = fg && fg !== 'rgba(0, 0, 0, 0)' && fg !== 'transparent'; | |
| 4307 | - var hasBg = bg && bg !== 'rgba(0, 0, 0, 0)' && bg !== 'transparent'; | |
| 4308 | - // Expose on the bubble too, for any inheriting styles / future use. | |
| 4309 | - if (hasFg) bubbleEl.style.setProperty('--mxchat-bot-fg', fg); | |
| 4310 | - if (hasBg) bubbleEl.style.setProperty('--mxchat-bot-bg', bg); | |
| 4311 | - // Paint the Send pill directly — the part that actually fixes the bug. | |
| 4312 | - var submitEl = bubbleEl.querySelector('.mxchat-rating-submit'); | |
| 4313 | - if (submitEl) { | |
| 4314 | - if (hasFg) submitEl.style.backgroundColor = fg; // fill = bot font color | |
| 4315 | - if (hasBg) submitEl.style.color = bg; // label = bubble background | |
| 4316 | - } | |
| 4317 | - } | |
| 4318 | - | |
| 4319 | - function copy(key) { | |
| 4320 | - var c = mxchatChat.satisfaction_rating_copy || {}; | |
| 4321 | - var d = { | |
| 4322 | - question: 'Was this helpful?', | |
| 4323 | - helpful: 'Helpful', | |
| 4324 | - not_helpful: 'Not helpful', | |
| 4325 | - dismiss: 'Dismiss', | |
| 4326 | - thanks: 'Thanks! Anything we should improve? (optional)', | |
| 4327 | - placeholder: 'Tell us what could be better…', | |
| 4328 | - send: 'Send', | |
| 4329 | - skip: 'Skip', | |
| 4330 | - saved: 'Thanks for the feedback.' | |
| 4331 | - }; | |
| 4332 | - return c[key] || d[key]; | |
| 4333 | - } | |
| 4334 | - | |
| 4335 | - function thumbUpSvg() { | |
| 4336 | - return '<svg viewBox="0 0 24 24" width="18" height="18" fill="currentColor" aria-hidden="true"><path d="M7.493 18.75c-.425 0-.82-.236-.975-.632A7.48 7.48 0 0 1 6 15.375c0-1.75.599-3.358 1.602-4.634.151-.192.373-.309.6-.397.473-.183.89-.514 1.212-.924a9.042 9.042 0 0 1 2.861-2.4c.723-.384 1.35-.956 1.653-1.715a4.498 4.498 0 0 0 .322-1.672V2.75A.75.75 0 0 1 15 2a2.25 2.25 0 0 1 2.25 2.25c0 1.152-.26 2.243-.723 3.218-.266.558.107 1.282.725 1.282h3.126c1.026 0 1.945.694 2.054 1.715.045.422.068.85.068 1.285a11.95 11.95 0 0 1-2.649 7.521c-.388.482-.987.729-1.605.729H14.23c-.483 0-.964-.078-1.423-.23l-3.114-1.04a4.501 4.501 0 0 0-1.423-.23h-.777Z"/><path d="M2.331 10.977a11.969 11.969 0 0 0-.831 4.398 12 12 0 0 0 .52 3.507c.26.85 1.084 1.368 1.973 1.368H4.9c.445 0 .72-.498.523-.898a8.963 8.963 0 0 1-.924-3.977c0-1.708.476-3.305 1.302-4.666.245-.403-.028-.959-.5-.959H4.25c-.832 0-1.612.453-1.918 1.227Z"/></svg>'; | |
| 4337 | - } | |
| 4338 | - function thumbDownSvg() { | |
| 4339 | - return '<svg viewBox="0 0 24 24" width="18" height="18" fill="currentColor" aria-hidden="true"><path d="M15.73 5.25h1.035A7.465 7.465 0 0 1 18 9.375a7.465 7.465 0 0 1-1.235 4.125h-.148c-.806 0-1.534.446-2.031 1.08a9.04 9.04 0 0 1-2.861 2.4c-.723.384-1.35.956-1.653 1.715a4.498 4.498 0 0 0-.322 1.672V21a.75.75 0 0 1-.75.75 2.25 2.25 0 0 1-2.25-2.25c0-1.152.26-2.243.723-3.218.266-.558-.107-1.282-.725-1.282H3.622c-1.026 0-1.945-.694-2.054-1.715A12.137 12.137 0 0 1 1.5 12c0-2.848.992-5.464 2.649-7.521C4.537 3.997 5.136 3.75 5.754 3.75h4.541c.483 0 .964.078 1.423.23l3.114 1.04c.46.152.94.23 1.423.23Z"/><path d="M21.669 13.023c.536-1.362.831-2.845.831-4.398 0-1.22-.182-2.398-.52-3.507-.26-.85-1.084-1.368-1.973-1.368H19.1c-.445 0-.72.498-.523.898.591 1.2.924 2.55.924 3.977a8.958 8.958 0 0 1-1.302 4.666c-.245.403.028.959.5.959h1.053c.832 0 1.612-.453 1.918-1.227Z"/></svg>'; | |
| 4340 | - } | |
| 4341 | - | |
| 4342 | - function buildPromptHtml(botId) { | |
| 4343 | - var styleAttr = botBubbleStyleAttr(botId); | |
| 4344 | - return '' | |
| 4345 | - + '<div class="bot-message mxchat-rating-bot-bubble"' + styleAttr + '>' | |
| 4346 | - + '<div class="mxchat-rating-prompt" data-bot-id="' + esc(botId) + '" role="group" aria-label="' + esc(copy('question')) + '">' | |
| 4347 | - + '<div class="mxchat-rating-question">' + esc(copy('question')) + '</div>' | |
| 4348 | - + '<div class="mxchat-rating-actions">' | |
| 4349 | - + '<span class="mxchat-rating-buttons">' | |
| 4350 | - + '<button type="button" class="mxchat-rating-btn" data-rating="1" aria-label="' + esc(copy('helpful')) + '">' + thumbUpSvg() + '</button>' | |
| 4351 | - + '<button type="button" class="mxchat-rating-btn" data-rating="-1" aria-label="' + esc(copy('not_helpful')) + '">' + thumbDownSvg() + '</button>' | |
| 4352 | - + '</span>' | |
| 4353 | - + '<button type="button" class="mxchat-rating-dismiss" aria-label="' + esc(copy('dismiss')) + '">×</button>' | |
| 4354 | - + '</div>' | |
| 4355 | - + '</div>' | |
| 4356 | - + '</div>'; | |
| 4357 | - } | |
| 4358 | - | |
| 4359 | - function buildFeedbackHtml(botId, rating) { | |
| 4360 | - var styleAttr = botBubbleStyleAttr(botId); | |
| 4361 | - return '' | |
| 4362 | - + '<div class="bot-message mxchat-rating-bot-bubble"' + styleAttr + '>' | |
| 4363 | - + '<div class="mxchat-rating-feedback" data-bot-id="' + esc(botId) + '" data-rating="' + esc(String(rating)) + '">' | |
| 4364 | - + '<div class="mxchat-rating-feedback-label">' + esc(copy('thanks')) + '</div>' | |
| 4365 | - + '<textarea class="mxchat-rating-feedback-input" maxlength="500" placeholder="' + esc(copy('placeholder')) + '" rows="2"></textarea>' | |
| 4366 | - + '<div class="mxchat-rating-feedback-actions">' | |
| 4367 | - + '<button type="button" class="mxchat-rating-skip">' + esc(copy('skip')) + '</button>' | |
| 4368 | - + '<button type="button" class="mxchat-rating-submit">' + esc(copy('send')) + '</button>' | |
| 4369 | - + '</div>' | |
| 4370 | - + '</div>' | |
| 4371 | - + '</div>'; | |
| 4372 | - } | |
| 4373 | - | |
| 4374 | - function buildSavedHtml(botId) { | |
| 4375 | - var styleAttr = botBubbleStyleAttr(botId); | |
| 4376 | - return '' | |
| 4377 | - + '<div class="bot-message mxchat-rating-bot-bubble"' + styleAttr + '>' | |
| 4378 | - + '<div class="mxchat-rating-saved">' + esc(copy('saved')) + '</div>' | |
| 4379 | - + '</div>'; | |
| 4380 | - } | |
| 4381 | - | |
| 4382 | - function getChatBoxByBotId(botId) { | |
| 4383 | - var $byId = $('#chat-box-' + botId); | |
| 4384 | - if ($byId.length) return $byId.first(); | |
| 4385 | - return $('.chat-box').first(); | |
| 4386 | - } | |
| 4387 | - | |
| 4388 | - function scrollChatBoxToBottom($chatBox) { | |
| 4389 | - if (!$chatBox || !$chatBox.length) return; | |
| 4390 | - $chatBox.scrollTop($chatBox[0].scrollHeight); | |
| 4391 | - } | |
| 4392 | - | |
| 4393 | - function showPrompt(botId) { | |
| 4394 | - var s = getState(botId); | |
| 4395 | - if (s.promptShown || s.dismissed) return; | |
| 4396 | - var sessionId = getSessionId(botId); | |
| 4397 | - if (!sessionId) return; | |
| 4398 | - if (isAlreadyRated(sessionId)) { s.promptShown = true; return; } | |
| 4399 | - var $chatBox = getChatBoxByBotId(botId); | |
| 4400 | - if (!$chatBox.length) return; | |
| 4401 | - if ($chatBox.find('.mxchat-rating-prompt').length) { s.promptShown = true; return; } | |
| 4402 | - $chatBox.append(buildPromptHtml(botId)); | |
| 4403 | - syncRatingBubbleColors(botId); | |
| 4404 | - s.promptShown = true; | |
| 4405 | - scrollChatBoxToBottom($chatBox); | |
| 4406 | - } | |
| 4407 | - | |
| 4408 | - function submitRating(botId, rating, feedback) { | |
| 4409 | - var sessionId = getSessionId(botId); | |
| 4410 | - if (!sessionId) return; | |
| 4411 | - $.post(mxchatChat.ajax_url, { | |
| 4412 | - action: 'mxchat_save_rating', | |
| 4413 | - session_id: sessionId, | |
| 4414 | - bot_id: botId, | |
| 4415 | - rating: rating, | |
| 4416 | - feedback: feedback || '' | |
| 4417 | - }); | |
| 4418 | - markRated(sessionId); | |
| 4419 | - } | |
| 4420 | - | |
| 4421 | - function onBotReply(botId) { | |
| 4422 | - var s = getState(botId); | |
| 4423 | - s.botReplies += 1; | |
| 4424 | - if (s.promptShown || s.dismissed) return; | |
| 4425 | - var sessionId = getSessionId(botId); | |
| 4426 | - if (sessionId && isAlreadyRated(sessionId)) { s.promptShown = true; return; } | |
| 4427 | - if (s.botReplies < MIN_BOT_REPLIES) return; | |
| 4428 | - if (s.idleTimer) clearTimeout(s.idleTimer); | |
| 4429 | - s.idleTimer = setTimeout(function() { showPrompt(botId); }, IDLE_MS); | |
| 4430 | - } | |
| 4431 | - | |
| 4432 | - function onUserMessage(botId) { | |
| 4433 | - var s = getState(botId); | |
| 4434 | - if (s.idleTimer) { clearTimeout(s.idleTimer); s.idleTimer = null; } | |
| 4435 | - } | |
| 4436 | - | |
| 4437 | - function botIdFromChatBox(el) { | |
| 4438 | - var id = el && el.id ? el.id : ''; | |
| 4439 | - return id.indexOf('chat-box-') === 0 ? id.substring('chat-box-'.length) : 'default'; | |
| 4440 | - } | |
| 4441 | - | |
| 4442 | - function setupObserver(chatBox) { | |
| 4443 | - var botId = botIdFromChatBox(chatBox); | |
| 4444 | - try { | |
| 4445 | - var observer = new MutationObserver(function(mutations) { | |
| 4446 | - mutations.forEach(function(m) { | |
| 4447 | - for (var i = 0; i < m.addedNodes.length; i++) { | |
| 4448 | - var node = m.addedNodes[i]; | |
| 4449 | - if (!node || node.nodeType !== 1) continue; | |
| 4450 | - var $n = $(node); | |
| 4451 | - if ($n.hasClass('mxchat-rating-bot-bubble') || $n.hasClass('mxchat-rating-prompt') || $n.hasClass('mxchat-rating-feedback') || $n.hasClass('mxchat-rating-saved')) continue; | |
| 4452 | - if ($n.hasClass('bot-message')) onBotReply(botId); // count at insert time — streaming providers append with .temporary-message first, then remove later (childList observer can't see attr changes) | |
| 4453 | - else if ($n.hasClass('user-message')) onUserMessage(botId); | |
| 4454 | - } | |
| 4455 | - }); | |
| 4456 | - }); | |
| 4457 | - observer.observe(chatBox, { childList: true }); | |
| 4458 | - } catch (e) { /* noop */ } | |
| 4459 | - } | |
| 4460 | - | |
| 4461 | - $('.chat-box').each(function() { setupObserver(this); }); | |
| 4462 | - | |
| 4463 | - $(document).on('click', '.mxchat-rating-btn', function(e) { | |
| 4464 | - e.preventDefault(); | |
| 4465 | - var $btn = $(this); | |
| 4466 | - var $prompt = $btn.closest('.mxchat-rating-prompt'); | |
| 4467 | - var $wrap = $btn.closest('.mxchat-rating-bot-bubble'); | |
| 4468 | - var botId = $prompt.data('bot-id') || 'default'; | |
| 4469 | - var rating = parseInt($btn.attr('data-rating'), 10); | |
| 4470 | - if (rating !== 1 && rating !== -1) return; | |
| 4471 | - submitRating(botId, rating, ''); | |
| 4472 | - ($wrap.length ? $wrap : $prompt).replaceWith(buildFeedbackHtml(botId, rating)); | |
| 4473 | - syncRatingBubbleColors(botId); | |
| 4474 | - scrollChatBoxToBottom(getChatBoxByBotId(botId)); | |
| 4475 | - }); | |
| 4476 | - | |
| 4477 | - $(document).on('click', '.mxchat-rating-dismiss', function(e) { | |
| 4478 | - e.preventDefault(); | |
| 4479 | - var $prompt = $(this).closest('.mxchat-rating-prompt'); | |
| 4480 | - var $wrap = $(this).closest('.mxchat-rating-bot-bubble'); | |
| 4481 | - var botId = $prompt.data('bot-id') || 'default'; | |
| 4482 | - var s = getState(botId); | |
| 4483 | - s.dismissed = true; | |
| 4484 | - markRated(getSessionId(botId)); | |
| 4485 | - ($wrap.length ? $wrap : $prompt).remove(); | |
| 4486 | - }); | |
| 4487 | - | |
| 4488 | - function closeFeedback($fb) { | |
| 4489 | - var botId = $fb.data('bot-id') || 'default'; | |
| 4490 | - var $wrap = $fb.closest('.mxchat-rating-bot-bubble'); | |
| 4491 | - ($wrap.length ? $wrap : $fb).replaceWith(buildSavedHtml(botId)); | |
| 4492 | - syncRatingBubbleColors(botId); | |
| 4493 | - scrollChatBoxToBottom(getChatBoxByBotId(botId)); | |
| 4494 | - } | |
| 4495 | - | |
| 4496 | - $(document).on('click', '.mxchat-rating-skip', function(e) { | |
| 4497 | - e.preventDefault(); | |
| 4498 | - closeFeedback($(this).closest('.mxchat-rating-feedback')); | |
| 4499 | - }); | |
| 4500 | - | |
| 4501 | - $(document).on('click', '.mxchat-rating-submit', function(e) { | |
| 4502 | - e.preventDefault(); | |
| 4503 | - var $fb = $(this).closest('.mxchat-rating-feedback'); | |
| 4504 | - var botId = $fb.data('bot-id') || 'default'; | |
| 4505 | - var rating = parseInt($fb.attr('data-rating'), 10); | |
| 4506 | - if (rating !== 1 && rating !== -1) { closeFeedback($fb); return; } | |
| 4507 | - var text = String($fb.find('.mxchat-rating-feedback-input').val() || '').trim(); | |
| 4508 | - if (text !== '') { | |
| 4509 | - submitRating(botId, rating, text); | |
| 4510 | - } | |
| 4511 | - closeFeedback($fb); | |
| 4512 | - }); | |
| 4513 | 3483 | }); |
| 4514 | 3484 | |