@itwin/presentation-hierarchies
v1.2.1
Published
A package for creating hierarchies based on data in iTwin.js iModels.
Downloads
5,342
Readme
@itwin/presentation-hierarchies
Copyright © Bentley Systems, Incorporated. All rights reserved. See LICENSE.md for license terms and full copyright notice.
The @itwin/presentation-hierarchies
package provides APIs for creating hierarchical data structures. While most of the delivered APIs are intended for the use case we anticipate the most - hierarchies based on data in an iTwin.js iModel, the package also supports generic hierarchies that are not based on any specific data source.
The package doesn't depend on any backend, frontend or UI specific packages. As such, it can be used in both backend and frontend applications, and in case of the latter, it can be used with any UI framework. For React-based frontend applications, please see the @itwin/presentation-hierarchies-react
package.
Concepts
A hierarchy is an arrangement of items, called hierarchy nodes, which are represented as being "above", "below", or "at the same level as" one another:
Here are definitions of some basic hierarchy-related concepts based on the above example:
- A hierarchy node is an item in the hierarchy, e.g.
Node 0
,Node 1
,Node 1-0
etc. - A hierarchy level is a group of hierarchy nodes that are at the same level in the hierarchy. In the above example the root level contains
Node 0
,Node 1
andNode 2
. Child level ofNode 2
containsNode 2-0
,Node 2-1
. - A hierarchy branch is a sub-hierarchy under specific parent node, including the parent itself. In the above example, the branch of
Node 2
containsNode 2
,Node 2-0
,Node 2-1
andNode 2-1-0
.
In the context of @itwin/presentation-hierarchies
package, a hierarchy is built by requesting hierarchy levels from a hierarchy provider. A couple of built-in hierarchy provider implementations are delivered with the package - see hierarchy providers section for more information.
Hierarchy nodes
A HierarchyNode
data structure in the package represents a single node in a hierarchy. It contains information about what the node represents (through it's key
property), label and other properties. There are multiple types of nodes:
- A generic node is not based on any iModel data. Its
key
is aGenericNodeKey
and has a consumer-supplied identifier with an optionalsource
attribute identifying the hierarchy provider that created the node. - An instances node is based on one or more ECInstance(s) in an iModel. Its
key
is anInstancesNodeKey
and contains identifiers of those ECInstances, in addition toimodelKey
attribute that identifies the source iModel. - A grouping node groups one or more instances nodes. Its
key
is aGroupingNodeKey
and contains the grouping criteria, which depends on the type of grouping:- Label grouping node keys have a label.
- Class grouping nodes have a full class name.
- Property grouping nodes have a full class name containing the property and property name. Also, depending on whether the grouping is based on value or a range of values, that information is also included.
HierarchyNode
and HierarchyNodeKey
namespaces contain type guards and utility functions for working with hierarchy nodes and their keys.
Hierarchy providers
HierarchyProvider
is the core concept of the library, which consumers use directly to build hierarchies. While that is an interface that consumers are free to implement, the package delivers a couple of built-in implementations:
A provider that builds hierarchies based on data in an iTwin.js iModel. The
createIModelHierarchyProvider
function is used to create such a provider. See iModel-based hierarchies learning page for more information.A merged provider that combines multiple providers into a single one. This is useful when you want to combine multiple hierarchies, possibly built from different data sources, into a single one. See Merged hierarchies learning page for more information.
Learning
Are you migrating from Presentation Rules? Check out our Migrating from Presentation Rules system learning page!
Below is a list of learning material related to building hierarchies:
- General topics:
- iModel-based hierarchies:
Do you think something is missing in the above list? Let us know by creating an issue.
Basic example
Here's a simple example of how to create a hierarchy provider and build a hierarchy of iModels' Models and Elements, with the latter grouped by class:
import { IModelConnection } from "@itwin/core-frontend";
import { SchemaContext } from "@itwin/ecschema-metadata";
import { ECSchemaRpcLocater } from "@itwin/ecschema-rpcinterface-common";
import { createECSchemaProvider, createECSqlQueryExecutor } from "@itwin/presentation-core-interop";
import { createLimitingECSqlQueryExecutor } from "@itwin/presentation-hierarchies";
import { createCachingECClassHierarchyInspector } from "@itwin/presentation-shared";
import {
createIModelHierarchyProvider,
createNodesQueryClauseFactory,
createPredicateBasedHierarchyDefinition,
DefineInstanceNodeChildHierarchyLevelProps,
HierarchyNode,
HierarchyProvider,
} from "@itwin/presentation-hierarchies";
import { createBisInstanceLabelSelectClauseFactory, ECSqlBinding } from "@itwin/presentation-shared";
// Not really part of the package, but we need SchemaContext to create a hierarchy provider. It's
// recommended to cache the schema context and reuse it across different application's components to
// avoid loading and storing same schemas multiple times.
const imodelSchemaContextsCache = new Map<string, SchemaContext>();
function getIModelSchemaContext(imodel: IModelConnection) {
let context = imodelSchemaContextsCache.get(imodel.key);
if (!context) {
context = new SchemaContext();
context.addLocater(new ECSchemaRpcLocater(imodel.getRpcProps()));
imodelSchemaContextsCache.set(imodel.key, context);
imodel.onClose.addListener(() => imodelSchemaContextsCache.delete(imodel.key));
}
return context;
}
function createIModelAccess(imodel: IModelConnection) {
const schemaProvider = createECSchemaProvider(getIModelSchemaContext(imodel));
return {
// The key of the iModel we're accessing
imodelKey: imodel.key,
// Schema provider provides access to EC information (metadata)
...schemaProvider,
// While caching for hierarchy inspector is not mandatory, it's recommended to use it to improve performance
...createCachingECClassHierarchyInspector({ schemaProvider, cacheSize: 100 }),
// The second argument is the maximum number of rows the executor will return - this allows us to
// avoid creating hierarchy levels of insane size (expensive to us and useless to users)
...createLimitingECSqlQueryExecutor(createECSqlQueryExecutor(imodel), 1000),
};
}
function createProvider(imodelAccess: Parameters<typeof createIModelHierarchyProvider>[0]["imodelAccess"]): HierarchyProvider {
// Create a factory for building labels SELECT query clauses according to BIS conventions
const labelsQueryFactory = createBisInstanceLabelSelectClauseFactory({ classHierarchyInspector: imodelAccess });
// Create a factory for building nodes SELECT query clauses in a format understood by the provider
const nodesQueryFactory = createNodesQueryClauseFactory({ imodelAccess, instanceLabelSelectClauseFactory: labelsQueryFactory });
// Then, define the hierarchy
const hierarchyDefinition = createPredicateBasedHierarchyDefinition({
classHierarchyInspector: imodelAccess,
hierarchy: {
// For root nodes, select all BisCore.GeometricModel3d instances
rootNodes: async () => [
{
fullClassName: "BisCore.GeometricModel3d",
query: {
ecsql: `
SELECT
${await nodesQueryFactory.createSelectClause({
ecClassId: { selector: "this.ECClassId" },
ecInstanceId: { selector: "this.ECInstanceId" },
nodeLabel: {
selector: await labelsQueryFactory.createSelectClause({ classAlias: "this", className: "BisCore.GeometricModel3d" }),
},
})}
FROM BisCore.GeometricModel3d this
`,
},
},
],
childNodes: [
{
// For BisCore.Model parent nodes, select all BisCore.Element instances contained in corresponding model
parentInstancesNodePredicate: "BisCore.Model",
definitions: async ({ parentNodeInstanceIds }: DefineInstanceNodeChildHierarchyLevelProps) => [
{
fullClassName: "BisCore.Element",
query: {
ecsql: `
SELECT
${await nodesQueryFactory.createSelectClause({
ecClassId: { selector: "this.ECClassId" },
ecInstanceId: { selector: "this.ECInstanceId" },
nodeLabel: {
selector: await labelsQueryFactory.createSelectClause({ classAlias: "this", className: "BisCore.Element" }),
},
grouping: {
byClass: true,
},
})}
FROM BisCore.Element this
WHERE this.Model.Id IN (${parentNodeInstanceIds.map(() => "?").join(",")})
`,
bindings: [...parentNodeInstanceIds.map((id): ECSqlBinding => ({ type: "id", value: id }))],
},
},
],
},
],
},
});
// Finally, create the provider
return createIModelHierarchyProvider({ imodelAccess, hierarchyDefinition });
}
async function main() {
const provider = createProvider(createIModelAccess(await getIModelConnection()));
async function loadBranch(parentNode: HierarchyNode | undefined, indent: number = 0) {
for await (const node of provider.getNodes({ parentNode })) {
console.log(`${new Array(indent * 2 + 1).join(" ")}${node.label}`);
await loadBranch(node, indent + 1);
}
}
await loadBranch(undefined);
}