refactor(graph): Refactoring the EditablePeopleRow component
This commit is contained in:
@@ -6,24 +6,39 @@ import { toast } from 'sonner'
|
|||||||
import { updateEntity, updateRelation, checkEntityNameExists } from '@/api/lightrag'
|
import { updateEntity, updateRelation, checkEntityNameExists } from '@/api/lightrag'
|
||||||
import { useGraphStore } from '@/stores/graph'
|
import { useGraphStore } from '@/stores/graph'
|
||||||
import { PencilIcon } from 'lucide-react'
|
import { PencilIcon } from 'lucide-react'
|
||||||
import { tr } from '@faker-js/faker'
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/Tooltip'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface for the EditablePropertyRow component props
|
||||||
|
* Defines all possible properties that can be passed to the component
|
||||||
|
*/
|
||||||
interface EditablePropertyRowProps {
|
interface EditablePropertyRowProps {
|
||||||
name: string
|
name: string // Property name to display and edit
|
||||||
value: any
|
value: any // Initial value of the property
|
||||||
onClick?: () => void
|
onClick?: () => void // Optional click handler for the property value
|
||||||
tooltip?: string
|
tooltip?: string // Optional tooltip text
|
||||||
entityId?: string
|
entityId?: string // ID of the entity (for node type)
|
||||||
entityType?: 'node' | 'edge'
|
entityType?: 'node' | 'edge' // Type of graph entity
|
||||||
sourceId?: string
|
sourceId?: string // Source node ID (for edge type)
|
||||||
targetId?: string
|
targetId?: string // Target node ID (for edge type)
|
||||||
onValueChange?: (newValue: any) => void
|
onValueChange?: (newValue: any) => void // Optional callback when value changes
|
||||||
isEditable?: boolean
|
isEditable?: boolean // Whether this property can be edited
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Interface for tracking edges that need updating when a node ID changes
|
||||||
|
*/
|
||||||
|
interface EdgeToUpdate {
|
||||||
|
originalDynamicId: string;
|
||||||
|
newEdgeId: string;
|
||||||
|
edgeIndex: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* EditablePropertyRow component that supports double-click to edit property values
|
* EditablePropertyRow component that supports double-click to edit property values
|
||||||
* Specifically designed for editing 'description' and entity name fields
|
* This component is used in the graph properties panel to display and edit entity properties
|
||||||
|
*
|
||||||
|
* @component
|
||||||
*/
|
*/
|
||||||
const EditablePropertyRow = ({
|
const EditablePropertyRow = ({
|
||||||
name,
|
name,
|
||||||
@@ -37,6 +52,7 @@ const EditablePropertyRow = ({
|
|||||||
onValueChange,
|
onValueChange,
|
||||||
isEditable = false
|
isEditable = false
|
||||||
}: EditablePropertyRowProps) => {
|
}: EditablePropertyRowProps) => {
|
||||||
|
// Component state
|
||||||
const { t } = useTranslation()
|
const { t } = useTranslation()
|
||||||
const [isEditing, setIsEditing] = useState(false)
|
const [isEditing, setIsEditing] = useState(false)
|
||||||
const [editValue, setEditValue] = useState('')
|
const [editValue, setEditValue] = useState('')
|
||||||
@@ -44,16 +60,21 @@ const EditablePropertyRow = ({
|
|||||||
const [currentValue, setCurrentValue] = useState(initialValue)
|
const [currentValue, setCurrentValue] = useState(initialValue)
|
||||||
const inputRef = useRef<HTMLInputElement>(null)
|
const inputRef = useRef<HTMLInputElement>(null)
|
||||||
|
|
||||||
// Update currentValue when initialValue changes
|
/**
|
||||||
|
* Update currentValue when initialValue changes from parent
|
||||||
|
*/
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
setCurrentValue(initialValue)
|
setCurrentValue(initialValue)
|
||||||
}, [initialValue])
|
}, [initialValue])
|
||||||
|
|
||||||
// Initialize edit value when entering edit mode
|
/**
|
||||||
|
* Initialize edit value and focus input when entering edit mode
|
||||||
|
*/
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isEditing) {
|
if (isEditing) {
|
||||||
setEditValue(String(currentValue))
|
setEditValue(String(currentValue))
|
||||||
// Focus the input element when entering edit mode
|
// Focus the input element when entering edit mode with a small delay
|
||||||
|
// to ensure the input is rendered before focusing
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (inputRef.current) {
|
if (inputRef.current) {
|
||||||
inputRef.current.focus()
|
inputRef.current.focus()
|
||||||
@@ -63,18 +84,30 @@ const EditablePropertyRow = ({
|
|||||||
}
|
}
|
||||||
}, [isEditing, currentValue])
|
}, [isEditing, currentValue])
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get translated property name from i18n
|
||||||
|
* Falls back to the original name if no translation is found
|
||||||
|
*/
|
||||||
const getPropertyNameTranslation = (propName: string) => {
|
const getPropertyNameTranslation = (propName: string) => {
|
||||||
const translationKey = `graphPanel.propertiesView.node.propertyNames.${propName}`
|
const translationKey = `graphPanel.propertiesView.node.propertyNames.${propName}`
|
||||||
const translation = t(translationKey)
|
const translation = t(translationKey)
|
||||||
return translation === translationKey ? propName : translation
|
return translation === translationKey ? propName : translation
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle double-click event to enter edit mode
|
||||||
|
*/
|
||||||
const handleDoubleClick = () => {
|
const handleDoubleClick = () => {
|
||||||
if (isEditable && !isEditing) {
|
if (isEditable && !isEditing) {
|
||||||
setIsEditing(true)
|
setIsEditing(true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle keyboard events in the input field
|
||||||
|
* - Enter: Save changes
|
||||||
|
* - Escape: Cancel editing
|
||||||
|
*/
|
||||||
const handleKeyDown = (e: React.KeyboardEvent) => {
|
const handleKeyDown = (e: React.KeyboardEvent) => {
|
||||||
if (e.key === 'Enter') {
|
if (e.key === 'Enter') {
|
||||||
handleSave()
|
handleSave()
|
||||||
@@ -83,11 +116,21 @@ const EditablePropertyRow = ({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update node in the graph visualization after API update
|
||||||
|
* Handles both property updates and entity ID changes
|
||||||
|
*
|
||||||
|
* @param nodeId - ID of the node to update
|
||||||
|
* @param propertyName - Name of the property being updated
|
||||||
|
* @param newValue - New value for the property
|
||||||
|
*/
|
||||||
const updateGraphNode = async (nodeId: string, propertyName: string, newValue: string) => {
|
const updateGraphNode = async (nodeId: string, propertyName: string, newValue: string) => {
|
||||||
|
// Get graph state from store
|
||||||
const sigmaInstance = useGraphStore.getState().sigmaInstance
|
const sigmaInstance = useGraphStore.getState().sigmaInstance
|
||||||
const sigmaGraph = useGraphStore.getState().sigmaGraph
|
const sigmaGraph = useGraphStore.getState().sigmaGraph
|
||||||
const rawGraph = useGraphStore.getState().rawGraph
|
const rawGraph = useGraphStore.getState().rawGraph
|
||||||
|
|
||||||
|
// Validate graph state
|
||||||
if (!sigmaInstance || !sigmaGraph || !rawGraph || !sigmaGraph.hasNode(String(nodeId))) {
|
if (!sigmaInstance || !sigmaGraph || !rawGraph || !sigmaGraph.hasNode(String(nodeId))) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -95,29 +138,30 @@ const EditablePropertyRow = ({
|
|||||||
try {
|
try {
|
||||||
const nodeAttributes = sigmaGraph.getNodeAttributes(String(nodeId))
|
const nodeAttributes = sigmaGraph.getNodeAttributes(String(nodeId))
|
||||||
|
|
||||||
|
// Special handling for entity_id changes (node renaming)
|
||||||
if (propertyName === 'entity_id') {
|
if (propertyName === 'entity_id') {
|
||||||
|
// Create new node with updated ID but same attributes
|
||||||
sigmaGraph.addNode(newValue, { ...nodeAttributes, label: newValue })
|
sigmaGraph.addNode(newValue, { ...nodeAttributes, label: newValue })
|
||||||
|
|
||||||
interface EdgeToUpdate {
|
|
||||||
originalDynamicId: string;
|
|
||||||
newEdgeId: string;
|
|
||||||
edgeIndex: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
const edgesToUpdate: EdgeToUpdate[] = [];
|
const edgesToUpdate: EdgeToUpdate[] = [];
|
||||||
|
|
||||||
|
// Process all edges connected to this node
|
||||||
sigmaGraph.forEachEdge(String(nodeId), (edge, attributes, source, target) => {
|
sigmaGraph.forEachEdge(String(nodeId), (edge, attributes, source, target) => {
|
||||||
const otherNode = source === String(nodeId) ? target : source
|
const otherNode = source === String(nodeId) ? target : source
|
||||||
const isOutgoing = source === String(nodeId)
|
const isOutgoing = source === String(nodeId)
|
||||||
|
|
||||||
// 获取原始边的dynamicId,以便后续更新edgeDynamicIdMap
|
// Get original edge dynamic ID for later reference
|
||||||
const originalEdgeDynamicId = edge
|
const originalEdgeDynamicId = edge
|
||||||
const edgeIndexInRawGraph = rawGraph.edgeDynamicIdMap[originalEdgeDynamicId]
|
const edgeIndexInRawGraph = rawGraph.edgeDynamicIdMap[originalEdgeDynamicId]
|
||||||
|
|
||||||
// 创建新边并获取新边的ID
|
// Create new edge with updated node reference
|
||||||
const newEdgeId = sigmaGraph.addEdge(isOutgoing ? newValue : otherNode, isOutgoing ? otherNode : newValue, attributes)
|
const newEdgeId = sigmaGraph.addEdge(
|
||||||
|
isOutgoing ? newValue : otherNode,
|
||||||
|
isOutgoing ? otherNode : newValue,
|
||||||
|
attributes
|
||||||
|
)
|
||||||
|
|
||||||
// 存储需要更新的边信息
|
// Track edges that need updating in the raw graph
|
||||||
if (edgeIndexInRawGraph !== undefined) {
|
if (edgeIndexInRawGraph !== undefined) {
|
||||||
edgesToUpdate.push({
|
edgesToUpdate.push({
|
||||||
originalDynamicId: originalEdgeDynamicId,
|
originalDynamicId: originalEdgeDynamicId,
|
||||||
@@ -126,11 +170,14 @@ const EditablePropertyRow = ({
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove the old edge
|
||||||
sigmaGraph.dropEdge(edge)
|
sigmaGraph.dropEdge(edge)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Remove the old node after all edges are processed
|
||||||
sigmaGraph.dropNode(String(nodeId))
|
sigmaGraph.dropNode(String(nodeId))
|
||||||
|
|
||||||
|
// Update node reference in raw graph data
|
||||||
const nodeIndex = rawGraph.nodeIdMap[String(nodeId)]
|
const nodeIndex = rawGraph.nodeIdMap[String(nodeId)]
|
||||||
if (nodeIndex !== undefined) {
|
if (nodeIndex !== undefined) {
|
||||||
rawGraph.nodes[nodeIndex].id = newValue
|
rawGraph.nodes[nodeIndex].id = newValue
|
||||||
@@ -139,10 +186,10 @@ const EditablePropertyRow = ({
|
|||||||
rawGraph.nodeIdMap[newValue] = nodeIndex
|
rawGraph.nodeIdMap[newValue] = nodeIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
// 更新边的引用关系
|
// Update all edge references in raw graph data
|
||||||
edgesToUpdate.forEach(({ originalDynamicId, newEdgeId, edgeIndex }) => {
|
edgesToUpdate.forEach(({ originalDynamicId, newEdgeId, edgeIndex }) => {
|
||||||
// 更新边的source和target
|
|
||||||
if (rawGraph.edges[edgeIndex]) {
|
if (rawGraph.edges[edgeIndex]) {
|
||||||
|
// Update source/target references
|
||||||
if (rawGraph.edges[edgeIndex].source === String(nodeId)) {
|
if (rawGraph.edges[edgeIndex].source === String(nodeId)) {
|
||||||
rawGraph.edges[edgeIndex].source = newValue
|
rawGraph.edges[edgeIndex].source = newValue
|
||||||
}
|
}
|
||||||
@@ -150,23 +197,17 @@ const EditablePropertyRow = ({
|
|||||||
rawGraph.edges[edgeIndex].target = newValue
|
rawGraph.edges[edgeIndex].target = newValue
|
||||||
}
|
}
|
||||||
|
|
||||||
// 更新dynamicId映射
|
// Update dynamic ID mappings
|
||||||
rawGraph.edges[edgeIndex].dynamicId = newEdgeId
|
rawGraph.edges[edgeIndex].dynamicId = newEdgeId
|
||||||
delete rawGraph.edgeDynamicIdMap[originalDynamicId]
|
delete rawGraph.edgeDynamicIdMap[originalDynamicId]
|
||||||
rawGraph.edgeDynamicIdMap[newEdgeId] = edgeIndex
|
rawGraph.edgeDynamicIdMap[newEdgeId] = edgeIndex
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
useGraphStore.getState().setSelectedNode(editValue)
|
// Update selected node in store
|
||||||
|
useGraphStore.getState().setSelectedNode(newValue)
|
||||||
} else {
|
} else {
|
||||||
// const updatedAttributes = { ...nodeAttributes }
|
// For other properties, just update the property in raw graph
|
||||||
// if (propertyName === 'description') {
|
|
||||||
// updatedAttributes.description = newValue
|
|
||||||
// }
|
|
||||||
// Object.entries(updatedAttributes).forEach(([key, value]) => {
|
|
||||||
// sigmaGraph.setNodeAttribute(String(nodeId), key, value)
|
|
||||||
// })
|
|
||||||
|
|
||||||
const nodeIndex = rawGraph.nodeIdMap[String(nodeId)]
|
const nodeIndex = rawGraph.nodeIdMap[String(nodeId)]
|
||||||
if (nodeIndex !== undefined) {
|
if (nodeIndex !== undefined) {
|
||||||
rawGraph.nodes[nodeIndex].properties[propertyName] = newValue
|
rawGraph.nodes[nodeIndex].properties[propertyName] = newValue
|
||||||
@@ -178,16 +219,27 @@ const EditablePropertyRow = ({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update edge in the graph visualization after API update
|
||||||
|
*
|
||||||
|
* @param sourceId - ID of the source node
|
||||||
|
* @param targetId - ID of the target node
|
||||||
|
* @param propertyName - Name of the property being updated
|
||||||
|
* @param newValue - New value for the property
|
||||||
|
*/
|
||||||
const updateGraphEdge = async (sourceId: string, targetId: string, propertyName: string, newValue: string) => {
|
const updateGraphEdge = async (sourceId: string, targetId: string, propertyName: string, newValue: string) => {
|
||||||
|
// Get graph state from store
|
||||||
const sigmaInstance = useGraphStore.getState().sigmaInstance
|
const sigmaInstance = useGraphStore.getState().sigmaInstance
|
||||||
const sigmaGraph = useGraphStore.getState().sigmaGraph
|
const sigmaGraph = useGraphStore.getState().sigmaGraph
|
||||||
const rawGraph = useGraphStore.getState().rawGraph
|
const rawGraph = useGraphStore.getState().rawGraph
|
||||||
|
|
||||||
|
// Validate graph state
|
||||||
if (!sigmaInstance || !sigmaGraph || !rawGraph) {
|
if (!sigmaInstance || !sigmaGraph || !rawGraph) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
// Find the edge between source and target nodes
|
||||||
const allEdges = sigmaGraph.edges()
|
const allEdges = sigmaGraph.edges()
|
||||||
let keyToUse = null
|
let keyToUse = null
|
||||||
|
|
||||||
@@ -195,6 +247,7 @@ const EditablePropertyRow = ({
|
|||||||
const edgeSource = sigmaGraph.source(edge)
|
const edgeSource = sigmaGraph.source(edge)
|
||||||
const edgeTarget = sigmaGraph.target(edge)
|
const edgeTarget = sigmaGraph.target(edge)
|
||||||
|
|
||||||
|
// Match edge in either direction (undirected graph support)
|
||||||
if ((edgeSource === sourceId && edgeTarget === targetId) ||
|
if ((edgeSource === sourceId && edgeTarget === targetId) ||
|
||||||
(edgeSource === targetId && edgeTarget === sourceId)) {
|
(edgeSource === targetId && edgeTarget === sourceId)) {
|
||||||
keyToUse = edge
|
keyToUse = edge
|
||||||
@@ -203,12 +256,14 @@ const EditablePropertyRow = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (keyToUse !== null) {
|
if (keyToUse !== null) {
|
||||||
|
// Special handling for keywords property (updates edge label)
|
||||||
if(propertyName === 'keywords') {
|
if(propertyName === 'keywords') {
|
||||||
sigmaGraph.setEdgeAttribute(keyToUse, 'label', newValue);
|
sigmaGraph.setEdgeAttribute(keyToUse, 'label', newValue);
|
||||||
} else {
|
} else {
|
||||||
sigmaGraph.setEdgeAttribute(keyToUse, propertyName, newValue);
|
sigmaGraph.setEdgeAttribute(keyToUse, propertyName, newValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update edge in raw graph data using dynamic ID mapping
|
||||||
if (keyToUse && rawGraph.edgeDynamicIdMap[keyToUse] !== undefined) {
|
if (keyToUse && rawGraph.edgeDynamicIdMap[keyToUse] !== undefined) {
|
||||||
const edgeIndex = rawGraph.edgeDynamicIdMap[keyToUse];
|
const edgeIndex = rawGraph.edgeDynamicIdMap[keyToUse];
|
||||||
if (rawGraph.edges[edgeIndex]) {
|
if (rawGraph.edges[edgeIndex]) {
|
||||||
@@ -217,32 +272,39 @@ const EditablePropertyRow = ({
|
|||||||
console.warn(`Edge index ${edgeIndex} found but edge data missing in rawGraph for dynamicId ${entityId}`);
|
console.warn(`Edge index ${edgeIndex} found but edge data missing in rawGraph for dynamicId ${entityId}`);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.warn(`Could not find edge with dynamicId ${entityId} in rawGraph.edgeDynamicIdMap to update properties.`);
|
// Fallback: try to find edge by key in edge ID map
|
||||||
if (keyToUse !== null) {
|
console.warn(`Could not find edge with dynamicId ${entityId} in rawGraph.edgeDynamicIdMap to update properties.`);
|
||||||
const edgeIndexByKey = rawGraph.edgeIdMap[keyToUse];
|
if (keyToUse !== null) {
|
||||||
if (edgeIndexByKey !== undefined && rawGraph.edges[edgeIndexByKey]) {
|
const edgeIndexByKey = rawGraph.edgeIdMap[keyToUse];
|
||||||
rawGraph.edges[edgeIndexByKey].properties[propertyName] = newValue;
|
if (edgeIndexByKey !== undefined && rawGraph.edges[edgeIndexByKey]) {
|
||||||
console.log(`Updated rawGraph edge using constructed key ${keyToUse}`);
|
rawGraph.edges[edgeIndexByKey].properties[propertyName] = newValue;
|
||||||
} else {
|
console.log(`Updated rawGraph edge using constructed key ${keyToUse}`);
|
||||||
console.warn(`Could not find edge in rawGraph using key ${keyToUse} either.`);
|
} else {
|
||||||
}
|
console.warn(`Could not find edge in rawGraph using key ${keyToUse} either.`);
|
||||||
} else {
|
}
|
||||||
console.warn('Cannot update edge properties: edge key is null');
|
} else {
|
||||||
}
|
console.warn('Cannot update edge properties: edge key is null');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.warn(`Edge not found in sigmaGraph with key ${keyToUse}`);
|
console.warn(`Edge not found in sigmaGraph with key ${keyToUse}`);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
// Log the specific edge key that caused the error if possible
|
// Log the specific edge key that caused the error
|
||||||
console.error(`Error updating edge ${sourceId}->${targetId} in graph:`, error);
|
console.error(`Error updating edge ${sourceId}->${targetId} in graph:`, error);
|
||||||
throw new Error('Failed to update edge in graph')
|
throw new Error('Failed to update edge in graph')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Save changes to the property value
|
||||||
|
* Updates both the API and the graph visualization
|
||||||
|
*/
|
||||||
const handleSave = async () => {
|
const handleSave = async () => {
|
||||||
|
// Prevent duplicate submissions
|
||||||
if (isSubmitting) return
|
if (isSubmitting) return
|
||||||
|
|
||||||
|
// Skip if value hasn't changed
|
||||||
if (editValue === String(currentValue)) {
|
if (editValue === String(currentValue)) {
|
||||||
setIsEditing(false)
|
setIsEditing(false)
|
||||||
return
|
return
|
||||||
@@ -251,30 +313,47 @@ const EditablePropertyRow = ({
|
|||||||
setIsSubmitting(true)
|
setIsSubmitting(true)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
// Handle node property updates
|
||||||
if (entityType === 'node' && entityId) {
|
if (entityType === 'node' && entityId) {
|
||||||
let updatedData = { [name]: editValue }
|
let updatedData = { [name]: editValue }
|
||||||
|
|
||||||
|
// Special handling for entity_id (name) changes
|
||||||
if (name === 'entity_id') {
|
if (name === 'entity_id') {
|
||||||
|
// Check if the new name already exists
|
||||||
const exists = await checkEntityNameExists(editValue)
|
const exists = await checkEntityNameExists(editValue)
|
||||||
if (exists) {
|
if (exists) {
|
||||||
toast.error(t('graphPanel.propertiesView.errors.duplicateName'))
|
toast.error(t('graphPanel.propertiesView.errors.duplicateName'))
|
||||||
setIsSubmitting(false)
|
setIsSubmitting(false)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
// For entity_id, we update entity_name in the API
|
||||||
updatedData = { 'entity_name': editValue }
|
updatedData = { 'entity_name': editValue }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update entity in API
|
||||||
await updateEntity(entityId, updatedData, true)
|
await updateEntity(entityId, updatedData, true)
|
||||||
|
// Update graph visualization
|
||||||
await updateGraphNode(entityId, name, editValue)
|
await updateGraphNode(entityId, name, editValue)
|
||||||
toast.success(t('graphPanel.propertiesView.success.entityUpdated'))
|
toast.success(t('graphPanel.propertiesView.success.entityUpdated'))
|
||||||
} else if (entityType === 'edge' && sourceId && targetId) {
|
}
|
||||||
|
// Handle edge property updates
|
||||||
|
else if (entityType === 'edge' && sourceId && targetId) {
|
||||||
const updatedData = { [name]: editValue }
|
const updatedData = { [name]: editValue }
|
||||||
|
// Update relation in API
|
||||||
await updateRelation(sourceId, targetId, updatedData)
|
await updateRelation(sourceId, targetId, updatedData)
|
||||||
|
// Update graph visualization
|
||||||
await updateGraphEdge(sourceId, targetId, name, editValue)
|
await updateGraphEdge(sourceId, targetId, name, editValue)
|
||||||
toast.success(t('graphPanel.propertiesView.success.relationUpdated'))
|
toast.success(t('graphPanel.propertiesView.success.relationUpdated'))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Update local state
|
||||||
setIsEditing(false)
|
setIsEditing(false)
|
||||||
setCurrentValue(editValue)
|
setCurrentValue(editValue)
|
||||||
|
|
||||||
|
// Notify parent component if callback provided
|
||||||
|
if (onValueChange) {
|
||||||
|
onValueChange(editValue)
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error updating property:', error)
|
console.error('Error updating property:', error)
|
||||||
toast.error(t('graphPanel.propertiesView.errors.updateFailed'))
|
toast.error(t('graphPanel.propertiesView.errors.updateFailed'))
|
||||||
@@ -283,21 +362,37 @@ const EditablePropertyRow = ({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Always render the property name label and edit icon, regardless of edit state
|
/**
|
||||||
|
* Render the property row with edit functionality
|
||||||
|
* Shows property name, edit icon, and either the editable input or the current value
|
||||||
|
*/
|
||||||
return (
|
return (
|
||||||
<div className="flex items-center gap-1" onDoubleClick={handleDoubleClick}>
|
<div className="flex items-center gap-1" onDoubleClick={handleDoubleClick}>
|
||||||
<span className="text-primary/60 tracking-wide whitespace-nowrap">{getPropertyNameTranslation(name)}</span>
|
{/* Property name with translation */}
|
||||||
<div className="group relative">
|
<span className="text-primary/60 tracking-wide whitespace-nowrap">
|
||||||
<PencilIcon
|
{getPropertyNameTranslation(name)}
|
||||||
className="h-3 w-3 text-gray-500 hover:text-gray-700 cursor-pointer"
|
</span>
|
||||||
onClick={() => setIsEditing(true)}
|
|
||||||
/>
|
{/* Edit icon with tooltip */}
|
||||||
<div className="absolute left-5 transform -translate-y-full -top-2 bg-primary/90 text-white text-xs px-3 py-1.5 rounded shadow-lg border border-primary/20 opacity-0 group-hover:opacity-100 transition-opacity duration-200 whitespace-nowrap z-[100]">
|
<TooltipProvider delayDuration={200}>
|
||||||
{t('graphPanel.propertiesView.doubleClickToEdit')}
|
<Tooltip>
|
||||||
</div>
|
<TooltipTrigger asChild>
|
||||||
</div>:
|
<div>
|
||||||
|
<PencilIcon
|
||||||
|
className="h-3 w-3 text-gray-500 hover:text-gray-700 cursor-pointer"
|
||||||
|
onClick={() => setIsEditing(true)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</TooltipTrigger>
|
||||||
|
<TooltipContent side="top">
|
||||||
|
{t('graphPanel.propertiesView.doubleClickToEdit')}
|
||||||
|
</TooltipContent>
|
||||||
|
</Tooltip>
|
||||||
|
</TooltipProvider>:
|
||||||
|
|
||||||
|
{/* Conditional rendering based on edit state */}
|
||||||
{isEditing ? (
|
{isEditing ? (
|
||||||
// Render input field when editing
|
// Input field for editing
|
||||||
<Input
|
<Input
|
||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
type="text"
|
type="text"
|
||||||
@@ -309,7 +404,7 @@ const EditablePropertyRow = ({
|
|||||||
disabled={isSubmitting}
|
disabled={isSubmitting}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
// Render text component when not editing
|
// Text display when not editing
|
||||||
<div className="flex items-center gap-1">
|
<div className="flex items-center gap-1">
|
||||||
<Text
|
<Text
|
||||||
className="hover:bg-primary/20 rounded p-1 overflow-hidden text-ellipsis"
|
className="hover:bg-primary/20 rounded p-1 overflow-hidden text-ellipsis"
|
||||||
|
Reference in New Issue
Block a user