Activities of "sabri"

Yes, it's correct I want to call file manager outside the module, you found in attachment my description. if possible with abp framework or now to call sub folder content outside the module

i update the file-manager-component to test if i called the file-manager from main menu or from detail-component :

ngOnInit(): void {
    if (!this.Path) {
      this.updateStream.patchStore({
        currentDirectory: null,
      });
    } else { 
      const folder={
          "name": "Administrative Works",
          "isDirectory": true,
          "size": 0,
          "iconInfo": null,
          "concurrencyStamp": "2e984bfc1f7d40df87bf0c2bd8f45fc8",
          "displayName": null,
          "lastModificationTime": null,
          "lastModifierId": null,
          "creationTime": "2023-08-05T14:59:30.764599",
          "creatorId": null,
          "id": "4fc5e346-d18a-410c-8770-fb212eb45bce",
          "extraProperties": {}
      };
      this.navigator.goToFolder(folder); 
    }
}

when i call file-manager from detail-component i got error

Hello, my example was : when I go to my component Todo, the file manager should update and go to folder Todo. How I can call the service correctly because i called gotofolder (navigation service) & patchstore(UpdateStreamService) but not correctly work there is other service not updated: --subdirectrory---

  • DirectoryTreeService.updateDirectories
  • UpdateStreamService.patchStore
  • next
  • updateCurrentFolderPath
  • goToFolder
  • openFolder --directory
  • UpdateStreamService.patchStore
  • next
  • updateCurrentFolderPath
  • goToFolder
  • openFolder

Showing 1 to 3 of 3 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11