-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/dsi-hug/ngx-components
- Loading branch information
Showing
14 changed files
with
166 additions
and
32 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
44 changes: 44 additions & 0 deletions
44
projects/demo-app/src/app/layout/layout-demo.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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<ngx-layout toolbarColor="primary" [withBackButton]="withBackButton" backButtonLabel="Back button label" [withCloseButton]="withCloseButton" (backButtonClicked)="log('Back button clicked', $event)" (closeButtonClicked)="log('Close button clicked', $event)" (sideFilterOpened)="log('Side filter opened')" (sideFilterClosed)="log('Side filter closed')"> | ||
<ng-template #layoutToolbar> | ||
<span toolbar-title>Accès dossier patient</span> | ||
<ngx-search-container> | ||
<input type="text" [(ngModel)]="search" (ngModelChange)="log('Search changed', $event)" placeholder="Search" autocomplete="off" ngx-search-input /> | ||
</ngx-search-container> | ||
|
||
<button type="button" mat-icon-button matTooltip="Help" (click)="log('Help button clicked', $event)"> | ||
<mat-icon>help_outline</mat-icon> | ||
</button> | ||
</ng-template> | ||
|
||
<!-- Primary action --> | ||
<ng-template #layoutPrimaryAction> | ||
<button type="button" mat-fab matTooltip="Add" (click)="log('Add button clicked', $event)"> | ||
<mat-icon>add</mat-icon> | ||
</button> | ||
</ng-template> | ||
|
||
<!-- Actions panel --> | ||
<ng-template #layoutActions> | ||
<button type="button" mat-icon-button matTooltip="Refresh" (click)="log('Refresh button clicked', $event)"> | ||
<mat-icon>refresh</mat-icon> | ||
</button> | ||
|
||
<button type="button" mat-icon-button matTooltip="Favorite" (click)="log('Favorite button clicked', $event)"> | ||
<mat-icon>favorite</mat-icon> | ||
</button> | ||
</ng-template> | ||
|
||
<!-- Right panel --> | ||
<ng-template #layoutRight> | ||
<div class="layout-right-container">Layout right</div> | ||
</ng-template> | ||
|
||
<!-- Info boxes panel --> | ||
<ng-template #layoutInfoBoxes> | ||
<span class="info-box">Info box</span> | ||
<span class="info-box primary">Info box primary</span> | ||
<span class="info-box accent">Info box accent</span> | ||
</ng-template> | ||
|
||
<div class="content-container">Layout content</div> | ||
</ngx-layout> |
18 changes: 18 additions & 0 deletions
18
projects/demo-app/src/app/layout/layout-demo.component.scss
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,18 @@ | ||
@use '@angular/material' as mat; | ||
|
||
:host { | ||
ngx-layout { | ||
.content-container { | ||
display: flex; | ||
flex: 1 1 auto; | ||
padding: 1rem; | ||
background: mat.get-color-from-palette(mat.$green-palette, 100); | ||
} | ||
|
||
.layout-right-container { | ||
display: flex; | ||
flex: 1 1 auto; | ||
background: mat.get-color-from-palette(mat.$red-palette, 100); | ||
} | ||
} | ||
} |
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,46 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { ChangeDetectionStrategy, Component } from '@angular/core'; | ||
import { FormsModule } from '@angular/forms'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
import { MatIconModule } from '@angular/material/icon'; | ||
import { MatTooltipModule } from '@angular/material/tooltip'; | ||
import { NgxLayoutComponent } from '@hug/ngx-layout'; | ||
import { NgxSearchContainerComponent, NgxSearchInputDirective } from '@hug/ngx-search-container'; | ||
import { NgxStatusService } from '@hug/ngx-status'; | ||
|
||
@Component({ | ||
selector: 'app-layout-demo', | ||
templateUrl: './layout-demo.component.html', | ||
styleUrls: ['./layout-demo.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
standalone: true, | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
MatButtonModule, | ||
MatIconModule, | ||
MatTooltipModule, | ||
NgxSearchContainerComponent, | ||
NgxSearchInputDirective, | ||
NgxLayoutComponent | ||
] | ||
}) | ||
export class LayoutDemoComponent { | ||
|
||
protected withBackButton = true; | ||
protected withCloseButton = true; | ||
protected search: string | undefined; | ||
|
||
public constructor( | ||
private ngxStatusService: NgxStatusService | ||
) { | ||
} | ||
|
||
protected log(msg: string, event?: Event): void { | ||
console.log(msg, event); | ||
this.ngxStatusService.showStatus({ | ||
title: msg, | ||
type: 'info' | ||
}); | ||
} | ||
} |
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: 2 additions & 2 deletions
4
projects/search-container/src/search-container.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