mirror of
https://gitlab.com/brutaldon/brutaldon.git
synced 2024-12-04 14:46:24 -05:00
Restore all of the PJAX stuff because I figured out what was going wrong
This commit is contained in:
parent
9eda3c91cb
commit
347ccb4bbe
@ -151,3 +151,21 @@ function characterCount()
|
||||
return $("#id_status").val().length + $("#id_spoiler_text").val().length;
|
||||
}
|
||||
|
||||
function savePlace()
|
||||
{
|
||||
sessionStorage.setItem("lastScrollPos", window.scrollY);
|
||||
return true;
|
||||
}
|
||||
|
||||
function restorePlace(ev)
|
||||
{
|
||||
var lastScrollPos = sessionStorage.getItem('lastScrollPos');
|
||||
Intercooler.ready(function (elt)
|
||||
{
|
||||
if (elt[0].id == 'main')
|
||||
{
|
||||
window.scrollTo(0, lastScrollPos);
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}
|
||||
|
@ -75,17 +75,32 @@
|
||||
<div class="navbar-menu is-active" id="navMenu">
|
||||
<!-- navbar start, navbar end -->
|
||||
<div class="navbar-start">
|
||||
<a href="{% url "home" %}" class="navbar-item">
|
||||
<a href="{% url "home" %}" class="navbar-item"
|
||||
ic-get-from="{% url "home" %}"
|
||||
ic-target="#main"
|
||||
ic-scroll-to-target="true"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-on-success="afterPage('{{ own_acct.username }}', 'Home');"
|
||||
ic-select-from-response="#main"
|
||||
ic-indicator="#page-load-indicator">
|
||||
<span class="fa fa-home"></span>
|
||||
<span> Home</span>
|
||||
</a>
|
||||
<a class="navbar-item" href="{% url "note" %}"
|
||||
>
|
||||
ic-get-from="{% url "note" %}"
|
||||
ic-target="#main"
|
||||
ic-scroll-to-target="true"
|
||||
ic-select-from-response="#main"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-indicator="#page-load-indicator" ic-on-success="afterPage('{{ own_acct.username }}', 'Notifications');">
|
||||
<span class="fa fa-bell-o"></span>
|
||||
{% if preferences.notifications and not preferences.theme.is_brutalist %}
|
||||
<span ic-src="{% url 'notes_count' %}"
|
||||
ic-poll="{{ preferences.poll_frequency }}s"
|
||||
ic-target="this">
|
||||
ic-target="this"
|
||||
ic-select-from-response="#notes-count">
|
||||
<span
|
||||
{% if notifications and notifications != '0' %}
|
||||
class="badge"
|
||||
@ -95,19 +110,36 @@
|
||||
</span>
|
||||
{% elif notifications and preferences.notifications %}
|
||||
<span ic-src="{% url 'notes_count' %}"
|
||||
ic-poll="60s"
|
||||
ic-target="this">
|
||||
ic-poll="{{ preferences.poll_frequency }}"
|
||||
ic-target="this"
|
||||
ic-select-from-response="#notes-count">
|
||||
<span > Notifications ({{ notifications }})</span>
|
||||
</span>
|
||||
{% else %}
|
||||
<span > Notifications</span>
|
||||
{% endif %}
|
||||
</a>
|
||||
<a class="navbar-item" href="{% url "local" %}">
|
||||
<a class="navbar-item" href="{% url "local" %}"
|
||||
ic-get-from="{% url "local" %}"
|
||||
ic-target="#main"
|
||||
ic-scroll-to-target="true"
|
||||
ic-select-from-response="#main"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-indicator="#page-load-indicator"
|
||||
ic-on-success="afterPage('{{ own_acct.username }}', 'Local timeline');">
|
||||
<span class="fa fa-community"></span>
|
||||
<span > Local</span>
|
||||
</a>
|
||||
<a class="navbar-item" href="{% url "fed" %}">
|
||||
<a class="navbar-item" href="{% url "fed" %}"
|
||||
ic-get-from="{% url "fed" %}"
|
||||
ic-target="#main"
|
||||
ic-scroll-to-target="true"
|
||||
ic-select-from-response="#main"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-indicator="#page-load-indicator"
|
||||
ic-on-success="afterPage('{{ own_acct.username }}', 'Federated timeline');">
|
||||
<span class="fa fa-globe"></span>
|
||||
<span > Federated</span>
|
||||
</a>
|
||||
@ -118,17 +150,35 @@
|
||||
<span class="fa fa-edit"> </span>
|
||||
<span > New Toot</span>
|
||||
</a>
|
||||
<a class="navbar-item" href="{% url "search" %}">
|
||||
<a class="navbar-item" href="{% url "search" %}"
|
||||
ic-get-from="{% url "search" %}"
|
||||
ic-target="#main"
|
||||
ic-scroll-to-target="true"
|
||||
ic-select-from-response="#main"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-indicator="#page-load-indicator"
|
||||
ic-on-success="afterPage('{{ own_acct.username }}', 'Search');">
|
||||
<span class="fa fa-search"> </span>
|
||||
<span > Search</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="navbar-end" >
|
||||
<a class="navbar-item" href="{% url "settings" %}">
|
||||
<a class="navbar-item" href="{% url "settings" %}"
|
||||
ic-get-from="{% url "settings" %}"
|
||||
ic-target="#main"
|
||||
ic-scroll-to-target="true"
|
||||
ic-select-from-response="#main"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-indicator="#page-load-indicator"
|
||||
ic-on-success="afterPage('{{ own_acct.username }}', 'Settings');">
|
||||
<span class="fa fa-gear"></span>
|
||||
<span > Settings</span>
|
||||
</a>
|
||||
<a class="navbar-item" href="{% url "logout" %}">
|
||||
<a class="navbar-item" href="{% url "logout" %}"
|
||||
ic-get-from="{% url "logout" %}"
|
||||
ic-confirm="Are you sure you want to log out?">
|
||||
<span class="fa fa-power-off"></span>
|
||||
<span > Log out</span>
|
||||
</a>
|
||||
@ -139,7 +189,7 @@
|
||||
</nav>
|
||||
{% endblock %}
|
||||
|
||||
<section id="main" class="section">
|
||||
<section id="main" class="section" ic-history-elt="true">
|
||||
<div class="container">
|
||||
{% block content %}
|
||||
<h1 class="title">
|
||||
@ -181,6 +231,8 @@
|
||||
<script type="application/javascript">
|
||||
$(document).ready(function () {
|
||||
menuPrepare();
|
||||
$(document).on('handle.onpopstate.ic',
|
||||
restorePlace);
|
||||
});
|
||||
|
||||
{% if preferences.lightbox %}
|
||||
|
@ -1,3 +1,4 @@
|
||||
<span id="notes-count">
|
||||
{% if not preferences.theme.is_brutalist %}
|
||||
<span
|
||||
{% if notifications and notifications != '0' %}
|
||||
@ -9,3 +10,4 @@
|
||||
{% else %}
|
||||
<span > Notifications ({{ notifications }})</span>
|
||||
{% endif %}
|
||||
</span>
|
||||
|
@ -166,7 +166,14 @@
|
||||
{% endif %}
|
||||
{{ toot.visibility }}
|
||||
|
||||
<a class="level-item" href="{% url "thread" toot.id %}">
|
||||
<a class="level-item" href="{% url "thread" toot.id %}"
|
||||
ic-get-from="{% url "thread" toot.id %}"
|
||||
ic-target="#main"
|
||||
ic-select-from-response="#main"
|
||||
ic-push-url="true"
|
||||
ic-on-beforeSend="savePlace"
|
||||
ic-on-success="afterPage('{{ own_acct.username }}', 'thread');"
|
||||
ic-indicator="#page-load-indicator">
|
||||
thread
|
||||
</a>
|
||||
</div>
|
||||
|
@ -401,6 +401,7 @@ def settings(request):
|
||||
account.preferences.notifications = form.cleaned_data['notifications']
|
||||
account.preferences.click_to_load = form.cleaned_data['click_to_load']
|
||||
account.preferences.lightbox = form.cleaned_data['lightbox']
|
||||
account.preferences.poll_frequency = form.cleaned_data['poll_frequency']
|
||||
request.session['timezone'] = account.preferences.timezone
|
||||
account.preferences.save()
|
||||
account.save()
|
||||
|
Loading…
Reference in New Issue
Block a user