mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
#46 refresh documentList after file uploaded
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
<alfresco-upload-drag-area [showUploadDialog]="true" uploaddirectory="{{relativePath}}" >
|
||||
<alfresco-document-list (folderClick)="refreshDirectyory($event)">
|
||||
<alfresco-upload-drag-area [showUploadDialog]="true" uploaddirectory="{{relativePath}}"
|
||||
(onSuccess)="refreshDocumentList($event)">
|
||||
<alfresco-document-list (folderClick)="refreshDirectyory($event)" currentFolderPath="{{absolutePath}}">
|
||||
<content-columns>
|
||||
<content-column source="$thumbnail"></content-column>
|
||||
<content-column
|
||||
|
@@ -39,7 +39,7 @@ export class FilesComponent {
|
||||
breadcrumb: boolean = false;
|
||||
navigation: boolean = true;
|
||||
events: any[] = [];
|
||||
absolutePath: string = '';
|
||||
absolutePath: string = '/Sites/swsdp/documentLibrary';
|
||||
relativePath: string = '';
|
||||
|
||||
constructor(documentActions: DocumentActionsService) {
|
||||
@@ -63,11 +63,15 @@ export class FilesComponent {
|
||||
this.relativePath = this.getRelativeDirectory(this.absolutePath);
|
||||
}
|
||||
|
||||
refreshDocumentList(event: Object) {
|
||||
this.absolutePath += '/';
|
||||
}
|
||||
|
||||
getRelativeDirectory(currentFolderPath: string): string {
|
||||
if(currentFolderPath.indexOf('swsdp/documentLibrary/') !=-1) {
|
||||
return currentFolderPath.replace('swsdp/documentLibrary/', '')
|
||||
if(currentFolderPath.indexOf('/Sites/swsdp/documentLibrary/') !=-1) {
|
||||
return currentFolderPath.replace('/Sites/swsdp/documentLibrary/', '')
|
||||
} else {
|
||||
return currentFolderPath.replace('swsdp/documentLibrary', '')
|
||||
return currentFolderPath.replace('/Sites/swsdp/documentLibrary', '')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user