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.

39 lines
1.3 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()
  13. {
  14. return new Promise(function(resolve, reject)
  15. {
  16. var content = "<br><br><div class=\"container\">";
  17. content += "<div class=\"list-group\">";
  18. content += " <a href=\"#\" class=\"list-group-item list-group-item-action flex-column align-items-start active\">\n" +
  19. " <h5 class=\"mb-1\">Categories</h5>\n" +
  20. " </a>";
  21. sql.getCategories().then(function(categories)
  22. {
  23. categories.forEach(function(cat)
  24. {
  25. content += "<a class=\"list-group-item\" href='/category/" + cat.url + "'>" + cat.name + "<br></a>";
  26. });
  27. content += "</div></div><br>";
  28. resolve(content);
  29. }).catch(function(error)
  30. {
  31. reject(error);
  32. });
  33. });
  34. }
  35. };