mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-03 15:01:00 +02:00
33 lines
995 B
TypeScript
33 lines
995 B
TypeScript
|
|
import { createColumnHelper } from "@tanstack/react-table";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Node property data structure for the node properties table
|
||
|
|
* Represents a single property with its predicate label and value
|
||
|
|
*/
|
||
|
|
export type NodeProperty = {
|
||
|
|
property: string; // Human-readable property name (label)
|
||
|
|
value: string; // Property value
|
||
|
|
uri?: string; // Original property URI (optional, for reference)
|
||
|
|
};
|
||
|
|
|
||
|
|
// Create a column helper instance for type-safe column definitions
|
||
|
|
export const columnHelper = createColumnHelper<NodeProperty>();
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Column definitions for the node properties table
|
||
|
|
* Defines how each column should be rendered and what data it displays
|
||
|
|
*/
|
||
|
|
export const columns = [
|
||
|
|
// Property column - displays the property name/label
|
||
|
|
columnHelper.accessor("property", {
|
||
|
|
header: "Property",
|
||
|
|
cell: (info) => info.getValue(),
|
||
|
|
}),
|
||
|
|
|
||
|
|
// Value column - displays the property value
|
||
|
|
columnHelper.accessor("value", {
|
||
|
|
header: "Value",
|
||
|
|
cell: (info) => info.getValue(),
|
||
|
|
}),
|
||
|
|
];
|