feat(web): add database save, reload and remove buttons handling to TDBMS interface

This commit is contained in:
Masahiko AMANO 2023-02-15 21:34:43 +03:00
parent 5b36a31b84
commit 873ecf02ff
2 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,52 @@
$(document).on("click", "#btn-save", function (e) {
e.preventDefault();
if (db_name == null) {
return;
}
let resp = tdb_query(db_name, 4);
if (resp.status) {
alert("Successfully saved!");
} else {
alert("Something went wrong!");
}
});
$(document).on("click", "#btn-reload", function (e) {
e.preventDefault();
if (db_name == null) {
return;
}
if (!confirm("All unsaved changes will be lost permanently. Are you sure?")) {
return;
}
let resp = tdb_query(db_name, 2);
if (resp.status) {
localStorage["sasahyou_mts"] = sasahyou_mts = 0;
localStorage["sappyou_mts"] = sappyou_mts = 0;
localStorage["shoppyou_mts"] = shoppyou_mts = 0;
alert("Successfully reloaded database!");
} else {
alert("Something went wrong!");
}
});
$(document).on("click", "#btn-remove", function (e) {
e.preventDefault();
if (db_name == null) {
return;
}
if (!confirm(`Are you sure want to remove database "${db_name}"?`)) {
return;
}
let resp = tdb_query(db_name, 1);
if (resp.status) {
localStorage.removeItem("db_name");
db_name = null;
localStorage["sasahyou_mts"] = sasahyou_mts = 0;
localStorage["sappyou_mts"] = sappyou_mts = 0;
localStorage["shoppyou_mts"] = shoppyou_mts = 0;
alert("Successfully removed database!");
} else {
alert("Something went wrong!");
}
});

View File

@ -26,6 +26,7 @@
<script src="/js/jquery-3.6.0.min.js"></script> <script src="/js/jquery-3.6.0.min.js"></script>
<script src="/js/tdbms.js"></script> <script src="/js/tdbms.js"></script>
<script src="/js/tdbms-load.js"></script> <script src="/js/tdbms-load.js"></script>
<script src="/js/tdbms-database.js"></script>
</head> </head>
<body> <body>
<h1>Tanabata Database Management</h1> <h1>Tanabata Database Management</h1>