7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
45 lines
850 B
Ruby
45 lines
850 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Diff
|
|
module Formatters
|
|
class ImageFormatter < BaseFormatter
|
|
attr_reader :width
|
|
attr_reader :height
|
|
attr_reader :x
|
|
attr_reader :y
|
|
|
|
def initialize(attrs)
|
|
@x = attrs[:x]
|
|
@y = attrs[:y]
|
|
@width = attrs[:width]
|
|
@height = attrs[:height]
|
|
|
|
super(attrs)
|
|
end
|
|
|
|
def key
|
|
@key ||= super.push(x, y)
|
|
end
|
|
|
|
def complete?
|
|
x && y && width && height
|
|
end
|
|
|
|
def to_h
|
|
super.merge(width: width, height: height, x: x, y: y)
|
|
end
|
|
|
|
def position_type
|
|
"image"
|
|
end
|
|
|
|
def ==(other)
|
|
other.is_a?(self.class) &&
|
|
x == other.x &&
|
|
y == other.y
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|