145 lines
5.0 KiB
HTML
145 lines
5.0 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>
|
|
|
|
<div
|
|
class="modal-refresh"
|
|
style="display: none;"
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
hx-post="{% url 'modal_context' %}"
|
|
hx-vals='{"net": "{{ net }}",
|
|
"num": "{{ num }}",
|
|
"src": "{{ src }}",
|
|
"channel": "{{ channel }}",
|
|
"time": "{{ time }}",
|
|
"date": "{{ date }}",
|
|
"index": "{{ index }}"
|
|
}'
|
|
hx-target="#modals-here"
|
|
hx-trigger="every 3s">
|
|
</div>
|
|
|
|
<script>
|
|
document.addEventListener("restore-modal-scroll", function(event) {
|
|
var scrollpos = localStorage.getItem('scrollpos_modal_content');
|
|
if (scrollpos) {
|
|
document.getElementsByClassName("modal-content")[0].scrollTop = scrollpos;
|
|
};
|
|
});
|
|
|
|
document.addEventListener("htmx:beforeSwap", function(event) {
|
|
var contentScroll = document.getElementsByClassName("modal-content")[0].scrollTop;
|
|
localStorage.setItem('scrollpos_modal_content', contentScroll);
|
|
|
|
});
|
|
</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>
|
|
<article class="table-container">
|
|
<table class="table">
|
|
<thead>
|
|
<th></th>
|
|
</thead>
|
|
<tbody>
|
|
{% for item in object_list %}
|
|
{% if item.type == 'msg' %}
|
|
<tr>
|
|
<td>{{ item.time }}</td>
|
|
<td
|
|
class="has-tooltip-right {% if item.online is True %}has-text-success{% elif item.online is False %}has-text-danger{% else %}has-text-warning{% endif %}"
|
|
data-tooltip="{{ item.nick }}!{{ item.ident }}@{{ item.host }}">{{ item.nick }}</td>
|
|
<td class="wrap">{{ item.msg }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</article>
|
|
<div class="field has-addons">
|
|
<div class="control is-expanded has-icons-left">
|
|
<input
|
|
hx-post="{% url 'search' %}"
|
|
hx-trigger="keyup changed delay:200ms"
|
|
hx-target="#results"
|
|
hx-swap="innerHTML" id="query" name="query" value="{{ params.query }}" class="input" type="text" placeholder="msg: science AND nick: BillNye AND channel: #science">
|
|
<span class="icon is-small is-left">
|
|
<i class="fas fa-magnifying-glass"></i>
|
|
</span>
|
|
</div>
|
|
<div class="control">
|
|
<div class="field">
|
|
<button
|
|
id="search"
|
|
class="button is-info is-fullwidth"
|
|
hx-post="{% url 'search' %}"
|
|
hx-trigger="click"
|
|
hx-target="#results"
|
|
hx-swap="innerHTML">
|
|
Search
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</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>
|
|
var modal_event = new Event('restore-modal-scroll');
|
|
document.dispatchEvent(modal_event);
|
|
</script>
|
|
{# <script>activateButtons();</script> #}
|
|
</div>
|
|
</div>
|