panel.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. window.onload = function () {
  2. if(!localStorage.admintoken){
  3. askForToken();
  4. return;
  5. }
  6. var dashboard = document.getElementById('dashboard');
  7. var page = document.getElementById('page');
  8. dashboard.style.display = 'block';
  9. prepareMenu();
  10. function askForToken(){
  11. document.getElementById('tokenSubmit').addEventListener('click', function(){
  12. checkToken();
  13. });
  14. function checkToken(){
  15. var xhr = new XMLHttpRequest();
  16. xhr.onreadystatechange = function() {
  17. if (xhr.readyState == XMLHttpRequest.DONE) {
  18. // xhr.responseText
  19. }
  20. }
  21. xhr.open('POST', '/api/info', true);
  22. xhr.send(null);
  23. }
  24. }
  25. function prepareMenu(){
  26. document.getElementById('itemUploads').addEventListener('click', function(){
  27. getUploads();
  28. });
  29. document.getElementById('itemManageGallery').addEventListener('click', function(){
  30. getGalleries();
  31. });
  32. }
  33. function getUploads(){
  34. page.innerHTML = '';
  35. var xhr = new XMLHttpRequest();
  36. xhr.onreadystatechange = function() {
  37. if(xhr.readyState == XMLHttpRequest.DONE){
  38. if(xhr.responseText !== 'not-authorized'){
  39. var json = JSON.parse(xhr.responseText);
  40. var container = document.createElement('div');
  41. container.innerHTML = `
  42. <table class="table">
  43. <thead>
  44. <tr>
  45. <th>File</th>
  46. <th>Gallery</th>
  47. <th>Date</th>
  48. </tr>
  49. </thead>
  50. <tbody id="table">
  51. </tbody>
  52. </table>`;
  53. page.appendChild(container);
  54. var table = document.getElementById('table');
  55. for(var item of json){
  56. var tr = document.createElement('tr');
  57. tr.innerHTML = `
  58. <tr>
  59. <th><a href="${item.file}" target="_blank">${item.file}</a></th>
  60. <th>${item.gallery}</th>
  61. <td>${item.date}</td>
  62. </tr>
  63. `;
  64. table.appendChild(tr);
  65. }
  66. }
  67. }
  68. }
  69. xhr.open('GET', '/api/uploads', true);
  70. xhr.setRequestHeader('auth', localStorage.token);
  71. xhr.send(null);
  72. }
  73. function getContent(item, value){
  74. let endpoint;
  75. if(item === 'uploads') endpoint = '/api/uploads'
  76. if(item === 'galleries') endpoint = '/api/uploads'
  77. }
  78. }