mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
[ACS-5645]modified changes
This commit is contained in:
committed by
Anukriti Singh
parent
2ac50ad3cc
commit
24cbdb1ae9
+8
-8
@@ -28,12 +28,12 @@
|
|||||||
<div *ngIf="editable"
|
<div *ngIf="editable"
|
||||||
class="adf-metadata-action-buttons">
|
class="adf-metadata-action-buttons">
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="cancelChanges(buttonType.GeneralInfo, $event)"
|
(click)="cancelChanges(buttonType.GeneralInfo, $event, group)"
|
||||||
data-automation-id="reset-metadata">
|
data-automation-id="reset-metadata">
|
||||||
<mat-icon>clear</mat-icon>
|
<mat-icon>clear</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="saveChanges(buttonType.GeneralInfo, $event)"
|
(click)="saveChanges(buttonType.GeneralInfo, $event, group)"
|
||||||
color="primary"
|
color="primary"
|
||||||
data-automation-id="save-general-info-metadata"
|
data-automation-id="save-general-info-metadata"
|
||||||
[disabled]="!hasMetadataChanged">
|
[disabled]="!hasMetadataChanged">
|
||||||
@@ -80,12 +80,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="editableTags" class="adf-metadata-action-buttons">
|
<div *ngIf="editableTags" class="adf-metadata-action-buttons">
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="cancelChanges(buttonType.Tags, $event)"
|
(click)="cancelChanges(buttonType.Tags, $event, group)"
|
||||||
data-automation-id="reset-tags-metadata">
|
data-automation-id="reset-tags-metadata">
|
||||||
<mat-icon>clear</mat-icon>
|
<mat-icon>clear</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="saveChanges(buttonType.Tags, $event)"
|
(click)="saveChanges(buttonType.Tags, $event, group)"
|
||||||
color="primary"
|
color="primary"
|
||||||
data-automation-id="save-tags-metadata"
|
data-automation-id="save-tags-metadata"
|
||||||
[disabled]="!hasMetadataChanged">
|
[disabled]="!hasMetadataChanged">
|
||||||
@@ -140,12 +140,12 @@
|
|||||||
</div>
|
</div>
|
||||||
<div *ngIf="editableCategories" class="adf-metadata-action-buttons">
|
<div *ngIf="editableCategories" class="adf-metadata-action-buttons">
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="cancelChanges(buttonType.Categories, $event)"
|
(click)="cancelChanges(buttonType.Categories, $event, group)"
|
||||||
data-automation-id="reset-metadata">
|
data-automation-id="reset-metadata">
|
||||||
<mat-icon>clear</mat-icon>
|
<mat-icon>clear</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="saveChanges(buttonType.Categories, $event)"
|
(click)="saveChanges(buttonType.Categories, $event, group)"
|
||||||
color="primary"
|
color="primary"
|
||||||
data-automation-id="save-categories-metadata"
|
data-automation-id="save-categories-metadata"
|
||||||
[disabled]="!hasMetadataChanged">
|
[disabled]="!hasMetadataChanged">
|
||||||
@@ -205,12 +205,12 @@
|
|||||||
</button>
|
</button>
|
||||||
<div class="adf-metadata-action-buttons" *ngIf="group.editable">
|
<div class="adf-metadata-action-buttons" *ngIf="group.editable">
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="cancelChanges(buttonType.Group, $event)"
|
(click)="cancelChanges(buttonType.Group, $event, group)"
|
||||||
data-automation-id="reset-metadata">
|
data-automation-id="reset-metadata">
|
||||||
<mat-icon>clear</mat-icon>
|
<mat-icon>clear</mat-icon>
|
||||||
</button>
|
</button>
|
||||||
<button mat-icon-button
|
<button mat-icon-button
|
||||||
(click)="saveChanges(buttonType.Group, $event)"
|
(click)="saveChanges(buttonType.Group, $event, group)"
|
||||||
color="primary"
|
color="primary"
|
||||||
data-automation-id="save-metadata"
|
data-automation-id="save-metadata"
|
||||||
[disabled]="!hasMetadataChanged">
|
[disabled]="!hasMetadataChanged">
|
||||||
|
|||||||
+4
-4
@@ -282,9 +282,9 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
|
|||||||
* Called after clicking save button. It confirms all changes done for metadata and hides both category and tag name controls.
|
* Called after clicking save button. It confirms all changes done for metadata and hides both category and tag name controls.
|
||||||
* Before clicking on that button they are not saved.
|
* Before clicking on that button they are not saved.
|
||||||
*/
|
*/
|
||||||
saveChanges(buttonType: ButtonType, event: MouseEvent) {
|
saveChanges(buttonType: ButtonType, event: MouseEvent, group?: CardViewGroup) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
this.toggleEditMode(buttonType);
|
this.toggleEditMode(buttonType, group);
|
||||||
this._saving = true;
|
this._saving = true;
|
||||||
this.tagNameControlVisible = false;
|
this.tagNameControlVisible = false;
|
||||||
this.categoryControlVisible = false;
|
this.categoryControlVisible = false;
|
||||||
@@ -347,9 +347,9 @@ export class ContentMetadataComponent implements OnChanges, OnInit, OnDestroy {
|
|||||||
this.categoryControlVisible = false;
|
this.categoryControlVisible = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
cancelChanges(buttonType: ButtonType, event: MouseEvent) {
|
cancelChanges(buttonType: ButtonType, event: MouseEvent, group?: CardViewGroup) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
this.toggleEditMode(buttonType);
|
this.toggleEditMode(buttonType, group);
|
||||||
this.revertChanges();
|
this.revertChanges();
|
||||||
this.loadProperties(this.node);
|
this.loadProperties(this.node);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user