-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from oneteme/develop
Develop
- Loading branch information
Showing
179 changed files
with
9,580 additions
and
3,655 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: CI/CD | ||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths-ignore: [ "README.md", "doc/**" ] | ||
jobs: | ||
sonarcloud: | ||
name: SonarCloud | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
- name: SonarCloud Scan | ||
uses: SonarSource/sonarcloud-github-action@master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | ||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
sonar.organization= jarvis | ||
sonar.projectKey= oneteme_inspect-app | ||
sonar.host.url= https://sonarcloud.io | ||
|
||
# relative paths to source directories. More details and properties are described | ||
# in https://sonarcloud.io/documentation/project-administration/narrowing-the-focus/ | ||
sonar.sources=. |
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,27 +1,49 @@ | ||
<nav> | ||
<mat-toolbar color="primary" style="display: flex; align-items: center; height: 48px;"> | ||
<span style="margin-right: 1em;">Trace Api</span> | ||
<mat-toolbar color="primary" style="display: flex; align-items: center; height: 48px;"> | ||
<span style="margin-right: 0.5em;cursor:pointer" [routerLink]="['home']">INSPECT</span> | ||
|
||
<a style="color: inherit" [routerLink]="['session/api']" routerLinkActive="item-selected" | ||
[queryParams]="{env: env.value}"> | ||
<button mat-button>Liste des API</button> | ||
</a> | ||
<a style="color: inherit" [routerLink]="['session/main']" routerLinkActive="item-selected" | ||
[queryParams]="{env: env.value}"> | ||
<button mat-button>Liste des Sessions</button> | ||
</a> | ||
|
||
<span style="flex-grow: 1;"></span> | ||
<mat-form-field appearance="fill" class="md-2 no-subscript" [class.loading]="isLoadingEnv"> | ||
<mat-select [formControl]="env"> | ||
<mat-option *ngFor="let e of envs" [value]="e">{{e}}</mat-option> | ||
</mat-select> | ||
<mat-spinner *ngIf="isLoadingEnv" [diameter]="18"></mat-spinner> | ||
</mat-form-field> | ||
</mat-toolbar> | ||
<button mat-icon-button [matMenuTriggerFor]="menu"> | ||
<mat-icon>more_vert</mat-icon> | ||
</button> | ||
<button mat-icon-button [routerLink]="['architecture']"> | ||
<mat-icon class="material-symbols-outlined">lan</mat-icon> | ||
</button> | ||
<mat-menu #menu="matMenu"> | ||
<button mat-menu-item [routerLink]="['session/rest']" routerLinkActive="item-selected" | ||
[queryParams]="{env: env.value}"> | ||
<mat-icon>{{ MAPPING_TYPE['rest'].icon }}</mat-icon> | ||
<span>{{ MAPPING_TYPE['rest'].title }}</span> | ||
</button> | ||
<button mat-menu-item [routerLink]="['session/main/batch']" routerLinkActive="item-selected" | ||
[queryParams]="{env: env.value}"> | ||
<mat-icon class="material-symbols-outlined">{{ MAPPING_TYPE['batch'].icon }}</mat-icon> | ||
<span>{{ MAPPING_TYPE['batch'].title }}</span> | ||
</button> | ||
<button mat-menu-item [routerLink]="['session/main/startup']" routerLinkActive="item-selected" | ||
[queryParams]="{env: env.value}"> | ||
<mat-icon>{{ MAPPING_TYPE['startup'].icon }}</mat-icon> | ||
<span>{{ MAPPING_TYPE['startup'].title }}</span> | ||
</button> | ||
<button mat-menu-item [routerLink]="['session/main/view']" routerLinkActive="item-selected" | ||
[queryParams]="{env: env.value}"> | ||
<mat-icon>{{ MAPPING_TYPE['view'].icon }}</mat-icon> | ||
<span>{{ MAPPING_TYPE['view'].title }}</span> | ||
</button> | ||
</mat-menu> | ||
<span style="flex-grow: 1;"></span> | ||
<mat-form-field appearance="fill" class="md-2 no-subscript" [class.loading]="isLoadingEnv"> | ||
<mat-select [formControl]="env"> | ||
<mat-option *ngFor="let e of envs" [value]="e">{{ e }}</mat-option> | ||
</mat-select> | ||
<mat-spinner *ngIf="isLoadingEnv" [diameter]="18"></mat-spinner> | ||
</mat-form-field> | ||
<a href="https://github.com/orgs/oneteme/projects/17" style="margin-left: 0.5em" target="_blank" mat-icon-button> | ||
<mat-icon svgIcon="github"></mat-icon> | ||
</a> | ||
</mat-toolbar> | ||
</nav> | ||
<mat-drawer-container> | ||
<mat-drawer-content style="overflow-x: hidden; padding: 0.5em"> | ||
<router-outlet></router-outlet> | ||
</mat-drawer-content> | ||
<mat-drawer-content style="overflow-x: hidden; padding: 0.5em"> | ||
<router-outlet></router-outlet> | ||
</mat-drawer-content> | ||
</mat-drawer-container> |
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 |
---|---|---|
|
@@ -5,5 +5,5 @@ | |
} | ||
|
||
.item-selected { | ||
background: rgba(0,0,0,.2); | ||
background-color: var(--mat-menu-item-hover-state-layer-color); | ||
} |
Oops, something went wrong.