aboutsummaryrefslogtreecommitdiff
path: root/interface/routes/index.js
blob: 5b3ad055ea577c932015105061718a979fb8c0c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const express = require("express");
const router = express.Router();
const dashboardController = require("../controllers/dashboard.controller");
const citizensController = require("../controllers/citizens.controller");
const api = require("./api");
const citizensAPI = require("./api/citizens");
const geographyAPI = require("./api/geography");
const transactionsRoute = require("./transactions");

// Setup api routes
router.use("/api", api);
router.use("/api/citizens", citizensAPI);
router.use("/api/geography", geographyAPI);
router.use("/transactions", transactionsRoute);

router.get("/", (req, res) => {
  Promise.all([
    dashboardController.genderDist(),
    dashboardController.ageDist(),
    dashboardController.casteDist(),
    dashboardController.maritalDist(),
    dashboardController.disablePercentage(),
    dashboardController.citizensByDistrict(),
  ]).then((results) => {
    const [
      genderDist,
      ageDist,
      casteDist,
      maritalDist,
      disableDist,
      citizenDist,
    ] = results;
    res.render("index", {
      title: "Home Page",
      genderDist,
      ageDist,
      casteDist,
      maritalDist,
      disableDist,
      citizenDist,
    });
  });
});

router.get("/citizens", (req, res) => {
  // Get the limit and offset from the query string
  const limit = parseInt(req.query.limit, 10) || 10;
  const page = req.query.page ? (req.query.page - 1) * limit : 0;

  // Get the citizens from the database
  Promise.all([
    citizensController.findXCitizens(limit, page),
    citizensController.getCountOfCitizens(),
  ]).then((results) => {
    const [citizens, count] = results;
    res.render("citizens", {
      title: "Citizens",
      citizens,
      count: count[0].count,
    });
  });
});

router.get("/addUser", (req, res) => {
  res.render("addUser", {
    title: "Add User",
  });
});

router.get("/beneficiaries", (req, res) => {
  const limit = parseInt(req.query.limit, 10) || 100;
  const page = req.query.page ? (req.query.page - 1) * limit : 0;
  Promise.all([
    citizensController.getBeneficiaries(limit, page),
    citizensController.getCountOfCitizens(),
  ]).then((results) => {
    const [beneficiaries, count] = results;
    res.render("beneficiaries", {
      title: "Beneficiaries",
      beneficiaries,
      count: count[0].count,
    });
  });
});

// export the router
module.exports = router;