-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the SODA experience dashboard. Added project details and Bett…
…er Splash screen. Fixed css issues (#706) * Resolved comments on previous PR, changed the version and name for the project * Changed Splash screen, implemented project detaisl --------- Co-authored-by: prostil <[email protected]>
- Loading branch information
Showing
17 changed files
with
226 additions
and
186 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,24 @@ | ||
<p>project-details works!</p> | ||
<div class="project-details-container"> | ||
<div class="details-top"> | ||
<span class="p-name">{{projectDetails.name}}</span> | ||
<button mat-raised-button color="primary" (click)="returnBack()" class="right"> | ||
<mat-icon>arrow_back</mat-icon> | ||
</button> | ||
</div> | ||
<div class="details-container"> | ||
<div class="project-details-list"> | ||
<p>Use Cases</p> | ||
<mat-list role="list"> | ||
<mat-list-item role="listitem" *ngFor="let useCase of projectDetails.useCases"> | ||
{{useCase}} | ||
</mat-list-item> | ||
</mat-list> | ||
<p>Features</p> | ||
<mat-list role="list"> | ||
<mat-list-item role="listitem" *ngFor="let feature of projectDetails.features"> | ||
{{feature}} | ||
</mat-list-item> | ||
</mat-list> | ||
</div> | ||
</div> | ||
</div> |
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,13 @@ | ||
.project-details-container{ | ||
padding: 12px; | ||
.p-name{ | ||
font-weight: bold; | ||
font-size: 18px; | ||
} | ||
.right{ | ||
float: right; | ||
} | ||
.details-container{ | ||
clear: both; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,24 @@ | ||
<mat-card class="project-list" *ngFor="let project of projects; let index=index; let odd=odd; let even=even;" [ngClass]="{ odd: odd, even: even }"> | ||
<mat-card-header> | ||
<mat-card-title> | ||
<img width="100%" src="{{project.logo}}"> | ||
</mat-card-title> | ||
<mat-card-subtitle></mat-card-subtitle> | ||
</mat-card-header> | ||
<mat-card-content> | ||
<div class="inline-text"> | ||
{{project.shortDescription}} | ||
</div> | ||
<div class="inline-text"> | ||
{{project.description}} | ||
</div> | ||
<div class="inline-text"> | ||
<p><b>Use Cases</b></p> | ||
<ul> | ||
<li *ngFor="let useCase of project.useCases"> | ||
{{useCase}} | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="inline-text"> | ||
<p><b>Features</b></p> | ||
<ul> | ||
<li *ngFor="let feature of project.features"> | ||
{{feature}} | ||
</li> | ||
</ul> | ||
</div> | ||
</mat-card-content> | ||
<mat-card-actions> | ||
<button style="float:right;" mat-raised-button color="primary" (click)="navigateTo(project.name)">Architecture and Demo</button> | ||
<button style="float:right;" mat-raised-button color="primary">Install {{project.name}}</button> | ||
</mat-card-actions> | ||
</mat-card> | ||
<mat-grid-list cols="2" rowHeight="3:1"> | ||
<mat-grid-tile *ngFor="let project of projects;"> | ||
<mat-card class="project-list"> | ||
<mat-card-header> | ||
<mat-card-title> | ||
<img width="100%" src="{{project.logo}}"> | ||
</mat-card-title> | ||
<mat-card-subtitle></mat-card-subtitle> | ||
</mat-card-header> | ||
<mat-card-content> | ||
<div class="inline-text"> | ||
{{project.shortDescription}} | ||
</div> | ||
<div class="inline-text"> | ||
{{project.description}} | ||
</div> | ||
</mat-card-content> | ||
<mat-card-actions> | ||
<button style="float:right;" mat-raised-button color="primary" (click)="navigateTo(project.name)">Architecture and Demo</button> | ||
<button style="float:right;" mat-raised-button color="primary">Install {{project.name}}</button> | ||
</mat-card-actions> | ||
</mat-card> | ||
</mat-grid-tile> | ||
</mat-grid-list> |
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,24 +0,0 @@ | ||
.project-list{ | ||
width: 100%; | ||
padding: 12px; | ||
float:left | ||
} | ||
.even{ | ||
float: left; | ||
width: 47%; | ||
clear: both; | ||
margin-bottom: 30px; | ||
} | ||
.odd{ | ||
float: right; | ||
width: 47%; | ||
margin-bottom: 30px; | ||
} | ||
.inline-text{ | ||
padding: 12px; | ||
font-size: 18px; | ||
} | ||
.project-list ul li { | ||
list-style: none; | ||
padding: 12px 0 0 12px; | ||
} | ||
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
Oops, something went wrong.