-
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.
- Loading branch information
rfrt
committed
Aug 14, 2024
1 parent
a564e46
commit 173d398
Showing
11 changed files
with
676 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
ngx-message-box { | ||
font-family: 'Roboto'; | ||
display: block; | ||
overflow: hidden; | ||
border-radius: 3px; | ||
|
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 |
---|---|---|
|
@@ -18,6 +18,7 @@ ngx-status { | |
} | ||
|
||
> span { | ||
width: calc(100% - 24px); | ||
b { | ||
display: block; | ||
font-size: 12px; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
55 changes: 55 additions & 0 deletions
55
projects/storybook/src/stories/status/layout-wrapper.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,55 @@ | ||
<div class="layout-wrapper"> | ||
<ngx-layout [toolbarColor]="toolbarColor" [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 filters-chip-list> | ||
<mat-chip-listbox class="mat-mdc-chip-set-stacked" aria-label="Color selection"> | ||
<mat-chip-option (click)="log('Chip 1 clicked', $event)">1</mat-chip-option> | ||
<mat-chip-option (click)="log('Chip 2 clicked', $event)">2</mat-chip-option> | ||
<mat-chip-option (click)="log('Chip 3 clicked', $event)">3</mat-chip-option> | ||
</mat-chip-listbox> | ||
</div> | ||
</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> | ||
</div> |
4 changes: 4 additions & 0 deletions
4
projects/storybook/src/stories/status/layout-wrapper.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,4 @@ | ||
.layout-wrapper { | ||
height: 300px; | ||
position: relative; | ||
} |
51 changes: 51 additions & 0 deletions
51
projects/storybook/src/stories/status/layout-wrapper.component.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,51 @@ | ||
import { CommonModule } from '@angular/common'; | ||
import { ChangeDetectionStrategy, Component, inject, Input, ViewEncapsulation } from '@angular/core'; | ||
import { FormsModule } from '@angular/forms'; | ||
import { MatButtonModule } from '@angular/material/button'; | ||
import { MatChipsModule } from '@angular/material/chips'; | ||
import { MatIconModule } from '@angular/material/icon'; | ||
import { MatTooltipModule } from '@angular/material/tooltip'; | ||
|
||
import { NgxLayoutComponent } from '../../../../layout/src/layout.component'; | ||
import { NgxSearchContainerComponent, NgxSearchInputDirective } from '../../../../search-container/src/search-container.component'; | ||
import { NgxStatusService } from '../../../../status/src/status.service'; | ||
|
||
@Component({ | ||
selector: 'storybook-layout-wrapper', | ||
templateUrl: './layout-wrapper.component.html', | ||
styleUrls: ['./layout-wrapper.component.scss'], | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
encapsulation: ViewEncapsulation.None, | ||
standalone: true, | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
MatButtonModule, | ||
MatIconModule, | ||
MatTooltipModule, | ||
MatChipsModule, | ||
NgxSearchContainerComponent, | ||
NgxSearchInputDirective, | ||
NgxLayoutComponent | ||
] | ||
}) | ||
export class StorybookLayoutWrapperComponent { | ||
|
||
@Input() | ||
public toolbarColor = 'primary'; | ||
|
||
protected withBackButton = true; | ||
protected withCloseButton = true; | ||
protected search: string | undefined; | ||
|
||
private ngxStatusService = inject(NgxStatusService); | ||
|
||
protected log(msg: string, event?: Event): void { | ||
console.log(msg, event); | ||
this.ngxStatusService.showStatus({ | ||
title: msg, | ||
type: 'info', | ||
duration: 1000 | ||
}); | ||
} | ||
} |
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,29 @@ | ||
@use '../../../../core/src/styles/themeVariables' as themeVariables; | ||
@use '../../../../core/src/styles/theme'; | ||
@use '../../../../status/src/status-theme' as statusTheme; | ||
@use '../../../../message-box/src/message-box-theme' as messageBoxTheme; | ||
|
||
@include statusTheme.theme(themeVariables.$theme); | ||
@include messageBoxTheme.theme(themeVariables.$theme); | ||
|
||
section { | ||
padding: 5rem; | ||
font-family: 'Roboto'; | ||
background-color: white; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
|
||
ngx-snackbar { | ||
position: relative !important; | ||
} | ||
.matButtonContainer { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
} | ||
.maCustomClassCss { | ||
background-color: burlywood !important; | ||
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif !important; | ||
} |
Oops, something went wrong.