2025-10-14 23:31:09 +08:00
|
|
|
|
import { useState, useEffect } from 'react';
|
2025-10-14 23:42:06 +08:00
|
|
|
|
import { Entity, Core } from '@esengine/ecs-framework';
|
|
|
|
|
|
import { EntityStoreService, MessageHub, ComponentRegistry } from '@esengine/editor-core';
|
|
|
|
|
|
import { AddComponent } from './AddComponent';
|
2025-10-15 00:15:12 +08:00
|
|
|
|
import { PropertyInspector } from './PropertyInspector';
|
2025-10-14 23:31:09 +08:00
|
|
|
|
import '../styles/EntityInspector.css';
|
|
|
|
|
|
|
|
|
|
|
|
interface EntityInspectorProps {
|
|
|
|
|
|
entityStore: EntityStoreService;
|
|
|
|
|
|
messageHub: MessageHub;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function EntityInspector({ entityStore, messageHub }: EntityInspectorProps) {
|
|
|
|
|
|
const [selectedEntity, setSelectedEntity] = useState<Entity | null>(null);
|
2025-10-14 23:42:06 +08:00
|
|
|
|
const [showAddComponent, setShowAddComponent] = useState(false);
|
2025-10-15 00:15:12 +08:00
|
|
|
|
const [expandedComponents, setExpandedComponents] = useState<Set<number>>(new Set());
|
2025-10-14 23:31:09 +08:00
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
|
const handleSelection = (data: { entity: Entity | null }) => {
|
|
|
|
|
|
setSelectedEntity(data.entity);
|
2025-10-14 23:42:06 +08:00
|
|
|
|
setShowAddComponent(false);
|
2025-10-14 23:31:09 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const unsubSelect = messageHub.subscribe('entity:selected', handleSelection);
|
|
|
|
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
|
|
unsubSelect();
|
|
|
|
|
|
};
|
|
|
|
|
|
}, [messageHub]);
|
|
|
|
|
|
|
2025-10-14 23:42:06 +08:00
|
|
|
|
const handleAddComponent = (componentName: string) => {
|
|
|
|
|
|
if (!selectedEntity) return;
|
|
|
|
|
|
|
|
|
|
|
|
const componentRegistry = Core.services.resolve(ComponentRegistry);
|
|
|
|
|
|
if (!componentRegistry) {
|
|
|
|
|
|
console.error('ComponentRegistry not found');
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const component = componentRegistry.createInstance(componentName);
|
|
|
|
|
|
if (component) {
|
|
|
|
|
|
selectedEntity.addComponent(component);
|
|
|
|
|
|
messageHub.publish('component:added', { entity: selectedEntity, component });
|
|
|
|
|
|
setShowAddComponent(false);
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handleRemoveComponent = (index: number) => {
|
|
|
|
|
|
if (!selectedEntity) return;
|
|
|
|
|
|
const component = selectedEntity.components[index];
|
|
|
|
|
|
if (component) {
|
|
|
|
|
|
selectedEntity.removeComponent(component);
|
|
|
|
|
|
messageHub.publish('component:removed', { entity: selectedEntity, component });
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-10-15 00:15:12 +08:00
|
|
|
|
const toggleComponentExpanded = (index: number) => {
|
|
|
|
|
|
setExpandedComponents(prev => {
|
|
|
|
|
|
const newSet = new Set(prev);
|
|
|
|
|
|
if (newSet.has(index)) {
|
|
|
|
|
|
newSet.delete(index);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
newSet.add(index);
|
|
|
|
|
|
}
|
|
|
|
|
|
return newSet;
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const handlePropertyChange = (component: any, propertyName: string, value: any) => {
|
|
|
|
|
|
if (!selectedEntity) return;
|
|
|
|
|
|
messageHub.publish('component:property:changed', {
|
|
|
|
|
|
entity: selectedEntity,
|
|
|
|
|
|
component,
|
|
|
|
|
|
propertyName,
|
|
|
|
|
|
value
|
|
|
|
|
|
});
|
|
|
|
|
|
};
|
|
|
|
|
|
|
2025-10-14 23:31:09 +08:00
|
|
|
|
if (!selectedEntity) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="entity-inspector">
|
|
|
|
|
|
<div className="inspector-header">
|
|
|
|
|
|
<h3>Inspector</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="inspector-content">
|
|
|
|
|
|
<div className="empty-state">No entity selected</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const components = selectedEntity.components;
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="entity-inspector">
|
|
|
|
|
|
<div className="inspector-header">
|
|
|
|
|
|
<h3>Inspector</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="inspector-content">
|
|
|
|
|
|
<div className="inspector-section">
|
|
|
|
|
|
<div className="section-header">Entity Info</div>
|
|
|
|
|
|
<div className="section-content">
|
|
|
|
|
|
<div className="info-row">
|
|
|
|
|
|
<span className="info-label">ID:</span>
|
|
|
|
|
|
<span className="info-value">{selectedEntity.id}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="info-row">
|
|
|
|
|
|
<span className="info-label">Name:</span>
|
|
|
|
|
|
<span className="info-value">Entity {selectedEntity.id}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div className="info-row">
|
|
|
|
|
|
<span className="info-label">Enabled:</span>
|
|
|
|
|
|
<span className="info-value">{selectedEntity.enabled ? 'Yes' : 'No'}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div className="inspector-section">
|
2025-10-14 23:42:06 +08:00
|
|
|
|
<div className="section-header">
|
|
|
|
|
|
<span>Components ({components.length})</span>
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="add-component-btn"
|
|
|
|
|
|
onClick={() => setShowAddComponent(true)}
|
|
|
|
|
|
title="Add Component"
|
|
|
|
|
|
>
|
|
|
|
|
|
+
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
2025-10-14 23:31:09 +08:00
|
|
|
|
<div className="section-content">
|
|
|
|
|
|
{components.length === 0 ? (
|
|
|
|
|
|
<div className="empty-state">No components</div>
|
|
|
|
|
|
) : (
|
|
|
|
|
|
<ul className="component-list">
|
2025-10-15 00:15:12 +08:00
|
|
|
|
{components.map((component, index) => {
|
|
|
|
|
|
const isExpanded = expandedComponents.has(index);
|
|
|
|
|
|
return (
|
|
|
|
|
|
<li key={index} className="component-item">
|
|
|
|
|
|
<div className="component-header">
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="component-expand-btn"
|
|
|
|
|
|
onClick={() => toggleComponentExpanded(index)}
|
|
|
|
|
|
title={isExpanded ? 'Collapse' : 'Expand'}
|
|
|
|
|
|
>
|
|
|
|
|
|
{isExpanded ? '▼' : '▶'}
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<span className="component-icon">🔧</span>
|
|
|
|
|
|
<span className="component-name">{component.constructor.name}</span>
|
|
|
|
|
|
<button
|
|
|
|
|
|
className="remove-component-btn"
|
|
|
|
|
|
onClick={() => handleRemoveComponent(index)}
|
|
|
|
|
|
title="Remove Component"
|
|
|
|
|
|
>
|
|
|
|
|
|
×
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{isExpanded && (
|
|
|
|
|
|
<div className="component-properties">
|
|
|
|
|
|
<PropertyInspector
|
|
|
|
|
|
component={component}
|
|
|
|
|
|
onChange={(propertyName, value) => handlePropertyChange(component, propertyName, value)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</li>
|
|
|
|
|
|
);
|
|
|
|
|
|
})}
|
2025-10-14 23:31:09 +08:00
|
|
|
|
</ul>
|
|
|
|
|
|
)}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-10-14 23:42:06 +08:00
|
|
|
|
|
|
|
|
|
|
{showAddComponent && selectedEntity && (
|
|
|
|
|
|
<AddComponent
|
|
|
|
|
|
entity={selectedEntity}
|
|
|
|
|
|
componentRegistry={Core.services.resolve(ComponentRegistry)}
|
|
|
|
|
|
onAdd={handleAddComponent}
|
|
|
|
|
|
onCancel={() => setShowAddComponent(false)}
|
|
|
|
|
|
/>
|
|
|
|
|
|
)}
|
2025-10-14 23:31:09 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|