2024-04-29 02:55:27 +02:00
= form_for @changeset, ~p"/images", [multipart: true], fn f ->
2019-11-26 05:51:17 +01:00
.dnp-warning
h4
' Read the
a> href="/pages/rules" site rules
' and check our
a> href="/dnp" do-not-post list
p
' Don't post content the artist doesn't want here (or shared in general),
strong including commercial content.
p
strong
' Please check it isn't already here with
a href="/search/reverse" reverse search.
/ todo: extract this
h4 Select an image
.image-other
#js-image-upload-previews
2019-11-29 00:19:47 +01:00
p Upload a file from your computer, or provide a link to the page containing the image and click Fetch.
2019-11-26 05:51:17 +01:00
.field
= file_input f, :image, class: "input js-scraper"
2020-05-29 02:35:52 +02:00
= error_tag f, :image
2019-11-26 05:51:17 +01:00
= error_tag f, :image_size
= error_tag f, :image_width
= error_tag f, :image_height
= error_tag f, :image_name
= error_tag f, :image_mime_type
2020-07-06 20:00:02 +02:00
= error_tag f, :image_duration
2019-12-16 22:24:30 +01:00
= error_tag f, :image_orig_sha512_hash
2019-11-26 05:51:17 +01:00
2019-11-29 00:19:47 +01:00
.field.field--inline
= url_input f, :scraper_url, class: "input input--wide js-scraper", placeholder: "Link a deviantART page, a Tumblr post, or the image directly"
2020-04-19 02:14:40 +02:00
button.button.button--separate-left#js-scraper-preview(type="button" title="Fetch the image at the specified URL" data-disable-with="Fetch" disabled)
2019-11-29 00:19:47 +01:00
' Fetch
2019-11-26 05:51:17 +01:00
.field-error-js.hidden.js-scraper
h4 About this image
2021-10-10 00:50:57 +02:00
p
'The page(s) you found this image on. Images may have a maximum of
2024-06-10 16:30:51 +02:00
span.js-max-source-count> 15
2021-10-10 00:50:57 +02:00
' source URLs. Leave any sources you don't want to use blank.
= inputs_for f, :sources, fn fs ->
.field.js-image-source.field--inline.flex--no-wrap.flex--centered
= text_input fs, :source, class: "input flex__grow js-source-url", placeholder: "Source URL"
= error_tag fs, :source
label.input--separate-left.flex__fixed.flex--centered
a.js-source-remove href="#"
i.fa.fa-trash>
' Delete
2019-11-26 05:51:17 +01:00
.field
2021-10-10 00:50:57 +02:00
button.button.js-image-add-source type="button"
i.fa.fa-plus>
' Add source
2021-09-13 01:19:00 +02:00
2019-11-26 05:51:17 +01:00
.field
label for="image[tag_input]"
' Describe with
strong> 3+
' tags, including ratings and applicable artist tags
= render PhilomenaWeb.TagView, "_tag_editor.html", f: f, name: :tag_input, type: :upload
2019-12-21 22:18:56 +01:00
= error_tag f, :tag_input
2019-11-26 05:51:17 +01:00
button.button.button--state-success.button--separate-left.button--bold id="tagsinput-save" type="button" title="This button saves the tags listed above to your browser, allowing you to retrieve them again by clicking the Load button" Save
button.button.button--state-warning.button--separate-left.button--bold id="tagsinput-load" type="button" title="This button loads any saved tags from your browser" Load
button.button.button--state-danger.button--separate-left.button--bold id="tagsinput-clear" type="button" title="This button will clear the list of tags above" Clear
2019-11-29 19:26:44 +01:00
p You can mouse over tags below to view a description, and click to add. Short tag names can be used and will expand to full.
2020-02-06 23:42:09 +01:00
.block.js-tagtable data-target="[name="image[tag_input]"]"
2019-11-29 19:26:44 +01:00
= PhilomenaWeb.TagView.quick_tags(@conn)
2019-11-26 05:51:17 +01:00
br
.field
.block
2021-09-13 01:19:00 +02:00
.communication-edit__wrap
2021-10-10 00:50:57 +02:00
= render PhilomenaWeb.MarkdownView, "_input.html", conn: @conn, f: f, action_icon: "pencil-alt", action_text: "Description", placeholder: "Describe this image in plain words - this should generally be info about the image that doesn't belong in the tags or source.", name: :description, class: "js-image-descr-input", required: false
2019-11-28 03:06:41 +01:00
2021-09-13 01:19:00 +02:00
= render PhilomenaWeb.MarkdownView, "_anon_checkbox.html", conn: @conn, f: f, label: "Post anonymously"
2019-11-26 05:51:17 +01:00
2020-09-12 19:43:16 +02:00
= render PhilomenaWeb.CaptchaView, "_captcha.html", name: "image", conn: @conn
2019-11-26 05:51:17 +01:00
.actions
2021-09-13 01:19:00 +02:00
= submit "Upload", class: "button input--separate-top", autocomplete: "off", data: [disable_with: "Please wait..."]