reverted post thumbnail change, fix for mod queue

This commit is contained in:
albert
2012-03-13 18:39:20 -04:00
parent 7269ec0076
commit a39d5bc19e
6 changed files with 8 additions and 32 deletions

View File

@@ -13,32 +13,12 @@ class PostPresenter < Presenter
html = %{<article class="post-preview" id="post_#{post.id}" data-id="#{post.id}" data-tags="#{h(post.tag_string)}" data-uploader="#{h(post.uploader_name)}" data-rating="#{post.rating}" data-width="#{post.image_width}" data-height="#{post.image_height}" data-flags="#{flags.join(' ')}" data-parent-id="#{post.parent_id}" data-has-children="#{post.has_children?}">}
html << %{<a href="#{path}/#{post.id}">}
html << %{<img style="margin-left: #{margin_left(post)}; margin-top: #{margin_top(post)};" src="#{post.preview_file_url}" alt="#{h(post.tag_string)}">}
html << %{<img src="#{post.preview_file_url}" alt="#{h(post.tag_string)}">}
html << %{</a>}
html << %{</article>}
html.html_safe
end
def self.margin_top(post)
if post.is_image? && post.image_height > post.image_width && post.image_height > Danbooru.config.small_image_width && post.image_height < 1.5 * post.image_width
ratio = Danbooru.config.small_image_width.to_f / post.image_width.to_f
offset = ((ratio * post.image_height) - Danbooru.config.small_image_width).to_i / 2
return "-#{offset}px"
else
0
end
end
def self.margin_left(post)
if post.is_image? && post.image_width > post.image_height && post.image_width > Danbooru.config.small_image_width
ratio = Danbooru.config.small_image_width.to_f / post.image_height.to_f
offset = ((ratio * post.image_width) - Danbooru.config.small_image_width).to_i / 2
return "-#{offset}px"
else
return 0
end
end
def initialize(post)
@post = post
end