philomena/lib/philomena_web/templates/gallery/show.html.slime

83 lines
3.2 KiB
Text
Raw Normal View History

2019-12-05 01:53:31 +01:00
elixir:
scope = scope(@conn)
image_url = fn image -> Routes.image_path(@conn, :show, image, scope) end
route = fn p -> Routes.gallery_path(@conn, :show, @gallery, p) end
pagination = render PhilomenaWeb.PaginationView, "_pagination.html", page: @images, route: route, params: scope
info = render PhilomenaWeb.PaginationView, "_pagination_info.html", page: @images
#sortable class=sortable_classes(@conn)
2019-12-05 01:53:31 +01:00
.block#imagelist-container
section.block__header.flex
2019-12-26 23:43:32 +01:00
span.block__header__title.hide-mobile
2019-12-05 01:53:31 +01:00
' Viewing gallery
strong>
= @gallery.title
= pagination
.flex__right
2019-12-26 23:43:32 +01:00
= render PhilomenaWeb.ImageView, "_random_button.html", conn: @conn, params: scope
2019-12-05 05:12:49 +01:00
a href=Routes.gallery_report_path(@conn, :new, @gallery)
2019-12-05 01:53:31 +01:00
i.fa.fa-exclamation-triangle>
span.hide-mobile Report
= if can?(@conn, :edit, @gallery) do
a href=Routes.gallery_path(@conn, :edit, @gallery)
2019-12-15 19:04:41 +01:00
i.fas.fa-edit>
2019-12-05 01:53:31 +01:00
span.hide-mobile Edit
= if can?(@conn, :edit, @gallery) do
2020-02-06 23:40:25 +01:00
a.rearrange-button.js-rearrange href="#" data-click-hide=".js-rearrange" data-click-show=".js-save,#gallery-rearrange-info"
2019-12-05 01:53:31 +01:00
i.fa.fa-sort>
' Rearrange
2019-12-05 05:12:49 +01:00
2020-02-06 23:40:25 +01:00
a.rearrange-button.js-save.hidden href="#" data-click-hide=".js-save,#gallery-rearrange-info" data-click-show=".js-rearrange" data-reorder-path=Routes.gallery_order_path(@conn, :update, @gallery)
2019-12-05 01:53:31 +01:00
i.fa.fa-check>
' Save
2019-12-21 23:15:16 +01:00
a href=Routes.gallery_path(@conn, :delete, @gallery) data-method="delete" data-confirm="Are you really, really sure?"
i.fa.fa-trash>
span.hide-mobile Delete
2019-12-05 01:53:31 +01:00
= if show_subscription_link?(@gallery.creator, @conn.assigns.current_user) do
2019-12-05 05:12:49 +01:00
= render PhilomenaWeb.Gallery.SubscriptionView, "_subscription.html", watching: @watching, gallery: @gallery, conn: @conn
2019-12-05 01:53:31 +01:00
.block__header.block__header--light.block__header--sub
span.block__header__title A gallery by
=> link @gallery.creator.name, to: Routes.profile_path(@conn, :show, @gallery.creator)
' with
=> @gallery.image_count
= pluralize("image", "images", @gallery.image_count)
' , last updated
= pretty_time(@gallery.updated_at)
.block__content.flex.js-imagelist-info
.flex__fixed.thumb-tiny-container.spacing-right
= render PhilomenaWeb.ImageView, "_image_container.html", image: @gallery.thumbnail, size: :thumb_tiny, conn: @conn
.flex__grow
= if @gallery.spoiler_warning not in [nil, ""] do
strong> Warning:
= @gallery.spoiler_warning
= if @gallery.description not in [nil, ""] do
p = @gallery.description
.block__content.hidden#gallery-rearrange-info
.block.block--fixed.block--primary
| Click the image and drag.
br
strong Note that you may have to wait a couple of seconds before the order is applied.
.block__content.js-resizable-media-container
= for image <- @gallery_images do
2019-12-05 01:53:31 +01:00
= render PhilomenaWeb.ImageView, "_image_box.html", image: image, link: image_url.(image), size: :thumb, conn: @conn
.block__header.block__header--light.flex
= pagination
span.block__header__title
2019-12-15 19:04:41 +01:00
= info