/FileManager---Thumbnail-Generation

playground version

Primary LanguageJavaScriptOtherNOASSERTION

File Manager - How to generate thumbnails for images on server

This examples shows how to generate and show thumbnails for image files. This scenario is implemented with a custom provider based on the IFileProvider interface. The custom provider returns the thumbnail URLs in ClientFileSystemItem's custom fields. The thumbnails are rendered on the client side in the customizeThumbnail method, similar to the FileManager - Custom Thumbnails demo.

Follow these steps:

  1. Add the FileManager to your page and setup it on the client side.

  2. Set the fileProvider.endpointUrl option so that it points to your API controller.

  3. Implement the IFileProvider interface. You can use the DefaultFileProvider operations in most methods. The only method that should be implemented explicitly is GetDirectoryContents.

  4. The GetDirectoryContents method should return a list of IClientFileSystemItem objects with the generated thumbnails:

 IClientFileSystemItem CreateClientFileItem(IClientFileSystemItem item, string dirPath) {
            string thumbnailUrl = string.Empty;
            if(!item.IsDirectory) {
                string filePath = Path.Combine(dirPath, item.Name);
                var fileInfo = new FileInfo(filePath);
                if(ThumbnailHelper.CanGenerateThumbnail(fileInfo.Extension))
                    thumbnailUrl = ThumbnailHelper.GetThumbnailUrl(fileInfo);
            }
            var result = new ClientFileSystemItem {
                Name = item.Name,
                DateModified = item.DateModified,
                IsDirectory = item.IsDirectory,
                Size = item.Size,
                HasSubDirectories = item.HasSubDirectories
            };
            result.CustomFields.Add("thumbnailUrl", thumbnailUrl);
            return result;
        }
  1. The thumbnail generation is implemented in the FileManagerThumbnailService class. It uses the System.Drawing.Common library that supports .NET Core: System.Drawing.Common - Release Notes.
  2. To use the custom provider, create a method in your API Controller that will handle the File Manager operations and use your custom provider there. Here, the custom provider is added via Dependency Injection:
 public FileManagerApiController(IHostingEnvironment hostingEnvironment, IFileProvider provider) {
            _hostingEnvironment = hostingEnvironment;
            _provider = provider;
        }
        public IActionResult FileSystem(FileSystemCommand command, string arguments) {
            var config = new FileSystemConfiguration {
                Request = Request,
                FileSystemProvider = _provider,
                AllowCopy = true,
                AllowCreate = true,
                AllowMove = true,
                AllowRemove = true,
                AllowRename = true,
                AllowUpload = true
            };
            var processor = new FileSystemCommandProcessor(config);
            var result = processor.Execute(command, arguments);
            return Ok(result.GetClientCommandResult());
        }
  1. On the client side, use the customizeThumbnail method and get the passed thumbnailUrl from fileManagerItem.dataItem:
 customizeThumbnail: function (fileManagerItem) {
                if (fileManagerItem.dataItem)
                    return fileManagerItem.dataItem.thumbnailUrl;
            }