mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
92 lines
4 KiB
Text
92 lines
4 KiB
Text
- display_mod_tools? = can?(@conn, :hide, @image)
|
|
|
|
#image_options_area
|
|
.block__header.block__header--js-tabbed
|
|
a href="#" data-click-tab="reporting" data-load-tab=Routes.image_reporting_path(@conn, :show, @image)
|
|
i.fa.fa-exclamation-triangle>
|
|
| Report
|
|
a href="#" data-click-tab="sharing"
|
|
i.fa.fa-share>
|
|
| Share
|
|
a href="#" data-click-tab="favoriters" data-load-tab=Routes.image_favorites_path(@conn, :index, @image)
|
|
i.fa.fa-star>
|
|
| List favoriters
|
|
= if display_mod_tools? do
|
|
a href="#" data-click-tab="replace"
|
|
i.fa.fa-upload>
|
|
| Replace
|
|
a href="#" data-click-tab="administration"
|
|
i.fa.fa-toolbox>
|
|
| Manage
|
|
= if present?(@image.scratchpad) do
|
|
i.fa.fa-sticky-note.fa--important<
|
|
i.fa.fa-exclamation.fa--important
|
|
|
|
.block__tab.hidden data-tab="favoriters"
|
|
p Loading...
|
|
.block__tab.hidden data-tab="reporting"
|
|
p Loading...
|
|
.block__tab.hidden data-tab="sharing"
|
|
#embed_options
|
|
- source_link = if @image.source_url in [nil, ""], do: " (Original source unknown at time of posting)", else: " - [url=#{@image.source_url}]Original source[/url]"
|
|
h5 Derpibooru
|
|
p
|
|
strong> Small thumbnail
|
|
input.input#embed_small_thumbnail_tag type="text" value=">>#{@image.id}s" cols="10" readonly="readonly"
|
|
a< href="#" data-click-copy="#embed_small_thumbnail_tag"
|
|
i.fa.fa-clipboard>
|
|
| Copy
|
|
p
|
|
strong> Thumbnail
|
|
input.input#embed_thumbnail_tag type="text" value=">>#{@image.id}t" cols="10" readonly="readonly"
|
|
a< href="#" data-click-copy="#embed_thumbnail_tag"
|
|
i.fa.fa-clipboard>
|
|
| Copy
|
|
p
|
|
strong> Preview
|
|
input.input#embed_preview_tag type="text" value=">>#{@image.id}p" cols="10" readonly="readonly"
|
|
a< href="#" data-click-copy="#embed_preview_tag"
|
|
i.fa.fa-clipboard>
|
|
| Copy
|
|
h5 BBCode
|
|
p
|
|
strong> Full size BBcode
|
|
a href="#" data-click-copy="#bbcode_embed_full_tag"
|
|
i.fa.fa-clipboard>
|
|
| Copy
|
|
br
|
|
textarea.input.input--wide.input--separate-top#bbcode_embed_full_tag rows="2" cols="100" readonly="readonly"
|
|
= "[img]#{thumb_url(@image, false, :full)}[/img]\n[url=#{Routes.image_url(@conn, :show, @image)}]View on Derpibooru[/url]#{source_link}"
|
|
p
|
|
strong> Thumbnailed BBcode
|
|
a href="#" data-click-copy="#bbcode_embed_thumbnail_tag"
|
|
i.fa.fa-clipboard>
|
|
| Copy
|
|
br
|
|
textarea.input.input--wide.input--separate-top#bbcode_embed_thumbnail_tag rows="2" cols="100" readonly="readonly"
|
|
= "[img]#{thumb_url(@image, false, :medium)}[/img]\n[url=#{Routes.image_url(@conn, :show, @image)}]View on Derpibooru[/url]#{source_link}"
|
|
= if display_mod_tools? do
|
|
.block__tab.hidden data-tab="replace"
|
|
/= form_tag image_file_path(@image), method: :put, multipart: true do
|
|
= render partial: 'layouts/image_upload', locals: { form: nil, field: :image }
|
|
= submit_tag 'Save changes', class: 'button', autocomplete: 'off', data: { disable_with: 'Replacing...' }
|
|
|
|
.block__tab.hidden data-tab="administration"
|
|
.block.block--danger
|
|
a.button.button--link> href="#"
|
|
i.far.fa-edit
|
|
= if present?(@image.scratchpad) do
|
|
strong> Mod notes:
|
|
= escape_nl2br @image.scratchpad
|
|
- else
|
|
em No mod notes present
|
|
|
|
= if not @image.hidden_from_users do
|
|
= form_for @changeset, Routes.image_delete_path(@conn, :create, @image), [method: "post"], fn f ->
|
|
= label f, :deletion_reason, "Deletion reason (cannot be empty)"
|
|
.field.field--inline
|
|
= text_input f, :deletion_reason, class: "input input--wide", placeholder: "Rule violation", required: true
|
|
= submit "Delete", class: "button button--state-danger button--separate-left"
|
|
|
|
- else
|
|
= button_to "Restore", Routes.image_delete_path(@conn, :delete, @image), method: "delete", class: "button button--state-success"
|