mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Bump js-api version * Fix imports * Fix content-services unit tests * Fix process-services unit tests * [ci:force] Trigger CI * Fix code smells * Fix orderBy param * Fix code smells * Fix failing unit tests * Bump js-api version and align with new changes * Remove dangling coma * Fix delete return type * Add correct date format in task filters e2es * Fix typing in task filter sorting * Fix activiti content api import * Add null check for has avatar * Make User class instead of type * Fix user type in comment model * Fix sonar cloud issue * Type fixes * Update js-api version
2.3 KiB
2.3 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
Node Restore directive | v2.0.0 | Active | 2019-01-16 |
Node Restore directive
Restores deleted nodes to their original location.
Basic Usage
<adf-toolbar title="toolbar example">
<button mat-icon-button
[adf-restore]="documentList.selection"
(restore)="onRestore($event)">
<mat-icon>restore</mat-icon>
</button>
</adf-toolbar>
<adf-document-list #documentList
currentFolderId="-trash-" ...>
...
</adf-document-list>
onRestore(restoreMessage: RestoreMessageModel) {
this.notificationService
.openSnackMessageAction(
restoreMessage.message,
restoreMessage.action
)
.onAction()
.subscribe(() => this.navigateLocation(restoreMessage.path));
this.documentList.reload();
}
navigateLocation(path: PathInfo) {
const parent = path.elements[path.elements.length - 1];
this.router.navigate(['files/', parent.id]);
}
Class members
Properties
Name | Type | Default value | Description |
---|---|---|---|
selection | DeletedNodeEntry [] |
Array of deleted nodes to restore. |
Events
Name | Type | Description |
---|---|---|
restore | EventEmitter < RestoreMessageModel > |
Emitted when restoration is complete. |
Details
The directive takes a selection of DeletedNodeEntry
instances and restores them to
their original locations. If the original location doesn't exist anymore then they remain
in the trash list.
When you restore a single node, you can use the location
property to show where the node has
been restored. The property specifies the route path where the list of nodes are rendered.