]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/file_strategies/file.rs
Add logic to read and assign files / layout
[rbdr/page] / src / file_handler / file_strategies / file.rs
index 530bbd6ebd746cecbd6f1f355cbc3f4fe62d31dd..b1de596f110e70060b89517f09a8969714b1d341 100644 (file)
@@ -2,7 +2,7 @@ pub struct Strategy {}
 
 use std::path::PathBuf;
 
-use crate::file_handler::{FileType, FileHandlerStrategy};
+use crate::file_handler::{File, FileType, FileHandlerStrategy};
 
 impl FileHandlerStrategy for Strategy {
     fn is(&self, path: &PathBuf) -> bool {
@@ -13,11 +13,14 @@ impl FileHandlerStrategy for Strategy {
         FileType::File
     }
 
-    fn can_handle(&self, path: &PathBuf) -> bool {
-        !path.is_dir()
+    fn can_handle(&self, file_type: &FileType) -> bool {
+        match file_type {
+            FileType::File => true,
+            _ => false,
+        }
     }
 
-    fn handle(&self, path: &PathBuf) {
-        println!("Should copy {}", path.display())
+    fn handle(&self, file: &File) {
+        println!("Should copy {}", file.path.display())
     }
 }