first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+293 -24
View File
@@ -1,28 +1,28 @@
use std::path::Path;
use string_offset::CharOffset;
use galaxy_core::features::FeatureFlag;
use galaxyui_core::assets::asset_cache::{AssetCache, AssetSource, AssetState};
use galaxyui_core::fonts::{Properties, Style, Weight};
use galaxyui_core::image_cache::ImageType;
use galaxyui_core::text_layout::{LayoutCache, StyleAndFont, TextStyle};
use galaxyui_core::{App, SingletonEntity};
use super::{
BlockLocation, LayOutArgs, layout_mermaid_diagram_block, layout_table_block, layout_text_block,
};
use crate::{
content::{
buffer::{StyledBufferRun, StyledTextBlock},
edit::{ParsedUrl, highlight_urls, resolve_asset_source_relative_to_directory},
mermaid_diagram::{mermaid_asset_source, mermaid_diagram_layout},
text::{BufferBlockStyle, CodeBlockType, TextStylesWithMetadata},
},
render::{
layout::{TextLayout, add_link_to_style_and_font, markdown_inline_to_text_and_style_runs},
model::{BlockItem, test_utils::TEST_STYLES},
},
use crate::content::buffer::{StyledBufferRun, StyledTextBlock};
use crate::content::edit::{
ParsedUrl, highlight_urls, layout_mermaid_block_for_test,
resolve_asset_source_relative_to_directory,
};
use galaxy_core::features::FeatureFlag;
use galaxyui::{
App, SingletonEntity,
assets::asset_cache::{AssetCache, AssetSource, AssetState},
fonts::{Properties, Style, Weight},
image_cache::ImageType,
text_layout::{LayoutCache, StyleAndFont, TextStyle},
use crate::content::mermaid_diagram::{mermaid_asset_source, mermaid_diagram_layout};
use crate::content::text::{BufferBlockStyle, CodeBlockType, TextStylesWithMetadata};
use crate::render::layout::{
TextLayout, add_link_to_style_and_font, markdown_inline_to_text_and_style_runs,
};
use std::path::Path;
use string_offset::CharOffset;
use crate::render::model::test_utils::TEST_STYLES;
use crate::render::model::{BlockItem, RenderLayoutOptions};
#[test]
fn test_highlight_urls() {
@@ -362,13 +362,12 @@ fn test_layout_mermaid_block_uses_loaded_svg_aspect_ratio() {
..
} => {
let intrinsic_size = svg.size();
let expected_width = (800.
let expected_width = 800.
- TEST_STYLES
.block_spacings
.from_block_style(&block_style)
.x_axis_offset()
.as_f32())
.min(intrinsic_size.width());
.as_f32();
let expected_height =
expected_width * intrinsic_size.height() / intrinsic_size.width();
assert_eq!(*content_length, CharOffset::from(content.chars().count()));
@@ -384,13 +383,283 @@ fn test_layout_mermaid_block_uses_loaded_svg_aspect_ratio() {
})
}
#[test]
fn test_unloaded_mermaid_diagram_uses_stable_full_width_placeholder_height() {
App::test((), |app| async move {
let _flag = FeatureFlag::MarkdownMermaid.override_enabled(true);
app.read(|ctx| {
let layout_cache = LayoutCache::new();
let text_layout = TextLayout::new(
&layout_cache,
ctx.font_cache().text_layout_system(),
&TEST_STYLES,
800.,
);
let contents = "graph TD\nA[Unloaded] --> B[Placeholder]\n";
let block_style = BufferBlockStyle::CodeBlock {
code_block_type: CodeBlockType::Mermaid,
};
let spacing = TEST_STYLES.block_spacings.from_block_style(&block_style);
let (_asset_source, config) =
mermaid_diagram_layout(contents, &text_layout, spacing, ctx);
let expected_width = 800. - spacing.x_axis_offset().as_f32();
let expected_height = TEST_STYLES.base_line_height().as_f32() * 10.;
assert!(
(config.width.as_f32() - expected_width).abs() < 0.5,
"expected unloaded Mermaid diagram width {} to use full available width {}",
config.width.as_f32(),
expected_width,
);
assert!(
(config.height.as_f32() - expected_height).abs() < 0.5,
"expected unloaded Mermaid diagram height {} to use stable placeholder height {}",
config.height.as_f32(),
expected_height,
);
});
})
}
fn mermaid_code_block(contents: &str) -> StyledTextBlock {
let block_style = BufferBlockStyle::CodeBlock {
code_block_type: CodeBlockType::Mermaid,
};
StyledTextBlock {
block: vec![StyledBufferRun {
run: contents.to_string(),
text_styles: TextStylesWithMetadata::default(),
block_style: block_style.clone(),
}],
style: block_style,
content_length: CharOffset::from(contents.chars().count()),
}
}
fn mermaid_layout_options() -> RenderLayoutOptions {
RenderLayoutOptions {
render_mermaid_diagrams: true,
..Default::default()
}
}
#[test]
fn test_empty_mermaid_block_lays_out_as_code_block() {
App::test((), |app| async move {
let _flag = FeatureFlag::MarkdownMermaid.override_enabled(true);
app.read(|ctx| {
let layout_cache = LayoutCache::new();
let text_layout = TextLayout::new(
&layout_cache,
ctx.font_cache().text_layout_system(),
&TEST_STYLES,
800.,
);
let block = mermaid_code_block("\n");
let (item, _has_trailing_newline) =
layout_mermaid_block_for_test(block, &text_layout, mermaid_layout_options(), ctx)
.expect("layout should succeed");
match item {
BlockItem::RunnableCodeBlock {
code_block_type,
pending_mermaid_asset,
..
} => {
assert_eq!(code_block_type, CodeBlockType::Mermaid);
assert!(
pending_mermaid_asset.is_none(),
"empty Mermaid blocks should not trigger a render"
);
}
other => panic!("expected code block, got {other:?}"),
}
});
})
}
#[test]
fn test_non_parseable_mermaid_block_lays_out_as_code_block() {
App::test((), |app| async move {
let _flag = FeatureFlag::MarkdownMermaid.override_enabled(true);
app.read(|ctx| {
let layout_cache = LayoutCache::new();
let text_layout = TextLayout::new(
&layout_cache,
ctx.font_cache().text_layout_system(),
&TEST_STYLES,
800.,
);
let block = mermaid_code_block("echo hi\n");
let (item, _) =
layout_mermaid_block_for_test(block, &text_layout, mermaid_layout_options(), ctx)
.expect("layout should succeed");
// On first sight, the asset is still loading. We defer the Mermaid-diagram
// path until the render either succeeds or fails, so the block should lay out
// as a code block with the asset source attached so the view layer can watch it.
match item {
BlockItem::RunnableCodeBlock {
code_block_type,
pending_mermaid_asset,
..
} => {
assert_eq!(code_block_type, CodeBlockType::Mermaid);
assert!(
pending_mermaid_asset.is_some(),
"a freshly-seen Mermaid source should schedule an asset load"
);
}
other => panic!("expected code block, got {other:?}"),
}
});
})
}
#[test]
fn test_invalid_mermaid_block_stays_as_code_block_after_load_fails() {
App::test((), |app| async move {
let _flag = FeatureFlag::MarkdownMermaid.override_enabled(true);
let contents = "echo hi\n";
let asset_source = mermaid_asset_source(contents);
// Drive the asset load to completion (it should fail, since `echo hi` isn't
// valid Mermaid).
let pending = app.read(|ctx| {
let asset_cache = AssetCache::as_ref(ctx);
match asset_cache.load_asset::<ImageType>(asset_source.clone()) {
AssetState::Loading { handle } => handle.when_loaded(asset_cache),
_ => None,
}
});
if let Some(future) = pending {
future.await;
}
app.read(|ctx| {
let asset_cache = AssetCache::as_ref(ctx);
assert!(
matches!(
asset_cache.load_asset::<ImageType>(asset_source.clone()),
AssetState::FailedToLoad(_)
),
"Mermaid render for invalid source should have failed"
);
let layout_cache = LayoutCache::new();
let text_layout = TextLayout::new(
&layout_cache,
ctx.font_cache().text_layout_system(),
&TEST_STYLES,
800.,
);
let block = mermaid_code_block(contents);
let (item, _) =
layout_mermaid_block_for_test(block, &text_layout, mermaid_layout_options(), ctx)
.expect("layout should succeed");
match item {
BlockItem::RunnableCodeBlock {
code_block_type,
pending_mermaid_asset,
..
} => {
assert_eq!(code_block_type, CodeBlockType::Mermaid);
// Once the asset load has failed we don't need to keep watching the
// asset handle; the state won't flip again until the source changes.
assert!(
pending_mermaid_asset.is_none(),
"no watcher is needed after a Mermaid render failure"
);
}
other => panic!("expected code block, got {other:?}"),
}
});
})
}
#[test]
fn test_valid_mermaid_block_lays_out_as_diagram_after_load() {
App::test((), |app| async move {
let _flag = FeatureFlag::MarkdownMermaid.override_enabled(true);
let contents = "graph TD\nA[Start] --> B[Finish]\n";
let asset_source = mermaid_asset_source(contents);
// Drive the async Mermaid render to completion.
let pending = app.read(|ctx| {
let asset_cache = AssetCache::as_ref(ctx);
match asset_cache.load_asset::<ImageType>(asset_source.clone()) {
AssetState::Loading { handle } => handle.when_loaded(asset_cache),
_ => None,
}
});
if let Some(future) = pending {
future.await;
}
app.read(|ctx| {
let layout_cache = LayoutCache::new();
let text_layout = TextLayout::new(
&layout_cache,
ctx.font_cache().text_layout_system(),
&TEST_STYLES,
800.,
);
let block = mermaid_code_block(contents);
let (item, _) =
layout_mermaid_block_for_test(block, &text_layout, mermaid_layout_options(), ctx)
.expect("layout should succeed");
assert!(
matches!(item, BlockItem::MermaidDiagram { .. }),
"expected MermaidDiagram block once the asset is loaded, got {item:?}"
);
});
})
}
#[test]
fn test_mermaid_block_skipped_when_render_disabled() {
App::test((), |app| async move {
let _flag = FeatureFlag::MarkdownMermaid.override_enabled(true);
app.read(|ctx| {
let layout_cache = LayoutCache::new();
let text_layout = TextLayout::new(
&layout_cache,
ctx.font_cache().text_layout_system(),
&TEST_STYLES,
800.,
);
let block = mermaid_code_block("graph TD\nA --> B\n");
let options = RenderLayoutOptions {
render_mermaid_diagrams: false,
..Default::default()
};
let (item, _) = layout_mermaid_block_for_test(block, &text_layout, options, ctx)
.expect("layout should succeed");
// When Mermaid rendering is disabled globally, the block should lay out as a
// plain code block with no asset source attached.
match item {
BlockItem::RunnableCodeBlock {
pending_mermaid_asset,
..
} => {
assert!(pending_mermaid_asset.is_none());
}
other => panic!("expected code block, got {other:?}"),
}
});
})
}
#[test]
fn test_resolve_asset_source_relative_to_directory_uses_base_directory() {
let asset_source =
resolve_asset_source_relative_to_directory("diagram.png", Some(Path::new("/tmp/session")));
match asset_source {
AssetSource::LocalFile { path } => {
AssetSource::LocalFile { path, .. } => {
assert_eq!(Path::new(&path), Path::new("/tmp/session/diagram.png"));
}
source => panic!("expected local file asset source, got {source:?}"),