114 lines
4.1 KiB
HTML
114 lines
4.1 KiB
HTML
{% load index %}
|
|
{% load static %}
|
|
|
|
<script src="{% static 'modal.js' %}"></script>
|
|
<link rel ="stylesheet" href="{% static 'tabs.css' %}">
|
|
<script src="{% static 'tabs.js' %}"></script>
|
|
<script>
|
|
document.addEventListener("restore-modal-scroll", function(event) {
|
|
var modalContent = document.getElementsByClassName("modal-content")[0];
|
|
var maxScroll = modalContent.scrollHeight - modalContent.offsetHeight;
|
|
var scrollpos = localStorage.getItem('scrollpos_modal_content');
|
|
if (scrollpos == 'BOTTOM') {
|
|
modalContent.scrollTop = maxScroll;
|
|
} else if (scrollpos) {
|
|
modalContent.scrollTop = scrollpos;
|
|
};
|
|
});
|
|
|
|
document.addEventListener("htmx:beforeSwap", function(event) {
|
|
var modalContent = document.getElementsByClassName("modal-content")[0];
|
|
var scrollpos = modalContent.scrollTop;
|
|
if(modalContent.scrollTop === (modalContent.scrollHeight - modalContent.offsetHeight)) {
|
|
localStorage.setItem('scrollpos_modal_content', 'BOTTOM');
|
|
} else {
|
|
localStorage.setItem('scrollpos_modal_content', scrollpos);
|
|
}
|
|
|
|
});
|
|
</script>
|
|
|
|
<div id="modal" class="modal is-active is-clipped">
|
|
<div class="modal-background"></div>
|
|
<div class="modal-content">
|
|
<div class="box">
|
|
{% include 'partials/notify.html' %}
|
|
<div class="tabs is-toggle is-fullwidth is-info" id="tabs">
|
|
<ul>
|
|
<li class="is-active" data-tab="1">
|
|
<a>
|
|
<span class="icon is-small"><i class="fa-solid fa-message-arrow-down"></i></span>
|
|
<span>Scrollback</span>
|
|
</a>
|
|
</li>
|
|
<li data-tab="2">
|
|
<a>
|
|
<span class="icon is-small"><i class="fa-solid fa-messages"></i></span>
|
|
<span>Context</span>
|
|
</a>
|
|
</li>
|
|
<li data-tab="3">
|
|
<a>
|
|
<span class="icon is-small"><i class="fa-solid fa-message"></i></span>
|
|
<span>Message</span>
|
|
</a>
|
|
</li>
|
|
<li data-tab="4">
|
|
<a>
|
|
<span class="icon is-small"><i class="fa-solid fa-asterisk"></i></span>
|
|
<span>Info</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div id="tab-content">
|
|
<div class="is-active" data-content="1">
|
|
<h4 class="subtitle is-4">Scrollback of {{ channel }} on {{ net }}{{ num }}</h4>
|
|
{% include 'modals/context_table.html' %}
|
|
{% if user.is_superuser and src == 'irc' %}
|
|
<form method="PUT">
|
|
<article class="field has-addons">
|
|
<article class="control is-expanded has-icons-left">
|
|
<input id="context-input" name="msg" class="input" type="text" placeholder="Type your message here">
|
|
<span class="icon is-small is-left">
|
|
<i class="fas fa-magnifying-glass"></i>
|
|
</span>
|
|
</article>
|
|
<article class="control">
|
|
<article class="field">
|
|
<button
|
|
id="search"
|
|
class="button is-info is-fullwidth"
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
hx-put="{% url 'threshold_irc_msg' net num channel nick %}"
|
|
hx-trigger="click"
|
|
hx-target="#context-input"
|
|
hx-swap="outerHTML">
|
|
Send
|
|
</button>
|
|
</article>
|
|
</article>
|
|
</article>
|
|
</form>
|
|
{% endif %}
|
|
|
|
</div>
|
|
<div data-content="2">
|
|
<h4 class="subtitle is-4">Scrollback of {{ channel }} on {{ net }}{{ num }} around {{ ts }}</h4>
|
|
Context
|
|
</div>
|
|
<div data-content="3">
|
|
<h4 class="subtitle is-4">Message details</h4>
|
|
Message deetails
|
|
</div>
|
|
<div data-content="4">
|
|
<h4 class="subtitle is-4">Information about {{ channel }} on {{ net }}{{ num }}</h4>
|
|
info
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<button class="modal-close is-large" aria-label="close"></button>
|
|
{# <script>activateButtons();</script> #}
|
|
</div>
|
|
</div>
|