add /cash ui

This commit is contained in:
Nikola Petrov 2023-10-04 22:45:02 +02:00
parent 63346de8c1
commit cd169641af
4 changed files with 46 additions and 36 deletions

View File

@ -3,11 +3,8 @@ module.exports = {
list: async function (req, res) { list: async function (req, res) {
try { try {
const transactions = await cashTransactionModel.find() const transactions = await cashTransactionModel.find({}, { _id: 0, __v: 0 });
const data = { return res.json(transactions);
messages: transactions
};
return res.render('cash', data);
} catch (err) { } catch (err) {
return res.status(500).json({ return res.status(500).json({
message: 'Error when getting transactions.', message: 'Error when getting transactions.',
@ -19,6 +16,8 @@ module.exports = {
create: async function (req, res) { create: async function (req, res) {
const rawString = req.body.messageBody; const rawString = req.body.messageBody;
if (rawString == "") return res.status(400).json({ message: "empty string" });
const transaction = new cashTransactionModel({ const transaction = new cashTransactionModel({
raw: rawString, raw: rawString,
day: 0, day: 0,

View File

@ -2,7 +2,7 @@ var express = require('express');
var router = express.Router(); var router = express.Router();
const cashTransaction = require('../../controllers/cashTransactionController.js') const cashTransaction = require('../../controllers/cashTransactionController.js')
router.get('/', cashTransaction.list); router.post('/list', cashTransaction.list);
router.post('/', cashTransaction.create); router.post('/', cashTransaction.create);

View File

@ -18,6 +18,10 @@ router.get('/list', function (req, res, next) {
res.render('list', { title: 'List' }); res.render('list', { title: 'List' });
}); });
router.get('/cash', function (req, res, next) {
res.render('cash', { title: 'Cash' });
});
const userRouter = require('./user'); const userRouter = require('./user');
//router.use('/user', userRouter); //router.use('/user', userRouter);

View File

@ -1,32 +1,39 @@
<h1>Message:</h1> <script src="/assets/build/cash.js"></script>
<table class="table"> <header>
<thead> <nav class="navbar navbar-expand-md navbar-dark bg-dark">
<tr> <div class="container-fluid">
<th scope="col">#</th> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
<th scope="col">Day</th> aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<th scope="col">Month</th> <span class="navbar-toggler-icon"></span>
<th scope="col">Year</th> </button>
<th scope="col">Amount</th> <div class="collapse navbar-collapse" id="navbarSupportedContent">
<th scope="col">Type</th> <form class="d-flex" action="" id="myform">
<th scope="col">Company</th> <input class="form-control me-2" type="password" name="password" id="pass" placeholder="password">
<th scope="col">Raw</th> <input class="btn btn-outline-success" type="submit" value="Submit">
</tr> </form>
</thead> </div>
<tbody> </div>
</nav>
</header>
{{#each messages}} <main class="bg-body-tertiary pt-5 pb-5">
<tr> <div class="container">
<th scope="row">{{@index}}</th> <table class="table">
<td>{{day}}</td> <thead>
<td>{{month}}</td> <tr>
<td>{{year}}</td> <th scope="col">#</th>
<td>{{amount}} EUR</td> <th scope="col">Day</th>
<td>{{type}}</td> <th scope="col">Month</th>
<td>{{company}}</td> <th scope="col">Year</th>
<td>{{raw}}</td> <th scope="col">Amount</th>
</tr> <th scope="col">Type</th>
{{/each}} <th scope="col">Company</th>
<th scope="col">Raw</th>
</tbody> </tr>
</table> </thead>
<tbody id="tbody">
</tbody>
</table>
</div>
</main>