trustgraph/src/model/node-properties-table.tsx

33 lines
995 B
TypeScript
Raw Normal View History

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(),
}),
];