mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
* [ACS-5088] Replaced method calls in templates with variables * [ACS-5088] Replaced method calls in templates with variables * [ACS-5088] Replaced method calls for *ngIf and *ngFor with variables - Batch 1 (WIP) * [ACS-5088] Replaced method calls for *ngIf and *ngFor with variables - Batch 2 (WIP) * [ACS-5088] Replaced instances of $any with cast pipe. Replaced other instances of method calls in templates with variables * [ACS-5088] Resolved test cases * [ACS-5088] Resolved test cases in aca-content library * [ACS-5088] Resolved test cases in aca-shared library * [ACS-5088] Resolved test cases in aca-folder-rules library * [ACS-5088] Reverted usage of cast pipe to $any() * [ACS-5088] Fixed incorrect revert * [ACS-5088] Resolved code review findings - shortened expressions and made onDestroy subjects use void instead of boolean * [ACS-5088] Resolved code review findings - changed parameter name in sort function * [ACS-5088] Resolved code review findings - added 'void' type to onDestroy subjects * [ACS-5088] Upgraded eslint version to 8.41.0. Added "@angular-eslint/template/no-call-expression" rule to prevent function calls in templates unless needed (reports warnings) * [ACS-5088] Resolved typo in ToggleFavoriteComponent
136 lines
4.5 KiB
TypeScript
136 lines
4.5 KiB
TypeScript
/*!
|
|
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* Alfresco Example Content Application
|
|
*
|
|
* This file is part of the Alfresco Example Content Application.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* The Alfresco Example Content Application is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* The Alfresco Example Content Application is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* from Hyland Software. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { AppStore, DownloadNodesAction, EditOfflineAction, SnackbarErrorAction, getAppSelection } from '@alfresco/aca-shared/store';
|
|
import { MinimalNodeEntity, NodeEntry, SharedLinkEntry, Node, NodesApi } from '@alfresco/js-api';
|
|
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
|
|
import { Store } from '@ngrx/store';
|
|
import { isLocked } from '@alfresco/aca-shared';
|
|
import { AlfrescoApiService } from '@alfresco/adf-core';
|
|
|
|
@Component({
|
|
selector: 'app-toggle-edit-offline',
|
|
template: `
|
|
<button mat-menu-item [attr.title]="nodeTitle | translate" (click)="onClick()">
|
|
<ng-container *ngIf="isNodeLocked">
|
|
<mat-icon>cancel</mat-icon>
|
|
<span>{{ 'APP.ACTIONS.EDIT_OFFLINE_CANCEL' | translate }}</span>
|
|
</ng-container>
|
|
|
|
<ng-container *ngIf="!isNodeLocked">
|
|
<mat-icon>edit</mat-icon>
|
|
<span>{{ 'APP.ACTIONS.EDIT_OFFLINE' | translate }}</span>
|
|
</ng-container>
|
|
</button>
|
|
`,
|
|
encapsulation: ViewEncapsulation.None,
|
|
host: { class: 'app-toggle-edit-offline' }
|
|
})
|
|
export class ToggleEditOfflineComponent implements OnInit {
|
|
private nodesApi: NodesApi;
|
|
selection: MinimalNodeEntity;
|
|
nodeTitle = '';
|
|
isNodeLocked = false;
|
|
|
|
constructor(private store: Store<AppStore>, private alfrescoApiService: AlfrescoApiService) {
|
|
this.nodesApi = new NodesApi(this.alfrescoApiService.getInstance());
|
|
}
|
|
|
|
ngOnInit() {
|
|
this.store.select(getAppSelection).subscribe(({ file }) => {
|
|
this.selection = file;
|
|
this.isNodeLocked = this.selection && isLocked(this.selection);
|
|
this.nodeTitle = this.isNodeLocked ? 'APP.ACTIONS.EDIT_OFFLINE_CANCEL' : 'APP.ACTIONS.EDIT_OFFLINE';
|
|
});
|
|
}
|
|
|
|
async onClick() {
|
|
await this.toggleLock(this.selection);
|
|
}
|
|
|
|
private async toggleLock(node: NodeEntry | SharedLinkEntry) {
|
|
const id = (node as SharedLinkEntry).entry.nodeId || node.entry.id;
|
|
|
|
if (isLocked(this.selection)) {
|
|
try {
|
|
const response = await this.unlockNode(id);
|
|
|
|
this.update(response?.entry);
|
|
this.store.dispatch(new EditOfflineAction(this.selection));
|
|
} catch {
|
|
this.onUnlockError();
|
|
}
|
|
} else {
|
|
try {
|
|
const response = await this.lockNode(id);
|
|
|
|
this.update(response?.entry);
|
|
this.store.dispatch(new DownloadNodesAction([this.selection]));
|
|
this.store.dispatch(new EditOfflineAction(this.selection));
|
|
} catch {
|
|
this.onLockError();
|
|
}
|
|
}
|
|
}
|
|
|
|
onLockError() {
|
|
this.store.dispatch(
|
|
new SnackbarErrorAction('APP.MESSAGES.ERRORS.LOCK_NODE', {
|
|
fileName: this.selection.entry.name
|
|
})
|
|
);
|
|
}
|
|
|
|
onUnlockError() {
|
|
this.store.dispatch(
|
|
new SnackbarErrorAction('APP.MESSAGES.ERRORS.UNLOCK_NODE', {
|
|
fileName: this.selection.entry.name
|
|
})
|
|
);
|
|
}
|
|
|
|
lockNode(nodeId: string) {
|
|
return this.nodesApi.lockNode(nodeId, {
|
|
type: 'ALLOW_OWNER_CHANGES',
|
|
lifetime: 'PERSISTENT'
|
|
});
|
|
}
|
|
|
|
unlockNode(nodeId: string) {
|
|
return this.nodesApi.unlockNode(nodeId);
|
|
}
|
|
|
|
private update(data: Node) {
|
|
if (data && data.properties) {
|
|
const properties = this.selection.entry.properties || {};
|
|
|
|
properties['cm:lockLifetime'] = data.properties['cm:lockLifetime'];
|
|
properties['cm:lockOwner'] = data.properties['cm:lockOwner'];
|
|
properties['cm:lockType'] = data.properties['cm:lockType'];
|
|
|
|
this.selection.entry.properties = properties;
|
|
}
|
|
}
|
|
}
|