| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- // @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
- 'use strict';
- /* globals context */
- let loading = false;
- let dnd_successful = false;
- function dragend_process(t) {
- t.setAttribute('draggable', 'false');
- if (loading) {
- setTimeout(function () {
- dragend_process(t);
- }, 50);
- return;
- }
- if (!dnd_successful) {
- t.style.display = '';
- t.style.opacity = '';
- t.setAttribute('draggable', 'true');
- } else {
- const p = t.parentElement;
- t.remove();
- if (p.childElementCount <= 1) {
- p.insertAdjacentHTML('afterbegin',
- '<li class="item feed disabled" dropzone="move"><div class="alert-warn">' + context.i18n.category_empty + '</div></li>');
- }
- }
- }
- let dragFeedId = '';
- let dragHtml = '';
- function init_draggable() {
- if (!window.context) {
- if (window.console) {
- console.log('FreshRSS category waiting for JS…');
- }
- setTimeout(init_draggable, 50);
- return;
- }
- const draggable = '[draggable="true"]';
- const dropzone = '[dropzone="move"]';
- const dropSection = document.querySelector('.drop-section');
- dropSection.ondragstart = function (ev) {
- const li = ev.target.closest ? ev.target.closest(draggable) : null;
- if (li) {
- const drag = ev.target.closest('[draggable]');
- ev.dataTransfer.effectAllowed = 'move';
- dragHtml = drag.outerHTML;
- dragFeedId = drag.getAttribute('data-feed-id');
- ev.dataTransfer.setData('text', dragFeedId);
- drag.style.opacity = 0.3;
- dnd_successful = false;
- }
- };
- dropSection.ondragend = function (ev) {
- const li = ev.target.closest ? ev.target.closest(draggable) : null;
- if (li) {
- dragend_process(li);
- }
- };
- dropSection.ondragenter = function (ev) {
- const li = ev.target.closest ? ev.target.closest(dropzone) : null;
- if (li) {
- li.classList.add('drag-hover');
- return false;
- }
- };
- dropSection.onddragleave = function (ev) {
- const li = ev.target.closest ? ev.target.closest(dropzone) : null;
- if (li) {
- const scroll_top = document.documentElement.scrollTop;
- const top = li.offsetTop;
- const left = li.offsetLeft;
- const right = left + li.clientWidth;
- const bottom = top + li.clientHeight;
- const mouse_x = ev.screenX;
- const mouse_y = ev.clientY + scroll_top;
- if (left <= mouse_x && mouse_x <= right &&
- top <= mouse_y && mouse_y <= bottom) {
- // HACK because dragleave is triggered when hovering children!
- return;
- }
- li.classList.remove('drag-hover');
- }
- };
- dropSection.ondragover = function (ev) {
- const li = ev.target.closest ? ev.target.closest(dropzone) : null;
- if (li) {
- ev.dataTransfer.dropEffect = 'move';
- return false;
- }
- };
- dropSection.ondrop = function (ev) {
- const li = ev.target.closest ? ev.target.closest(dropzone) : null;
- if (li) {
- loading = true;
- const req = new XMLHttpRequest();
- req.open('POST', './?c=feed&a=move', true);
- req.responseType = 'json';
- req.onload = function (e) {
- if (this.status == 200) {
- li.insertAdjacentHTML('afterend', dragHtml);
- if (li.classList.contains('disabled')) {
- li.remove();
- }
- dnd_successful = true;
- }
- };
- req.onloadend = function (e) {
- loading = false;
- dragFeedId = '';
- dragHtml = '';
- };
- req.setRequestHeader('Content-Type', 'application/json');
- req.send(JSON.stringify({
- f_id: dragFeedId,
- c_id: li.parentElement.getAttribute('data-cat-id'),
- _csrf: context.csrf,
- }));
- li.classList.remove('drag-hover');
- return false;
- }
- };
- }
- function archiving() {
- const slider = document.getElementById('slider');
- slider.addEventListener('change', function (e) {
- if (e.target.id === 'use_default_purge_options') {
- slider.querySelectorAll('.archiving').forEach(function (element) {
- element.hidden = e.target.checked;
- if (!e.target.checked) element.style.visibility = 'visible'; // Help for Edge 44
- });
- }
- });
- slider.addEventListener('click', function (e) {
- if (e.target.closest('button[type=reset]')) {
- const archiving = document.getElementById('use_default_purge_options');
- if (archiving) {
- slider.querySelectorAll('.archiving').forEach(function (element) {
- element.hidden = archiving.getAttribute('data-leave-validation') == 1;
- });
- }
- }
- });
- }
- if (document.readyState && document.readyState !== 'loading') {
- init_draggable();
- archiving();
- } else if (document.addEventListener) {
- document.addEventListener('DOMContentLoaded', function () {
- init_draggable();
- archiving();
- }, false);
- }
- // @license-end
|