index.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. async function download() {
  2. let id = document.getElementById('select-game').value
  3. if (id.length === 0){
  4. return
  5. }
  6. document.getElementById('loading-field').style.display = 'inline-block'
  7. let response = await $.get(`/api/get_images/${id}`);
  8. let images = response.data;
  9. document.getElementById('loading-field').style.display = 'none'
  10. let zip = new JSZip();
  11. // Add csv file
  12. let csv_content = html_to_csv(id);
  13. zip.file("game.csv", csv_content);
  14. // Generate a directory within the Zip file structure
  15. let img = zip.folder("images");
  16. // Add a file to the directory, in this case an image with data URI as contents
  17. for (let [key, game] of Object.entries(images)) {
  18. for (let sub_key in game) {
  19. let url = game[sub_key]
  20. let idx = url.indexOf('base64,') + 'base64,'.length; // or = 28 if you're sure about the prefix
  21. let content = game[sub_key].substring(idx);
  22. img.file(`Game-${key}_Image-${parseInt(sub_key) + 1}.png`, content, {base64: true});
  23. }
  24. }
  25. // Generate the zip file asynchronously
  26. zip.generateAsync({type: "blob"})
  27. .then(function (content) {
  28. // Force down of the Zip file
  29. saveAs(content, `Game_${id}.zip`);
  30. });
  31. }
  32. /**
  33. * EXPORT FUNCTION
  34. */
  35. function html_to_csv(id) {
  36. let data = [];
  37. let rows = document.querySelectorAll("#table tr");
  38. for (let i = 0; i < rows.length; i++) {
  39. let row = [], cols = rows[i].querySelectorAll("td, th");
  40. //only select rows from selected game id or if its the header row
  41. if (cols[0].innerText !== id && i !== 0){
  42. continue
  43. }
  44. for (let j = 0; j < cols.length; j++) {
  45. row.push(cols[j].innerText);
  46. }
  47. data.push(row.join(";"));
  48. }
  49. let csv = data.join("\n");
  50. return csv
  51. }