Skip to content

Commit

Permalink
remove mention of PSS
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbjordan committed Dec 7, 2023
1 parent c7db707 commit ee8246e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@
"error_createGroup_brief": "Problem creating group",
"error_createGroup": "Server error occurred when trying to create the group",
"error_moveViews_brief": "Problem moving views",
"error_moveViews_nonLegacyView": "Cannot move new version of views to legacy PSS group",
"error_moveViews_legacyView": "Cannot move legacy PSS views to new version of group",
"error_moveViews_nonLegacyView": "Cannot move new version of views to legacy group",
"error_moveViews_legacyView": "Cannot move legacy views to new version of group",
"error_moveViews": "Server error occurred when trying to move the views",
"error_groupRename_brief": "Problem renaming group",
"error_groupRename": "Server error occurred when trying to rename the group",
Expand Down
4 changes: 2 additions & 2 deletions packages/saved-views-react/src/api/SavedViewsManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ export interface SavedViewFeatureFlags {
/** If true, enables Copy Link context menu item on Saved View */
copyLinkEnabled?: boolean;
/**
* If true, shows dialog for case where saved view has too many emphasized elements to save
* currently the limit is 1mb for a view in pss, but a SaveViewBase object over 990000 bytes triggers the too large case
* If true, shows dialog for case where saved view has too many emphasized elements to save.
* Currently the limit is 1mb for a legacy view, but a SaveViewBase object over 990000 bytes triggers the too large case.
* */
handleTooManyEmphasizedElements?: boolean;
/** If true, enables setting the hidden models and categories in the saved view */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const clipVectorMappings: ExtractionFunc<void, void>[] = [
];

/**
* Extracts the clip vectors from a PSS View
* Extracts the clip vectors from a legacy view
* @param input
*/
export const extractClipVectors = (input: object) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ const displayStyle3dLegacyMapping: ExtractionFunc<void, void>[] = [
];

/**
* Extracts the display style from a PSS view displayStyle field
* Extracts the display style from a legacy view displayStyle field
* And transforms it into our schema
* @param data
* @param viewState
Expand All @@ -625,7 +625,7 @@ export const extractDisplayStyle = (data: object, viewState?: ViewState) => {
};

/**
* Extracts the display style 3d from a PSS view displayStyle field
* Extracts the display style 3d from a legacy view displayStyle field
* And transforms it into our schema
* @param data
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const extractTags = (creator: string, tags?: SavedViewTag[]) => {
};

/**
* Transform a ViewItwinDrawing into a PSS SavedView if possible
* Transform a ViewDataITwinDrawing into a legacy SavedView if possible
* @param savedViewRsp
* @param iModelViewData
* @returns SavedView2d
Expand Down Expand Up @@ -126,7 +126,7 @@ export function savedViewItwinDrawingToLegacyDrawingView(
}

/**
* Transform a ViewItwinSheet into a PSS SavedView if possible
* Transform a ViewDataITwinSheet into a legacy SavedView if possible
* @param savedViewRsp
* @param seedSheetViewState
* @returns SavedView2d
Expand Down Expand Up @@ -216,7 +216,7 @@ export function savedViewItwinSheetToLegacySheetSavedView(
}

/**
* Transform a ViewItwin3d into a PSS SavedView if possible
* Transform a ViewDataItwin3d into a legacy SavedView if possible
* @param savedViewRsp
* @param seedSpatialViewState
* @returns SavedView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class SavedViewItemContextMenu extends ContextMenu<Props> {

addMoveEntryIfAllowed();
} else {
// We cannot unshare another user's view due to access to their user settings in PSS
// We cannot unshare another user's view due to access to their user settings in legacy storage
if (this.props.savedView.userId === SavedViewsManager.userId) {
contextMenuItems.push({
iconSpec: "icon-share",
Expand Down

0 comments on commit ee8246e

Please sign in to comment.