From b61ee4c4d3b0819fc1829b2163b22a4c4ceceb92 Mon Sep 17 00:00:00 2001 From: ilkin-overleaf <100852799+ilkin-overleaf@users.noreply.github.com> Date: Tue, 27 Jun 2023 15:50:24 +0300 Subject: [PATCH] Merge pull request #13528 from overleaf/ii-review-panel-migration-current-file-view [web] Create initial current file container GitOrigin-RevId: 81635922bb10b97637af296d987f28d43cf61262 --- .../project-list/util/sort-projects.ts | 2 +- .../components/review-panel/container.tsx | 6 +- .../review-panel/current-file-container.tsx | 83 +++++++++++-------- .../entries/add-comment-entry.tsx | 7 ++ .../entries/aggregate-change-entry.tsx | 7 ++ .../entries/bulk-actions-entry.tsx | 7 ++ .../review-panel/entries/change-entry.tsx | 7 ++ .../review-panel/entries/comment-entry.tsx | 7 ++ .../review-panel/entries/entry-container.tsx | 9 ++ .../resolved-comment-entry.tsx | 0 .../review-panel/overview-container.tsx | 63 ++++++++------ .../components/review-panel/review-panel.tsx | 13 ++- .../toolbar/resolved-comments-scroller.tsx | 2 +- .../hooks/use-angular-review-panel-state.ts | 16 +++- .../review-panel/types/review-panel-state.ts | 10 ++- .../features/source-editor/utils/sub-view.ts | 2 +- .../stylesheets/app/editor/review-panel.less | 82 +++++++++--------- .../source-editor/helpers/mock-scope.ts | 1 + .../web/types/{ => helpers}/array/sort.ts | 0 services/web/types/helpers/brand.ts | 3 + services/web/types/review-panel.ts | 8 -- services/web/types/review-panel/entry.ts | 47 +++++++++++ .../web/types/review-panel/review-panel.ts | 16 ++++ 23 files changed, 268 insertions(+), 130 deletions(-) create mode 100644 services/web/frontend/js/features/source-editor/components/review-panel/entries/add-comment-entry.tsx create mode 100644 services/web/frontend/js/features/source-editor/components/review-panel/entries/aggregate-change-entry.tsx create mode 100644 services/web/frontend/js/features/source-editor/components/review-panel/entries/bulk-actions-entry.tsx create mode 100644 services/web/frontend/js/features/source-editor/components/review-panel/entries/change-entry.tsx create mode 100644 services/web/frontend/js/features/source-editor/components/review-panel/entries/comment-entry.tsx create mode 100644 services/web/frontend/js/features/source-editor/components/review-panel/entries/entry-container.tsx rename services/web/frontend/js/features/source-editor/components/review-panel/{toolbar => entries}/resolved-comment-entry.tsx (100%) rename services/web/types/{ => helpers}/array/sort.ts (100%) create mode 100644 services/web/types/helpers/brand.ts delete mode 100644 services/web/types/review-panel.ts create mode 100644 services/web/types/review-panel/entry.ts create mode 100644 services/web/types/review-panel/review-panel.ts diff --git a/services/web/frontend/js/features/project-list/util/sort-projects.ts b/services/web/frontend/js/features/project-list/util/sort-projects.ts index cf97504a3b..169397ad49 100644 --- a/services/web/frontend/js/features/project-list/util/sort-projects.ts +++ b/services/web/frontend/js/features/project-list/util/sort-projects.ts @@ -1,7 +1,7 @@ import { Project, Sort } from '../../../../../types/project/dashboard/api' import { SortingOrder } from '../../../../../types/sorting-order' import { getOwnerName } from './project' -import { Compare } from '../../../../../types/array/sort' +import { Compare } from '../../../../../types/helpers/array/sort' const order = (order: SortingOrder, projects: Project[]) => { return order === 'asc' ? [...projects] : projects.reverse() diff --git a/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx b/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx index 62a1db89f0..bba2364bc0 100644 --- a/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx +++ b/services/web/frontend/js/features/source-editor/components/review-panel/container.tsx @@ -18,10 +18,12 @@ function Container({ children, classNames, ...rest }: ContainerProps) { {...rest} data-testid="review-panel" > +
+ +
- {children} -