diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-01 22:09:48 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-01 22:09:48 -0700 |
commit | 4a08a4ef405e451db0a8251c05a193874b64cddb (patch) | |
tree | 9cf878df4779cbc72c1b5a0de1943a8fdb7de3c8 /python/fatcat_web/templates/release_create.html | |
parent | 1a371b894a80510241c5804a8fba43a744174716 (diff) | |
download | fatcat-4a08a4ef405e451db0a8251c05a193874b64cddb.tar.gz fatcat-4a08a4ef405e451db0a8251c05a193874b64cddb.zip |
basic release editing
Diffstat (limited to 'python/fatcat_web/templates/release_create.html')
-rw-r--r-- | python/fatcat_web/templates/release_create.html | 254 |
1 files changed, 5 insertions, 249 deletions
diff --git a/python/fatcat_web/templates/release_create.html b/python/fatcat_web/templates/release_create.html index 7ede5dfd..5ea3470d 100644 --- a/python/fatcat_web/templates/release_create.html +++ b/python/fatcat_web/templates/release_create.html @@ -1,260 +1,16 @@ -{% extends "base.html" %} +{% extends "release_edit.html" %} -{% macro form_field_errors(field) -%} - {% if field.errors %} - <div class="ui pointing red label"> - {% for err in field.errors %} - {{ err }} - {% endfor %} - </div> - {% endif %} -{%- endmacro %} - -{% macro form_field_basic(field, div_classes="") -%} -<div class="field {{ div_classes }} {% if field.errors %}error{% endif %}"> - {{ field.label }} - {{ field() }} - {{ form_field_errors(field) }} -</div> -{%- endmacro %} - -{% macro form_field_inline(field, div_classes="") -%} -<div class="ui grid"> - <div class="three wide column middle aligned right aligned" {# style="padding-right: 0.5rem;" #}> - <div class="field inline {{ div_classes }} {% if field.errors %}error{% endif %}"> - {{ field.label }} - </div> - </div> - <div class="twelve wide column" {# style="padding-left: 0.5rem;" #}> - <div class="field {{ div_classes }} {% if field.errors %}error{% endif %}"> - {{ field() }} - {{ form_field_errors(field) }} - </div> - </div> - <div class="one wide column"> - </div> -</div> -{%- endmacro %} - -{% block body %} +{% block edit_form_prefix %} <div class="ui segment"> <h1 class="ui header">Create New Release Entity</h1> +<form class="ui form" id="create_release_form" method="POST" action="/release/create"> +{% endblock %} -<form class="ui form" id="add_work_form" method="POST" action="/release/create"> - {{ form.hidden_tag() }} - - <br> - <div class="ui accordion"> - <div class="{% if not editgroup_id %}active{% endif %} title"> - <h3><i class="dropdown icon"></i>Editgroup Meta</h3> - </div> - <div class="{% if not editgroup_id %}active{% endif %} content"> - {% if editgroup_id %} - <p>You have an editgroup in progress, and this edit will be included by - default. You can override this below. - {% else %} - <p>No existing editgroup is in progress (or at least, not is selected). - An existing ID can be pasted in, or if you leave that blank but give a - description, a new editgroup will be created for this edit. - {% endif %} - {{ form_field_inline(form.editgroup_id) }} - {{ form_field_inline(form.editgroup_description) }} - </div> - </div> - - <br> - <h3 class="ui dividing header">The Basics</h3> - <div class="ui grid"> - <div class="three wide column" style="padding-bottom: 0px;"></div> - <div class="twelve wide column" style="padding-bottom: 0px;"> - <div class="ui equal width fields"> - {{ form_field_basic(form.release_type, "required") }} - {{ form_field_basic(form.release_status) }} - </div> - </div> - <div class="one wide column" style="padding-bottom: 0px;"></div> - </div> - - {{ form_field_inline(form.title, "required") }} - {{ form_field_inline(form.original_title) }} - {{ form_field_inline(form.work_id) }} - {{ form_field_inline(form.release_date) }} - <div class="ui grid"> - <div class="three wide column" style="padding-bottom: 0px;"></div> - <div class="twelve wide column" style="padding-bottom: 0px;"> - <div class="ui equal width fields"> - {{ form_field_basic(form.language) }} - {{ form_field_basic(form.license_slug) }} - </div> - </div> - <div class="one wide column" style="padding-bottom: 0px;"></div> - </div> - - <br> - <h3 class="ui dividing header">Contributors</h3> - <div class="list-group" id="contrib_list" name="contrib_list"> - {% for cform in form.contribs %} - <div class="list-group-item ui grid" style="padding-right: 1em;"> - <div class="one wide column middle aligned center aligned sortable-handle" style="padding-bottom: 0px; padding-right: 0px; padding-left: 0px;"> - <i class="arrows alternate vertical icon"></i> - </div> - <div class="three wide column" style="padding-bottom: 0px; padding-left: 0px;"> - <div class="field {% if cform.role.errors %}error{% endif %}"> - {{ cform.role }} - </div> - </div> - <div class="eleven wide column" style="padding-bottom: 0px;"> - <div class="field {% if cform.raw_name.errors %}error{% endif %}"> - {{ cform.raw_name}} - </div> - </div> - <div class="one wide column right aligned" style="padding-bottom: 0px; padding-left: 0rem;"> - <button type="button" class="ui icon red button delete-contrib-button"><i class="trash icon"></i></button> - </div> - </div> - {% endfor %} - </div> - <br> - <button type="button" id="add-contrib-button" class="ui right floated icon green button" style="margin-right: 0.3rem;"> - <i class="plus icon"></i> - </button> - <br> - - <br> - <h3 class="ui dividing header">Identifers</h3> - <br> - {{ form_field_inline(form.doi) }} - {{ form_field_inline(form.wikidata_qid) }} - {{ form_field_inline(form.isbn13) }} - <div class="ui grid"> - <div class="three wide column" style="padding-bottom: 0px;"></div> - <div class="twelve wide column" style="padding-bottom: 0px;"> - <div class="ui equal width fields"> - {{ form_field_basic(form.pmid) }} - {{ form_field_basic(form.pmcid) }} - </div> - </div> - <div class="one wide column" style="padding-bottom: 0px;"></div> - </div> - - <br> - <h3 class="ui dividing header">Container</h3> - <br> - {{ form_field_inline(form.container_id) }} - {{ form_field_inline(form.publisher) }} - <br> - <div class="ui grid"> - <div class="three wide column" style="padding-bottom: 0px;"></div> - <div class="twelve wide column" style="padding-bottom: 0px;"> - <div class="ui equal width fields"> - {{ form_field_basic(form.pages) }} - {{ form_field_basic(form.volume) }} - {{ form_field_basic(form.issue) }} - </div> - </div> - <div class="one wide column" style="padding-bottom: 0px;"></div> - </div> - - <br><br> - <h3 class="ui dividing header">Submit</h3> - {{ form_field_basic(form.edit_description) }} - This description will be attached to this specific action, not to the - editgroup as a whole. +{% block edit_form_suffix %} <br><br> <input class="ui primary submit button" type="submit" value="Create Release!"> - </form> - </div> {% endblock %} -{% block postscript %} -<script src="https://cdn.jsdelivr.net/npm/sortablejs@latest/Sortable.min.js"></script> -<script> -<!-- Form code --> -$(document).ready(function() { - - // these javascript dropdowns hide the original <input>, which breaks browser - // form focusing (eg, for required fields) :( - //$('#release_type').dropdown(); - //$('#release_status').dropdown(); - $('.ui.accordion').accordion(); - - var fixup_contrib_numbering = function(group_item) { - items = Array.from(group_item.querySelectorAll(".list-group-item")) - for (var i = 0; i < items.length; i++) { - var item_el = items[i]; - input_el = item_el.querySelectorAll("input")[0]; - select_el = item_el.querySelectorAll("select")[0]; - //console.log(input_el.id); - //console.log(select_el.id); - input_el.id = "contribs-" + i + "-raw_name"; - input_el.name = input_el.id; - select_el.id = "contribs-" + i + "-role"; - select_el.name = select_el.id; - //console.log(input_el.id); - //console.log(select_el.id); - }; - console.log("re-named contrib rows up to i=" + i); - }; - - var contrib_list = document.getElementById('contrib_list'); - var contrib_sortable = Sortable.create(contrib_list, { - handle: '.sortable-handle', - animation: 150, - onSort: function(evt) { - fixup_contrib_numbering(contrib_list); - }, - }); - fixup_contrib_numbering(contrib_list); - - var contrib_delete_handler = function(ev) { - row = ev.target.parentNode.parentNode; - // I don't understand why this hack is needed; maybe because of the sortable stuff? - if(!row.classList.contains("list-group-item")) { - row = row.parentNode; - } - // console.log(row); - console.assert(row.classList.contains("list-group-item")); - row.parentNode.removeChild(row); - fixup_contrib_numbering(contrib_list); - }; - - var attach_contrib_delete_handler = function(topthing) { - Array.from(topthing.querySelectorAll(".delete-contrib-button")).forEach((el) => { - el.addEventListener("click", contrib_delete_handler); - }); - }; - attach_contrib_delete_handler(document); - - // XXX: really need some way to not duplicate this code from above... - var contrib_template = ` - <div class="list-group-item ui grid" style="padding-right: 1em;"> - <div class="one wide column middle aligned center aligned sortable-handle" style="padding-bottom: 0px; padding-right: 0px; padding-left: 0px;"> - <i class="arrows alternate vertical icon"></i> - </div> - <div class="three wide column" style="padding-bottom: 0px; padding-left: 0px;"> - <select id="contribs-X-role" name="contribs-X-role"><option value="author">Author</option><option value="editor">Editor</option><option value="translator">Translator</option></select> - </div> - <div class="eleven wide column" style="padding-bottom: 0px;"> - <input id="contribs-X-raw_name" name="contribs-X-raw_name" type="text" value=""> - </div> - <div class="one wide column right aligned" style="padding-bottom: 0px; padding-left: 0rem;"> - <button type="button" class="ui icon red button delete-contrib-button"><i class="trash icon"></i></button> - </div> - </div> - `; - - var add_contrib_button = document.getElementById("add-contrib-button"); - add_contrib_button.addEventListener("click", function(){ - contrib_list.insertAdjacentHTML('beforeend', contrib_template); - attach_contrib_delete_handler(contrib_list.lastElementChild); - fixup_contrib_numbering(contrib_list); - }); - - console.log("Page loaded"); - -}); -</script> -{% endblock %} |