Last modified by XWikiGuest on 2026/03/11 21:04

From version 6.1
edited by XWikiGuest
on 2026/03/11 20:30
Change comment: There is no comment for this version
To version 10.1
edited by XWikiGuest
on 2026/03/11 20:44
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -78,6 +78,7 @@
78 78  </style>
79 79  
80 80  <div id="ldsf-wrapper">
81 + <button id="ldsf-test-btn" style="background:#df691a;color:#fff;padding:8px 16px;border:none;border-radius:4px;cursor:pointer;margin-bottom:10px;">TEST KLIK</button>
81 81   <div id="ldsf-status">Laden...</div>
82 82   <div id="ldsf-bookmarks"></div>
83 83   <div id="ldsf-viewer-container">
... ... @@ -128,36 +128,66 @@
128 128  
129 129  function ldsfLoadBookmarks() {
130 130   var apiUrl = LDSF_LINKDING_URL + '?limit=' + LDSF_COUNT + '&q=%23' + encodeURIComponent(LDSF_TAG);
132 + console.log('Fetching bookmarks:', apiUrl);
131 131   fetch(apiUrl, { headers: { 'Authorization': 'Token ' + LDSF_TOKEN } })
132 - .then(function(r) { return r.json(); })
134 + .then(function(r) {
135 + console.log('Linkding response status:', r.status, r.headers.get('content-type'));
136 + if (!r.ok) return r.text().then(function(t) { throw new Error('HTTP ' + r.status + ': ' + t.substring(0, 200)); });
137 + return r.json();
138 + })
133 133   .then(function(data) {
134 134   var total = data.count || 0;
135 135   var archiveCount = 0;
136 136   var container = document.getElementById('ldsf-bookmarks');
137 - var html = '<ul>';
138 - (data.results || []).forEach(function(bm, idx) {
143 + var ul = document.createElement('ul');
144 +
145 + (data.results || []).forEach(function(bm) {
139 139   var title = bm.title || bm.website_title || bm.url;
140 140   var fname = ldsfFindArchive(bm.url);
141 - if (fname) { archiveCount++; ldsf_archiveMap[idx] = fname; }
142 - html += '<li>';
143 - if (fname) html += '<button class="sf-btn" onclick="ldsfOpen(' + idx + ')" title="Archief bekijken">&#128196;</button>';
144 - html += '<a href="' + bm.url + '" target="_blank">' + title + '</a></li>';
148 + if (fname) archiveCount++;
149 +
150 + var li = document.createElement('li');
151 +
152 + if (fname) {
153 + var btn = document.createElement('button');
154 + btn.className = 'sf-btn';
155 + btn.title = 'Archief bekijken';
156 + btn.textContent = '\uD83D\uDCC4';
157 + btn.addEventListener('click', (function(f) {
158 + return function() { ldsfShowArchive(f); };
159 + })(fname));
160 + li.appendChild(btn);
161 + }
162 +
163 + var a = document.createElement('a');
164 + a.href = bm.url;
165 + a.target = '_blank';
166 + a.textContent = title;
167 + li.appendChild(a);
168 + ul.appendChild(li);
145 145   });
146 - html += '</ul>';
147 - container.innerHTML = html;
170 +
171 + container.innerHTML = '';
172 + container.appendChild(ul);
148 148   document.getElementById('ldsf-status').textContent = total + ' bookmarks, ' + archiveCount + ' met archief';
149 149   })
150 150   .catch(function(err) { document.getElementById('ldsf-status').textContent = 'Fout: ' + err.message; });
151 151  }
152 152  
178 +// Debug test button
179 +document.getElementById('ldsf-test-btn').addEventListener('click', function() {
180 + alert('archiveMap: ' + JSON.stringify(ldsf_archiveMap) + '\nurlToFile: ' + JSON.stringify(ldsf_urlToFile));
181 +});
182 +
153 153  // Load index then bookmarks
154 154  fetch(LDSF_WEBDAV + 'index.json', { headers: { 'Authorization': LDSF_AUTH } })
155 155  .then(function(r) { return r.ok ? r.json() : {}; })
156 156  .then(function(idx) {
187 + console.log('SingleFile index loaded:', idx);
157 157   Object.keys(idx).forEach(function(f) { ldsf_urlToFile[idx[f]] = f; });
158 158   ldsfLoadBookmarks();
159 159  })
160 -.catch(function() { ldsfLoadBookmarks(); });
191 +.catch(function(err) { console.log('SingleFile index FAILED:', err); ldsfLoadBookmarks(); });
161 161  </script>
162 162  {{/html}}
163 163