From 9f3098e80c6b6c87e9bfbfe36239a39e5cafb29f Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Wed, 26 Oct 2022 21:02:31 -0400 Subject: init: add some stories and personas and begin layout out domain --- dichroism/src/repo/entities/mod.rs | 9 ------- dichroism/src/repo/entities/photo_set.rs | 22 --------------- dichroism/src/repo/entities/photo_set_form.rs | 24 ----------------- dichroism/src/repo/entities/product.rs | 39 --------------------------- dichroism/src/repo/entities/product_form.rs | 30 --------------------- 5 files changed, 124 deletions(-) delete mode 100644 dichroism/src/repo/entities/mod.rs delete mode 100644 dichroism/src/repo/entities/photo_set.rs delete mode 100644 dichroism/src/repo/entities/photo_set_form.rs delete mode 100644 dichroism/src/repo/entities/product.rs delete mode 100644 dichroism/src/repo/entities/product_form.rs (limited to 'dichroism/src/repo/entities') diff --git a/dichroism/src/repo/entities/mod.rs b/dichroism/src/repo/entities/mod.rs deleted file mode 100644 index 288f1e3..0000000 --- a/dichroism/src/repo/entities/mod.rs +++ /dev/null @@ -1,9 +0,0 @@ -mod photo_set; -mod photo_set_form; -mod product; -mod product_form; - -pub use photo_set::*; -pub use photo_set_form::*; -pub use product::*; -pub use product_form::*; diff --git a/dichroism/src/repo/entities/photo_set.rs b/dichroism/src/repo/entities/photo_set.rs deleted file mode 100644 index 6e48e12..0000000 --- a/dichroism/src/repo/entities/photo_set.rs +++ /dev/null @@ -1,22 +0,0 @@ -use crate::models; - -#[derive(Debug, Clone, Queryable)] -pub struct PhotoSet { - pub id: i32, - pub original: String, - pub fullsize: String, - pub base: String, - pub thumbnail: String, -} - -impl Into for PhotoSet { - fn into(self) -> models::PhotoSet { - models::PhotoSet { - id: Some(self.id), - original: models::Photo::new(self.original), - fullsize: models::Photo::new(self.fullsize), - base: models::Photo::new(self.base), - thumbnail: models::Photo::new(self.thumbnail), - } - } -} diff --git a/dichroism/src/repo/entities/photo_set_form.rs b/dichroism/src/repo/entities/photo_set_form.rs deleted file mode 100644 index 611c8f0..0000000 --- a/dichroism/src/repo/entities/photo_set_form.rs +++ /dev/null @@ -1,24 +0,0 @@ -use crate::models::PhotoSet; -use crate::schema::photo_sets; - -#[derive(Insertable, AsChangeset)] -#[table_name = "photo_sets"] -pub struct PhotoSetForm { - pub id: i32, - pub original: String, - pub fullsize: String, - pub base: String, - pub thumbnail: String, -} - -impl From for PhotoSetForm { - fn from(p: PhotoSet) -> Self { - Self { - id: p.id.unwrap_or(-1), - original: p.original.id, - fullsize: p.fullsize.id, - base: p.base.id, - thumbnail: p.thumbnail.id, - } - } -} diff --git a/dichroism/src/repo/entities/product.rs b/dichroism/src/repo/entities/product.rs deleted file mode 100644 index c89495a..0000000 --- a/dichroism/src/repo/entities/product.rs +++ /dev/null @@ -1,39 +0,0 @@ -use crate::models; -use crate::schema::products; - -#[derive(Debug, Clone, Identifiable, Queryable)] -pub struct Product { - pub id: i32, - pub name: String, - pub description: String, - pub quantity: i32, - pub cents: i32, - pub featured: i32, - pub category: String, - pub photo_set_id: i32, - pub original: String, - pub fullsize: String, - pub base: String, - pub thumbnail: String, -} - -impl Into for Product { - fn into(self) -> models::Product { - models::Product { - id: Some(self.id), - name: self.name, - description: self.description, - quantity: self.quantity, - cents: self.cents, - featured: self.featured != 0, - category: self.category, - photo_set: models::PhotoSet { - id: Some(self.photo_set_id), - original: models::Photo::new(self.original), - fullsize: models::Photo::new(self.fullsize), - base: models::Photo::new(self.base), - thumbnail: models::Photo::new(self.thumbnail), - }, - } - } -} diff --git a/dichroism/src/repo/entities/product_form.rs b/dichroism/src/repo/entities/product_form.rs deleted file mode 100644 index b3447eb..0000000 --- a/dichroism/src/repo/entities/product_form.rs +++ /dev/null @@ -1,30 +0,0 @@ -use crate::models::*; -use crate::schema::products; - -#[derive(Debug, Insertable, AsChangeset)] -#[table_name = "products"] -pub struct ProductForm { - pub id: i32, - pub name: String, - pub description: String, - pub quantity: i32, - pub cents: i32, - pub featured: i32, - pub photo_set: i32, - pub category: String, -} - -impl From for ProductForm { - fn from(p: Product) -> Self { - Self { - id: p.id.unwrap_or(-1), - name: p.name, - description: p.description, - quantity: p.quantity, - cents: p.cents, - featured: p.featured as i32, - photo_set: p.photo_set.id.unwrap_or(-1), - category: p.category, - } - } -} -- cgit v1.2.3