63 lines
1.8 KiB
HTML
63 lines
1.8 KiB
HTML
<mat-card class="confirm-card mat-elevation-z">
|
|
<mat-card-header>
|
|
<mat-card-title
|
|
cdkDrag
|
|
cdkDragRootElement=".cdk-overlay-pane"
|
|
cdkDragHandle
|
|
>{{ data.title }}</mat-card-title
|
|
>
|
|
<button class="icon-button btn-dialog-close" (click)="onClickChoice(false)">
|
|
<i class="mdi mdi-window-close"></i>
|
|
</button>
|
|
</mat-card-header>
|
|
<mat-card-content>
|
|
<form name="inputForm" [formGroup]="inputForm" novalidate>
|
|
<mat-form-field
|
|
hintLabel="{{
|
|
'common.useOnlyForSpecialCharacter'
|
|
| translate: { specialCharacter: '-,_' }
|
|
}}"
|
|
>
|
|
<input
|
|
matInput
|
|
#input
|
|
maxlength="20"
|
|
placeholder="{{ 'group.name' | translate }}"
|
|
formControlName="groupName"
|
|
/>
|
|
<mat-hint align="end">{{ input.value?.length || 0 }}/20</mat-hint>
|
|
<mat-error
|
|
*ngIf="inputForm.get('groupName').hasError('groupNameBanned')"
|
|
>
|
|
{{
|
|
'group.errors.bannedWords'
|
|
| translate: { bannedWords: bannedWords.join(',') }
|
|
}}
|
|
</mat-error>
|
|
<mat-error
|
|
*ngIf="inputForm.get('groupName').hasError('groupNameSamed')"
|
|
>
|
|
{{ 'group.errors.sameNameExist' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
</form>
|
|
</mat-card-content>
|
|
<mat-card-actions class="button-farm flex-row">
|
|
<button
|
|
mat-stroked-button
|
|
(click)="onClickChoice(false)"
|
|
class="mat-primary"
|
|
>
|
|
{{ 'common.messages.no' | translate }}
|
|
</button>
|
|
<button
|
|
mat-flat-button
|
|
(click)="onClickChoice(true)"
|
|
[disabled]="inputForm.invalid"
|
|
class="mat-primary"
|
|
>
|
|
{{ 'common.messages.yes' | translate }}
|
|
</button>
|
|
</mat-card-actions>
|
|
</mat-card>
|