microblog.pub/templates/new.html

60 lines
1.9 KiB
HTML
Raw Normal View History

2018-05-18 13:41:41 -05:00
{% extends "layout.html" %}
{% import 'utils.html' as utils %}
2018-05-21 14:03:21 -05:00
{% block title %}New - {{ config.NAME }}{% endblock %}
2019-04-10 15:50:36 -05:00
{% block headers %}
{% endblock %}
2018-05-18 13:41:41 -05:00
{% block content %}
<div id="container">
{% include "header.html" %}
<div id="new">
2018-06-03 14:28:06 -05:00
{% if thread %}
<h3 style="padding-bottom: 30px">Replying to {{ content }}</h3>
{{ utils.display_thread(thread) }}
{% else %}
<h3 style="padding-bottom:20px;">New note</h3>
{% endif %}
<form action="/api/new_note" method="POST" enctype="multipart/form-data">
<input type="hidden" name="redirect" value="/">
<input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
2018-05-18 13:41:41 -05:00
{% if reply %}<input type="hidden" name="reply" value="{{reply}}">{% endif %}
2019-04-10 15:50:36 -05:00
<p>
{% for emoji in emojis %}
<span class="ji">{{ emoji }}</span>
{% endfor %}
</p>
<textarea name="content" rows="10" cols="50" autofocus="autofocus" designMode="on">{{ content }}</textarea>
<input type="file" name="file">
2018-05-18 13:41:41 -05:00
<div style="margin-top:20px;">
<input type="submit" value="post">
</div>
</form>
</div>
</div>
2019-04-10 15:50:36 -05:00
<script>
var ta = document.getElementsByTagName("textarea")[0];
function insertAtCursor (textToInsert) {
// get current text of the input
const value = ta.value;
// save selection start and end position
const start = ta.selectionStart;
const end = ta.selectionEnd;
// update the value with our text inserted
ta.value = value.slice(0, start) + textToInsert + value.slice(end);
// update cursor to be at the end of insertion
ta.selectionStart = ta.selectionEnd = start + textToInsert.length;
}
var ji = function (ev) {
insertAtCursor(ev.target.attributes.alt.value);
ta.focus()
//console.log(document.execCommand('insertText', false /*no UI*/, ev.target.attributes.alt.value));
}
var items = document.getElementsByClassName("ji")
for (var i = 0; i < items.length; i++) {
items[i].addEventListener('click', ji);
}
</script>{% endblock %}