]> git.openstreetmap.org Git - rails.git/blob - app/helpers/svg_helper.rb
Remove OPNVKarte as a featured layer
[rails.git] / app / helpers / svg_helper.rb
1 module SvgHelper
2   def key_svg_tag(**options)
3     border_width = options["border"] ? (options["border-width"] || 1) : 0
4     rect_attrs = {
5       :width => "100%",
6       :height => "100%",
7       :fill => options["fill"] || "none"
8     }
9     if border_width.positive?
10       rect_attrs[:x] = rect_attrs[:y] = format("%g", 0.5 * border_width)
11       rect_attrs[:width] = options["width"] - border_width
12       rect_attrs[:height] = options["height"] - border_width
13     end
14     svg_attrs = options.slice("width", "height", "opacity", :class)
15
16     tag.svg(**svg_attrs) do
17       horizontal = "H#{options['width']}"
18       concat tag.rect(**rect_attrs, **stroke_attrs(options, "border")) if options["fill"] || options["border"]
19       if options["line"]
20         y_middle = format("%g", 0.5 * options["height"])
21         concat tag.path(:d => "M0,#{y_middle} #{horizontal}", **stroke_attrs(options, "line"))
22       end
23       if options["casing"]
24         casing_width = options["casing-width"] || 1
25         y_top = format("%g", 0.5 * casing_width)
26         y_bottom = format("%g", options["height"] - (0.5 * casing_width))
27         concat tag.path(:d => "M0,#{y_top} #{horizontal} M0,#{y_bottom} #{horizontal}", **stroke_attrs(options, "casing"))
28       end
29     end
30   end
31
32   private
33
34   def stroke_attrs(attrs, prefix)
35     attrs.select { |key| key.start_with?(prefix) }.transform_keys { |key| key.delete_prefix(prefix).prepend("stroke") }
36   end
37 end