-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e40fbcf
commit b33617d
Showing
19 changed files
with
142 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
.../APIView/ClientSPA/src/app/_components/conversation-page/conversation-page.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
<app-review-page-layout | ||
[review]="review" | ||
[sideMenu]="sideMenu"> | ||
<app-conversations | ||
[apiRevisions]="apiRevisions" | ||
[comments]="comments" | ||
[userProfile]="userProfile"></app-conversations> | ||
<div class="conversation-panel border rounded p-3"> | ||
<app-conversations | ||
[apiRevisions]="apiRevisions" | ||
[comments]="comments" | ||
[userProfile]="userProfile"> | ||
</app-conversations> | ||
</div> | ||
</app-review-page-layout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
:host ::ng-deep { | ||
.conversation-panel{ | ||
height: calc(100vh - 130px); | ||
background-color: var(--base-fg-color); | ||
} | ||
} |
2 changes: 0 additions & 2 deletions
2
src/dotnet/APIView/ClientSPA/src/app/_components/conversations/conversations.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
src/dotnet/APIView/ClientSPA/src/app/_helpers/common-helpers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/dotnet/APIView/ClientSPA/src/app/_modules/conversation-page.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
import { ConversationPageComponent } from 'src/app/_components/conversation-page/conversation-page.component'; | ||
import { ReviewPageLayoutModule } from './shared/review-page-layout.module'; | ||
import { SharedAppModule } from './shared/shared-app.module'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
const routes: Routes = [ | ||
{ path: '', component: ConversationPageComponent } | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ConversationPageComponent | ||
], | ||
imports: [ | ||
CommonModule, | ||
ReviewPageLayoutModule, | ||
RouterModule.forChild(routes), | ||
] | ||
}) | ||
export class ConversationPageModule { } |
40 changes: 40 additions & 0 deletions
40
src/dotnet/APIView/ClientSPA/src/app/_modules/review-page.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { RouterModule, Routes } from '@angular/router'; | ||
import { ReviewPageComponent } from 'src/app/_components/review-page/review-page.component'; | ||
import { ReviewNavComponent } from 'src/app/_components/review-nav/review-nav.component'; | ||
import { CodePanelComponent } from 'src/app/_components/code-panel/code-panel.component'; | ||
import { DialogModule } from 'primeng/dialog'; | ||
import { TreeSelectModule } from 'primeng/treeselect'; | ||
import { ButtonModule } from 'primeng/button'; | ||
import { UiScrollModule } from 'ngx-ui-scroll' ; | ||
import { PageOptionsSectionComponent } from 'src/app/_components/shared/page-options-section/page-options-section.component'; | ||
import { ReviewPageOptionsComponent } from 'src/app/_components/review-page-options/review-page-options.component'; | ||
import { InputSwitchModule } from 'primeng/inputswitch'; | ||
import { SharedAppModule } from './shared/shared-app.module'; | ||
import { ReviewPageLayoutModule } from './shared/review-page-layout.module'; | ||
|
||
const routes: Routes = [ | ||
{ path: '', component: ReviewPageComponent } | ||
]; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
ReviewPageComponent, | ||
ReviewNavComponent, | ||
CodePanelComponent, | ||
PageOptionsSectionComponent, | ||
ReviewPageOptionsComponent, | ||
], | ||
imports: [ | ||
CommonModule, | ||
DialogModule, | ||
TreeSelectModule, | ||
ButtonModule, | ||
InputSwitchModule, | ||
UiScrollModule, | ||
ReviewPageLayoutModule, | ||
RouterModule.forChild(routes), | ||
] | ||
}) | ||
export class ReviewPageModule { } |
66 changes: 0 additions & 66 deletions
66
src/dotnet/APIView/ClientSPA/src/app/_modules/review-page/review-page.module.ts
This file was deleted.
Oops, something went wrong.
53 changes: 53 additions & 0 deletions
53
src/dotnet/APIView/ClientSPA/src/app/_modules/shared/review-page-layout.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { ReviewInfoComponent } from 'src/app/_components/shared/review-info/review-info.component'; | ||
import { ConversationsComponent } from 'src/app/_components/conversations/conversations.component'; | ||
import { CommentThreadComponent } from 'src/app/_components/shared/comment-thread/comment-thread.component'; | ||
import { ReviewPageLayoutComponent } from 'src/app/_components/shared/review-page-layout/review-page-layout.component'; | ||
import { MarkdownToHtmlPipe } from 'src/app/_pipes/markdown-to-html.pipe'; | ||
import { EditorComponent } from 'src/app/_components/shared/editor/editor.component'; | ||
import { EditorModule } from 'primeng/editor'; | ||
import { PanelModule } from 'primeng/panel'; | ||
import { MenuModule } from 'primeng/menu'; | ||
import { TimelineModule } from 'primeng/timeline'; | ||
import { DividerModule } from 'primeng/divider'; | ||
import { ApiRevisionOptionsComponent } from 'src/app/_components/api-revision-options/api-revision-options.component'; | ||
import { SharedAppModule } from './shared-app.module'; | ||
import { CommonModule } from '@angular/common'; | ||
|
||
|
||
@NgModule({ | ||
declarations: [ | ||
ReviewInfoComponent, | ||
CommentThreadComponent, | ||
ConversationsComponent, | ||
ReviewPageLayoutComponent, | ||
ApiRevisionOptionsComponent, | ||
MarkdownToHtmlPipe, | ||
EditorComponent, | ||
], | ||
exports: [ | ||
ReviewInfoComponent, | ||
CommentThreadComponent, | ||
ConversationsComponent, | ||
ReviewPageLayoutComponent, | ||
ApiRevisionOptionsComponent, | ||
MarkdownToHtmlPipe, | ||
EditorComponent, | ||
SharedAppModule, | ||
EditorModule, | ||
PanelModule, | ||
MenuModule, | ||
TimelineModule, | ||
DividerModule | ||
], | ||
imports: [ | ||
CommonModule, | ||
SharedAppModule, | ||
EditorModule, | ||
PanelModule, | ||
MenuModule, | ||
TimelineModule, | ||
DividerModule | ||
] | ||
}) | ||
export class ReviewPageLayoutModule { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters