aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/templates')
-rw-r--r--gn2/wqflask/templates/gn_editor.html13
-rw-r--r--gn2/wqflask/templates/gn_editor_commit.html5
-rw-r--r--gn2/wqflask/templates/gn_editor_results_page.html18
3 files changed, 21 insertions, 15 deletions
diff --git a/gn2/wqflask/templates/gn_editor.html b/gn2/wqflask/templates/gn_editor.html
index 112180e1..dca6d161 100644
--- a/gn2/wqflask/templates/gn_editor.html
+++ b/gn2/wqflask/templates/gn_editor.html
@@ -30,12 +30,10 @@
<div>
<div class="row">
<section class="col-sm-6" id="editor" style="height:100vh">
-
</section>
<section class="col-sm-6">
<div class="row">
<section class="col-sm-10 col-sm-offset-1" id="output" style="height:100vh;overflow-y:scroll" id="swap">
- Tristique nulla aliquet enim tortor, at auctor urna nunc id cursus metus aliquam eleifend mi in nulla posuere sollicitudin aliquam ultrices sagittis orci, a scelerisque! Laoreet suspendisse interdum consectetur libero.
</section>
</div>
@@ -118,8 +116,6 @@
document.querySelector("#output").addEventListener("updateEditor", function(event){
- console.log(event.detail.payload)
- console.log(event)
editor.setOptions({
...editor_configurations,
...event.detail.payload
@@ -147,17 +143,20 @@
previewContent = document.querySelector("#output");
var markdownContent = editor.getValue();
var htmlContent = new_marked.parse(markdownContent)
+ console.log(htmlContent)
previewContent.innerHTML = htmlContent;
}
- editor.getSession().on("change", function(e){
+ editor.getSession().on("change", function(e){
updatePreview()
})
-
+ //do the fetch here
+ var data = {{ content|tojson }}
+ editor.setValue(data, -1);
+
});
-
</script>
{% endblock %}
diff --git a/gn2/wqflask/templates/gn_editor_commit.html b/gn2/wqflask/templates/gn_editor_commit.html
index 214ca169..7c419c0b 100644
--- a/gn2/wqflask/templates/gn_editor_commit.html
+++ b/gn2/wqflask/templates/gn_editor_commit.html
@@ -13,7 +13,7 @@
</div>
<br>
<div class="row">
- <textarea class="col-sm-12" name="message" required>
+ <textarea rows="12" class="col-sm-12" name="message" required>
</textarea>
</div>
@@ -21,9 +21,6 @@
<br>
<br>
<div class="row">
- <button class="btn btn-secondary col-sm-2 col-sm-offset-1">
- Cancel
- </button>
<button hx-post="/editor/commit"
hx-target="#output"
hx-swap= "innerHTML"
diff --git a/gn2/wqflask/templates/gn_editor_results_page.html b/gn2/wqflask/templates/gn_editor_results_page.html
index f19ef7ab..9453ba02 100644
--- a/gn2/wqflask/templates/gn_editor_results_page.html
+++ b/gn2/wqflask/templates/gn_editor_results_page.html
@@ -6,11 +6,21 @@
</div>
</div>
<br>
- <div>
- <h3>Commit Sha:</h3>
-
- <h3>Commit Message</h3>
+ {% if error %}
+ <h1> error occurred *error message hereh </h1>
+ {% else %}
+ <div>
+ <h3>Commit Sha: <span class="lead">
+ <mark style="font-family: 'Linux Libertine','Georgia','Times','Source Serif Pro',serif;"><b><i>commit hash</i></b></mark>
+ </span></h3>
+ <br/>
+ <div class="lead"> <h3>Commit Message:
+ <mark style="font-family: 'Linux Libertine','Georgia','Times','Source Serif Pro',serif;"><b><i>commit message</i></b></mark>
+ </h3>
+
+ </div>
</div>
+ {% endif %}
<br>
</div>
</section>