X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b13ac4ec21b83b51ebd5ccacc70f518bed03d9b2..b685f6eb2edb5ee7171bc000853dd5980c6bf68b:/app/helpers/svg_helper.rb diff --git a/app/helpers/svg_helper.rb b/app/helpers/svg_helper.rb index 21b7c91ad..bc12ff223 100644 --- a/app/helpers/svg_helper.rb +++ b/app/helpers/svg_helper.rb @@ -1,4 +1,12 @@ module SvgHelper + def previous_page_svg_tag(**options) + adjacent_page_svg_tag(dir == "rtl" ? 1 : -1, **options) + end + + def next_page_svg_tag(**options) + adjacent_page_svg_tag(dir == "rtl" ? -1 : 1, **options) + end + def key_svg_tag(**options) border_width = options["border"] ? (options["border-width"] || 1) : 0 rect_attrs = { @@ -14,21 +22,34 @@ 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 private + # returns "<" shape if side == -1; ">" if side == 1 + def adjacent_page_svg_tag(side, **options) + height = 15 + pad = 2 + segment = (0.5 * height) - pad + width = (segment + (2 * pad)).ceil + path_data = "M#{side * (pad - (0.5 * width))},#{pad} l#{side * segment},#{segment} l#{-side * segment},#{segment}" + path_tag = tag.path :d => path_data, :fill => "none", :stroke => "currentColor", :"stroke-width" => 1.5 + tag.svg path_tag, :width => width, :height => height, :viewBox => "-#{0.5 * width} 0 #{width} #{height}", :class => options[:class] + end + def stroke_attrs(attrs, prefix) attrs.select { |key| key.start_with?(prefix) }.transform_keys { |key| key.delete_prefix(prefix).prepend("stroke") } end