]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/file_strategies/layout.rs
Add basic strategies
[rbdr/page] / src / file_handler / file_strategies / layout.rs
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..cf1bb9ff9a7f86b3511093cd1ec43cba1f55ba51 100644 (file)
@@ -0,0 +1,24 @@
+pub struct Strategy {}
+
+use std::path::PathBuf;
+
+use crate::file_handler::{FileType, FileHandlerStrategy};
+
+impl FileHandlerStrategy for Strategy {
+    fn is(&self, path: &PathBuf) -> bool {
+        return !path.is_dir() && path.ends_with("_layout.html");
+    }
+
+    fn identify(&self) -> FileType {
+        FileType::Layout
+    }
+
+    fn can_handle(&self, path: &PathBuf) -> bool {
+        self.is(path)
+    }
+
+    fn handle(&self, path: &PathBuf) {
+        println!("Should convert {}", path.display())
+    }
+}
+