mdbook-trunk 1.0.0

mdBook plugin which bundles packages using Trunk and includes them as iframes.
Documentation
use std::{collections::HashSet, env};

use anyhow::Result;
use cargo::{GlobalContext, core::Workspace, util::important_paths::find_root_manifest_for_wd};
use mdbook_renderer::{RenderContext, Renderer, book::BookItem};

use crate::{config::BuildConfig, parser::iframe::parse_iframes, trunk::build};

pub struct TrunkRenderer;

impl TrunkRenderer {
    pub fn new() -> Self {
        Self
    }
}

impl Default for TrunkRenderer {
    fn default() -> Self {
        TrunkRenderer::new()
    }
}

impl Renderer for TrunkRenderer {
    fn name(&self) -> &str {
        "trunk"
    }

    fn render(&self, ctx: &RenderContext) -> Result<()> {
        let gctx = GlobalContext::default()?;
        let workspace = Workspace::new(&find_root_manifest_for_wd(&env::current_dir()?)?, &gctx)?;

        let builds = process_items(&ctx.book.items)?;

        // let mut handles = vec![];
        for build_config in builds {
            let package_root = build_config.package_root(&workspace)?;
            let dest_dir = ctx.destination.join(build_config.dest_name());

            // handles.push(thread::spawn(move || {
            //     build(build_config, &package_root, &dest_dir)
            // }));

            build(build_config, &package_root, &dest_dir)?;
        }

        // for handle in handles {
        //     handle.join().map_err(|err| anyhow!("{:?}", err))??;
        // }

        Ok(())
    }
}

fn process_items(items: &Vec<BookItem>) -> Result<HashSet<BuildConfig>> {
    let mut builds = HashSet::new();

    for section in items {
        if let BookItem::Chapter(chapter) = section {
            let blocks = parse_iframes(chapter)?;
            for (_, config) in blocks {
                builds.insert(config.build_config());
            }

            builds.extend(process_items(&chapter.sub_items)?);
        }
    }

    Ok(builds)
}