Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.5 KiB

  1. const Promise = require('promise');
  2. const sql = require('../utils/sql');
  3. module.exports=
  4. {
  5. /**
  6. * Responsible for querying the database and displaying all
  7. * categories that the blog has in the sidebar
  8. *
  9. * @param res
  10. * @return {*|Promise}
  11. */
  12. main: function(res)
  13. {
  14. return new Promise(function(resolve, reject)
  15. {
  16. res.write("<div class=\"w3-card w3-margin w3-margin-top\">");
  17. res.write(" <div class=\"w3-container w3-padding\">\n" +
  18. "\n" +
  19. " <h3>Categories</h3>\n" +
  20. "\n" +
  21. " </div>");
  22. res.write("<div class=\"w3-container w3-white\">");
  23. res.write("<ol>");
  24. sql.getCategories().then(function(categories)
  25. {
  26. console.log(categories[0].name);
  27. categories.forEach(function(cat)
  28. {
  29. //res.write(cat.name);
  30. console.log(cat);
  31. res.write("<a href=\"#\#\" class=\"w3-bar-item w3-button\" style=\"width=100%\">" + cat.name + "</a>");
  32. res.write("<br />");
  33. });
  34. res.write("</ol>");
  35. res.write("</div></div>");
  36. resolve();
  37. })
  38. });
  39. }
  40. };