use super::editing_helpers::{find_block_at_position, find_element_at_offset};
use crate::InsertImageDto;
use crate::InsertImageResultDto;
use anyhow::{Result, anyhow};
use common::database::CommandUnitOfWork;
use common::direct_access::block::block_repository::BlockRelationshipField;
use common::direct_access::document::document_repository::DocumentRelationshipField;
use common::direct_access::frame::frame_repository::FrameRelationshipField;
use common::direct_access::root::root_repository::RootRelationshipField;
use common::entities::{Block, Document, Frame, InlineContent, InlineElement, Root};
use common::snapshot::EntityTreeSnapshot;
use common::types::{EntityId, ROOT_ENTITY_ID};
use common::undo_redo::UndoRedoCommand;
use std::any::Any;
pub trait InsertImageUnitOfWorkFactoryTrait: Send + Sync {
fn create(&self) -> Box<dyn InsertImageUnitOfWorkTrait>;
}
#[macros::uow_action(entity = "Root", action = "Get")]
#[macros::uow_action(entity = "Root", action = "GetRelationship")]
#[macros::uow_action(entity = "Document", action = "Get")]
#[macros::uow_action(entity = "Document", action = "Update")]
#[macros::uow_action(entity = "Document", action = "GetRelationship")]
#[macros::uow_action(entity = "Document", action = "Snapshot")]
#[macros::uow_action(entity = "Document", action = "Restore")]
#[macros::uow_action(entity = "Frame", action = "Get")]
#[macros::uow_action(entity = "Frame", action = "GetRelationship")]
#[macros::uow_action(entity = "Block", action = "Get")]
#[macros::uow_action(entity = "Block", action = "GetMulti")]
#[macros::uow_action(entity = "Block", action = "Update")]
#[macros::uow_action(entity = "Block", action = "UpdateMulti")]
#[macros::uow_action(entity = "Block", action = "GetRelationship")]
#[macros::uow_action(entity = "InlineElement", action = "Get")]
#[macros::uow_action(entity = "InlineElement", action = "GetMulti")]
#[macros::uow_action(entity = "InlineElement", action = "Update")]
#[macros::uow_action(entity = "InlineElement", action = "Create")]
pub trait InsertImageUnitOfWorkTrait: CommandUnitOfWork {}
pub struct InsertImageUseCase {
uow_factory: Box<dyn InsertImageUnitOfWorkFactoryTrait>,
undo_snapshot: Option<EntityTreeSnapshot>,
last_dto: Option<InsertImageDto>,
}
fn execute_insert_image(
uow: &mut Box<dyn InsertImageUnitOfWorkTrait>,
dto: &InsertImageDto,
) -> Result<(InsertImageResultDto, EntityTreeSnapshot)> {
if dto.position != dto.anchor {
return Err(anyhow!(
"Selection replacement is not supported for image insertion"
));
}
if dto.width <= 0 || dto.height <= 0 {
return Err(anyhow!(
"Image dimensions must be positive (got {}x{})",
dto.width,
dto.height
));
}
let position = dto.position;
let root = uow
.get_root(&ROOT_ENTITY_ID)?
.ok_or_else(|| anyhow!("Root entity not found"))?;
let doc_ids = uow.get_root_relationship(&root.id, &RootRelationshipField::Document)?;
let doc_id = *doc_ids
.first()
.ok_or_else(|| anyhow!("Root has no document"))?;
let document = uow
.get_document(&doc_id)?
.ok_or_else(|| anyhow!("Document not found"))?;
let snapshot = uow.snapshot_document(&[doc_id])?;
let frame_ids = uow.get_document_relationship(&doc_id, &DocumentRelationshipField::Frames)?;
let frame_id = *frame_ids
.first()
.ok_or_else(|| anyhow!("Document has no frames"))?;
let block_ids = uow.get_frame_relationship(&frame_id, &FrameRelationshipField::Blocks)?;
let blocks_opt = uow.get_block_multi(&block_ids)?;
let mut blocks: Vec<Block> = blocks_opt.into_iter().flatten().collect();
blocks.sort_by_key(|b| b.document_position);
let (block, block_idx, offset) = find_block_at_position(&blocks, position)?;
let element_ids = uow.get_block_relationship(&block.id, &BlockRelationshipField::Elements)?;
let elements_opt = uow.get_inline_element_multi(&element_ids)?;
let elements: Vec<InlineElement> = elements_opt.into_iter().flatten().collect();
if elements.is_empty() {
return Err(anyhow!("Block has no inline elements"));
}
let (element, elem_idx, elem_offset) = find_element_at_offset(&elements, offset)?;
let now = chrono::Utc::now();
match &element.content {
InlineContent::Text(s) => {
let chars: Vec<char> = s.chars().collect();
let before_text: String = chars[..elem_offset as usize].iter().collect();
let after_text: String = chars[elem_offset as usize..].iter().collect();
let mut updated = element.clone();
updated.content = InlineContent::Text(before_text);
updated.updated_at = now;
uow.update_inline_element(&updated)?;
let image_elem = InlineElement {
id: 0,
created_at: now,
updated_at: now,
content: InlineContent::Image {
name: dto.image_name.clone(),
width: dto.width,
height: dto.height,
quality: 100,
},
..Default::default()
};
let insert_index = (elem_idx + 1) as i32;
let created_image = uow.create_inline_element(&image_elem, block.id, insert_index)?;
if !after_text.is_empty() {
let after_elem = InlineElement {
id: 0,
created_at: now,
updated_at: now,
content: InlineContent::Text(after_text),
fmt_font_family: element.fmt_font_family.clone(),
fmt_font_point_size: element.fmt_font_point_size,
fmt_font_bold: element.fmt_font_bold,
fmt_font_italic: element.fmt_font_italic,
fmt_font_underline: element.fmt_font_underline,
fmt_font_overline: element.fmt_font_overline,
fmt_font_strikeout: element.fmt_font_strikeout,
fmt_font_weight: element.fmt_font_weight,
fmt_letter_spacing: element.fmt_letter_spacing,
fmt_word_spacing: element.fmt_word_spacing,
fmt_anchor_href: element.fmt_anchor_href.clone(),
fmt_anchor_names: element.fmt_anchor_names.clone(),
fmt_is_anchor: element.fmt_is_anchor,
fmt_tooltip: element.fmt_tooltip.clone(),
fmt_underline_style: element.fmt_underline_style.clone(),
fmt_vertical_alignment: element.fmt_vertical_alignment.clone(),
};
uow.create_inline_element(&after_elem, block.id, insert_index + 1)?;
}
let mut updated_block = block.clone();
updated_block.text_length += 1;
updated_block.updated_at = now;
uow.update_block(&updated_block)?;
let mut blocks_to_update: Vec<Block> = Vec::new();
for b in &blocks[(block_idx + 1)..] {
let mut ub = b.clone();
ub.document_position += 1;
ub.updated_at = now;
blocks_to_update.push(ub);
}
if !blocks_to_update.is_empty() {
uow.update_block_multi(&blocks_to_update)?;
}
let mut updated_doc = document.clone();
updated_doc.character_count += 1;
updated_doc.updated_at = now;
uow.update_document(&updated_doc)?;
Ok((
InsertImageResultDto {
new_position: position + 1,
element_id: created_image.id as i64,
},
snapshot,
))
}
InlineContent::Empty => {
let image_elem = InlineElement {
id: 0,
created_at: now,
updated_at: now,
content: InlineContent::Image {
name: dto.image_name.clone(),
width: dto.width,
height: dto.height,
quality: 100,
},
..Default::default()
};
let insert_index = (elem_idx + 1) as i32;
let created_image = uow.create_inline_element(&image_elem, block.id, insert_index)?;
let mut updated_block = block.clone();
updated_block.text_length += 1;
updated_block.updated_at = now;
uow.update_block(&updated_block)?;
let mut blocks_to_update: Vec<Block> = Vec::new();
for b in &blocks[(block_idx + 1)..] {
let mut ub = b.clone();
ub.document_position += 1;
ub.updated_at = now;
blocks_to_update.push(ub);
}
if !blocks_to_update.is_empty() {
uow.update_block_multi(&blocks_to_update)?;
}
let mut updated_doc = document.clone();
updated_doc.character_count += 1;
updated_doc.updated_at = now;
uow.update_document(&updated_doc)?;
Ok((
InsertImageResultDto {
new_position: position + 1,
element_id: created_image.id as i64,
},
snapshot,
))
}
InlineContent::Image { .. } => {
let image_elem = InlineElement {
id: 0,
created_at: now,
updated_at: now,
content: InlineContent::Image {
name: dto.image_name.clone(),
width: dto.width,
height: dto.height,
quality: 100,
},
..Default::default()
};
let insert_index = (elem_idx + 1) as i32;
let created_image = uow.create_inline_element(&image_elem, block.id, insert_index)?;
let mut updated_block = block.clone();
updated_block.text_length += 1;
updated_block.updated_at = now;
uow.update_block(&updated_block)?;
let mut blocks_to_update: Vec<Block> = Vec::new();
for b in &blocks[(block_idx + 1)..] {
let mut ub = b.clone();
ub.document_position += 1;
ub.updated_at = now;
blocks_to_update.push(ub);
}
if !blocks_to_update.is_empty() {
uow.update_block_multi(&blocks_to_update)?;
}
let mut updated_doc = document.clone();
updated_doc.character_count += 1;
updated_doc.updated_at = now;
uow.update_document(&updated_doc)?;
Ok((
InsertImageResultDto {
new_position: position + 1,
element_id: created_image.id as i64,
},
snapshot,
))
}
}
}
impl InsertImageUseCase {
pub fn new(uow_factory: Box<dyn InsertImageUnitOfWorkFactoryTrait>) -> Self {
InsertImageUseCase {
uow_factory,
undo_snapshot: None,
last_dto: None,
}
}
pub fn execute(&mut self, dto: &InsertImageDto) -> Result<InsertImageResultDto> {
let mut uow = self.uow_factory.create();
uow.begin_transaction()?;
let (result, snapshot) = execute_insert_image(&mut uow, dto)?;
self.undo_snapshot = Some(snapshot);
self.last_dto = Some(dto.clone());
uow.commit()?;
Ok(result)
}
}
impl UndoRedoCommand for InsertImageUseCase {
fn undo(&mut self) -> Result<()> {
let snapshot = self
.undo_snapshot
.as_ref()
.ok_or_else(|| anyhow!("No snapshot available for undo"))?
.clone();
let mut uow = self.uow_factory.create();
uow.begin_transaction()?;
uow.restore_document(&snapshot)?;
uow.commit()?;
Ok(())
}
fn redo(&mut self) -> Result<()> {
let dto = self
.last_dto
.as_ref()
.ok_or_else(|| anyhow!("No DTO available for redo"))?
.clone();
let mut uow = self.uow_factory.create();
uow.begin_transaction()?;
let (_, snapshot) = execute_insert_image(&mut uow, &dto)?;
self.undo_snapshot = Some(snapshot);
uow.commit()?;
Ok(())
}
fn as_any(&self) -> &dyn Any {
self
}
}