2021-09-21 02:48:17 +02:00
|
|
|
<div class="box">
|
|
|
|
<div class="box-header">
|
|
|
|
{{ "customFields" | i18n }}
|
|
|
|
</div>
|
|
|
|
<div class="box-content">
|
|
|
|
<div class="box-content-row box-content-row-flex" *ngFor="let field of cipher.fields">
|
|
|
|
<div class="row-main">
|
|
|
|
<span class="row-label">{{ field.name }}</span>
|
|
|
|
<div *ngIf="field.type === fieldType.Text">
|
|
|
|
{{ field.value || " " }}
|
|
|
|
</div>
|
|
|
|
<div *ngIf="field.type === fieldType.Hidden">
|
|
|
|
<span *ngIf="field.showValue" class="monospaced show-whitespace">{{ field.value }}</span>
|
|
|
|
<span *ngIf="!field.showValue" class="monospaced">{{ field.maskedValue }}</span>
|
|
|
|
</div>
|
|
|
|
<div *ngIf="field.type === fieldType.Boolean">
|
2022-01-27 18:21:53 +01:00
|
|
|
<i class="bwi bwi-check-square" *ngIf="field.value === 'true'" aria-hidden="true"></i>
|
|
|
|
<i class="bwi bwi-square" *ngIf="field.value !== 'true'" aria-hidden="true"></i>
|
2021-11-03 23:02:41 +01:00
|
|
|
<span class="sr-only">{{ field.value }}</span>
|
2021-09-21 02:48:17 +02:00
|
|
|
</div>
|
|
|
|
<div *ngIf="field.type === fieldType.Linked" class="box-content-row-flex">
|
|
|
|
<div class="icon icon-small">
|
2022-01-27 18:21:53 +01:00
|
|
|
<i
|
|
|
|
class="bwi bwi-link"
|
|
|
|
aria-hidden="true"
|
|
|
|
appA11yTitle="{{ 'linkedValue' | i18n }}"
|
|
|
|
></i>
|
2021-11-03 23:02:41 +01:00
|
|
|
<span class="sr-only">{{ "linkedValue" | i18n }}</span>
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
2021-11-03 23:02:41 +01:00
|
|
|
<span>{{ cipher.linkedFieldI18nKey(field.linkedId) | i18n }}</span>
|
2021-09-21 02:48:17 +02:00
|
|
|
</div>
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
2021-09-21 02:48:17 +02:00
|
|
|
<div class="action-buttons">
|
2021-12-20 15:47:17 +01:00
|
|
|
<a
|
2021-09-21 02:48:17 +02:00
|
|
|
class="row-btn"
|
2021-12-20 15:47:17 +01:00
|
|
|
href="#"
|
2021-09-21 02:48:17 +02:00
|
|
|
appStopClick
|
|
|
|
appA11yTitle="{{ 'toggleVisibility' | i18n }}"
|
2021-11-03 23:02:41 +01:00
|
|
|
*ngIf="field.type === fieldType.Hidden && cipher.viewPassword"
|
2021-09-21 02:48:17 +02:00
|
|
|
(click)="toggleFieldValue(field)"
|
|
|
|
role="button"
|
2021-12-20 15:47:17 +01:00
|
|
|
>
|
|
|
|
<i
|
2022-01-27 18:21:53 +01:00
|
|
|
class="bwi bwi-lg"
|
2021-09-21 02:48:17 +02:00
|
|
|
aria-hidden="true"
|
2022-01-27 18:21:53 +01:00
|
|
|
[ngClass]="{ 'bwi-eye': !field.showValue, 'bwi-eye-slash': field.showValue }"
|
2021-12-20 15:47:17 +01:00
|
|
|
></i>
|
|
|
|
</a>
|
|
|
|
<a
|
2021-09-21 02:48:17 +02:00
|
|
|
class="row-btn"
|
2021-12-20 15:47:17 +01:00
|
|
|
href="#"
|
2021-09-21 02:48:17 +02:00
|
|
|
appStopClick
|
|
|
|
appA11yTitle="{{ 'copyValue' | i18n }}"
|
2021-12-20 15:47:17 +01:00
|
|
|
*ngIf="
|
2021-09-21 02:48:17 +02:00
|
|
|
field.value &&
|
2021-11-03 23:02:41 +01:00
|
|
|
field.type !== fieldType.Boolean &&
|
|
|
|
field.type !== fieldType.Linked &&
|
|
|
|
!(field.type === fieldType.Hidden && !cipher.viewPassword)
|
2021-12-20 15:47:17 +01:00
|
|
|
"
|
2021-09-21 02:48:17 +02:00
|
|
|
(click)="
|
|
|
|
copy(field.value, 'value', field.type === fieldType.Hidden ? 'H_Field' : 'Field')
|
2021-12-20 15:47:17 +01:00
|
|
|
"
|
2021-09-21 02:48:17 +02:00
|
|
|
role="button"
|
2021-12-20 15:47:17 +01:00
|
|
|
>
|
2022-01-27 18:21:53 +01:00
|
|
|
<i class="bwi bwi-lg bwi-clone" aria-hidden="true"></i>
|
2021-12-20 15:47:17 +01:00
|
|
|
</a>
|
|
|
|
</div>
|
2021-09-21 02:48:17 +02:00
|
|
|
</div>
|
2021-12-20 15:47:17 +01:00
|
|
|
</div>
|
2021-09-21 02:48:17 +02:00
|
|
|
</div>
|