@itwin/core-common 5.9.0-dev.9 → 5.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -1
- package/lib/cjs/ConcurrentQuery.js +1 -1
- package/lib/cjs/ConcurrentQuery.js.map +1 -1
- package/lib/cjs/DisplayStyleSettings.d.ts.map +1 -1
- package/lib/cjs/DisplayStyleSettings.js.map +1 -1
- package/lib/cjs/HiddenLine.d.ts.map +1 -1
- package/lib/cjs/HiddenLine.js +1 -2
- package/lib/cjs/HiddenLine.js.map +1 -1
- package/lib/cjs/IpcAppProps.d.ts +2 -2
- package/lib/cjs/IpcAppProps.js.map +1 -1
- package/lib/cjs/ViewDetails.js.map +1 -1
- package/lib/cjs/ViewProps.d.ts +44 -10
- package/lib/cjs/ViewProps.d.ts.map +1 -1
- package/lib/cjs/ViewProps.js +20 -0
- package/lib/cjs/ViewProps.js.map +1 -1
- package/lib/cjs/tile/TileIO.js.map +1 -1
- package/lib/esm/ConcurrentQuery.js +1 -1
- package/lib/esm/ConcurrentQuery.js.map +1 -1
- package/lib/esm/DisplayStyleSettings.d.ts.map +1 -1
- package/lib/esm/DisplayStyleSettings.js.map +1 -1
- package/lib/esm/HiddenLine.d.ts.map +1 -1
- package/lib/esm/HiddenLine.js +1 -2
- package/lib/esm/HiddenLine.js.map +1 -1
- package/lib/esm/IpcAppProps.d.ts +2 -2
- package/lib/esm/IpcAppProps.js.map +1 -1
- package/lib/esm/ViewDetails.js.map +1 -1
- package/lib/esm/ViewProps.d.ts +44 -10
- package/lib/esm/ViewProps.d.ts.map +1 -1
- package/lib/esm/ViewProps.js +18 -0
- package/lib/esm/ViewProps.js.map +1 -1
- package/lib/esm/tile/TileIO.js.map +1 -1
- package/package.json +6 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IpcAppProps.js","sourceRoot":"","sources":["../../src/IpcAppProps.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAwBH;;GAEG;AACI,MAAM,wBAAwB,GAAG,CAAC,QAAgB,EAAE,EAAE,CAAC,GAAG,sBAAc,CAAC,SAAS,gBAAgB,QAAQ,EAAE,CAAC;AAAvG,QAAA,wBAAwB,4BAA+E;AAwBpH,gBAAgB;AACH,QAAA,cAAc,GAAG;IAC5B,SAAS,EAAE,sBAAsB;IACjC,SAAS,EAAE,4BAA4B;IACvC,IAAI,EAAE,mBAAmB;IACzB,YAAY,EAAE,4BAA4B;CAClC,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module NativeApp\n */\n\nimport { GuidString, Id64String, IModelStatus, LogLevel, OpenMode } from \"@itwin/core-bentley\";\nimport { Range3dProps, XYZProps } from \"@itwin/core-geometry\";\nimport { OpenBriefcaseProps, OpenCheckpointArgs } from \"./BriefcaseTypes\";\nimport { ChangedEntities } from \"./ChangedEntities\";\nimport { ChangesetIdWithIndex, ChangesetIndex, ChangesetIndexAndId, ChangesetProps } from \"./ChangesetProps\";\nimport { GeographicCRSProps } from \"./geometry/CoordinateReferenceSystem\";\nimport { BriefcaseConnectionProps, EcefLocationProps, IModelConnectionProps, IModelRpcProps, RootSubjectProps, SnapshotOpenOptions, StandaloneOpenOptions } from \"./IModel\";\nimport { ModelGeometryChangesProps } from \"./ModelGeometryChanges\";\nimport { ReinstateTxnArgs, ReverseTxnArgs, TxnProps } from \"./TxnProps\";\n\n/** Options for pulling changes into iModel.\n * @internal\n */\nexport interface PullChangesOptions {\n /** Enables progress reporting. */\n reportProgress?: boolean;\n /** Interval for reporting progress (in milliseconds). */\n progressInterval?: number;\n /** Enables checks for abort. */\n enableCancellation?: boolean;\n}\n\n/** Get IPC channel name used for reporting progress of pulling changes into iModel.\n * @internal\n */\nexport const getPullChangesIpcChannel = (iModelId: string) => `${ipcAppChannels.functions}/pullChanges/${iModelId}`;\n\n/** Identifies a list of tile content Ids belonging to a single tile tree.\n * @internal\n */\nexport interface TileTreeContentIds {\n treeId: string;\n contentIds: string[];\n}\n\n/** Specifies a [GeometricModel]($backend)'s Id and a Guid identifying the current state of the geometry contained within the model.\n * @see [TxnManager.onModelGeometryChanged]($backend) and [BriefcaseTxns.onModelGeometryChanged]($frontend).\n * @public\n * @extensions\n */\nexport interface ModelIdAndGeometryGuid {\n /** The model's Id. */\n id: Id64String;\n /** A unique identifier for the current state of the model's geometry. If the guid differs between two revisions of the same iModel, it indicates that the geometry differs.\n * This is primarily an implementation detail used to determine whether [Tile]($frontend)s produced for one revision are compatible with another revision.\n */\n guid: GuidString;\n}\n\n/** @internal */\nexport const ipcAppChannels = {\n functions: \"itwinjs-core/ipc-app\",\n appNotify: \"itwinjs-core/ipcApp-notify\",\n txns: \"itwinjs-core/txns\",\n editingScope: \"itwinjs-core/editing-scope\",\n} as const;\n\n/**\n * Interface implemented by the frontend [NotificationHandler]($common) to be notified of events from IpcApp backend.\n * @internal\n */\nexport interface IpcAppNotifications {\n notifyApp: () => void;\n}\n\n/** @internal */\nexport interface NotifyEntitiesChangedMetadata {\n /** Class full name (\"Schema:Class\") */\n name: string;\n /** The indices in [[NotifyEntitiesChangedArgs.meta]] of each of this class's **direct** base classes. */\n bases: number[];\n}\n\n/** Arguments supplied to [[TxnNotifications.notifyElementsChanged]] and [[TxnNotifications.notifyModelsChanged]].\n * @internal\n */\nexport interface NotifyEntitiesChangedArgs extends ChangedEntities {\n /** An array of the same length as [[ChangedEntities.inserted]] (or empty if that array is undefined), containing the index in the [[meta]] array at which the\n * metadata for each entity's class is located.\n */\n insertedMeta: number[];\n /** See insertedMeta. */\n updatedMeta: number[];\n /** See insertedMeta. */\n deletedMeta: number[];\n\n /** Metadata describing each unique class of entity in this set of changes, followed by each unique direct or indirect base class of those classes. */\n meta: NotifyEntitiesChangedMetadata[];\n}\n\n/** Interface implemented by the frontend [NotificationHandler]($common) to be notified of changes to an iModel.\n * @see [TxnManager]($backend) for the source of these events.\n * @see [BriefcaseTxns]($frontend) for the frontend implementation.\n * @internal\n */\nexport interface TxnNotifications {\n notifyElementsChanged: (changes: NotifyEntitiesChangedArgs) => void;\n notifyModelsChanged: (changes: NotifyEntitiesChangedArgs) => void;\n notifyGeometryGuidsChanged: (changes: ModelIdAndGeometryGuid[]) => void;\n notifyCommit: () => void;\n notifyCommitted: (hasPendingTxns: boolean, time: number) => void;\n notifyReplayExternalTxns: () => void;\n notifyReplayedExternalTxns: () => void;\n notifyChangesApplied: () => void;\n notifyBeforeUndoRedo: (isUndo: boolean) => void;\n notifyAfterUndoRedo: (isUndo: boolean) => void;\n notifyPulledChanges: (parentChangeSetId: ChangesetIndexAndId) => void;\n notifyPushedChanges: (parentChangeSetId: ChangesetIndexAndId) => void;\n\n notifyIModelNameChanged: (name: string) => void;\n notifyRootSubjectChanged: (subject: RootSubjectProps) => void;\n notifyProjectExtentsChanged: (extents: Range3dProps) => void;\n notifyGlobalOriginChanged: (origin: XYZProps) => void;\n notifyEcefLocationChanged: (ecef: EcefLocationProps | undefined) => void;\n notifyGeographicCoordinateSystemChanged: (gcs: GeographicCRSProps | undefined) => void;\n\n notifyPullMergeBegin: (changeset: ChangesetIdWithIndex) => void;\n notifyRebaseBegin: (txns: TxnProps[]) => void;\n notifyRebaseTxnBegin: (txnProps: TxnProps) => void;\n notifyRebaseTxnEnd: (txnProps: TxnProps) => void;\n notifyRebaseEnd: (txns: TxnProps[]) => void;\n notifyPullMergeEnd: (changeset: ChangesetIdWithIndex) => void;\n notifyDownloadChangesetsBegin: () => void;\n notifyDownloadChangesetsEnd: () => void;\n notifyReverseLocalChangesBegin: () => void;\n notifyReverseLocalChangesEnd: (txns: TxnProps[]) => void;\n notifyApplyIncomingChangesBegin: (changes: ChangesetProps[]) => void;\n notifyApplyIncomingChangesEnd: (changes: ChangesetProps[]) => void;\n\n}\n\n/**\n * Interface registered by the frontend [NotificationHandler]($common) to be notified of changes to an iModel during an [GraphicalEditingScope]($frontend).\n * @internal\n */\nexport interface EditingScopeNotifications {\n notifyGeometryChanged: (modelProps: ModelGeometryChangesProps[]) => void;\n}\n\n/**\n * The methods that may be invoked via Ipc from the frontend of an IpcApp and are implemented on its backend.\n * @internal\n */\nexport interface IpcAppFunctions {\n /** Send frontend log to backend.\n * @param _level Specify log level.\n * @param _category Specify log category.\n * @param _message Specify log message.\n * @param _metaData metaData if any.\n */\n log: (_timestamp: number, _level: LogLevel, _category: string, _message: string, _metaData?: any) => Promise<void>;\n\n /** see BriefcaseConnection.openFile */\n openBriefcase: (args: OpenBriefcaseProps) => Promise<BriefcaseConnectionProps>;\n /** see BriefcaseConnection.openStandalone */\n openCheckpoint: (args: OpenCheckpointArgs) => Promise<IModelConnectionProps>;\n /** see BriefcaseConnection.openStandalone */\n openStandalone: (filePath: string, openMode: OpenMode, opts?: StandaloneOpenOptions) => Promise<IModelConnectionProps>;\n /** see SnapshotConnection.openFile */\n openSnapshot: (filePath: string, opts?: SnapshotOpenOptions) => Promise<IModelConnectionProps>;\n /** see BriefcaseConnection.close */\n closeIModel: (key: string) => Promise<void>;\n /**\n * @deprecated Use methods on EditCommand instead.\n * see BriefcaseConnection.saveChanges\n */\n saveChanges: (key: string, description?: string) => Promise<void>;\n /**\n * @deprecated Use methods on EditCommand instead.\n * see BriefcaseConnection.abandonChanges\n */\n abandonChanges: (key: string) => Promise<void>;\n /** see BriefcaseTxns.hasPendingTxns */\n hasPendingTxns: (key: string) => Promise<boolean>;\n /** see BriefcaseTxns.isUndoPossible */\n isUndoPossible: (key: string) => Promise<boolean>;\n /** see BriefcaseTxns.isRedoPossible */\n isRedoPossible: (key: string) => Promise<boolean>;\n /** see BriefcaseTxns.getUndoString */\n getUndoString: (key: string) => Promise<string>;\n /** see BriefcaseTxns.getRedoString */\n getRedoString: (key: string) => Promise<string>;\n\n /** see BriefcaseConnection.pullChanges */\n pullChanges: (key: string, toIndex?: ChangesetIndex, options?: PullChangesOptions) => Promise<ChangesetIndexAndId>;\n /** Cancels pull of changes. */\n cancelPullChangesRequest: (key: string) => Promise<void>;\n /** see BriefcaseConnection.pushChanges */\n pushChanges: (key: string, description: string) => Promise<ChangesetIndexAndId>;\n /** Cancels currently pending or active generation of tile content. */\n cancelTileContentRequests: (tokenProps: IModelRpcProps, _contentIds: TileTreeContentIds[]) => Promise<void>;\n\n /** Cancel element graphics requests.\n * @see [[IModelTileRpcInterface.requestElementGraphics]].\n */\n cancelElementGraphicsRequests: (key: string, _requestIds: string[]) => Promise<void>;\n\n toggleGraphicalEditingScope: (key: string, _startSession: boolean) => Promise<boolean>;\n isGraphicalEditingSupported: (key: string) => Promise<boolean>;\n\n reverseTxns: (key: string, numOperations: number) => Promise<IModelStatus>;\n reverseAllTxn: (key: string) => Promise<IModelStatus>;\n reinstateTxn: (key: string) => Promise<IModelStatus>;\n reverseTxnsAsync: (key: string, numOperations: number, args?: ReverseTxnArgs) => Promise<void>;\n reverseAllTxnsAsync: (key: string, args?: ReverseTxnArgs) => Promise<void>;\n reinstateTxnAsync: (key: string, args?: ReinstateTxnArgs) => Promise<void>;\n restartTxnSession: (key: string) => Promise<void>;\n\n /** Query the number of concurrent threads supported by the host's IO or CPU thread pool. */\n queryConcurrency: (pool: \"io\" | \"cpu\") => Promise<number>;\n}\n\n"]}
|
|
1
|
+
{"version":3,"file":"IpcAppProps.js","sourceRoot":"","sources":["../../src/IpcAppProps.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAwBH;;GAEG;AACI,MAAM,wBAAwB,GAAG,CAAC,QAAgB,EAAE,EAAE,CAAC,GAAG,sBAAc,CAAC,SAAS,gBAAgB,QAAQ,EAAE,CAAC;AAAvG,QAAA,wBAAwB,4BAA+E;AAwBpH,gBAAgB;AACH,QAAA,cAAc,GAAG;IAC5B,SAAS,EAAE,sBAAsB;IACjC,SAAS,EAAE,4BAA4B;IACvC,IAAI,EAAE,mBAAmB;IACzB,YAAY,EAAE,4BAA4B;CAClC,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module NativeApp\n */\n\nimport { GuidString, Id64String, IModelStatus, LogLevel, OpenMode } from \"@itwin/core-bentley\";\nimport { Range3dProps, XYZProps } from \"@itwin/core-geometry\";\nimport { OpenBriefcaseProps, OpenCheckpointArgs } from \"./BriefcaseTypes\";\nimport { ChangedEntities } from \"./ChangedEntities\";\nimport { ChangesetIdWithIndex, ChangesetIndex, ChangesetIndexAndId, ChangesetProps } from \"./ChangesetProps\";\nimport { GeographicCRSProps } from \"./geometry/CoordinateReferenceSystem\";\nimport { BriefcaseConnectionProps, EcefLocationProps, IModelConnectionProps, IModelRpcProps, RootSubjectProps, SnapshotOpenOptions, StandaloneOpenOptions } from \"./IModel\";\nimport { ModelGeometryChangesProps } from \"./ModelGeometryChanges\";\nimport { ReinstateTxnArgs, ReverseTxnArgs, TxnProps } from \"./TxnProps\";\n\n/** Options for pulling changes into iModel.\n * @internal\n */\nexport interface PullChangesOptions {\n /** Enables progress reporting. */\n reportProgress?: boolean;\n /** Interval for reporting progress (in milliseconds). */\n progressInterval?: number;\n /** Enables checks for abort. */\n enableCancellation?: boolean;\n}\n\n/** Get IPC channel name used for reporting progress of pulling changes into iModel.\n * @internal\n */\nexport const getPullChangesIpcChannel = (iModelId: string) => `${ipcAppChannels.functions}/pullChanges/${iModelId}`;\n\n/** Identifies a list of tile content Ids belonging to a single tile tree.\n * @internal\n */\nexport interface TileTreeContentIds {\n treeId: string;\n contentIds: string[];\n}\n\n/** Specifies a [GeometricModel]($backend)'s Id and a Guid identifying the current state of the geometry contained within the model.\n * @see [TxnManager.onModelGeometryChanged]($backend) and [BriefcaseTxns.onModelGeometryChanged]($frontend).\n * @public\n * @extensions\n */\nexport interface ModelIdAndGeometryGuid {\n /** The model's Id. */\n id: Id64String;\n /** A unique identifier for the current state of the model's geometry. If the guid differs between two revisions of the same iModel, it indicates that the geometry differs.\n * This is primarily an implementation detail used to determine whether [Tile]($frontend)s produced for one revision are compatible with another revision.\n */\n guid: GuidString;\n}\n\n/** @internal */\nexport const ipcAppChannels = {\n functions: \"itwinjs-core/ipc-app\",\n appNotify: \"itwinjs-core/ipcApp-notify\",\n txns: \"itwinjs-core/txns\",\n editingScope: \"itwinjs-core/editing-scope\",\n} as const;\n\n/**\n * Interface implemented by the frontend [NotificationHandler]($common) to be notified of events from IpcApp backend.\n * @internal\n */\nexport interface IpcAppNotifications {\n notifyApp: () => void;\n}\n\n/** @internal */\nexport interface NotifyEntitiesChangedMetadata {\n /** Class full name (\"Schema:Class\") */\n name: string;\n /** The indices in [[NotifyEntitiesChangedArgs.meta]] of each of this class's **direct** base classes. */\n bases: number[];\n}\n\n/** Arguments supplied to [[TxnNotifications.notifyElementsChanged]] and [[TxnNotifications.notifyModelsChanged]].\n * @internal\n */\nexport interface NotifyEntitiesChangedArgs extends ChangedEntities {\n /** An array of the same length as [[ChangedEntities.inserted]] (or empty if that array is undefined), containing the index in the [[meta]] array at which the\n * metadata for each entity's class is located.\n */\n insertedMeta: number[];\n /** See insertedMeta. */\n updatedMeta: number[];\n /** See insertedMeta. */\n deletedMeta: number[];\n\n /** Metadata describing each unique class of entity in this set of changes, followed by each unique direct or indirect base class of those classes. */\n meta: NotifyEntitiesChangedMetadata[];\n}\n\n/** Interface implemented by the frontend [NotificationHandler]($common) to be notified of changes to an iModel.\n * @see [TxnManager]($backend) for the source of these events.\n * @see [BriefcaseTxns]($frontend) for the frontend implementation.\n * @internal\n */\nexport interface TxnNotifications {\n notifyElementsChanged: (changes: NotifyEntitiesChangedArgs) => void;\n notifyModelsChanged: (changes: NotifyEntitiesChangedArgs) => void;\n notifyGeometryGuidsChanged: (changes: ModelIdAndGeometryGuid[]) => void;\n notifyCommit: () => void;\n notifyCommitted: (hasPendingTxns: boolean, time: number) => void;\n notifyReplayExternalTxns: () => void;\n notifyReplayedExternalTxns: () => void;\n notifyChangesApplied: () => void;\n notifyBeforeUndoRedo: (isUndo: boolean) => void;\n notifyAfterUndoRedo: (isUndo: boolean) => void;\n notifyPulledChanges: (parentChangeSetId: ChangesetIndexAndId) => void;\n notifyPushedChanges: (parentChangeSetId: ChangesetIndexAndId) => void;\n\n notifyIModelNameChanged: (name: string) => void;\n notifyRootSubjectChanged: (subject: RootSubjectProps) => void;\n notifyProjectExtentsChanged: (extents: Range3dProps) => void;\n notifyGlobalOriginChanged: (origin: XYZProps) => void;\n notifyEcefLocationChanged: (ecef: EcefLocationProps | undefined) => void;\n notifyGeographicCoordinateSystemChanged: (gcs: GeographicCRSProps | undefined) => void;\n\n notifyPullMergeBegin: (changeset: ChangesetIdWithIndex) => void;\n notifyRebaseBegin: (txns: TxnProps[]) => void;\n notifyRebaseTxnBegin: (txnProps: TxnProps) => void;\n notifyRebaseTxnEnd: (txnProps: TxnProps) => void;\n notifyRebaseEnd: (txns: TxnProps[]) => void;\n notifyPullMergeEnd: (changeset: ChangesetIdWithIndex) => void;\n notifyDownloadChangesetsBegin: () => void;\n notifyDownloadChangesetsEnd: () => void;\n notifyReverseLocalChangesBegin: () => void;\n notifyReverseLocalChangesEnd: (txns: TxnProps[]) => void;\n notifyApplyIncomingChangesBegin: (changes: ChangesetProps[]) => void;\n notifyApplyIncomingChangesEnd: (changes: ChangesetProps[]) => void;\n\n}\n\n/**\n * Interface registered by the frontend [NotificationHandler]($common) to be notified of changes to an iModel during an [GraphicalEditingScope]($frontend).\n * @internal\n */\nexport interface EditingScopeNotifications {\n notifyGeometryChanged: (modelProps: ModelGeometryChangesProps[]) => void;\n}\n\n/**\n * The methods that may be invoked via Ipc from the frontend of an IpcApp and are implemented on its backend.\n * @internal\n */\nexport interface IpcAppFunctions {\n /** Send frontend log to backend.\n * @param _level Specify log level.\n * @param _category Specify log category.\n * @param _message Specify log message.\n * @param _metaData metaData if any.\n */\n log: (_timestamp: number, _level: LogLevel, _category: string, _message: string, _metaData?: any) => Promise<void>;\n\n /** see BriefcaseConnection.openFile */\n openBriefcase: (args: OpenBriefcaseProps) => Promise<BriefcaseConnectionProps>;\n /** see BriefcaseConnection.openStandalone */\n openCheckpoint: (args: OpenCheckpointArgs) => Promise<IModelConnectionProps>;\n /** see BriefcaseConnection.openStandalone */\n openStandalone: (filePath: string, openMode: OpenMode, opts?: StandaloneOpenOptions) => Promise<IModelConnectionProps>;\n /** see SnapshotConnection.openFile */\n openSnapshot: (filePath: string, opts?: SnapshotOpenOptions) => Promise<IModelConnectionProps>;\n /** see BriefcaseConnection.close */\n closeIModel: (key: string) => Promise<void>;\n /**\n * @deprecated in 5.1.9 - will not be removed until after 2027-05-04. Use methods on EditCommand instead.\n * see BriefcaseConnection.saveChanges\n */\n saveChanges: (key: string, description?: string) => Promise<void>;\n /**\n * @deprecated in 5.1.9 - will not be removed until after 2027-05-04. Use methods on EditCommand instead.\n * see BriefcaseConnection.abandonChanges\n */\n abandonChanges: (key: string) => Promise<void>;\n /** see BriefcaseTxns.hasPendingTxns */\n hasPendingTxns: (key: string) => Promise<boolean>;\n /** see BriefcaseTxns.isUndoPossible */\n isUndoPossible: (key: string) => Promise<boolean>;\n /** see BriefcaseTxns.isRedoPossible */\n isRedoPossible: (key: string) => Promise<boolean>;\n /** see BriefcaseTxns.getUndoString */\n getUndoString: (key: string) => Promise<string>;\n /** see BriefcaseTxns.getRedoString */\n getRedoString: (key: string) => Promise<string>;\n\n /** see BriefcaseConnection.pullChanges */\n pullChanges: (key: string, toIndex?: ChangesetIndex, options?: PullChangesOptions) => Promise<ChangesetIndexAndId>;\n /** Cancels pull of changes. */\n cancelPullChangesRequest: (key: string) => Promise<void>;\n /** see BriefcaseConnection.pushChanges */\n pushChanges: (key: string, description: string) => Promise<ChangesetIndexAndId>;\n /** Cancels currently pending or active generation of tile content. */\n cancelTileContentRequests: (tokenProps: IModelRpcProps, _contentIds: TileTreeContentIds[]) => Promise<void>;\n\n /** Cancel element graphics requests.\n * @see [[IModelTileRpcInterface.requestElementGraphics]].\n */\n cancelElementGraphicsRequests: (key: string, _requestIds: string[]) => Promise<void>;\n\n toggleGraphicalEditingScope: (key: string, _startSession: boolean) => Promise<boolean>;\n isGraphicalEditingSupported: (key: string) => Promise<boolean>;\n\n reverseTxns: (key: string, numOperations: number) => Promise<IModelStatus>;\n reverseAllTxn: (key: string) => Promise<IModelStatus>;\n reinstateTxn: (key: string) => Promise<IModelStatus>;\n reverseTxnsAsync: (key: string, numOperations: number, args?: ReverseTxnArgs) => Promise<void>;\n reverseAllTxnsAsync: (key: string, args?: ReverseTxnArgs) => Promise<void>;\n reinstateTxnAsync: (key: string, args?: ReinstateTxnArgs) => Promise<void>;\n restartTxnSession: (key: string) => Promise<void>;\n\n /** Query the number of concurrent threads supported by the host's IO or CPU thread pool. */\n queryConcurrency: (pool: \"io\" | \"cpu\") => Promise<number>;\n}\n\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViewDetails.js","sourceRoot":"","sources":["../../src/ViewDetails.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH,sDAAmF;AACnF,wDAAoF;AACpF,qDAAwE;AAyBxE;;;GAGG;AACH,IAAY,mBAWX;AAXD,WAAY,mBAAmB;IAC7B,8BAA8B;IAC9B,6DAAQ,CAAA;IACR,UAAU;IACV,mEAAW,CAAA;IACX,YAAY;IACZ,mEAAW,CAAA;IACX,YAAY;IACZ,mEAAW,CAAA;IACX,mDAAmD;IACnD,qEAAY,CAAA;AACd,CAAC,EAXW,mBAAmB,mCAAnB,mBAAmB,QAW9B;AAcD;;;;GAIG;AACH,MAAa,WAAW;IACtB,gBAAgB;IACG,KAAK,CAAmB;IACnC,WAAW,CAAc;IAEjC,0EAA0E;IAC1D,mBAAmB,GAAG,IAAI,sBAAO,EAA6C,CAAC;IAE/F,gBAAgB;IAChB,YAAmB,cAAkD;QACnE,IAAI,CAAC,cAAc,CAAC,WAAW;YAC7B,cAAc,CAAC,WAAW,GAAG,EAAE,CAAC;QAElC,IAAI,CAAC,KAAK,GAAG,cAAc,CAAC,WAAW,CAAC;IAC1C,CAAC;IAED,8DAA8D;IAC9D,IAAW,2BAA2B;QACpC,OAAO,mBAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACvC,CAAC;IACD,IAAW,2BAA2B,CAAC,EAAc;QACnD,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,mBAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;IACzD,CAAC;IAED,+EAA+E;IACxE,MAAM,CAAC,OAAO,GAAG,EAAE,CAAC;IAE3B,0FAA0F;IAC1F,IAAW,eAAe;QACxB,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC;QACpC,MAAM,IAAI,GAAG,wBAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QAC5D,OAAO,wBAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,GAAG,OAAO,EAAE,OAAO,CAAC,CAAC;IACpD,CAAC;IACD,IAAW,eAAe,CAAC,IAAY;QACrC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;IAC1D,CAAC;IAED,0CAA0C;IAC1C,IAAW,eAAe;QACxB,OAAO,wBAAS,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,mBAAmB,CAAC,OAAO,CAAC,CAAC;IAC7E,CAAC;IACD,IAAW,eAAe,CAAC,WAAgC;QACzD,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,mBAAmB,CAAC,OAAO,KAAK,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC;IAChG,CAAC;IAED,gDAAgD;IAChD,IAAW,WAAW;QACpB,OAAO,wBAAS,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACpD,CAAC;IACD,IAAW,WAAW,CAAC,WAAmB;QACxC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC;IACvE,CAAC;IAED,qCAAqC;IACrC,IAAW,WAAW;QACpB,MAAM,CAAC,GAAG,wBAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QACzD,MAAM,CAAC,GAAG,wBAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;QACvD,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;IAClB,CAAC;IACD,IAAW,WAAW,CAAC,OAAc;QACnC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,GAAG,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAClE,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,OAAO,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC1E,CAAC;IAED;;OAEG;IACH,IAAW,UAAU;QACnB,IAAI,SAAS,KAAK,IAAI,CAAC,WAAW,EAAE,CAAC;YACnC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;YAC7B,IAAI,CAAC,WAAW,GAAG,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC,0BAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,0BAAU,CAAC,WAAW,EAAE,CAAC,CAAC;QACjG,CAAC;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;IACjE,CAAC;IACD,IAAW,UAAU,CAAC,IAA4B;QAChD,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC;QAChC,IAAI,OAAO,KAAK,IAAI;YAClB,OAAO;QAET,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,IAAA,qBAAM,EAAC,SAAS,KAAK,IAAI,CAAC,CAAC;YAE3B,0CAA0C;YAC1C,IAAI,CAAC,IAAI,CAAC,OAAO;gBACf,OAAO;QACX,CAAC;QAED,IAAI,GAAG,IAAI,IAAI,0BAAU,CAAC,WAAW,EAAE,CAAC;QAExC,IAAI,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;QAErE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,IAAI,CAAC,OAAO;YACd,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC;;YAEhC,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;IAC3B,CAAC;IAED;;OAEG;IACI,OAAO;QACZ,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;;AAxGH,kCAyGC;AAED;;;GAGG;AACH,MAAa,aAAc,SAAQ,WAAW;IACpC,gBAAgB,CAAmB;IAE3C,IAAY,OAAO;QACjB,OAAO,IAAI,CAAC,KAA2B,CAAC;IAC1C,CAAC;IAED,oFAAoF;IACpE,wBAAwB,GAAG,IAAI,sBAAO,EAAwC,CAAC;IAE/F,gBAAgB;IAChB,YAAmB,cAAoD;QACrE,KAAK,CAAC,cAAc,CAAC,CAAC;IACxB,CAAC;IAED,yFAAyF;IACzF,IAAW,oBAAoB;QAC7B,OAAO,CAAC,wBAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,sBAAsB,EAAE,KAAK,CAAC,CAAC;IACvE,CAAC;IACD,IAAW,oBAAoB,CAAC,KAAc;QAC5C,IAAI,CAAC,OAAO,CAAC,sBAAsB,GAAG,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC;IACjE,CAAC;IAED;;;;OAIG;IACH,IAAW,eAAe;QACxB,IAAI,CAAC,IAAI,CAAC,gBAAgB;YACxB,IAAI,CAAC,gBAAgB,GAAG,gCAAe,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;QAEjF,OAAO,IAAI,CAAC,gBAAgB,CAAC;IAC/B,CAAC;IACD,IAAW,eAAe,CAAC,MAAuB;QAChD,IAAI,CAAC,wBAAwB,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QACjD,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IACjD,CAAC;IAED;;OAEG;IACa,OAAO;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC;IACtB,CAAC;CACF;AA9CD,sCA8CC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Views\n */\n\nimport { assert, BeEvent, Id64, Id64String, JsonUtils } from \"@itwin/core-bentley\";\nimport { ClipVector, ClipVectorProps, Geometry, XAndY } from \"@itwin/core-geometry\";\nimport { ModelClipGroupProps, ModelClipGroups } from \"./ModelClipGroup\";\n\n/** Properties of a [[ViewDefinitionProps]] stored as JSON.\n * @see [[ViewDefinitionProps.jsonProperties]].\n * @see [[ViewDetails3dProps]] for additional properties specific to 3d views.\n * @public\n * @extensions\n */\nexport interface ViewDetailsProps {\n /** Id of the aux coord system. Default: invalid. */\n acs?: Id64String;\n /** Aspect ratio skew (x/y) used to exaggerate the y axis of the view. Default: 1.0. */\n aspectSkew?: number;\n /** Grid orientation. Default: WorldXY. */\n gridOrient?: GridOrientationType;\n /** Default: 10. */\n gridPerRef?: number;\n /** Default: 1.0. */\n gridSpaceX?: number;\n /** Default: same as gridSpaceX. */\n gridSpaceY?: number;\n /** Describes the [ClipVector]($core-geometry) applied to the view. */\n clip?: ClipVectorProps;\n}\n\n/** Describes the orientation of the grid displayed within a [Viewport]($frontend).\n * @public\n * @extensions\n */\nexport enum GridOrientationType {\n /** Oriented with the view. */\n View = 0,\n /** Top */\n WorldXY = 1,\n /** Right */\n WorldYZ = 2,\n /** Front */\n WorldXZ = 3,\n /** Oriented by the auxiliary coordinate system. */\n AuxCoord = 4,\n}\n\n/** Properties of a [[ViewDefinition3dProps]] stored as JSON.\n * @see [[ViewDefinition3dProps.jsonProperties]].\n * @public\n * @extensions\n */\nexport interface ViewDetails3dProps extends ViewDetailsProps {\n /** Whether viewing tools are prohibited from operating in 3 dimensions on this view. Default: false. */\n disable3dManipulations?: boolean;\n /** Defines how to clip groups of models. */\n modelClipGroups?: ModelClipGroupProps[];\n}\n\n/** Encapsulates access to optional view details stored in JSON properties.\n * @see [[ViewDetailsProps]] for the JSON representation.\n * @see [ViewDefinition.details]($backend) and [ViewState.details]($frontend).\n * @public\n */\nexport class ViewDetails {\n /** @internal */\n protected readonly _json: ViewDetailsProps;\n private _clipVector?: ClipVector;\n\n /** Event raised just before assignment to the [[clipVector]] property. */\n public readonly onClipVectorChanged = new BeEvent<(newClip: ClipVector | undefined) => void>();\n\n /** @internal */\n public constructor(jsonProperties: { viewDetails?: ViewDetailsProps }) {\n if (!jsonProperties.viewDetails)\n jsonProperties.viewDetails = {};\n\n this._json = jsonProperties.viewDetails;\n }\n\n /** The Id of the auxiliary coordinate system for the view. */\n public get auxiliaryCoordinateSystemId(): Id64String {\n return Id64.fromJSON(this._json.acs);\n }\n public set auxiliaryCoordinateSystemId(id: Id64String) {\n this._json.acs = Id64.isValidId64(id) ? id : undefined;\n }\n\n /** Maximum aspect ratio skew. Apps can override this by changing its value. */\n public static maxSkew = 25;\n\n /** The aspect ratio skew (x/y, usually 1.0) used to exaggerate the y axis of the view. */\n public get aspectRatioSkew(): number {\n const maxSkew = ViewDetails.maxSkew;\n const skew = JsonUtils.asDouble(this._json.aspectSkew, 1.0);\n return Geometry.clamp(skew, 1 / maxSkew, maxSkew);\n }\n public set aspectRatioSkew(skew: number) {\n this._json.aspectSkew = 1.0 !== skew ? skew : undefined;\n }\n\n /** The orientation of the view's grid. */\n public get gridOrientation(): GridOrientationType {\n return JsonUtils.asInt(this._json.gridOrient, GridOrientationType.WorldXY);\n }\n public set gridOrientation(orientation: GridOrientationType) {\n this._json.gridOrient = GridOrientationType.WorldXY === orientation ? undefined : orientation;\n }\n\n /** The number of grids per ref for the view. */\n public get gridsPerRef(): number {\n return JsonUtils.asInt(this._json.gridPerRef, 10);\n }\n public set gridsPerRef(gridsPerRef: number) {\n this._json.gridPerRef = 10 === gridsPerRef ? undefined : gridsPerRef;\n }\n\n /** The grid spacing for the view. */\n public get gridSpacing(): XAndY {\n const x = JsonUtils.asDouble(this._json.gridSpaceX, 1.0);\n const y = JsonUtils.asDouble(this._json.gridSpaceY, x);\n return { x, y };\n }\n public set gridSpacing(spacing: XAndY) {\n this._json.gridSpaceX = 1.0 !== spacing.x ? spacing.x : undefined;\n this._json.gridSpaceY = spacing.x !== spacing.y ? spacing.y : undefined;\n }\n\n /** Clipping volume for the view.\n * @note Do *not* modify the returned ClipVector. If you wish to change the ClipVector, clone the returned ClipVector, modify it as desired, and pass the clone back to the setter.\n */\n public get clipVector(): ClipVector | undefined {\n if (undefined === this._clipVector) {\n const clip = this._json.clip;\n this._clipVector = (undefined !== clip ? ClipVector.fromJSON(clip) : ClipVector.createEmpty());\n }\n\n return this._clipVector.isValid ? this._clipVector : undefined;\n }\n public set clipVector(clip: ClipVector | undefined) {\n const curClip = this.clipVector;\n if (curClip === clip)\n return;\n\n if (!curClip) {\n assert(undefined !== clip);\n\n // An empty clip is equivalent to no clip.\n if (!clip.isValid)\n return;\n }\n\n clip = clip ?? ClipVector.createEmpty();\n\n this.onClipVectorChanged.raiseEvent(clip.isValid ? clip : undefined);\n\n this._clipVector = clip;\n if (clip.isValid)\n this._json.clip = clip.toJSON();\n else\n delete this._json.clip;\n }\n\n /** Returns the internal JSON representation. This is *not* a copy.\n * @internal\n */\n public getJSON(): Readonly<ViewDetailsProps> {\n return this._json;\n }\n}\n\n/** Encapsulates access to optional 3d view details stored in JSON properties.\n * @see [[ViewDetails3dProps]] for the JSON representation.\n * @public\n */\nexport class ViewDetails3d extends ViewDetails {\n private _modelClipGroups?: ModelClipGroups;\n\n private get _json3d(): ViewDetails3dProps {\n return this._json as ViewDetails3dProps;\n }\n\n /** Event raised when just before assignment to the [[modelClipGroups]] property. */\n public readonly onModelClipGroupsChanged = new BeEvent<(newGroups: ModelClipGroups) => void>();\n\n /** @internal */\n public constructor(jsonProperties: { viewDetails?: ViewDetails3dProps }) {\n super(jsonProperties);\n }\n\n /** Controls whether viewing tools are allowed to operate on the view in 3 dimensions. */\n public get allow3dManipulations(): boolean {\n return !JsonUtils.asBool(this._json3d.disable3dManipulations, false);\n }\n public set allow3dManipulations(allow: boolean) {\n this._json3d.disable3dManipulations = allow ? undefined : true;\n }\n\n /** Groups of models associated with [ClipVector]($core-geometry)s by which those models should be clipped.\n * If the view and the model both have a clip vector defined, geometry in the model will be clipped by the intersection of the two clip vectors.\n * [[ViewFlags.clipVolume]] has no effect on model clips, only the view clip - model clips are always applied.\n * @note Do **not** modify the returned object directly. Instead, clone it, modify the clone, and pass the clone to the property setter.\n */\n public get modelClipGroups(): ModelClipGroups {\n if (!this._modelClipGroups)\n this._modelClipGroups = ModelClipGroups.fromJSON(this._json3d.modelClipGroups);\n\n return this._modelClipGroups;\n }\n public set modelClipGroups(groups: ModelClipGroups) {\n this.onModelClipGroupsChanged.raiseEvent(groups);\n this._modelClipGroups = groups;\n this._json3d.modelClipGroups = groups.toJSON();\n }\n\n /** Returns the internal JSON representation. This is *not* a copy.\n * @internal\n */\n public override getJSON(): Readonly<ViewDetails3dProps> {\n return this._json3d;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ViewDetails.js","sourceRoot":"","sources":["../../src/ViewDetails.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH,sDAAmF;AACnF,wDAAoF;AACpF,qDAAwE;AAyBxE;;;GAGG;AACH,IAAY,mBAWX;AAXD,WAAY,mBAAmB;IAC7B,8BAA8B;IAC9B,6DAAQ,CAAA;IACR,UAAU;IACV,mEAAW,CAAA;IACX,YAAY;IACZ,mEAAW,CAAA;IACX,YAAY;IACZ,mEAAW,CAAA;IACX,mDAAmD;IACnD,qEAAY,CAAA;AACd,CAAC,EAXW,mBAAmB,mCAAnB,mBAAmB,QAW9B;AAcD;;;;GAIG;AACH,MAAa,WAAW;IACtB,gBAAgB;IACG,KAAK,CAAmB;IACnC,WAAW,CAAc;IAEjC,0EAA0E;IAC1D,mBAAmB,GAAG,IAAI,sBAAO,EAA6C,CAAC;IAE/F,gBAAgB;IAChB,YAAmB,cAAkD;QACnE,IAAI,CAAC,cAAc,CAAC,WAAW;YAC7B,cAAc,CAAC,WAAW,GAAG,EAAE,CAAC;QAElC,IAAI,CAAC,KAAK,GAAG,cAAc,CAAC,WAAW,CAAC;IAC1C,CAAC;IAED,8DAA8D;IAC9D,IAAW,2BAA2B;QACpC,OAAO,mBAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACvC,CAAC;IACD,IAAW,2BAA2B,CAAC,EAAc;QACnD,IAAI,CAAC,KAAK,CAAC,GAAG,GAAG,mBAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,SAAS,CAAC;IACzD,CAAC;IAED,+EAA+E;IACxE,MAAM,CAAC,OAAO,GAAG,EAAE,CAAC;IAE3B,0FAA0F;IAC1F,IAAW,eAAe;QACxB,MAAM,OAAO,GAAG,WAAW,CAAC,OAAO,CAAC;QACpC,MAAM,IAAI,GAAG,wBAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QAC5D,OAAO,wBAAQ,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,GAAG,OAAO,EAAE,OAAO,CAAC,CAAC;IACpD,CAAC;IACD,IAAW,eAAe,CAAC,IAAY;QACrC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,GAAG,KAAK,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;IAC1D,CAAC;IAED,0CAA0C;IAC1C,IAAW,eAAe;QACxB,OAAO,wBAAS,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,mBAAmB,CAAC,OAAO,CAAC,CAAC;IAC7E,CAAC;IACD,IAAW,eAAe,CAAC,WAAgC;QACzD,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,mBAAmB,CAAC,OAAO,KAAK,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC;IAChG,CAAC;IAED,gDAAgD;IAChD,IAAW,WAAW;QACpB,OAAO,wBAAS,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,EAAE,CAAC,CAAC;IACpD,CAAC;IACD,IAAW,WAAW,CAAC,WAAmB;QACxC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,EAAE,KAAK,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC;IACvE,CAAC;IAED,qCAAqC;IACrC,IAAW,WAAW;QACpB,MAAM,CAAC,GAAG,wBAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;QACzD,MAAM,CAAC,GAAG,wBAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,CAAC,CAAC,CAAC;QACvD,OAAO,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC;IAClB,CAAC;IACD,IAAW,WAAW,CAAC,OAAc;QACnC,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,GAAG,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;QAClE,IAAI,CAAC,KAAK,CAAC,UAAU,GAAG,OAAO,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAC1E,CAAC;IAED;;OAEG;IACH,IAAW,UAAU;QACnB,IAAI,SAAS,KAAK,IAAI,CAAC,WAAW,EAAE,CAAC;YACnC,MAAM,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;YAC7B,IAAI,CAAC,WAAW,GAAG,CAAC,SAAS,KAAK,IAAI,CAAC,CAAC,CAAC,0BAAU,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,0BAAU,CAAC,WAAW,EAAE,CAAC,CAAC;QACjG,CAAC;QAED,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;IACjE,CAAC;IACD,IAAW,UAAU,CAAC,IAA4B;QAChD,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC;QAChC,IAAI,OAAO,KAAK,IAAI;YAClB,OAAO;QAET,IAAI,CAAC,OAAO,EAAE,CAAC;YACb,IAAA,qBAAM,EAAC,SAAS,KAAK,IAAI,CAAC,CAAC;YAE3B,0CAA0C;YAC1C,IAAI,CAAC,IAAI,CAAC,OAAO;gBACf,OAAO;QACX,CAAC;QAED,IAAI,GAAG,IAAI,IAAI,0BAAU,CAAC,WAAW,EAAE,CAAC;QAExC,IAAI,CAAC,mBAAmB,CAAC,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;QAErE,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,IAAI,IAAI,CAAC,OAAO;YACd,IAAI,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC;;YAEhC,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;IAC3B,CAAC;IAED;;OAEG;IACI,OAAO;QACZ,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;;AAxGH,kCAyGC;AAED;;;GAGG;AACH,MAAa,aAAc,SAAQ,WAAW;IACpC,gBAAgB,CAAmB;IAE3C,IAAY,OAAO;QACjB,OAAO,IAAI,CAAC,KAAK,CAAC;IACpB,CAAC;IAED,oFAAoF;IACpE,wBAAwB,GAAG,IAAI,sBAAO,EAAwC,CAAC;IAE/F,gBAAgB;IAChB,YAAmB,cAAoD;QACrE,KAAK,CAAC,cAAc,CAAC,CAAC;IACxB,CAAC;IAED,yFAAyF;IACzF,IAAW,oBAAoB;QAC7B,OAAO,CAAC,wBAAS,CAAC,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC,sBAAsB,EAAE,KAAK,CAAC,CAAC;IACvE,CAAC;IACD,IAAW,oBAAoB,CAAC,KAAc;QAC5C,IAAI,CAAC,OAAO,CAAC,sBAAsB,GAAG,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC;IACjE,CAAC;IAED;;;;OAIG;IACH,IAAW,eAAe;QACxB,IAAI,CAAC,IAAI,CAAC,gBAAgB;YACxB,IAAI,CAAC,gBAAgB,GAAG,gCAAe,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC;QAEjF,OAAO,IAAI,CAAC,gBAAgB,CAAC;IAC/B,CAAC;IACD,IAAW,eAAe,CAAC,MAAuB;QAChD,IAAI,CAAC,wBAAwB,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC;QACjD,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC;QAC/B,IAAI,CAAC,OAAO,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;IACjD,CAAC;IAED;;OAEG;IACa,OAAO;QACrB,OAAO,IAAI,CAAC,OAAO,CAAC;IACtB,CAAC;CACF;AA9CD,sCA8CC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Views\n */\n\nimport { assert, BeEvent, Id64, Id64String, JsonUtils } from \"@itwin/core-bentley\";\nimport { ClipVector, ClipVectorProps, Geometry, XAndY } from \"@itwin/core-geometry\";\nimport { ModelClipGroupProps, ModelClipGroups } from \"./ModelClipGroup\";\n\n/** Properties of a [[ViewDefinitionProps]] stored as JSON.\n * @see [[ViewDefinitionProps.jsonProperties]].\n * @see [[ViewDetails3dProps]] for additional properties specific to 3d views.\n * @public\n * @extensions\n */\nexport interface ViewDetailsProps {\n /** Id of the aux coord system. Default: invalid. */\n acs?: Id64String;\n /** Aspect ratio skew (x/y) used to exaggerate the y axis of the view. Default: 1.0. */\n aspectSkew?: number;\n /** Grid orientation. Default: WorldXY. */\n gridOrient?: GridOrientationType;\n /** Default: 10. */\n gridPerRef?: number;\n /** Default: 1.0. */\n gridSpaceX?: number;\n /** Default: same as gridSpaceX. */\n gridSpaceY?: number;\n /** Describes the [ClipVector]($core-geometry) applied to the view. */\n clip?: ClipVectorProps;\n}\n\n/** Describes the orientation of the grid displayed within a [Viewport]($frontend).\n * @public\n * @extensions\n */\nexport enum GridOrientationType {\n /** Oriented with the view. */\n View = 0,\n /** Top */\n WorldXY = 1,\n /** Right */\n WorldYZ = 2,\n /** Front */\n WorldXZ = 3,\n /** Oriented by the auxiliary coordinate system. */\n AuxCoord = 4,\n}\n\n/** Properties of a [[ViewDefinition3dProps]] stored as JSON.\n * @see [[ViewDefinition3dProps.jsonProperties]].\n * @public\n * @extensions\n */\nexport interface ViewDetails3dProps extends ViewDetailsProps {\n /** Whether viewing tools are prohibited from operating in 3 dimensions on this view. Default: false. */\n disable3dManipulations?: boolean;\n /** Defines how to clip groups of models. */\n modelClipGroups?: ModelClipGroupProps[];\n}\n\n/** Encapsulates access to optional view details stored in JSON properties.\n * @see [[ViewDetailsProps]] for the JSON representation.\n * @see [ViewDefinition.details]($backend) and [ViewState.details]($frontend).\n * @public\n */\nexport class ViewDetails {\n /** @internal */\n protected readonly _json: ViewDetailsProps;\n private _clipVector?: ClipVector;\n\n /** Event raised just before assignment to the [[clipVector]] property. */\n public readonly onClipVectorChanged = new BeEvent<(newClip: ClipVector | undefined) => void>();\n\n /** @internal */\n public constructor(jsonProperties: { viewDetails?: ViewDetailsProps }) {\n if (!jsonProperties.viewDetails)\n jsonProperties.viewDetails = {};\n\n this._json = jsonProperties.viewDetails;\n }\n\n /** The Id of the auxiliary coordinate system for the view. */\n public get auxiliaryCoordinateSystemId(): Id64String {\n return Id64.fromJSON(this._json.acs);\n }\n public set auxiliaryCoordinateSystemId(id: Id64String) {\n this._json.acs = Id64.isValidId64(id) ? id : undefined;\n }\n\n /** Maximum aspect ratio skew. Apps can override this by changing its value. */\n public static maxSkew = 25;\n\n /** The aspect ratio skew (x/y, usually 1.0) used to exaggerate the y axis of the view. */\n public get aspectRatioSkew(): number {\n const maxSkew = ViewDetails.maxSkew;\n const skew = JsonUtils.asDouble(this._json.aspectSkew, 1.0);\n return Geometry.clamp(skew, 1 / maxSkew, maxSkew);\n }\n public set aspectRatioSkew(skew: number) {\n this._json.aspectSkew = 1.0 !== skew ? skew : undefined;\n }\n\n /** The orientation of the view's grid. */\n public get gridOrientation(): GridOrientationType {\n return JsonUtils.asInt(this._json.gridOrient, GridOrientationType.WorldXY);\n }\n public set gridOrientation(orientation: GridOrientationType) {\n this._json.gridOrient = GridOrientationType.WorldXY === orientation ? undefined : orientation;\n }\n\n /** The number of grids per ref for the view. */\n public get gridsPerRef(): number {\n return JsonUtils.asInt(this._json.gridPerRef, 10);\n }\n public set gridsPerRef(gridsPerRef: number) {\n this._json.gridPerRef = 10 === gridsPerRef ? undefined : gridsPerRef;\n }\n\n /** The grid spacing for the view. */\n public get gridSpacing(): XAndY {\n const x = JsonUtils.asDouble(this._json.gridSpaceX, 1.0);\n const y = JsonUtils.asDouble(this._json.gridSpaceY, x);\n return { x, y };\n }\n public set gridSpacing(spacing: XAndY) {\n this._json.gridSpaceX = 1.0 !== spacing.x ? spacing.x : undefined;\n this._json.gridSpaceY = spacing.x !== spacing.y ? spacing.y : undefined;\n }\n\n /** Clipping volume for the view.\n * @note Do *not* modify the returned ClipVector. If you wish to change the ClipVector, clone the returned ClipVector, modify it as desired, and pass the clone back to the setter.\n */\n public get clipVector(): ClipVector | undefined {\n if (undefined === this._clipVector) {\n const clip = this._json.clip;\n this._clipVector = (undefined !== clip ? ClipVector.fromJSON(clip) : ClipVector.createEmpty());\n }\n\n return this._clipVector.isValid ? this._clipVector : undefined;\n }\n public set clipVector(clip: ClipVector | undefined) {\n const curClip = this.clipVector;\n if (curClip === clip)\n return;\n\n if (!curClip) {\n assert(undefined !== clip);\n\n // An empty clip is equivalent to no clip.\n if (!clip.isValid)\n return;\n }\n\n clip = clip ?? ClipVector.createEmpty();\n\n this.onClipVectorChanged.raiseEvent(clip.isValid ? clip : undefined);\n\n this._clipVector = clip;\n if (clip.isValid)\n this._json.clip = clip.toJSON();\n else\n delete this._json.clip;\n }\n\n /** Returns the internal JSON representation. This is *not* a copy.\n * @internal\n */\n public getJSON(): Readonly<ViewDetailsProps> {\n return this._json;\n }\n}\n\n/** Encapsulates access to optional 3d view details stored in JSON properties.\n * @see [[ViewDetails3dProps]] for the JSON representation.\n * @public\n */\nexport class ViewDetails3d extends ViewDetails {\n private _modelClipGroups?: ModelClipGroups;\n\n private get _json3d(): ViewDetails3dProps {\n return this._json;\n }\n\n /** Event raised when just before assignment to the [[modelClipGroups]] property. */\n public readonly onModelClipGroupsChanged = new BeEvent<(newGroups: ModelClipGroups) => void>();\n\n /** @internal */\n public constructor(jsonProperties: { viewDetails?: ViewDetails3dProps }) {\n super(jsonProperties);\n }\n\n /** Controls whether viewing tools are allowed to operate on the view in 3 dimensions. */\n public get allow3dManipulations(): boolean {\n return !JsonUtils.asBool(this._json3d.disable3dManipulations, false);\n }\n public set allow3dManipulations(allow: boolean) {\n this._json3d.disable3dManipulations = allow ? undefined : true;\n }\n\n /** Groups of models associated with [ClipVector]($core-geometry)s by which those models should be clipped.\n * If the view and the model both have a clip vector defined, geometry in the model will be clipped by the intersection of the two clip vectors.\n * [[ViewFlags.clipVolume]] has no effect on model clips, only the view clip - model clips are always applied.\n * @note Do **not** modify the returned object directly. Instead, clone it, modify the clone, and pass the clone to the property setter.\n */\n public get modelClipGroups(): ModelClipGroups {\n if (!this._modelClipGroups)\n this._modelClipGroups = ModelClipGroups.fromJSON(this._json3d.modelClipGroups);\n\n return this._modelClipGroups;\n }\n public set modelClipGroups(groups: ModelClipGroups) {\n this.onModelClipGroupsChanged.raiseEvent(groups);\n this._modelClipGroups = groups;\n this._json3d.modelClipGroups = groups.toJSON();\n }\n\n /** Returns the internal JSON representation. This is *not* a copy.\n * @internal\n */\n public override getJSON(): Readonly<ViewDetails3dProps> {\n return this._json3d;\n }\n}\n"]}
|
package/lib/cjs/ViewProps.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { CompressedId64Set, Id64Array, Id64String } from "@itwin/core-bentley";
|
|
|
5
5
|
import { AngleProps, Range3dProps, TransformProps, XYProps, XYZProps, YawPitchRollProps } from "@itwin/core-geometry";
|
|
6
6
|
import { CameraProps } from "./Camera";
|
|
7
7
|
import { DisplayStyleProps, DisplayStyleSettingsProps } from "./DisplayStyleSettings";
|
|
8
|
-
import { DefinitionElementProps, DisplayStyleLoadProps, ElementProps, RenderTimelineProps, SheetProps, ViewAttachmentProps } from "./ElementProps";
|
|
8
|
+
import { DefinitionElementProps, DisplayStyleLoadProps, ElementProps, RelatedElementProps, RenderTimelineProps, SheetProps, ViewAttachmentProps } from "./ElementProps";
|
|
9
9
|
import { EntityQueryParams } from "./EntityProps";
|
|
10
10
|
import { ModelProps } from "./ModelProps";
|
|
11
11
|
import { SubCategoryAppearance } from "./SubCategoryAppearance";
|
|
@@ -131,12 +131,36 @@ export interface CategorySelectorProps extends DefinitionElementProps {
|
|
|
131
131
|
export interface ViewQueryParams extends EntityQueryParams {
|
|
132
132
|
wantPrivate?: boolean;
|
|
133
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* Helper to resolve navigation property ids represented as independent Id64Strings.
|
|
136
|
+
* @internal
|
|
137
|
+
*
|
|
138
|
+
* @note This function will be redundant once all deprecated fields are removed. All calls to this function will need to be removed as well.
|
|
139
|
+
*/
|
|
140
|
+
export declare function resolveNavPropId(navProp: RelatedElementProps | undefined, deprecatedNavPropId: Id64String): Id64String;
|
|
141
|
+
/**
|
|
142
|
+
* Helper to resolve navigation properties represented as Id64Strings.
|
|
143
|
+
* @internal
|
|
144
|
+
*
|
|
145
|
+
* @note This function will be redundant once all deprecated fields are removed. All calls to this function will need to be removed as well.
|
|
146
|
+
*/
|
|
147
|
+
export declare function resolveNavProp(navProp: RelatedElementProps | undefined, deprecatedNavPropId: Id64String): RelatedElementProps;
|
|
134
148
|
/** Parameters used to construct a ViewDefinition
|
|
135
149
|
* @public
|
|
136
150
|
* @extensions
|
|
137
151
|
*/
|
|
138
152
|
export interface ViewDefinitionProps extends DefinitionElementProps {
|
|
153
|
+
/** The [[CategorySelector]] for this view. */
|
|
154
|
+
categorySelector?: RelatedElementProps;
|
|
155
|
+
/** The [[DisplayStyle]] for this view. */
|
|
156
|
+
displayStyle?: RelatedElementProps;
|
|
157
|
+
/** The Id of the [[CategorySelector]] for this view.
|
|
158
|
+
* @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `categorySelector` instead.
|
|
159
|
+
*/
|
|
139
160
|
categorySelectorId: ViewIdString;
|
|
161
|
+
/** The Id of the [[DisplayStyle]] for this view.
|
|
162
|
+
* @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `displayStyle` instead.
|
|
163
|
+
*/
|
|
140
164
|
displayStyleId: ViewIdString;
|
|
141
165
|
description?: string;
|
|
142
166
|
jsonProperties?: {
|
|
@@ -169,6 +193,11 @@ export interface ViewDefinition3dProps extends ViewDefinitionProps {
|
|
|
169
193
|
* @extensions
|
|
170
194
|
*/
|
|
171
195
|
export interface SpatialViewDefinitionProps extends ViewDefinition3dProps {
|
|
196
|
+
/** The [[ModelSelector]] for this view. */
|
|
197
|
+
modelSelector?: RelatedElementProps;
|
|
198
|
+
/** The Id of the [[ModelSelector]] for this view.
|
|
199
|
+
* @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `modelSelector` instead.
|
|
200
|
+
*/
|
|
172
201
|
modelSelectorId: ViewIdString;
|
|
173
202
|
}
|
|
174
203
|
/** Parameters used to construct a ViewDefinition2d
|
|
@@ -176,6 +205,11 @@ export interface SpatialViewDefinitionProps extends ViewDefinition3dProps {
|
|
|
176
205
|
* @extensions
|
|
177
206
|
*/
|
|
178
207
|
export interface ViewDefinition2dProps extends ViewDefinitionProps {
|
|
208
|
+
/** The base model displayed by this view. */
|
|
209
|
+
baseModel?: RelatedElementProps;
|
|
210
|
+
/** The Id of the base model displayed by this view.
|
|
211
|
+
* @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `baseModel` instead.
|
|
212
|
+
*/
|
|
179
213
|
baseModelId: Id64String;
|
|
180
214
|
origin: XYProps;
|
|
181
215
|
delta: XYProps;
|
|
@@ -338,23 +372,23 @@ export declare namespace ViewStoreRpc {
|
|
|
338
372
|
readonly viewDefinition: ViewDefinitionProps;
|
|
339
373
|
/**
|
|
340
374
|
* The properties of a category selector for the new view.
|
|
341
|
-
* @note This value is only used, and should only be present if `viewDefinition.
|
|
342
|
-
*
|
|
343
|
-
* Otherwise, the
|
|
375
|
+
* @note This value is only used, and should only be present if `viewDefinition.categorySelector.id` is **not** a valid `IdString`.
|
|
376
|
+
* In that case, a new category selector will be created with these properties and its Id will be used.
|
|
377
|
+
* Otherwise, the categorySelector from the ViewDefinition is used. If it does not represent a valid category
|
|
344
378
|
* selector, an error is thrown.
|
|
345
379
|
*/
|
|
346
380
|
readonly categorySelectorProps?: CategorySelectorProps;
|
|
347
381
|
/** The properties of a model selector for the new view.
|
|
348
|
-
* @note This value is only used, and should only be present if `viewDefinition.
|
|
349
|
-
*
|
|
350
|
-
* Otherwise, the
|
|
382
|
+
* @note This value is only used, and should only be present if `viewDefinition.modelSelector.id` is **not** a valid `IdString`.
|
|
383
|
+
* In that case, a new model selector will be created with these properties and its Id will be used.
|
|
384
|
+
* Otherwise, the modelSelector from the ViewDefinition is used. If it does not represent a valid model selector,
|
|
351
385
|
* an error is thrown.
|
|
352
386
|
*/
|
|
353
387
|
readonly modelSelectorProps?: ModelSelectorProps;
|
|
354
388
|
/** The properties of a display style for the new view.
|
|
355
|
-
* @note This value is only used, and should only be present if `viewDefinition.
|
|
356
|
-
*
|
|
357
|
-
* Otherwise, the
|
|
389
|
+
* @note This value is only used, and should only be present if `viewDefinition.displayStyle.id` is **not** a valid `IdString`.
|
|
390
|
+
* In that case, a new display style will be created with these properties and its Id will be used.
|
|
391
|
+
* Otherwise, the displayStyle from the ViewDefinition is used. If it does not represent a valid display style, an
|
|
358
392
|
* error is thrown.
|
|
359
393
|
*/
|
|
360
394
|
readonly displayStyleProps?: DisplayStyleProps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViewProps.d.ts","sourceRoot":"","sources":["../../src/ViewProps.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ViewProps.d.ts","sourceRoot":"","sources":["../../src/ViewProps.ts"],"names":[],"mappings":"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"}
|
package/lib/cjs/ViewProps.js
CHANGED
|
@@ -8,6 +8,26 @@
|
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
exports.ViewStoreRpc = void 0;
|
|
11
|
+
exports.resolveNavPropId = resolveNavPropId;
|
|
12
|
+
exports.resolveNavProp = resolveNavProp;
|
|
13
|
+
/**
|
|
14
|
+
* Helper to resolve navigation property ids represented as independent Id64Strings.
|
|
15
|
+
* @internal
|
|
16
|
+
*
|
|
17
|
+
* @note This function will be redundant once all deprecated fields are removed. All calls to this function will need to be removed as well.
|
|
18
|
+
*/
|
|
19
|
+
function resolveNavPropId(navProp, deprecatedNavPropId) {
|
|
20
|
+
return navProp?.id ?? deprecatedNavPropId;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Helper to resolve navigation properties represented as Id64Strings.
|
|
24
|
+
* @internal
|
|
25
|
+
*
|
|
26
|
+
* @note This function will be redundant once all deprecated fields are removed. All calls to this function will need to be removed as well.
|
|
27
|
+
*/
|
|
28
|
+
function resolveNavProp(navProp, deprecatedNavPropId) {
|
|
29
|
+
return navProp ?? { id: deprecatedNavPropId };
|
|
30
|
+
}
|
|
11
31
|
/**
|
|
12
32
|
* Access to a ViewStore from the frontend.
|
|
13
33
|
* @beta
|
package/lib/cjs/ViewProps.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ViewProps.js","sourceRoot":"","sources":["../../src/ViewProps.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AA4OH;;;GAGG;AACH,IAAiB,YAAY,CA0W5B;AA1WD,WAAiB,YAAY;IAE3B;;;;OAIG;IACU,oBAAO,GAAG,OAAO,CAAC;IAkC/B,qGAAqG;IACxF,0BAAa,GAAG,CAAC,EAAiB,EAAE,EAAE,CAAC,IAAI,KAAK,EAAE,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;AAgUnF,CAAC,EA1WgB,YAAY,4BAAZ,YAAY,QA0W5B","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Views\n */\n\nimport { CompressedId64Set, Id64Array, Id64String } from \"@itwin/core-bentley\";\nimport { AngleProps, Range3dProps, TransformProps, XYProps, XYZProps, YawPitchRollProps } from \"@itwin/core-geometry\";\nimport { CameraProps } from \"./Camera\";\nimport { DisplayStyleProps, DisplayStyleSettingsProps } from \"./DisplayStyleSettings\";\nimport { DefinitionElementProps, DisplayStyleLoadProps, ElementProps, RenderTimelineProps, SheetProps, ViewAttachmentProps } from \"./ElementProps\";\nimport { EntityQueryParams } from \"./EntityProps\";\nimport { ModelProps } from \"./ModelProps\";\nimport { SubCategoryAppearance } from \"./SubCategoryAppearance\";\nimport { ViewDetails3dProps, ViewDetailsProps } from \"./ViewDetails\";\nimport { ThumbnailProps } from \"./Thumbnail\";\nimport { RenderSchedule } from \"./RenderSchedule\";\n\n/** The id of either an element or an entry in a ViewStore.\n * @public\n */\nexport type ViewIdString = Id64String; // should also include ViewStoreRpc.IdString when that's @public\n\n/** As part of a [[ViewStateProps]], describes the [[SpatialViewDefinition]] from which a [SectionDrawing]($backend) was generated.\n * @see [[SectionDrawingProps]]\n * @public\n * @extensions\n */\nexport interface SectionDrawingViewProps {\n /** The Id of the spatial view from which the SectionDrawing was generated. */\n spatialView: Id64String;\n /** If true, the spatial view should be displayed in the context of the drawing view. */\n displaySpatialView: boolean;\n /** Transform from drawing coordinates to spatial coordinates. If undefined, use identity transform. */\n drawingToSpatialTransform?: TransformProps;\n}\n\n/** The response props from the getCustomViewState3dData RPC endpoint\n * @internal\n */\nexport interface CustomViewState3dProps {\n modelIds: CompressedId64Set;\n modelExtents: Range3dProps;\n categoryIds: CompressedId64Set;\n}\n\n/**\n * The options passed to the getCustomViewState3dData RPC endpoint.\n * @internal\n */\nexport interface CustomViewState3dCreatorOptions {\n modelIds?: CompressedId64Set;\n}\n\n/**\n * A result row from querying for subcategories\n * @internal\n */\nexport interface SubCategoryResultRow {\n parentId: Id64String;\n id: Id64String;\n appearance: SubCategoryAppearance.Props;\n}\n\n/**\n * Request props for the hydrateViewState RPC endpoint.\n * @internal\n */\nexport interface HydrateViewStateRequestProps {\n acsId?: string;\n notLoadedModelSelectorStateModels?: CompressedId64Set;\n sheetViewAttachmentIds?: CompressedId64Set;\n viewStateLoadProps?: ViewStateLoadProps;\n baseModelId?: Id64String;\n spatialViewId?: Id64String;\n}\n\n/** Response props from the hydrateViewState RPC endpoint.\n * @internal\n */\nexport interface HydrateViewStateResponseProps {\n acsElementProps?: ElementProps;\n modelSelectorStateModels?: ModelProps[];\n // cast this to viewAttachmentInfo[] on the frontend.\n sheetViewAttachmentProps?: ViewAttachmentProps[];\n sheetViewViews?: (ViewStateProps | undefined)[];\n baseModelProps?: ModelProps;\n spatialViewProps?: ViewStateProps;\n}\n\n/** Returned from [IModelDb.Views.getViewStateProps]($backend).\n * @public\n * @extensions\n */\nexport interface ViewStateProps {\n viewDefinitionProps: ViewDefinitionProps;\n categorySelectorProps: CategorySelectorProps;\n modelSelectorProps?: ModelSelectorProps;\n displayStyleProps: DisplayStyleProps;\n /** Sheet-specific properties, if this is a view of a [SheetModel]($backend). */\n sheetProps?: SheetProps;\n /** The Ids of the [ViewAttachment]($backend)s contained within the [SheetModel]($backend), if this is a sheet view. */\n sheetAttachments?: Id64Array;\n /** For a [DrawingViewState]($frontend), the extents of the [DrawingModel]($backend), used for determining the upper limits of the view's extents. */\n modelExtents?: Range3dProps;\n /** Information about the [SectionDrawing]($backend) relevant to displaying a drawing view. */\n sectionDrawing?: SectionDrawingViewProps;\n}\n\n/** Options for loading a [[ViewStateProps]] via [IModelConnection.Views.load]($frontend) or [IModelDb.Views.getViewStateProps]($backend).\n * @public\n * @extensions\n */\nexport interface ViewStateLoadProps {\n /** Options for loading the view's [[DisplayStyleProps]]. */\n displayStyle?: DisplayStyleLoadProps;\n\n /**\n * bindings for query-based selectors\n * @beta\n */\n queryBindings?: {\n modelSelector?: ViewStoreRpc.QueryBindings;\n categorySelector?: ViewStoreRpc.QueryBindings;\n };\n}\n\n/** Properties that define a ModelSelector\n * @public\n * @extensions\n */\nexport interface ModelSelectorProps extends DefinitionElementProps {\n models: Id64Array;\n}\n\n/** Properties that define a CategorySelector\n * @public\n * @extensions\n */\nexport interface CategorySelectorProps extends DefinitionElementProps {\n categories: Id64Array;\n}\n\n/** Parameters for performing a query on [ViewDefinition]($backend) classes.\n * @public\n * @extensions\n */\nexport interface ViewQueryParams extends EntityQueryParams {\n wantPrivate?: boolean;\n}\n\n/** Parameters used to construct a ViewDefinition\n * @public\n * @extensions\n */\nexport interface ViewDefinitionProps extends DefinitionElementProps {\n categorySelectorId: ViewIdString;\n displayStyleId: ViewIdString;\n description?: string;\n jsonProperties?: {\n /** Additional properties of the view. */\n viewDetails?: ViewDetailsProps;\n };\n}\n\n/** Parameters to construct a ViewDefinition3d\n * @public\n * @extensions\n */\nexport interface ViewDefinition3dProps extends ViewDefinitionProps {\n /** if true, camera is valid. */\n cameraOn: boolean;\n /** The lower left back corner of the view frustum. */\n origin: XYZProps;\n /** The extent of the view frustum. */\n extents: XYZProps;\n /** Rotation of the view frustum (could be undefined if going Matrix3d -> YawPitchRoll). */\n angles?: YawPitchRollProps;\n /** The camera used for this view. */\n camera: CameraProps;\n jsonProperties?: {\n /** Additional properties of the view. */\n viewDetails?: ViewDetails3dProps;\n };\n}\n\n/** Parameters to construct a SpatialViewDefinition\n * @public\n * @extensions\n */\nexport interface SpatialViewDefinitionProps extends ViewDefinition3dProps {\n modelSelectorId: ViewIdString;\n}\n\n/** Parameters used to construct a ViewDefinition2d\n * @public\n * @extensions\n */\nexport interface ViewDefinition2dProps extends ViewDefinitionProps {\n baseModelId: Id64String;\n origin: XYProps;\n delta: XYProps;\n angle: AngleProps;\n}\n\n/**\n * @public\n * @extensions\n */\nexport interface AuxCoordSystemProps extends ElementProps {\n type?: number;\n description?: string;\n}\n\n/** Properties of AuxCoordSystem2d\n * @public\n * @extensions\n */\nexport interface AuxCoordSystem2dProps extends AuxCoordSystemProps {\n /** Origin of the AuxCoordSystem2d */\n origin?: XYProps;\n /** Rotation angle */\n angle?: AngleProps;\n}\n\n/** Properties of AuxCoordSystem3d\n * @public\n * @extensions\n */\nexport interface AuxCoordSystem3dProps extends AuxCoordSystemProps {\n /** Origin of the AuxCoordSystem3d */\n origin?: XYZProps;\n /** Yaw angle */\n yaw?: AngleProps;\n /** Pitch angle */\n pitch?: AngleProps;\n /** Roll angle */\n roll?: AngleProps;\n}\n\n/**\n * Access to a ViewStore from the frontend.\n * @beta\n */\nexport namespace ViewStoreRpc {\n\n /**\n * Version of the Rpc interface. If any methods or interfaces of this API change, this number should\n * be incremented according to the rules of semantic versioning. See .\\rpc\\README-RpcInterfaceVersioning.md for more information.\n * @internal\n */\n export const version = \"4.0.0\";\n\n /** an Id of a View, DisplayStyle, ModelSelector, CategorySelector, or Timeline in a ViewStore.\n * Will be a base-36 number with a leading \"@\".\n * @public\n */\n export type IdString = string;\n\n /**\n * A string identifying a group. This may either be a \"group name path\" or the RowString of a group (e.g. either \"group1/design/issues\" or \"@4e3\")\n * The syntax is not ambiguous because ViewStoreIdStrings always start with \"@\" and Group names can never contain \"@\".\n */\n export type ViewGroupSpec = IdString | ViewGroupPath;\n\n /** The name for a view. */\n export type ViewName = string;\n\n /** The name for a Tag. */\n export type TagName = string;\n\n /** The name of an \"owner\". Should come from the authentication system, so it will be guaranteed unique.\n * This name should be chosen by the user rather than their email address.\n */\n export type OwnerName = string;\n\n /** The path name of a view group (e.g. \"group1/design/issues\"). Does not include the \"root\" group. */\n export type ViewGroupPath = string;\n\n /** The name for a view group. */\n export type ViewGroupName = string;\n\n /** The name for a view group. */\n export type ClassFullName = string;\n\n /** Determine if a string is an Id of an entry in a ViewStore (base-36 integer with a leading \"@\") */\n export const isViewStoreId = (id?: ViewIdString) => true === id?.startsWith(\"@\");\n\n /** Parameters for querying for views in a ViewStore. */\n export interface QueryParams {\n /** a list of classFullNames to accept. If not present, all classes are returned. */\n readonly classNames?: ClassFullName[];\n /** Optional \"LIMIT\" clause to limit the number of views returned. */\n readonly limit?: number;\n /** Optional \"OFFSET\" clause. Only valid if Limit is also present. */\n readonly offset?: number;\n /** A string to filter view names. May include wildcards if the `nameCompare` uses LIKE or GLOB (see SQLite documentation for LIKE and GLOB). */\n readonly nameSearch?: string;\n /** The comparison operator for `nameSearch`. Default is `=` */\n readonly nameCompare?: \"GLOB\" | \"LIKE\" | \"NOT GLOB\" | \"NOT LIKE\" | \"=\" | \"<\" | \">\";\n /* the Id of the view group to query. If not present, the root group is used. There is no way to query for views from multiple view groups in one request. */\n readonly group?: IdString;\n /** A list of tags to filter views. If present, only views that have one or more of the tags will be returned. */\n readonly tags?: TagName[];\n /* The name of an owner for private views. If present, private views owned by the owner will also be returned. Shared views are always returned. */\n readonly owner?: OwnerName;\n }\n\n /** Parameters for specifying a Query to select Categories or Models. */\n export interface SelectorQuery {\n /**\n * The full ClassName from which to select. If this SelectorQuery is for Categories, this must be or derive from \"BisCore:Category\".\n * If this SelectorQuery is for Models, this must be or derive from \"BisCore:Model\".\n */\n from: ClassFullName;\n /** If true, only return instances of `from`. Otherwise, return instances of `from` and any subclasses of `from`. */\n only?: boolean;\n /**\n * filter for query. If present, only instances of `from` that satisfy the filter will be returned.\n * If not supplied, all instances of `from` are returned.\n * @note\n * This value is used into the ECQuery:`SELECT ECInstanceId FROM ${query.from} WHERE ${query.where}`.\n */\n where?: string;\n /** List of Model or Category ids to add to the query results.\n * @note This is only valid if there is a `where` clause. Otherwise all instances of `from` will be returned so there is no value in adding ids.\n */\n adds?: Id64Array | CompressedId64Set;\n /** List of Model or Category Ids to remove from the query results. */\n removes?: Id64Array | CompressedId64Set;\n }\n\n /** A Model or Category selector may either be a query or a list of Ids. */\n export type SelectorProps = { query: SelectorQuery, ids?: never } | { query?: never, ids: Id64Array | CompressedId64Set };\n\n /** Information about a View in a ViewStore. */\n export interface ViewInfo {\n /** The Id of the view. */\n id: IdString;\n /** The name of the view. */\n name?: ViewName;\n /** The name of the owner of the view. */\n owner?: OwnerName;\n /** The className of the view. */\n className: ClassFullName;\n /** The Id of the view group containing the view. */\n groupId: IdString;\n /** If true, the view is private (unshared) and will only be returned by queries that specify the owner's name. */\n isPrivate: boolean;\n /** The Id of a ModelSelector, if the view has one. */\n modelSelectorId?: IdString;\n /** The Id of the CategorySelector for this view. */\n categorySelectorId: IdString;\n /** The Id of a DisplayStyle for the view. */\n displayStyleId: IdString;\n /** a list of tags for the view. */\n tags?: TagName[];\n }\n\n /** Information about a ViewGroup in a ViewStore. */\n export interface ViewGroupInfo {\n /** The Id of this view group. */\n id: IdString;\n /** The name of this view group. */\n name: ViewGroupName;\n /** The Id of the parent of this view group. If undefined, this is the root group. */\n parent?: IdString;\n /** The Id of the default view for this view group. */\n defaultView?: IdString;\n }\n\n /** Arguments for adding a new view to a ViewStore. */\n export interface AddViewArgs {\n /** the properties of the ViewDefinition for the new view. */\n readonly viewDefinition: ViewDefinitionProps;\n\n /**\n * The properties of a category selector for the new view.\n * @note This value is only used, and should only be present if `viewDefinition.categorySelectorId` **not** a valid\n * `IdString`. In that case, a new category selector will be created with these properties and its Id will be used.\n * Otherwise, the categorySelectorId from the ViewDefinition is used. If it does not represent a valid category\n * selector, an error is thrown.\n */\n readonly categorySelectorProps?: CategorySelectorProps;\n\n /** The properties of a model selector for the new view.\n * @note This value is only used, and should only be present if `viewDefinition.modelSelectorId` **not** a valid\n * `IdString`. In that case, a new model selector will be created with these properties and its Id will be used.\n * Otherwise, the modelSelectorId from the ViewDefinition is used. If it does not represent a valid model selector,\n * an error is thrown.\n */\n readonly modelSelectorProps?: ModelSelectorProps;\n\n /** The properties of a display style for the new view.\n * @note This value is only used, and should only be present if `viewDefinition.displayStyleId` **not** a valid\n * `IdString`. In that case, a new display style will be created with these properties and its Id will be used.\n * Otherwise, the displayStyleId from the ViewDefinition is used. If it does not represent a valid display style, an\n * error is thrown.\n */\n readonly displayStyleProps?: DisplayStyleProps;\n\n /* the owner of the view. Must be present if isPrivate is true. */\n readonly owner?: OwnerName;\n\n /* the Id of the view group for the view. If not present, the view is added to the root group. */\n readonly group?: IdString;\n\n /* if true, the view is private (unshared). */\n readonly isPrivate?: boolean;\n\n /* an optional list of tags for the view. */\n readonly tags?: TagName[];\n\n /** optional thumbnail for the view. */\n readonly thumbnail?: ThumbnailProps;\n }\n\n /** Argument for finding a category selector, model selector, display style, or timeline by name or Id. */\n export type NameOrId = { name: string, id?: never } | { id: IdString, name?: never };\n\n /** Bindings for parameterized values in where clause of SelectorQuery\n * @see[[ECSqlStatement.bindValues]]\n */\n export interface QueryBindings {\n bindings?: any[] | object;\n }\n\n /**\n * Methods for reading from a ViewStore via Rpc from a frontend via `IModelConnection.views.viewsStoreReader`. These\n * methods use the *current* ViewStore for the iModel, and attempt to load the default ViewStore if no ViewStore is\n * currently loaded. They will throw exceptions if the request cannot be fulfilled.\n * @note The user's accessToken is validated against the ViewStore for every request. For each of these methods, the\n * user only needs read permission to the ViewStore.\n */\n export interface Reader {\n /** Find all views owned by the supplied owner name. */\n findViewsByOwner(args: { owner: OwnerName }): Promise<ViewInfo[]>;\n\n /** Get a category selector by Id. Throws if it does not exist. */\n getCategorySelector(args: NameOrId & QueryBindings): Promise<CategorySelectorProps>;\n\n /** Get a display style by Id. Throws if it does not exist. */\n getDisplayStyle(args: NameOrId & { opts?: DisplayStyleLoadProps }): Promise<DisplayStyleProps>;\n\n /** Get a model selector by Id. Throws if it does not exist. */\n getModelSelector(args: NameOrId & QueryBindings): Promise<ModelSelectorProps>;\n\n /** Get a thumbnail for a view. */\n getThumbnail(args: { viewId: IdString }): Promise<ThumbnailProps | undefined>;\n\n /** Get a render timeline by Id. Throws if it does not exist. */\n getTimeline(args: NameOrId): Promise<RenderTimelineProps>;\n\n /** Get a view by name. The name can include the *view group path*, if no `groupId` is supplied. */\n getViewByName(arg: { name: ViewName, groupId?: IdString }): Promise<ViewInfo | undefined>;\n\n /** Get a view definition by viewId. Throws if it does not exist. */\n getViewDefinition(args: { viewId: IdString }): Promise<ViewDefinitionProps>;\n\n /** get the properties of a ViewGroup by id. This will include the defaultViewId, if one exists. */\n getViewGroupInfo(args: { groupId?: IdString }): Promise<ViewGroupInfo | undefined>;\n\n /** Get a list of ViewGroups that are children of the supplied parent. If no parent is supplied, the root group is used.\n * Each entry in the list includes the id and name of the ViewGroup.\n */\n getViewGroups(args: { parent?: ViewGroupSpec }): Promise<{ id: IdString, name: string }[]>;\n\n /** Get the ViewInfo for a view by Id. Returns undefined if the view does not exist. */\n getViewInfo(args: { viewId: IdString }): Promise<ViewInfo | undefined>;\n\n /** Query for a list of ViewInfos for views that match the supplied [[QueryParams]].\n * @note The array will be sorted by name, ascending. To limit the size of the array, supply `limit` and `offset` in the QueryParams.\n */\n queryViews(queryParams: QueryParams): Promise<ViewInfo[]>;\n }\n\n /**\n * Methods for writing to a ViewStore via Rpc from a frontend via `IModelConnection.views.viewsStoreWriter`. These\n * methods use the *current* ViewStore for the iModel, and attempt to load the default ViewStore if no ViewStore is\n * currently loaded. They will throw exceptions if the request cannot be fulfilled.\n * @note The user's accessToken is validated against the ViewStore for every request. For each of these methods, the\n * user must have write permission to the ViewStore.\n */\n export interface Writer {\n /**\n * Add a category selector to a ViewStore.\n * @returns The IdString of the new category selector.\n */\n addCategorySelector(args: { name?: string, selector: SelectorProps, owner?: OwnerName }): Promise<IdString>;\n\n /** Add a display style to a ViewStore.\n * @returns The IdString of the new display style.\n */\n addDisplayStyle(args: { name?: string, className: string, settings: DisplayStyleSettingsProps, owner?: OwnerName }): Promise<IdString>;\n\n /**\n * Add a model selector to a ViewStore.\n * @returns The IdString of the new model selector.\n */\n addModelSelector(args: { name?: string, selector: SelectorProps, owner?: OwnerName }): Promise<IdString>;\n\n /**\n * Add a thumbnail for a view. If the view already has a thumbnail, it is replaced.\n * If a view is deleted, its thumbnail is also deleted.\n * @note The thumbnail must be a valid image in PNG or JPEG format.\n */\n addOrReplaceThumbnail(args: { viewId: IdString, thumbnail: ThumbnailProps }): Promise<void>;\n\n /** Add tags to a view. If the view already has tags, the new tags are appended to the existing tags. */\n addTagsToView(args: { viewId: IdString, tags: TagName[] }): Promise<void>;\n\n /** Add a render timeline to a ViewStore.\n * @returns The IdString of the new timeline.\n */\n addTimeline(args: { name?: string, timeline: RenderSchedule.ScriptProps, owner?: OwnerName }): Promise<IdString>;\n\n /** Add a view to a ViewStore. If no group is supplied, the new view is added to the root view group.\n * @returns The IdString of the new view\n */\n addView(args: AddViewArgs): Promise<IdString>;\n\n /** Add a view group to a ViewStore. If no parent is supplied, the new group is added to the root view group.\n * @returns the IdString of new view group\n */\n addViewGroup(args: { name: string, parentId?: IdString, owner?: OwnerName }): Promise<IdString>;\n\n /** Change the default view for a view group. If no group is supplied, this changes the default view for the root view group. */\n changeDefaultViewId(args: { defaultView: IdString, group?: ViewGroupSpec }): Promise<void>;\n\n /** Delete the thumbnail for a view. */\n deleteThumbnail(args: { viewId: IdString }): Promise<void>;\n\n /**\n * Delete a view from a ViewStore. If this is the default view for a view group, it cannot be deleted until another\n * view is set as the default.\n * @note If this view references a category selector, model selector, or display style that is not referenced by any\n * other view, *and do not have a name*, they will each also be deleted. If the view has a thumbnail, it is also\n * deleted.\n */\n deleteView(args: { viewId: IdString }): Promise<void>;\n\n /** Delete a view group from a ViewStore. This will also delete all views in the group. */\n deleteViewGroup(args: { name: ViewGroupSpec }): Promise<void>;\n\n /** Delete a display style from a ViewStore. If the display style is referenced by any view, it cannot be deleted\n * and an exception will be thrown.\n */\n deleteDisplayStyle(args: { id: IdString }): Promise<void>;\n\n /** Delete a model selector from a ViewStore. If the model selector is referenced by any view, it cannot be deleted\n * and an exception will be thrown. */\n deleteModelSelector(args: { id: IdString }): Promise<void>;\n\n /** Delete a category selector from a ViewStore. If the category selector is referenced by any view, it cannot be\n * deleted and an exception will be thrown.\n */\n deleteCategorySelector(args: { id: IdString }): Promise<void>;\n\n /** Delete a render timeline from a ViewStore. */\n deleteTimeline(args: { id: IdString }): Promise<void>;\n\n /** Delete a tag. This removes it from all views where it was used. */\n deleteTag(args: { name: TagName }): Promise<void>;\n\n /** remove a tag from a view. */\n removeTagFromView(args: { viewId: IdString, tag: TagName }): Promise<void>;\n\n /** Update the properties of a category selector. */\n updateCategorySelector(args: NameOrId & { selector: SelectorProps }): Promise<void>;\n\n /** Update the properties of a display style. */\n updateDisplayStyle(args: NameOrId & { className: string, settings: DisplayStyleSettingsProps }): Promise<void>;\n\n /** Update the properties of a model selector. */\n updateModelSelector(args: NameOrId & { selector: SelectorProps }): Promise<void>;\n\n /** Update the properties of a render timeline. */\n updateTimeline(args: NameOrId & { timeline: RenderSchedule.ScriptProps }): Promise<void>;\n\n /** Update the properties of a view definition. */\n updateViewDefinition(args: { viewId: IdString, viewDefinition: ViewDefinitionProps }): Promise<void>;\n\n /** Change a view from shared to private, or vice versa. If changing to private, the owner must be supplied. */\n updateViewShared(arg: { viewId: IdString, isShared: boolean, owner?: string }): Promise<void>;\n\n /** Set the name of a category selector. */\n renameCategorySelector(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a display style. */\n renameDisplayStyle(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a model selector. */\n renameModelSelector(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a render timeline. */\n renameTimeline(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a view. */\n renameView(args: { viewId: IdString, name: string }): Promise<void>;\n\n /** Set the name of a view group. */\n renameViewGroup(args: { groupId: IdString, name: string }): Promise<void>;\n\n /** rename an existing tag. */\n renameTag(args: { oldName: TagName, newName: TagName }): Promise<void>;\n }\n}\n"]}
|
|
1
|
+
{"version":3,"file":"ViewProps.js","sourceRoot":"","sources":["../../src/ViewProps.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAyJH,4CAEC;AAQD,wCAEC;AAlBD;;;;;GAKG;AACH,SAAgB,gBAAgB,CAAC,OAAwC,EAAE,mBAA+B;IACxG,OAAO,OAAO,EAAE,EAAE,IAAI,mBAAmB,CAAC;AAC5C,CAAC;AAED;;;;;GAKG;AACH,SAAgB,cAAc,CAAC,OAAwC,EAAE,mBAA+B;IACtG,OAAO,OAAO,IAAI,EAAE,EAAE,EAAE,mBAAmB,EAAE,CAAC;AAChD,CAAC;AAmHD;;;GAGG;AACH,IAAiB,YAAY,CA0W5B;AA1WD,WAAiB,YAAY;IAE3B;;;;OAIG;IACU,oBAAO,GAAG,OAAO,CAAC;IAkC/B,qGAAqG;IACxF,0BAAa,GAAG,CAAC,EAAiB,EAAE,EAAE,CAAC,IAAI,KAAK,EAAE,EAAE,UAAU,CAAC,GAAG,CAAC,CAAC;AAgUnF,CAAC,EA1WgB,YAAY,4BAAZ,YAAY,QA0W5B","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Views\n */\n\nimport { CompressedId64Set, Id64Array, Id64String } from \"@itwin/core-bentley\";\nimport { AngleProps, Range3dProps, TransformProps, XYProps, XYZProps, YawPitchRollProps } from \"@itwin/core-geometry\";\nimport { CameraProps } from \"./Camera\";\nimport { DisplayStyleProps, DisplayStyleSettingsProps } from \"./DisplayStyleSettings\";\nimport { DefinitionElementProps, DisplayStyleLoadProps, ElementProps, RelatedElementProps, RenderTimelineProps, SheetProps, ViewAttachmentProps } from \"./ElementProps\";\nimport { EntityQueryParams } from \"./EntityProps\";\nimport { ModelProps } from \"./ModelProps\";\nimport { SubCategoryAppearance } from \"./SubCategoryAppearance\";\nimport { ViewDetails3dProps, ViewDetailsProps } from \"./ViewDetails\";\nimport { ThumbnailProps } from \"./Thumbnail\";\nimport { RenderSchedule } from \"./RenderSchedule\";\n\n/** The id of either an element or an entry in a ViewStore.\n * @public\n */\nexport type ViewIdString = Id64String; // should also include ViewStoreRpc.IdString when that's @public\n\n/** As part of a [[ViewStateProps]], describes the [[SpatialViewDefinition]] from which a [SectionDrawing]($backend) was generated.\n * @see [[SectionDrawingProps]]\n * @public\n * @extensions\n */\nexport interface SectionDrawingViewProps {\n /** The Id of the spatial view from which the SectionDrawing was generated. */\n spatialView: Id64String;\n /** If true, the spatial view should be displayed in the context of the drawing view. */\n displaySpatialView: boolean;\n /** Transform from drawing coordinates to spatial coordinates. If undefined, use identity transform. */\n drawingToSpatialTransform?: TransformProps;\n}\n\n/** The response props from the getCustomViewState3dData RPC endpoint\n * @internal\n */\nexport interface CustomViewState3dProps {\n modelIds: CompressedId64Set;\n modelExtents: Range3dProps;\n categoryIds: CompressedId64Set;\n}\n\n/**\n * The options passed to the getCustomViewState3dData RPC endpoint.\n * @internal\n */\nexport interface CustomViewState3dCreatorOptions {\n modelIds?: CompressedId64Set;\n}\n\n/**\n * A result row from querying for subcategories\n * @internal\n */\nexport interface SubCategoryResultRow {\n parentId: Id64String;\n id: Id64String;\n appearance: SubCategoryAppearance.Props;\n}\n\n/**\n * Request props for the hydrateViewState RPC endpoint.\n * @internal\n */\nexport interface HydrateViewStateRequestProps {\n acsId?: string;\n notLoadedModelSelectorStateModels?: CompressedId64Set;\n sheetViewAttachmentIds?: CompressedId64Set;\n viewStateLoadProps?: ViewStateLoadProps;\n baseModelId?: Id64String;\n spatialViewId?: Id64String;\n}\n\n/** Response props from the hydrateViewState RPC endpoint.\n * @internal\n */\nexport interface HydrateViewStateResponseProps {\n acsElementProps?: ElementProps;\n modelSelectorStateModels?: ModelProps[];\n // cast this to viewAttachmentInfo[] on the frontend.\n sheetViewAttachmentProps?: ViewAttachmentProps[];\n sheetViewViews?: (ViewStateProps | undefined)[];\n baseModelProps?: ModelProps;\n spatialViewProps?: ViewStateProps;\n}\n\n/** Returned from [IModelDb.Views.getViewStateProps]($backend).\n * @public\n * @extensions\n */\nexport interface ViewStateProps {\n viewDefinitionProps: ViewDefinitionProps;\n categorySelectorProps: CategorySelectorProps;\n modelSelectorProps?: ModelSelectorProps;\n displayStyleProps: DisplayStyleProps;\n /** Sheet-specific properties, if this is a view of a [SheetModel]($backend). */\n sheetProps?: SheetProps;\n /** The Ids of the [ViewAttachment]($backend)s contained within the [SheetModel]($backend), if this is a sheet view. */\n sheetAttachments?: Id64Array;\n /** For a [DrawingViewState]($frontend), the extents of the [DrawingModel]($backend), used for determining the upper limits of the view's extents. */\n modelExtents?: Range3dProps;\n /** Information about the [SectionDrawing]($backend) relevant to displaying a drawing view. */\n sectionDrawing?: SectionDrawingViewProps;\n}\n\n/** Options for loading a [[ViewStateProps]] via [IModelConnection.Views.load]($frontend) or [IModelDb.Views.getViewStateProps]($backend).\n * @public\n * @extensions\n */\nexport interface ViewStateLoadProps {\n /** Options for loading the view's [[DisplayStyleProps]]. */\n displayStyle?: DisplayStyleLoadProps;\n\n /**\n * bindings for query-based selectors\n * @beta\n */\n queryBindings?: {\n modelSelector?: ViewStoreRpc.QueryBindings;\n categorySelector?: ViewStoreRpc.QueryBindings;\n };\n}\n\n/** Properties that define a ModelSelector\n * @public\n * @extensions\n */\nexport interface ModelSelectorProps extends DefinitionElementProps {\n models: Id64Array;\n}\n\n/** Properties that define a CategorySelector\n * @public\n * @extensions\n */\nexport interface CategorySelectorProps extends DefinitionElementProps {\n categories: Id64Array;\n}\n\n/** Parameters for performing a query on [ViewDefinition]($backend) classes.\n * @public\n * @extensions\n */\nexport interface ViewQueryParams extends EntityQueryParams {\n wantPrivate?: boolean;\n}\n\n/**\n * Helper to resolve navigation property ids represented as independent Id64Strings.\n * @internal\n *\n * @note This function will be redundant once all deprecated fields are removed. All calls to this function will need to be removed as well.\n */\nexport function resolveNavPropId(navProp: RelatedElementProps | undefined, deprecatedNavPropId: Id64String): Id64String {\n return navProp?.id ?? deprecatedNavPropId;\n}\n\n/**\n * Helper to resolve navigation properties represented as Id64Strings.\n * @internal\n *\n * @note This function will be redundant once all deprecated fields are removed. All calls to this function will need to be removed as well.\n */\nexport function resolveNavProp(navProp: RelatedElementProps | undefined, deprecatedNavPropId: Id64String): RelatedElementProps {\n return navProp ?? { id: deprecatedNavPropId };\n}\n\n/** Parameters used to construct a ViewDefinition\n * @public\n * @extensions\n */\nexport interface ViewDefinitionProps extends DefinitionElementProps {\n /** The [[CategorySelector]] for this view. */\n categorySelector?: RelatedElementProps;\n\n /** The [[DisplayStyle]] for this view. */\n displayStyle?: RelatedElementProps;\n\n /** The Id of the [[CategorySelector]] for this view.\n * @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `categorySelector` instead.\n */\n categorySelectorId: ViewIdString;\n /** The Id of the [[DisplayStyle]] for this view.\n * @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `displayStyle` instead.\n */\n displayStyleId: ViewIdString;\n description?: string;\n jsonProperties?: {\n /** Additional properties of the view. */\n viewDetails?: ViewDetailsProps;\n };\n}\n\n/** Parameters to construct a ViewDefinition3d\n * @public\n * @extensions\n */\nexport interface ViewDefinition3dProps extends ViewDefinitionProps {\n /** if true, camera is valid. */\n cameraOn: boolean;\n /** The lower left back corner of the view frustum. */\n origin: XYZProps;\n /** The extent of the view frustum. */\n extents: XYZProps;\n /** Rotation of the view frustum (could be undefined if going Matrix3d -> YawPitchRoll). */\n angles?: YawPitchRollProps;\n /** The camera used for this view. */\n camera: CameraProps;\n jsonProperties?: {\n /** Additional properties of the view. */\n viewDetails?: ViewDetails3dProps;\n };\n}\n\n/** Parameters to construct a SpatialViewDefinition\n * @public\n * @extensions\n */\nexport interface SpatialViewDefinitionProps extends ViewDefinition3dProps {\n /** The [[ModelSelector]] for this view. */\n modelSelector?: RelatedElementProps;\n\n /** The Id of the [[ModelSelector]] for this view.\n * @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `modelSelector` instead.\n */\n modelSelectorId: ViewIdString;\n}\n\n/** Parameters used to construct a ViewDefinition2d\n * @public\n * @extensions\n */\nexport interface ViewDefinition2dProps extends ViewDefinitionProps {\n /** The base model displayed by this view. */\n baseModel?: RelatedElementProps;\n\n /** The Id of the base model displayed by this view.\n * @deprecated in 5.9 - will not be removed until after 2027-05-04. Use `baseModel` instead.\n */\n baseModelId: Id64String;\n origin: XYProps;\n delta: XYProps;\n angle: AngleProps;\n}\n\n/**\n * @public\n * @extensions\n */\nexport interface AuxCoordSystemProps extends ElementProps {\n type?: number;\n description?: string;\n}\n\n/** Properties of AuxCoordSystem2d\n * @public\n * @extensions\n */\nexport interface AuxCoordSystem2dProps extends AuxCoordSystemProps {\n /** Origin of the AuxCoordSystem2d */\n origin?: XYProps;\n /** Rotation angle */\n angle?: AngleProps;\n}\n\n/** Properties of AuxCoordSystem3d\n * @public\n * @extensions\n */\nexport interface AuxCoordSystem3dProps extends AuxCoordSystemProps {\n /** Origin of the AuxCoordSystem3d */\n origin?: XYZProps;\n /** Yaw angle */\n yaw?: AngleProps;\n /** Pitch angle */\n pitch?: AngleProps;\n /** Roll angle */\n roll?: AngleProps;\n}\n\n/**\n * Access to a ViewStore from the frontend.\n * @beta\n */\nexport namespace ViewStoreRpc {\n\n /**\n * Version of the Rpc interface. If any methods or interfaces of this API change, this number should\n * be incremented according to the rules of semantic versioning. See .\\rpc\\README-RpcInterfaceVersioning.md for more information.\n * @internal\n */\n export const version = \"4.0.0\";\n\n /** an Id of a View, DisplayStyle, ModelSelector, CategorySelector, or Timeline in a ViewStore.\n * Will be a base-36 number with a leading \"@\".\n * @public\n */\n export type IdString = string;\n\n /**\n * A string identifying a group. This may either be a \"group name path\" or the RowString of a group (e.g. either \"group1/design/issues\" or \"@4e3\")\n * The syntax is not ambiguous because ViewStoreIdStrings always start with \"@\" and Group names can never contain \"@\".\n */\n export type ViewGroupSpec = IdString | ViewGroupPath;\n\n /** The name for a view. */\n export type ViewName = string;\n\n /** The name for a Tag. */\n export type TagName = string;\n\n /** The name of an \"owner\". Should come from the authentication system, so it will be guaranteed unique.\n * This name should be chosen by the user rather than their email address.\n */\n export type OwnerName = string;\n\n /** The path name of a view group (e.g. \"group1/design/issues\"). Does not include the \"root\" group. */\n export type ViewGroupPath = string;\n\n /** The name for a view group. */\n export type ViewGroupName = string;\n\n /** The name for a view group. */\n export type ClassFullName = string;\n\n /** Determine if a string is an Id of an entry in a ViewStore (base-36 integer with a leading \"@\") */\n export const isViewStoreId = (id?: ViewIdString) => true === id?.startsWith(\"@\");\n\n /** Parameters for querying for views in a ViewStore. */\n export interface QueryParams {\n /** a list of classFullNames to accept. If not present, all classes are returned. */\n readonly classNames?: ClassFullName[];\n /** Optional \"LIMIT\" clause to limit the number of views returned. */\n readonly limit?: number;\n /** Optional \"OFFSET\" clause. Only valid if Limit is also present. */\n readonly offset?: number;\n /** A string to filter view names. May include wildcards if the `nameCompare` uses LIKE or GLOB (see SQLite documentation for LIKE and GLOB). */\n readonly nameSearch?: string;\n /** The comparison operator for `nameSearch`. Default is `=` */\n readonly nameCompare?: \"GLOB\" | \"LIKE\" | \"NOT GLOB\" | \"NOT LIKE\" | \"=\" | \"<\" | \">\";\n /* the Id of the view group to query. If not present, the root group is used. There is no way to query for views from multiple view groups in one request. */\n readonly group?: IdString;\n /** A list of tags to filter views. If present, only views that have one or more of the tags will be returned. */\n readonly tags?: TagName[];\n /* The name of an owner for private views. If present, private views owned by the owner will also be returned. Shared views are always returned. */\n readonly owner?: OwnerName;\n }\n\n /** Parameters for specifying a Query to select Categories or Models. */\n export interface SelectorQuery {\n /**\n * The full ClassName from which to select. If this SelectorQuery is for Categories, this must be or derive from \"BisCore:Category\".\n * If this SelectorQuery is for Models, this must be or derive from \"BisCore:Model\".\n */\n from: ClassFullName;\n /** If true, only return instances of `from`. Otherwise, return instances of `from` and any subclasses of `from`. */\n only?: boolean;\n /**\n * filter for query. If present, only instances of `from` that satisfy the filter will be returned.\n * If not supplied, all instances of `from` are returned.\n * @note\n * This value is used into the ECQuery:`SELECT ECInstanceId FROM ${query.from} WHERE ${query.where}`.\n */\n where?: string;\n /** List of Model or Category ids to add to the query results.\n * @note This is only valid if there is a `where` clause. Otherwise all instances of `from` will be returned so there is no value in adding ids.\n */\n adds?: Id64Array | CompressedId64Set;\n /** List of Model or Category Ids to remove from the query results. */\n removes?: Id64Array | CompressedId64Set;\n }\n\n /** A Model or Category selector may either be a query or a list of Ids. */\n export type SelectorProps = { query: SelectorQuery, ids?: never } | { query?: never, ids: Id64Array | CompressedId64Set };\n\n /** Information about a View in a ViewStore. */\n export interface ViewInfo {\n /** The Id of the view. */\n id: IdString;\n /** The name of the view. */\n name?: ViewName;\n /** The name of the owner of the view. */\n owner?: OwnerName;\n /** The className of the view. */\n className: ClassFullName;\n /** The Id of the view group containing the view. */\n groupId: IdString;\n /** If true, the view is private (unshared) and will only be returned by queries that specify the owner's name. */\n isPrivate: boolean;\n /** The Id of a ModelSelector, if the view has one. */\n modelSelectorId?: IdString;\n /** The Id of the CategorySelector for this view. */\n categorySelectorId: IdString;\n /** The Id of a DisplayStyle for the view. */\n displayStyleId: IdString;\n /** a list of tags for the view. */\n tags?: TagName[];\n }\n\n /** Information about a ViewGroup in a ViewStore. */\n export interface ViewGroupInfo {\n /** The Id of this view group. */\n id: IdString;\n /** The name of this view group. */\n name: ViewGroupName;\n /** The Id of the parent of this view group. If undefined, this is the root group. */\n parent?: IdString;\n /** The Id of the default view for this view group. */\n defaultView?: IdString;\n }\n\n /** Arguments for adding a new view to a ViewStore. */\n export interface AddViewArgs {\n /** the properties of the ViewDefinition for the new view. */\n readonly viewDefinition: ViewDefinitionProps;\n\n /**\n * The properties of a category selector for the new view.\n * @note This value is only used, and should only be present if `viewDefinition.categorySelector.id` is **not** a valid `IdString`.\n * In that case, a new category selector will be created with these properties and its Id will be used.\n * Otherwise, the categorySelector from the ViewDefinition is used. If it does not represent a valid category\n * selector, an error is thrown.\n */\n readonly categorySelectorProps?: CategorySelectorProps;\n\n /** The properties of a model selector for the new view.\n * @note This value is only used, and should only be present if `viewDefinition.modelSelector.id` is **not** a valid `IdString`.\n * In that case, a new model selector will be created with these properties and its Id will be used.\n * Otherwise, the modelSelector from the ViewDefinition is used. If it does not represent a valid model selector,\n * an error is thrown.\n */\n readonly modelSelectorProps?: ModelSelectorProps;\n\n /** The properties of a display style for the new view.\n * @note This value is only used, and should only be present if `viewDefinition.displayStyle.id` is **not** a valid `IdString`.\n * In that case, a new display style will be created with these properties and its Id will be used.\n * Otherwise, the displayStyle from the ViewDefinition is used. If it does not represent a valid display style, an\n * error is thrown.\n */\n readonly displayStyleProps?: DisplayStyleProps;\n\n /* the owner of the view. Must be present if isPrivate is true. */\n readonly owner?: OwnerName;\n\n /* the Id of the view group for the view. If not present, the view is added to the root group. */\n readonly group?: IdString;\n\n /* if true, the view is private (unshared). */\n readonly isPrivate?: boolean;\n\n /* an optional list of tags for the view. */\n readonly tags?: TagName[];\n\n /** optional thumbnail for the view. */\n readonly thumbnail?: ThumbnailProps;\n }\n\n /** Argument for finding a category selector, model selector, display style, or timeline by name or Id. */\n export type NameOrId = { name: string, id?: never } | { id: IdString, name?: never };\n\n /** Bindings for parameterized values in where clause of SelectorQuery\n * @see[[ECSqlStatement.bindValues]]\n */\n export interface QueryBindings {\n bindings?: any[] | object;\n }\n\n /**\n * Methods for reading from a ViewStore via Rpc from a frontend via `IModelConnection.views.viewsStoreReader`. These\n * methods use the *current* ViewStore for the iModel, and attempt to load the default ViewStore if no ViewStore is\n * currently loaded. They will throw exceptions if the request cannot be fulfilled.\n * @note The user's accessToken is validated against the ViewStore for every request. For each of these methods, the\n * user only needs read permission to the ViewStore.\n */\n export interface Reader {\n /** Find all views owned by the supplied owner name. */\n findViewsByOwner(args: { owner: OwnerName }): Promise<ViewInfo[]>;\n\n /** Get a category selector by Id. Throws if it does not exist. */\n getCategorySelector(args: NameOrId & QueryBindings): Promise<CategorySelectorProps>;\n\n /** Get a display style by Id. Throws if it does not exist. */\n getDisplayStyle(args: NameOrId & { opts?: DisplayStyleLoadProps }): Promise<DisplayStyleProps>;\n\n /** Get a model selector by Id. Throws if it does not exist. */\n getModelSelector(args: NameOrId & QueryBindings): Promise<ModelSelectorProps>;\n\n /** Get a thumbnail for a view. */\n getThumbnail(args: { viewId: IdString }): Promise<ThumbnailProps | undefined>;\n\n /** Get a render timeline by Id. Throws if it does not exist. */\n getTimeline(args: NameOrId): Promise<RenderTimelineProps>;\n\n /** Get a view by name. The name can include the *view group path*, if no `groupId` is supplied. */\n getViewByName(arg: { name: ViewName, groupId?: IdString }): Promise<ViewInfo | undefined>;\n\n /** Get a view definition by viewId. Throws if it does not exist. */\n getViewDefinition(args: { viewId: IdString }): Promise<ViewDefinitionProps>;\n\n /** get the properties of a ViewGroup by id. This will include the defaultViewId, if one exists. */\n getViewGroupInfo(args: { groupId?: IdString }): Promise<ViewGroupInfo | undefined>;\n\n /** Get a list of ViewGroups that are children of the supplied parent. If no parent is supplied, the root group is used.\n * Each entry in the list includes the id and name of the ViewGroup.\n */\n getViewGroups(args: { parent?: ViewGroupSpec }): Promise<{ id: IdString, name: string }[]>;\n\n /** Get the ViewInfo for a view by Id. Returns undefined if the view does not exist. */\n getViewInfo(args: { viewId: IdString }): Promise<ViewInfo | undefined>;\n\n /** Query for a list of ViewInfos for views that match the supplied [[QueryParams]].\n * @note The array will be sorted by name, ascending. To limit the size of the array, supply `limit` and `offset` in the QueryParams.\n */\n queryViews(queryParams: QueryParams): Promise<ViewInfo[]>;\n }\n\n /**\n * Methods for writing to a ViewStore via Rpc from a frontend via `IModelConnection.views.viewsStoreWriter`. These\n * methods use the *current* ViewStore for the iModel, and attempt to load the default ViewStore if no ViewStore is\n * currently loaded. They will throw exceptions if the request cannot be fulfilled.\n * @note The user's accessToken is validated against the ViewStore for every request. For each of these methods, the\n * user must have write permission to the ViewStore.\n */\n export interface Writer {\n /**\n * Add a category selector to a ViewStore.\n * @returns The IdString of the new category selector.\n */\n addCategorySelector(args: { name?: string, selector: SelectorProps, owner?: OwnerName }): Promise<IdString>;\n\n /** Add a display style to a ViewStore.\n * @returns The IdString of the new display style.\n */\n addDisplayStyle(args: { name?: string, className: string, settings: DisplayStyleSettingsProps, owner?: OwnerName }): Promise<IdString>;\n\n /**\n * Add a model selector to a ViewStore.\n * @returns The IdString of the new model selector.\n */\n addModelSelector(args: { name?: string, selector: SelectorProps, owner?: OwnerName }): Promise<IdString>;\n\n /**\n * Add a thumbnail for a view. If the view already has a thumbnail, it is replaced.\n * If a view is deleted, its thumbnail is also deleted.\n * @note The thumbnail must be a valid image in PNG or JPEG format.\n */\n addOrReplaceThumbnail(args: { viewId: IdString, thumbnail: ThumbnailProps }): Promise<void>;\n\n /** Add tags to a view. If the view already has tags, the new tags are appended to the existing tags. */\n addTagsToView(args: { viewId: IdString, tags: TagName[] }): Promise<void>;\n\n /** Add a render timeline to a ViewStore.\n * @returns The IdString of the new timeline.\n */\n addTimeline(args: { name?: string, timeline: RenderSchedule.ScriptProps, owner?: OwnerName }): Promise<IdString>;\n\n /** Add a view to a ViewStore. If no group is supplied, the new view is added to the root view group.\n * @returns The IdString of the new view\n */\n addView(args: AddViewArgs): Promise<IdString>;\n\n /** Add a view group to a ViewStore. If no parent is supplied, the new group is added to the root view group.\n * @returns the IdString of new view group\n */\n addViewGroup(args: { name: string, parentId?: IdString, owner?: OwnerName }): Promise<IdString>;\n\n /** Change the default view for a view group. If no group is supplied, this changes the default view for the root view group. */\n changeDefaultViewId(args: { defaultView: IdString, group?: ViewGroupSpec }): Promise<void>;\n\n /** Delete the thumbnail for a view. */\n deleteThumbnail(args: { viewId: IdString }): Promise<void>;\n\n /**\n * Delete a view from a ViewStore. If this is the default view for a view group, it cannot be deleted until another\n * view is set as the default.\n * @note If this view references a category selector, model selector, or display style that is not referenced by any\n * other view, *and do not have a name*, they will each also be deleted. If the view has a thumbnail, it is also\n * deleted.\n */\n deleteView(args: { viewId: IdString }): Promise<void>;\n\n /** Delete a view group from a ViewStore. This will also delete all views in the group. */\n deleteViewGroup(args: { name: ViewGroupSpec }): Promise<void>;\n\n /** Delete a display style from a ViewStore. If the display style is referenced by any view, it cannot be deleted\n * and an exception will be thrown.\n */\n deleteDisplayStyle(args: { id: IdString }): Promise<void>;\n\n /** Delete a model selector from a ViewStore. If the model selector is referenced by any view, it cannot be deleted\n * and an exception will be thrown. */\n deleteModelSelector(args: { id: IdString }): Promise<void>;\n\n /** Delete a category selector from a ViewStore. If the category selector is referenced by any view, it cannot be\n * deleted and an exception will be thrown.\n */\n deleteCategorySelector(args: { id: IdString }): Promise<void>;\n\n /** Delete a render timeline from a ViewStore. */\n deleteTimeline(args: { id: IdString }): Promise<void>;\n\n /** Delete a tag. This removes it from all views where it was used. */\n deleteTag(args: { name: TagName }): Promise<void>;\n\n /** remove a tag from a view. */\n removeTagFromView(args: { viewId: IdString, tag: TagName }): Promise<void>;\n\n /** Update the properties of a category selector. */\n updateCategorySelector(args: NameOrId & { selector: SelectorProps }): Promise<void>;\n\n /** Update the properties of a display style. */\n updateDisplayStyle(args: NameOrId & { className: string, settings: DisplayStyleSettingsProps }): Promise<void>;\n\n /** Update the properties of a model selector. */\n updateModelSelector(args: NameOrId & { selector: SelectorProps }): Promise<void>;\n\n /** Update the properties of a render timeline. */\n updateTimeline(args: NameOrId & { timeline: RenderSchedule.ScriptProps }): Promise<void>;\n\n /** Update the properties of a view definition. */\n updateViewDefinition(args: { viewId: IdString, viewDefinition: ViewDefinitionProps }): Promise<void>;\n\n /** Change a view from shared to private, or vice versa. If changing to private, the owner must be supplied. */\n updateViewShared(arg: { viewId: IdString, isShared: boolean, owner?: string }): Promise<void>;\n\n /** Set the name of a category selector. */\n renameCategorySelector(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a display style. */\n renameDisplayStyle(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a model selector. */\n renameModelSelector(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a render timeline. */\n renameTimeline(args: { id: IdString, name?: string }): Promise<void>;\n\n /** Set the name of a view. */\n renameView(args: { viewId: IdString, name: string }): Promise<void>;\n\n /** Set the name of a view group. */\n renameViewGroup(args: { groupId: IdString, name: string }): Promise<void>;\n\n /** rename an existing tag. */\n renameTag(args: { oldName: TagName, newName: TagName }): Promise<void>;\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TileIO.js","sourceRoot":"","sources":["../../../src/tile/TileIO.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAsBH,8CAcC;AAKD,oDAGC;AAsED,kEAUC;AA1HD,sDAA+D;AAC/D,wDAA+C;AAE/C;;GAEG;AACH,IAAY,UASX;AATD,WAAY,UAAU;IACpB,iDAAW,CAAA;IACX,oDAAiB,CAAA;IACjB,oDAAiB,CAAA;IACjB,oDAAiB,CAAA;IACjB,wDAAmB,CAAA;IACnB,oDAAiB,CAAA;IACjB,oDAAiB,CAAA;IACjB,+CAAc,CAAA;AAChB,CAAC,EATW,UAAU,0BAAV,UAAU,QASrB;AAED;;GAEG;AACH,SAAgB,iBAAiB,CAAC,MAAc;IAC9C,QAAQ,MAAM,EAAE,CAAC;QACf,KAAK,UAAU,CAAC,OAAO,CAAC;QACxB,KAAK,UAAU,CAAC,IAAI,CAAC;QACrB,KAAK,UAAU,CAAC,IAAI,CAAC;QACrB,KAAK,UAAU,CAAC,MAAM,CAAC;QACvB,KAAK,UAAU,CAAC,IAAI,CAAC;QACrB,KAAK,UAAU,CAAC,IAAI,CAAC;QACrB,KAAK,UAAU,CAAC,IAAI,CAAC;QACrB,KAAK,UAAU,CAAC,GAAG;YACjB,OAAO,IAAI,CAAC;QACd;YACE,OAAO,KAAK,CAAC;IACjB,CAAC;AACH,CAAC;AAED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,YAAoB;IACvD,MAAM,MAAM,GAAG,
|
|
1
|
+
{"version":3,"file":"TileIO.js","sourceRoot":"","sources":["../../../src/tile/TileIO.ts"],"names":[],"mappings":"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","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Tile\n */\n\nimport { BentleyError, ByteStream } from \"@itwin/core-bentley\";\nimport { Point3d } from \"@itwin/core-geometry\";\n\n/** Type codes for various tile formats. Often these are embedded as 32-bit 'magic numbers' in a binary stream to indicate the format.\n * @internal\n */\nexport enum TileFormat {\n Unknown = 0,\n B3dm = 0x6d643362, // \"b3dm\"\n Gltf = 0x46546c67, // \"glTF\"\n Pnts = 0x73746e70, // \"pnts\"\n IModel = 0x6c644d69, // \"iMdl\"\n Cmpt = 0x74706d63, // cmpt\n I3dm = 0x6d643369, // i3dm\n A3x = 0x583341, // A3X0 (numeric 0 not char '0')\n}\n\n/** Given a magic number, return whether it identifies a known tile format.\n * @internal\n */\nexport function isKnownTileFormat(format: number) {\n switch (format) {\n case TileFormat.Unknown:\n case TileFormat.B3dm:\n case TileFormat.Gltf:\n case TileFormat.IModel:\n case TileFormat.Pnts:\n case TileFormat.Cmpt:\n case TileFormat.I3dm:\n case TileFormat.A3x:\n return true;\n default:\n return false;\n }\n}\n\n/** Given a magic number, attempt to convert it to a known TileFormat.\n * @internal\n */\nexport function tileFormatFromNumber(formatNumber: number): TileFormat {\n const format = formatNumber;\n return isKnownTileFormat(format) ? format : TileFormat.Unknown;\n}\n\n/** Status codes for tile reading operations\n * @internal\n */\nexport enum TileReadStatus {\n Success = 0,\n InvalidTileData,\n InvalidHeader,\n InvalidBatchTable,\n InvalidScene,\n InvalidFeatureTable,\n NewerMajorVersion,\n Canceled,\n}\n\nconst readStatusMessages = [\n \"Success\",\n \"Invalid tile data\",\n \"Invalid tile header\",\n \"Invalid batch table\",\n \"Invalid scene\",\n \"Invalid feature table\",\n \"Major version too new\",\n \"Canceled\",\n];\n\n/** Exception thrown by functions that deserialize tiles.\n * @internal\n */\nexport class TileReadError extends BentleyError {\n public constructor(status: TileReadStatus, message?: string) {\n if (undefined === message)\n message = readStatusMessages[status];\n\n super(status, message);\n }\n\n public get wasCanceled(): boolean { return TileReadStatus.Canceled === this.errorNumber; }\n}\n\n/** The base header preceding tile data of most formats, identifying the tile format and version of that format.\n * Specific tile formats may define their own headers as sub-types of this Header, appending\n * additional format-specific data.\n * @internal\n */\nexport abstract class TileHeader {\n private _format: TileFormat;\n public version: number;\n\n /** Construct a Header from the binary data at the supplied stream's current read position */\n public constructor(stream: ByteStream) {\n this._format = tileFormatFromNumber(stream.readUint32());\n this.version = stream.readUint32();\n }\n\n public get format(): TileFormat { return this._format; }\n\n /** Returns whether the header represents valid data */\n public abstract get isValid(): boolean;\n\n /** Mark the header as representing invalid data */\n protected invalidate(): void {\n this._format = TileFormat.Unknown;\n }\n}\n\n/** Read 3 64-bit floating point numbers at the byte stream's current read position, advance by 24 bytes, and return a Point3d constructed from the 3 numbers.\n * @internal\n */\nexport function nextPoint3d64FromByteStream(stream: ByteStream, result?: Point3d): Point3d {\n const x = stream.readFloat64(),\n y = stream.readFloat64(),\n z = stream.readFloat64();\n\n if (undefined === result)\n return new Point3d(x, y, z);\n\n result.set(x, y, z);\n return result;\n}\n"]}
|
|
@@ -602,7 +602,7 @@ export class DbQueryError extends BentleyError {
|
|
|
602
602
|
this.request = request;
|
|
603
603
|
}
|
|
604
604
|
static throwIfError(response, request) {
|
|
605
|
-
if (response.status >= DbResponseStatus.Error) {
|
|
605
|
+
if (response.status >= (DbResponseStatus.Error)) {
|
|
606
606
|
throw new DbQueryError(response, request);
|
|
607
607
|
}
|
|
608
608
|
if (response.status === DbResponseStatus.Cancel) {
|