- eveai_chat_client update to have different ways of presenting ProgressTracker.vue. Based on progress_tracker_insights in Tenant Make Configuration.
This commit is contained in:
@@ -31,6 +31,7 @@ def get_default_chat_customisation(tenant_customisation=None):
|
||||
'markdown_background_color': 'transparent',
|
||||
'markdown_text_color': '#ffffff',
|
||||
'sidebar_markdown': '',
|
||||
'progress_tracker_insights': 'No Information'
|
||||
}
|
||||
|
||||
# If no tenant customization is provided, return the defaults
|
||||
|
||||
@@ -6,6 +6,13 @@ configuration:
|
||||
description: "Sidebar Markdown-formatted Text"
|
||||
type: "text"
|
||||
required: false
|
||||
"progress_tracker_insights":
|
||||
name: "Progress Tracker Insights"
|
||||
description: "Level of information shown by the Progress Tracker"
|
||||
type: "enum"
|
||||
allowed_values: ["No Information", "Active Interaction Only", "All Interactions"]
|
||||
default: "No Information"
|
||||
required: true
|
||||
"primary_color":
|
||||
name: "Primary Color"
|
||||
description: "Primary Color"
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
v-if="message.sender === 'ai' && message.taskId"
|
||||
:task-id="message.taskId"
|
||||
:api-prefix="apiPrefix"
|
||||
:is-latest-ai-message="isLatestAiMessage"
|
||||
class="message-progress"
|
||||
@specialist-complete="handleSpecialistComplete"
|
||||
@specialist-error="handleSpecialistError"
|
||||
@@ -165,6 +166,10 @@ export default {
|
||||
apiPrefix: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
isLatestAiMessage: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
emits: ['image-loaded', 'retry-message', 'specialist-complete', 'specialist-error'],
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
:message="message"
|
||||
:is-submitting-form="isSubmittingForm"
|
||||
:api-prefix="apiPrefix"
|
||||
:is-latest-ai-message="isLatestAiMessage(message)"
|
||||
@image-loaded="handleImageLoaded"
|
||||
@specialist-complete="$emit('specialist-complete', $event)"
|
||||
@specialist-error="$emit('specialist-error', $event)"
|
||||
@@ -228,6 +229,25 @@ export default {
|
||||
message.content &&
|
||||
message.content.toLowerCase().includes(searchTerm)
|
||||
);
|
||||
},
|
||||
|
||||
isLatestAiMessage(message) {
|
||||
// Only AI messages with taskId can be "latest"
|
||||
if (message.sender !== 'ai' || !message.taskId) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Find the latest AI message with a taskId by iterating in reverse order
|
||||
// The latest AI message is the one where the specialist interaction is still active
|
||||
for (let i = this.messages.length - 1; i >= 0; i--) {
|
||||
const msg = this.messages[i];
|
||||
if (msg.sender === 'ai' && msg.taskId) {
|
||||
// This is the latest AI message with a taskId
|
||||
return msg.id === message.id;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<template>
|
||||
<div class="progress-tracker" :class="{
|
||||
<!-- Volledige tracker (huidige implementatie) -->
|
||||
<div v-if="shouldShowFullTracker" class="progress-tracker" :class="{
|
||||
'expanded': isExpanded,
|
||||
'completed': isCompleted && !hasError,
|
||||
'error': error || hasError
|
||||
@@ -50,6 +51,18 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Alleen Evie animatie voor "No Information" tijdens processing -->
|
||||
<div v-else-if="shouldShowProgressIconOnly" class="progress-icon-only">
|
||||
<img src="/static/assets/img/evie_working.webp"
|
||||
alt="Bezig met verwerken..."
|
||||
class="working-animation-only">
|
||||
</div>
|
||||
|
||||
<!-- Foutmelding altijd tonen (uitzondering regel) -->
|
||||
<div v-else-if="shouldShowError" class="progress-error-only">
|
||||
{{ error }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
@@ -89,6 +102,10 @@ export default {
|
||||
apiPrefix: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
isLatestAiMessage: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
emits: ['specialist-complete', 'specialist-error'],
|
||||
@@ -116,6 +133,32 @@ export default {
|
||||
},
|
||||
processingText() {
|
||||
return this.statusTexts.processing;
|
||||
},
|
||||
// Visibility mode configuration
|
||||
visibilityMode() {
|
||||
console.log('Visibility mode:', window.chatConfig?.progress_tracker_insights || 'No Information');
|
||||
return window.chatConfig?.progress_tracker_insights || 'No Information';
|
||||
},
|
||||
// Determine if full tracker should be shown
|
||||
shouldShowFullTracker() {
|
||||
switch (this.visibilityMode) {
|
||||
case 'All Interactions':
|
||||
return true;
|
||||
case 'Active Interaction Only':
|
||||
return this.isLatestAiMessage;
|
||||
case 'No Information':
|
||||
return false;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
},
|
||||
// Determine if only progress icon should be shown (for "No Information" during processing)
|
||||
shouldShowProgressIconOnly() {
|
||||
return this.visibilityMode === 'No Information' && this.isProcessing;
|
||||
},
|
||||
// Determine if error should be shown (always show errors, even in "No Information" mode)
|
||||
shouldShowError() {
|
||||
return this.error || this.hasError;
|
||||
}
|
||||
},
|
||||
created() {
|
||||
@@ -538,4 +581,27 @@ export default {
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
/* Styles for new visibility modes */
|
||||
.progress-icon-only {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.working-animation-only {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
/* Evie working animatie styling */
|
||||
}
|
||||
|
||||
.progress-error-only {
|
||||
padding: 10px 15px;
|
||||
background-color: #ffcdd2;
|
||||
color: #c62828;
|
||||
border-radius: 8px;
|
||||
margin: 10px 0;
|
||||
font-size: 13px;
|
||||
border: 1px solid #f44336;
|
||||
}
|
||||
</style>
|
||||
@@ -10,6 +10,7 @@
|
||||
// Definieer chatConfig voordat componenten worden geladen
|
||||
window.chatConfig = {
|
||||
explanation: `{{ customisation.sidebar_markdown|default('') }}`,
|
||||
progress_tracker_insights: `{{ customisation.progress_tracker_insights|default('No Information') }}`,
|
||||
conversationId: '{{ conversation_id|default("default") }}',
|
||||
messages: {{ messages|tojson|safe }},
|
||||
settings: {
|
||||
|
||||
@@ -93,6 +93,7 @@ def chat(magic_link_code):
|
||||
current_app.logger.debug(f"Make Customisation Options: {tenant_make.chat_customisation_options}")
|
||||
try:
|
||||
customisation = get_default_chat_customisation(tenant_make.chat_customisation_options)
|
||||
current_app.logger.debug(f"Customisation Options: {customisation}")
|
||||
except Exception as e:
|
||||
current_app.logger.error(f"Error processing customisation options: {str(e)}")
|
||||
# Fallback to default customisation
|
||||
|
||||
Reference in New Issue
Block a user