- Introduced a comprehensive node validation system in the process flow builder, enhancing the user experience by providing real-time feedback on node configurations and process integrity. - Added `useNodeValidation` composable to manage validation logic, including checks for required nodes, configuration completeness, and flow logic. - Integrated validation indicators in node components (ApiNode, FormNode, GatewayNode, ScriptNode) to visually represent validation issues. - Created `ValidationIndicator` and `ValidationTooltip` components for displaying validation statuses and detailed messages. - Updated `ProcessFlowCanvas.vue` to trigger validation on node and edge changes, ensuring immediate feedback during process design. - Enhanced `processBuilder` store to manage validation results and summary statistics, allowing for a centralized validation state. - Documented the validation system implementation plan to guide future enhancements and user training.
160 lines
2.8 KiB
Vue
160 lines
2.8 KiB
Vue
<script setup>
|
|
import { ref, computed, onMounted, onUnmounted } from 'vue'
|
|
|
|
const props = defineProps({
|
|
content: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
position: {
|
|
type: String,
|
|
default: 'top' // top, bottom, left, right
|
|
}
|
|
})
|
|
|
|
const showTooltip = ref(false)
|
|
const tooltipRef = ref(null)
|
|
|
|
const positionClass = computed(() => {
|
|
return `tooltip-${props.position}`
|
|
})
|
|
|
|
const onMouseEnter = () => {
|
|
showTooltip.value = true
|
|
}
|
|
|
|
const onMouseLeave = () => {
|
|
showTooltip.value = false
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="tooltip-container"
|
|
@mouseenter="onMouseEnter"
|
|
@mouseleave="onMouseLeave"
|
|
>
|
|
<slot />
|
|
|
|
<div
|
|
v-if="showTooltip && content"
|
|
ref="tooltipRef"
|
|
class="tooltip"
|
|
:class="positionClass"
|
|
>
|
|
<div class="tooltip-content">
|
|
<pre class="tooltip-text">{{ content }}</pre>
|
|
</div>
|
|
<div class="tooltip-arrow"></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.tooltip-container {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.tooltip {
|
|
position: absolute;
|
|
z-index: 9999;
|
|
background: #1f2937;
|
|
color: white;
|
|
border-radius: 6px;
|
|
padding: 8px 12px;
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
max-width: 300px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.tooltip-text {
|
|
margin: 0;
|
|
white-space: pre-line;
|
|
font-family: inherit;
|
|
font-size: 11px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
/* Position variants */
|
|
.tooltip-top {
|
|
bottom: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.tooltip-bottom {
|
|
top: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.tooltip-left {
|
|
right: 100%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.tooltip-right {
|
|
left: 100%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
margin-left: 8px;
|
|
}
|
|
|
|
/* Arrow styles */
|
|
.tooltip-arrow {
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.tooltip-top .tooltip-arrow {
|
|
top: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border-left: 6px solid transparent;
|
|
border-right: 6px solid transparent;
|
|
border-top: 6px solid #1f2937;
|
|
}
|
|
|
|
.tooltip-bottom .tooltip-arrow {
|
|
bottom: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
border-left: 6px solid transparent;
|
|
border-right: 6px solid transparent;
|
|
border-bottom: 6px solid #1f2937;
|
|
}
|
|
|
|
.tooltip-left .tooltip-arrow {
|
|
left: 100%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
border-top: 6px solid transparent;
|
|
border-bottom: 6px solid transparent;
|
|
border-left: 6px solid #1f2937;
|
|
}
|
|
|
|
.tooltip-right .tooltip-arrow {
|
|
right: 100%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
border-top: 6px solid transparent;
|
|
border-bottom: 6px solid transparent;
|
|
border-right: 6px solid #1f2937;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.tooltip {
|
|
max-width: 250px;
|
|
font-size: 11px;
|
|
}
|
|
}
|
|
</style> |