From: Anton Khorev Date: Sun, 24 Dec 2023 16:46:43 +0000 (+0300) Subject: Use instead of X-Git-Tag: live~1118^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/cda8ca0607c66db191c0dfa07c275161fb29d74e?hp=b13ac4ec21b83b51ebd5ccacc70f518bed03d9b2 Use instead of --- diff --git a/app/helpers/svg_helper.rb b/app/helpers/svg_helper.rb index 21b7c91ad..a40fa7086 100644 --- a/app/helpers/svg_helper.rb +++ b/app/helpers/svg_helper.rb @@ -14,15 +14,17 @@ module SvgHelper svg_attrs = options.slice("width", "height", "opacity", :class) tag.svg(**svg_attrs) do + horizontal = "H#{options['width']}" concat tag.rect(**rect_attrs, **stroke_attrs(options, "border")) if options["fill"] || options["border"] - concat tag.line(:x2 => "100%", :y1 => "50%", :y2 => "50%", **stroke_attrs(options, "line")) if options["line"] + if options["line"] + y_middle = format("%g", 0.5 * options["height"]) + concat tag.path(:d => "M0,#{y_middle} #{horizontal}", **stroke_attrs(options, "line")) + end if options["casing"] casing_width = options["casing-width"] || 1 - y_top = 0.5 * casing_width - y_bottom = options["height"] - (0.5 * casing_width) - concat tag.g(tag.line(:x2 => "100%", :y1 => y_top, :y2 => y_top) + - tag.line(:x2 => "100%", :y1 => y_bottom, :y2 => y_bottom), - **stroke_attrs(options, "casing")) + y_top = format("%g", 0.5 * casing_width) + y_bottom = format("%g", options["height"] - (0.5 * casing_width)) + concat tag.path(:d => "M0,#{y_top} #{horizontal} M0,#{y_bottom} #{horizontal}", **stroke_attrs(options, "casing")) end end end diff --git a/test/helpers/svg_helper_test.rb b/test/helpers/svg_helper_test.rb index 14c08539c..25a9e4568 100644 --- a/test/helpers/svg_helper_test.rb +++ b/test/helpers/svg_helper_test.rb @@ -52,20 +52,30 @@ class SvgHelperTest < ActionView::TestCase end def test_key_line - svg = key_svg_tag("width" => 80, "height" => 20, "line" => "blue") + svg = key_svg_tag("width" => 80, "height" => 15, "line" => "blue") expected = <<~HTML.gsub(/\n\s*/, "") - - + + HTML assert_dom_equal expected, svg end def test_key_line_width - svg = key_svg_tag("width" => 80, "height" => 20, "line" => "blue", "line-width" => 3) + svg = key_svg_tag("width" => 80, "height" => 15, "line" => "blue", "line-width" => 3) + expected = <<~HTML.gsub(/\n\s*/, "") + + + + HTML + assert_dom_equal expected, svg + end + + def test_key_line_with_integer_coords + svg = key_svg_tag("width" => 80, "height" => 20, "line" => "blue") expected = <<~HTML.gsub(/\n\s*/, "") - + HTML assert_dom_equal expected, svg @@ -75,10 +85,7 @@ class SvgHelperTest < ActionView::TestCase svg = key_svg_tag("width" => 80, "height" => 20, "casing" => "yellow") expected = <<~HTML.gsub(/\n\s*/, "") - - - - + HTML assert_dom_equal expected, svg @@ -88,10 +95,17 @@ class SvgHelperTest < ActionView::TestCase svg = key_svg_tag("width" => 80, "height" => 20, "casing" => "yellow", "casing-width" => 5) expected = <<~HTML.gsub(/\n\s*/, "") - - - - + + + HTML + assert_dom_equal expected, svg + end + + def test_key_casing_with_integer_coords + svg = key_svg_tag("width" => 80, "height" => 20, "casing" => "yellow", "casing-width" => 2) + expected = <<~HTML.gsub(/\n\s*/, "") + + HTML assert_dom_equal expected, svg