Files
redux-scraper/app/views/domain/inkbunny/users/show.html.erb
2024-12-19 06:04:37 +00:00

27 lines
1.1 KiB
Plaintext

<div class='mx-auto'>
<h1 class='text-2xl'><%= @user.name %>'s Profile</h1>
</div>
<div class='mx-auto'>
<h2 class='text-xl mt-4 mb-2'>Posts (<%= @user.posts.count %>)</h2>
<div class='flex-row mx-2'>
<% @user.posts.each do |post| %>
<div class='border-stone-00 border-2 rounded-md mb-4 p-4'>
<div class='text-stone-800 mb-2 flex justify-between'>
<div>
<%= link_to post.title, post, class: 'hover:underline' %>
</div>
<div class='text-stone-400 text-sm'>(ID: <%= post.ib_post_id %>, <%= pluralize(post.files.count, 'file') %>)</div>
</div>
<div class='flex flex-row gap-2'>
<% post.files.each do |file| %>
<% img_src_path = contents_blob_path(HexUtil.bin2hex(file.blob_entry_sha256), format: "jpg", thumb: 'small') %>
<div class="rounded-md overflow-hidden">
<img class='p-2 first:pl-0 last:pr-0 h-32' alt='<%= post.title %>' src='<%= img_src_path %>' />
</div>
<% end %>
</div>
</div>
<% end %>
</div>
</div>