thingsboard/ui-ngx/src/app/modules/home/components/vc/repository-settings.component.html

121 lines
6.8 KiB
HTML
Raw Normal View History

2022-05-20 15:02:30 +03:00
<!--
2024-01-09 10:46:16 +02:00
Copyright © 2016-2024 The Thingsboard Authors
2022-05-20 15:02:30 +03:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
2023-03-10 15:56:22 +02:00
<div style="height: min-content; max-height: 80vh;">
<mat-card appearance="outlined" class="repository-settings"
[class.settings-card]="!detailsMode"
[style]="popoverComponent ? {boxShadow: 'none', maxWidth: '100%', minWidth: '100%', width: '800px'} : {}">
2023-02-21 19:18:04 +02:00
<mat-card-header>
<mat-card-title>
2023-02-17 19:24:01 +02:00
<span class="mat-headline-5" translate>admin.repository-settings</span>
2023-02-21 19:18:04 +02:00
</mat-card-title>
<span class="flex-1"></span>
2023-02-21 19:18:04 +02:00
<div tb-help="repositorySettings"></div>
</mat-card-header>
2024-01-23 11:20:36 +02:00
<mat-progress-bar color="warn" mode="indeterminate" *ngIf="!hideLoadingBar && isLoading$ | async">
2022-05-20 15:02:30 +03:00
</mat-progress-bar>
<div style="height: 4px;" *ngIf="hideLoadingBar || (isLoading$ | async) === false"></div>
2022-05-20 15:02:30 +03:00
<mat-card-content style="padding-top: 16px;">
<form [formGroup]="repositorySettingsForm" #formDirective="ngForm" (ngSubmit)="save()">
2022-05-20 15:02:30 +03:00
<fieldset [disabled]="isLoading$ | async">
<mat-form-field class="mat-block">
<mat-label translate>admin.repository-url</mat-label>
<input matInput required formControlName="repositoryUri">
<mat-error translate *ngIf="repositorySettingsForm.get('repositoryUri').hasError('required')">
2022-05-20 15:02:30 +03:00
admin.repository-url-required
</mat-error>
</mat-form-field>
<mat-form-field class="mat-block">
<mat-label translate>admin.default-branch</mat-label>
<input matInput formControlName="defaultBranch">
</mat-form-field>
<div class="flex flex-col">
2023-03-07 16:03:14 +02:00
<mat-checkbox formControlName="readOnly">
{{ 'admin.repository-read-only' | translate }}
</mat-checkbox>
<mat-checkbox formControlName="showMergeCommits">
{{ 'admin.show-merge-commits' | translate }}
</mat-checkbox>
</div>
2022-05-20 15:02:30 +03:00
<fieldset [disabled]="isLoading$ | async" class="fields-group">
<legend class="group-title" translate>admin.authentication-settings</legend>
<mat-form-field class="mat-block flex-1">
2022-05-20 15:02:30 +03:00
<mat-label translate>admin.auth-method</mat-label>
<mat-select required formControlName="authMethod">
<mat-option *ngFor="let method of repositoryAuthMethods" [value]="method">
{{repositoryAuthMethodTranslations.get(method) | translate}}
2022-05-20 15:02:30 +03:00
</mat-option>
</mat-select>
</mat-form-field>
<section [class.!hidden]="repositorySettingsForm.get('authMethod').value !== repositoryAuthMethod.USERNAME_PASSWORD" class="flex flex-col">
<mat-form-field class="mat-block flex-1">
2022-05-20 15:02:30 +03:00
<mat-label translate>common.username</mat-label>
<input matInput formControlName="username" placeholder="{{ 'common.enter-username' | translate }}"
autocomplete="new-username"/>
</mat-form-field>
<mat-checkbox *ngIf="showChangePassword" (change)="changePasswordChanged()"
[(ngModel)]="changePassword" [ngModelOptions]="{ standalone: true }">
2022-05-20 15:02:30 +03:00
{{ 'admin.change-password-access-token' | translate }}
</mat-checkbox>
<mat-form-field class="mat-block" *ngIf="changePassword || !showChangePassword">
<mat-label translate>admin.password-access-token</mat-label>
<input matInput formControlName="password" type="password"
placeholder="{{ 'common.enter-password' | translate }}" autocomplete="new-password"/>
<tb-toggle-password matSuffix></tb-toggle-password>
<mat-hint [innerHTML] = "'admin.auth-method-username-password-hint' | translate"></mat-hint>
2022-05-20 15:02:30 +03:00
</mat-form-field>
</section>
<section [class.!hidden]="repositorySettingsForm.get('authMethod').value !== repositoryAuthMethod.PRIVATE_KEY" class="flex flex-col">
<tb-file-input [existingFileName]="repositorySettingsForm.get('privateKeyFileName').value"
2022-05-20 15:02:30 +03:00
required
formControlName="privateKey"
dropLabel="{{ 'admin.drop-private-key-file-or' | translate }}"
[label]="'admin.private-key' | translate"
(fileNameChanged)="repositorySettingsForm.get('privateKeyFileName').patchValue($event)">
2022-05-20 15:02:30 +03:00
</tb-file-input>
<mat-checkbox *ngIf="showChangePrivateKeyPassword" (change)="changePrivateKeyPasswordChanged()"
[(ngModel)]="changePrivateKeyPassword" [ngModelOptions]="{ standalone: true }">
2022-05-20 15:02:30 +03:00
{{ 'admin.change-passphrase' | translate }}
</mat-checkbox>
<mat-form-field class="mat-block" *ngIf="changePrivateKeyPassword || !showChangePrivateKeyPassword">
<mat-label translate>admin.passphrase</mat-label>
<input matInput formControlName="privateKeyPassword" type="password"
placeholder="{{ 'admin.enter-passphrase' | translate }}" autocomplete="new-password"/>
<tb-toggle-password matSuffix></tb-toggle-password>
</mat-form-field>
</section>
</fieldset>
<div class="flex flex-row items-center justify-end gap-4 xs:flex-col xs:items-stretch xs:justify-end">
<button mat-raised-button color="warn" type="button" [class.!hidden]="!settings"
2022-05-20 15:02:30 +03:00
[disabled]="(isLoading$ | async)" (click)="delete(formDirective)">
{{'action.delete' | translate}}
</button>
<span class="flex-1"></span>
2022-05-20 15:02:30 +03:00
<button mat-raised-button type="button"
[disabled]="(isLoading$ | async) || repositorySettingsForm.invalid" (click)="checkAccess()">
2022-05-20 15:02:30 +03:00
{{'admin.check-access' | translate}}
</button>
<button mat-raised-button color="primary" [disabled]="(isLoading$ | async) || repositorySettingsForm.invalid || !repositorySettingsForm.dirty"
2022-05-20 15:02:30 +03:00
type="submit">{{'action.save' | translate}}
</button>
</div>
</fieldset>
</form>
</mat-card-content>
</mat-card>
</div>