Changeset 9050790 for src/main/resources
- Timestamp:
- 03/13/23 23:30:41 (20 months ago)
- Branches:
- master
- Children:
- 8bcd64c
- Parents:
- 46fd0c7
- Location:
- src/main/resources
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/static/js/admin.js
r46fd0c7 r9050790 1 1 $(document).ready(function() { 2 var companies = {}; 2 3 4 $.ajax({ 5 url: "http://localhost:8080/api/business" 6 }).then(function (data) { 7 companies = data; 8 var $el = $("#table_body"); 9 10 $.each(data, function (index, obj) { 11 if(obj.businessStatus == "NEW" || obj.businessStatus == "DEACTIVATED") { 12 $el.append("<tr>\n" + 13 " <th scope=\"row\">" + obj.id + "</th>\n" + 14 " <td>" + obj.companyName + "</td>\n" + 15 " <td>" + obj.owner.firstName + " " + obj.owner.lastName + "</td>\n" + 16 " <td><input class=\"form-check-input\" type=\"checkbox\" value=\"" + obj.id +"\"></td>\n" + 17 " </tr>") 18 } 19 if (obj.businessStatus == "ACTIVE") { 20 $el.append("<tr>\n" + 21 " <th scope=\"row\">" + obj.id + "</th>\n" + 22 " <td>" + obj.companyName + "</td>\n" + 23 " <td>" + obj.owner.firstName + " " + obj.owner.lastName + "</td>\n" + 24 " <td><input class=\"form-check-input\" type=\"checkbox\" checked value=\"" + obj.id +"\"></td>\n" + 25 " </tr>") 26 } 27 }); 28 }); 29 30 $('#save_button').click(function () { 31 $.each($('#table_body tr'), function(index, row) { 32 if(companies[index].businessStatus == "NEW" && $($($(row).children() [3]).children()[0]).is(':checked')) { 33 companies[index]['businessStatus'] = 'ACTIVE'; 34 } 35 if(companies[index].businessStatus == "ACTIVE" && ! $($($(row).children() [3]).children()[0]).is(':checked')) { 36 companies[index]['businessStatus'] = 'DEACTIVATED'; 37 } 38 }); 39 console.log(JSON.stringify(companies)); 40 $.ajax({ 41 url: "http://localhost:8080/api/business", 42 type:"PATCH", 43 data: JSON.stringify(companies), 44 contentType:"application/json; charset=utf-8", 45 dataType: 'text', 46 success: function(succ){ 47 alert( "Updates applied successfully" ); 48 }, 49 error: function(err) { 50 alert(err); 51 } 52 }); 53 event.preventDefault(); 54 }); 3 55 }); -
src/main/resources/static/js/register_business.js
r46fd0c7 r9050790 42 42 // clear the input 43 43 $("#input_service").val(''); 44 45 /*$("#predefined_services").append(46 '<div class="form-check">\n' +47 ' <input class="form-check-input" type="checkbox" checked value=\"' + -1 + '\" id=\"'+ -1 +'\">\n' +48 ' <label class="form-check-label" for=\"' + -1 + '\">\n' +49 input_service +50 ' </label>\n' +51 ' </div>'52 );*/53 44 54 45 $("#predefined_services").append( -
src/main/resources/templates/admin.html
r46fd0c7 r9050790 2 2 <html lang="en"> 3 3 <head> 4 <title>Schedlr</title>4 <title>Schedlr</title> 5 5 6 <meta charset="utf-8"/>7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>6 <meta charset="utf-8"/> 7 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> 8 8 9 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" 10 integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> 9 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" 10 integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous"> 11 <link href="css/admin.css" rel="stylesheet"/> 11 12 </head> 12 13 <body> 13 ADMIN 14 <!-- Navbar start --> 15 <header class="p-3 mb-3 border-bottom"> 16 <div class="container"> 17 <div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start"> 18 Welcome to the admin page 19 </div> 20 </div> 21 </header> 14 22 23 <div class="container"> 15 24 25 <h3>Current companies</h3> 26 <!-- Navbar end --> 27 <table class="table table-striped" id="new_table"> 28 <thead class="thead-dark"> 29 <tr> 30 <th scope="col">Id</th> 31 <th scope="col">Name</th> 32 <th scope="col">Owner</th> 33 <th scope="col">Active</th> 34 </tr> 35 </thead> 36 <tbody id="table_body"> 37 </tbody> 38 </table> 39 40 <!-- Submit button --> 41 <button type="buttom" class="btn btn-primary btn-block mb-4" id="save_button"> 42 Save changes 43 </button> 44 </div> 16 45 <!-- jQuery library --> 17 46 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
Note:
See TracChangeset
for help on using the changeset viewer.