mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-26 06:34:54 +00:00
- Fixed lazy-d3-bar-chart.json className binding to use className instead of data - Fixed component-tree.json className binding to use className instead of data - Code review feedback addressed Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
66 lines
2.1 KiB
JSON
66 lines
2.1 KiB
JSON
{
|
|
"id": "component-tree-container",
|
|
"type": "div",
|
|
"bindings": {
|
|
"className": {
|
|
"source": "className",
|
|
"transform": "className ? `space-y-2 ${className}` : 'space-y-2'"
|
|
}
|
|
},
|
|
"children": [
|
|
{
|
|
"id": "empty-message",
|
|
"type": "p",
|
|
"props": { "className": "text-sm text-muted-foreground" },
|
|
"bindings": { "children": "emptyMessage" },
|
|
"conditional": { "if": "components.length === 0" }
|
|
},
|
|
{
|
|
"id": "tree-nodes",
|
|
"type": "div",
|
|
"props": { "className": "space-y-1" },
|
|
"conditional": { "if": "components.length > 0" },
|
|
"children": [
|
|
{
|
|
"id": "tree-node-list",
|
|
"type": "list",
|
|
"bindings": {
|
|
"items": "treeData",
|
|
"keyPath": "component.id"
|
|
},
|
|
"itemTemplate": {
|
|
"type": "button",
|
|
"props": { "type": "button" },
|
|
"bindings": {
|
|
"onClick": {
|
|
"source": "onSelect,item.component.id",
|
|
"transform": "() => onSelect?.(item.component.id)"
|
|
},
|
|
"className": {
|
|
"source": "item.isSelected",
|
|
"transform": "item.isSelected ? 'flex w-full items-center gap-2 rounded-md px-2 py-1 text-left text-sm transition-colors bg-accent/40 text-foreground' : 'flex w-full items-center gap-2 rounded-md px-2 py-1 text-left text-sm transition-colors hover:bg-muted'"
|
|
},
|
|
"style": {
|
|
"source": "item.paddingLeft",
|
|
"transform": "{ paddingLeft: item.paddingLeft }"
|
|
}
|
|
},
|
|
"children": [
|
|
{
|
|
"type": "span",
|
|
"props": { "className": "font-medium" },
|
|
"bindings": { "children": "item.component.type" }
|
|
},
|
|
{
|
|
"type": "span",
|
|
"props": { "className": "text-xs text-muted-foreground" },
|
|
"bindings": { "children": "item.component.id" }
|
|
}
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|