aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/common/js/shaare-batch.js
blob: 9f61299327ccc4ca387fd74b2f02e639c84d8fde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
const sendBookmarkForm = (basePath, formElement) => {
  const inputs = formElement
    .querySelectorAll('input[type="text"], textarea, input[type="checkbox"], input[type="hidden"]');

  const formData = new FormData();
  [...inputs].forEach((input) => {
    formData.append(input.getAttribute('name'), input.value);
  });

  return new Promise((resolve, reject) => {
    const xhr = new XMLHttpRequest();
    xhr.open('POST', `${basePath}/admin/shaare`);
    xhr.onload = () => {
      if (xhr.status !== 200) {
        alert(`An error occurred. Return code: ${xhr.status}`);
        reject();
      } else {
        formElement.remove();
        resolve();
      }
    };
    xhr.send(formData);
  });
};

const sendBookmarkDelete = (buttonElement, formElement) => (
  new Promise((resolve, reject) => {
    const xhr = new XMLHttpRequest();
    xhr.open('GET', buttonElement.href);
    xhr.onload = () => {
      if (xhr.status !== 200) {
        alert(`An error occurred. Return code: ${xhr.status}`);
        reject();
      } else {
        formElement.remove();
        resolve();
      }
    };
    xhr.send();
  })
);

const redirectIfEmptyBatch = (basePath, formElements, path) => {
  if (formElements == null || formElements.length === 0) {
    window.location.href = `${basePath}${path}`;
  }
};

(() => {
  const basePath = document.querySelector('input[name="js_base_path"]').value;
  const getForms = () => document.querySelectorAll('form[name="linkform"]');

  const cancelButtons = document.querySelectorAll('[name="cancel-batch-link"]');
  if (cancelButtons != null) {
    [...cancelButtons].forEach((cancelButton) => {
      cancelButton.addEventListener('click', (e) => {
        e.preventDefault();
        e.target.closest('form[name="linkform"]').remove();
        redirectIfEmptyBatch(basePath, getForms(), '/admin/add-shaare');
      });
    });
  }

  const saveButtons = document.querySelectorAll('[name="save_edit"]');
  if (saveButtons != null) {
    [...saveButtons].forEach((saveButton) => {
      saveButton.addEventListener('click', (e) => {
        e.preventDefault();

        const formElement = e.target.closest('form[name="linkform"]');
        sendBookmarkForm(basePath, formElement)
          .then(() => redirectIfEmptyBatch(basePath, getForms(), '/'));
      });
    });
  }

  const saveAllButtons = document.querySelectorAll('[name="save_edit_batch"]');
  if (saveAllButtons != null) {
    [...saveAllButtons].forEach((saveAllButton) => {
      saveAllButton.addEventListener('click', (e) => {
        e.preventDefault();

        const promises = [];
        [...getForms()].forEach((formElement) => {
          promises.push(sendBookmarkForm(basePath, formElement));
        });

        Promise.all(promises).then(() => {
          window.location.href = basePath || '/';
        });
      });
    });
  }

  const deleteButtons = document.querySelectorAll('[name="delete_link"]');
  if (deleteButtons != null) {
    [...deleteButtons].forEach((deleteButton) => {
      deleteButton.addEventListener('click', (e) => {
        e.preventDefault();

        const formElement = e.target.closest('form[name="linkform"]');
        sendBookmarkDelete(e.target, formElement)
          .then(() => redirectIfEmptyBatch(basePath, getForms(), '/'));
      });
    });
  }
})();