text-document-frontend 1.1.1

Frontend integration layer and command wrappers for text-document
Documentation
// Generated by Qleany v1.5.0 from frontend_entity_commands.tera

//! Block entity commands
#![allow(unused_imports, dead_code)]

use crate::app_context::AppContext;
use anyhow::{Context, Result};
use common::direct_access::block::BlockRelationshipField;
use common::types::EntityId;
use direct_access::BlockRelationshipDto;
use direct_access::{BlockDto, CreateBlockDto, UpdateBlockDto, block_controller};

/// Create a new block entity (orphan, no parent)
pub fn create_orphan_block(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dto: &CreateBlockDto,
) -> Result<BlockDto> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::create_orphan(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dto,
    )
    .context("creating block")
}
/// Create a new block entity as child of owner
pub fn create_block(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dto: &CreateBlockDto,
    owner_id: EntityId,
    index: i32,
) -> Result<BlockDto> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::create(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dto,
        owner_id,
        index,
    )
    .context("creating block")
}
/// Create multiple block entities (orphan, no parent)
pub fn create_orphan_block_multi(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dtos: &[CreateBlockDto],
) -> Result<Vec<BlockDto>> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::create_orphan_multi(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dtos,
    )
    .context("creating block entities")
}
/// Create multiple block entities as children of owner
pub fn create_block_multi(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dtos: &[CreateBlockDto],
    owner_id: EntityId,
    index: i32,
) -> Result<Vec<BlockDto>> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::create_multi(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dtos,
        owner_id,
        index,
    )
    .context("creating block entities")
}
/// Get a block entity by ID
pub fn get_block(ctx: &AppContext, id: &EntityId) -> Result<Option<BlockDto>> {
    block_controller::get(&ctx.db_context, id).context("getting block")
}

/// Get multiple block entities by IDs
pub fn get_block_multi(ctx: &AppContext, ids: &[EntityId]) -> Result<Vec<Option<BlockDto>>> {
    block_controller::get_multi(&ctx.db_context, ids).context("getting block entities")
}

/// Get all block entities.
/// Note: returns entities in database key order (by EntityId), not insertion order
/// or any user-defined sort. For ordered collections, use relationship-based
/// retrieval (e.g. get_*_relationship for ordered_one_to_many fields).
pub fn get_all_block(ctx: &AppContext) -> Result<Vec<BlockDto>> {
    block_controller::get_all(&ctx.db_context).context("getting all block entities")
}

/// Update a block entity
pub fn update_block(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dto: &UpdateBlockDto,
) -> Result<BlockDto> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::update(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dto,
    )
    .context("updating block")
}

/// Update multiple block entities
pub fn update_block_multi(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dtos: &[UpdateBlockDto],
) -> Result<Vec<BlockDto>> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::update_multi(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dtos,
    )
    .context("updating block entities")
}

/// Update a block entity with relationships
pub fn update_block_with_relationships(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dto: &BlockDto,
) -> Result<BlockDto> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::update_with_relationships(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dto,
    )
    .context("updating block with relationships")
}

/// Update multiple block entities with relationships
pub fn update_block_with_relationships_multi(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dtos: &[BlockDto],
) -> Result<Vec<BlockDto>> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::update_with_relationships_multi(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dtos,
    )
    .context("updating block entities with relationships")
}

/// Remove a block entity by ID
pub fn remove_block(ctx: &AppContext, stack_id: Option<u64>, id: &EntityId) -> Result<()> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::remove(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        id,
    )
    .context("removing block")
}

/// Remove multiple block entities by IDs
pub fn remove_block_multi(ctx: &AppContext, stack_id: Option<u64>, ids: &[EntityId]) -> Result<()> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::remove_multi(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        ids,
    )
    .context("removing block entities")
}

/// Get a block relationship
pub fn get_block_relationship(
    ctx: &AppContext,
    id: &EntityId,
    field: &BlockRelationshipField,
) -> Result<Vec<EntityId>> {
    block_controller::get_relationship(&ctx.db_context, id, field)
        .context("getting block relationship")
}

/// Get relationship IDs for multiple block entities at once
pub fn get_block_relationship_many(
    ctx: &AppContext,
    ids: &[EntityId],
    field: &BlockRelationshipField,
) -> Result<std::collections::HashMap<EntityId, Vec<EntityId>>> {
    block_controller::get_relationship_many(&ctx.db_context, ids, field)
        .context("getting block relationships (many)")
}

/// Get relationship count for a block entity
pub fn get_block_relationship_count(
    ctx: &AppContext,
    id: &EntityId,
    field: &BlockRelationshipField,
) -> Result<usize> {
    block_controller::get_relationship_count(&ctx.db_context, id, field)
        .context("getting block relationship count")
}

/// Get relationship IDs for a block entity with pagination
pub fn get_block_relationship_in_range(
    ctx: &AppContext,
    id: &EntityId,
    field: &BlockRelationshipField,
    offset: usize,
    limit: usize,
) -> Result<Vec<EntityId>> {
    block_controller::get_relationship_in_range(&ctx.db_context, id, field, offset, limit)
        .context("getting block relationship range")
}

/// Set a block relationship
pub fn set_block_relationship(
    ctx: &AppContext,
    stack_id: Option<u64>,
    dto: &BlockRelationshipDto,
) -> Result<()> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::set_relationship(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        dto,
    )
    .context("setting block relationship")
}

/// Move (reorder) IDs within a block relationship
pub fn move_block_relationship(
    ctx: &AppContext,
    stack_id: Option<u64>,
    id: &EntityId,
    field: &BlockRelationshipField,
    ids_to_move: &[EntityId],
    new_index: i32,
) -> Result<Vec<EntityId>> {
    let mut undo_redo_manager = ctx.undo_redo_manager.lock().unwrap();
    block_controller::move_relationship(
        &ctx.db_context,
        &ctx.event_hub,
        &mut undo_redo_manager,
        stack_id,
        id,
        field,
        ids_to_move,
        new_index,
    )
    .context("moving block relationship")
}