mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-05-02 17:44:52 +00:00
Generated by Spark: Convert more pages to JSON-driven configuration (Models, Components, Workflows)
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { PageRenderer } from '@/lib/json-ui/page-renderer'
|
||||
import componentTreeSchema from '@/config/pages/component-tree.json'
|
||||
import { PageSchema } from '@/types/json-ui'
|
||||
|
||||
interface JSONComponentTreeManagerProps {
|
||||
trees: any[]
|
||||
onTreesChange: (updater: (trees: any[]) => any[]) => void
|
||||
}
|
||||
|
||||
export function JSONComponentTreeManager({ trees, onTreesChange }: JSONComponentTreeManagerProps) {
|
||||
const schema = componentTreeSchema as PageSchema
|
||||
|
||||
const handleCustomAction = async (action: any, event?: any) => {
|
||||
console.log('[JSONComponentTreeManager] Custom action:', action, event)
|
||||
}
|
||||
|
||||
return <PageRenderer schema={schema} onCustomAction={handleCustomAction} />
|
||||
}
|
||||
Reference in New Issue
Block a user