-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebts_pages.cpp
More file actions
96 lines (70 loc) · 2.53 KB
/
debts_pages.cpp
File metadata and controls
96 lines (70 loc) · 2.53 KB
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
88
89
90
91
92
93
94
95
96
//=======================================================================
// Copyright (c) 2013-2020 Baptiste Wicht.
// Distributed under the terms of the MIT License.
// (See accompanying file LICENSE or copy at
// http://opensource.org/licenses/MIT)
//=======================================================================
#include "debts.hpp"
#include "pages/html_writer.hpp"
#include "pages/debts_pages.hpp"
#include "http.hpp"
using namespace budget;
namespace {
void add_direction_picker(budget::writer& w, std::string_view default_value = "") {
w << R"=====(
<div class="form-group">
<label for="input_direction">Direction</label>
<select class="form-control" id="input_direction" name="input_direction">
)=====";
if ("to" == default_value) {
w << "<option selected value=\"to\">To</option>";
} else {
w << "<option value=\"to\">To</option>";
}
if ("from" == default_value) {
w << "<option selected value=\"from\">From</option>";
} else {
w << "<option value=\"from\">From</option>";
}
w << R"=====(
</select>
</div>
)=====";
}
} // end of anonymous namespace
void budget::list_debts_page(html_writer& w) {
budget::list_debts(w);
make_tables_sortable(w);
}
void budget::all_debts_page(html_writer& w) {
budget::display_all_debts(w);
make_tables_sortable(w);
}
void budget::add_debts_page(html_writer& w) {
w << title_begin << "New Debt" << title_end;
form_begin(w, "/api/debts/add/", "/debts/add/");
add_direction_picker(w);
add_name_picker(w);
add_amount_picker(w);
add_title_picker(w);
form_end(w);
}
void budget::edit_debts_page(html_writer& w, const httplib::Request& req) {
if (!validate_parameters(w, req, {"input_id", "back_page"})) {
return;
}
auto input_id = req.get_param_value("input_id");
if (!debt_exists(budget::to_number<size_t>(input_id))) {
return display_error_message(w, "The debt {} does not exist", input_id);
}
auto back_page = req.get_param_value("back_page");
w << title_begin << "Edit Debt " << input_id << title_end;
form_begin_edit(w, "/api/debts/edit/", back_page, input_id);
auto debt = debt_get(budget::to_number<size_t>(input_id));
add_direction_picker(w, debt.direction ? "to" : "from");
add_name_picker(w, debt.name);
add_amount_picker(w, budget::money_to_string(debt.amount));
add_title_picker(w, debt.title);
add_paid_picker(w, debt.state == 1);
form_end(w);
}