Rename save page to preview page
This commit is contained in:
parent
16e776c058
commit
7813d1a7f0
4 changed files with 90 additions and 32 deletions
|
|
@ -54,7 +54,7 @@ a.new { color: red; }
|
|||
<h1>{{ article.enwiki }}</h1>
|
||||
<div id="save-panel" class="d-none">
|
||||
<form method="POST" action="{{ article.save_endpoint() }}">
|
||||
<button class="btn btn-primary" id="save-btn">Save</button>
|
||||
<button class="btn btn-primary" id="save-btn">Preview before save</button>
|
||||
<span id="edit-count"></span>
|
||||
<input type="hidden" value="{}" id="save-edits" name="edits">
|
||||
</form>
|
||||
|
|
@ -62,8 +62,9 @@ a.new { color: red; }
|
|||
<div>There are {{ article.dab_list | count }} links in the article that need disambiguating.</div>
|
||||
{% for dab in article.dab_list %}
|
||||
<div class="card p-1 m-2">
|
||||
<h3 class="card-title" id="dab-card-title-{{ dab.num }}" onclick="return jump_to({{ dab.num }})">{{ dab.title }}</h3>
|
||||
{% if dab.title != dab.link_to %}<div>redirect from {{ dab.link_to }}</div>{% endif %}
|
||||
<div class="card-body">
|
||||
<h3 class="card-title" id="dab-card-title-{{ dab.num }}" onclick="return jump_to({{ dab.num }})">{{ dab.title }}</h3>
|
||||
{% if dab.title != dab.link_to %}<div>redirect from {{ dab.link_to }}</div>{% endif %}
|
||||
<div>
|
||||
<a href="#" onclick="return jump_to({{ dab.num }})">highlight link</a>
|
||||
<span class="d-none" id="cancel-{{ dab.num }}">
|
||||
|
|
@ -73,6 +74,7 @@ a.new { color: red; }
|
|||
</div>
|
||||
<div class="dab-article d-none" id="dab-article-{{ dab.num }}">{{ dab.html | safe }}</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div id="article" class="pe-3">
|
||||
|
|
@ -85,8 +87,8 @@ a.new { color: red; }
|
|||
|
||||
var edit_set = new Set();
|
||||
var edits = {};
|
||||
var dab_lookup = {{ article.dab_lookup | tojson }};
|
||||
var dab_order = {{ article.dab_order | tojson }};
|
||||
var dab_link_to = {{ article.dab_link_to() | tojson }};
|
||||
|
||||
var dab_links = document.getElementsByClassName("disambig");
|
||||
for(var i=0; i<dab_links.length; i++) {
|
||||
|
|
@ -156,7 +158,8 @@ a.new { color: red; }
|
|||
}
|
||||
|
||||
function update_edits() {
|
||||
var saves = dab_order.filter(t => edits[t]).map(t => [t, edits[t]]);
|
||||
var saves = dab_link_to.map((link_to, num) => (
|
||||
{"num": num, "link_to": link_to, "title": edits[num]}));
|
||||
var save_edits = document.getElementById("save-edits");
|
||||
save_edits.value = JSON.stringify(saves);
|
||||
}
|
||||
|
|
@ -166,7 +169,7 @@ a.new { color: red; }
|
|||
document.getElementById("cancel-" + dab_num).classList.remove("d-none");
|
||||
|
||||
var title = element.getAttribute("title");
|
||||
edits[dab_lookup[dab_num]] = title;
|
||||
edits[dab_num] = title;
|
||||
|
||||
edit_set.add(dab_num);
|
||||
update_edits();
|
||||
|
|
@ -188,7 +191,7 @@ a.new { color: red; }
|
|||
}
|
||||
|
||||
function cancel_selection(dab_num) {
|
||||
delete edits[dab_lookup[dab_num]];
|
||||
delete edits[dab_num];
|
||||
document.getElementById("cancel-" + dab_num).classList.add("d-none");
|
||||
clear_dab_highlight(dab_num);
|
||||
edit_set.delete(dab_num);
|
||||
|
|
|
|||
|
|
@ -4,15 +4,33 @@
|
|||
<meta charset="utf-8">
|
||||
<title>{{ title }} – dab mechanic</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://www.mediawiki.org/w/load.php?modules=mediawiki.diff.styles&only=styles">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="m-3">
|
||||
<h2>Save edits: {{ title }}</h2>
|
||||
<p>Edit summary: {{ edit_summary }}</p>
|
||||
</div>
|
||||
<div class="m-3">
|
||||
<pre>{{ text }}</pre>
|
||||
<h2>Preview of changes: {{ title }}</h2>
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">Edit summary</h5>
|
||||
<p class="card-text">{{ edit_summary }}</p>
|
||||
</div>
|
||||
</div>
|
||||
{# <pre>{{ text }}</pre> #}
|
||||
|
||||
<table class="diff my-3">
|
||||
<colgroup>
|
||||
<col class="diff-marker">
|
||||
<col class="diff-content">
|
||||
<col class="diff-marker">
|
||||
<col class="diff-content">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
{{ diff | safe }}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<button class="btn btn-primary" id="save-btn">Save changes</button>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue