-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
193 lines (168 loc) · 9.2 KB
/
index.php
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<html>
<head>
<title>Ahmad</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
</head>
<body style="background-color: #0F3533">
<div class="ui container">
<div class="ui segment" style="max-width: 800px; margin: 0 auto;">
<h2 class="ui center aligned header""><font color="Teal">Azure Docker Container LAB</h2>
<form class="ui form" style="width: 400px; margin: 0 auto">
<h3 class="ui header"></h3>
<div class="field">
<label>Product Name</label>
<input type="text" name="product_name" placeholder="Product Name" id="new_product_name" required>
</div>
<div class="field">
<label>Product Qty.</label>
<input type="number" name="first-name" placeholder="Product Qty." id="new_product_quantity" required>
</div>
<div class="field">
<label>Product Price</label>
<input type="number" name="first-name" placeholder="Product Price" id="new_product_price" required>
</div>
<div class="field">
<div class="ui grid">
<div class="eight wide column">
<button class="ui button" id="product_add">Add</button>
</div>
<div class="eight wide column" style="text-align: right;">
<button class="ui button" id="product_fetch">Read</button>
</div>
</div>
</div>
</form>
<table class="ui celled table">
<thead>
<tr>
<th class="center">Product Name</th>
<th class="center">Product Qty.</th>
<th class="center">Product Price</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js" integrity="sha256-t8GepnyPmw9t+foMh3mKNvcorqNHamSKtKRxxpUEgFI=" crossorigin="anonymous"></script>
<script type="text/javascript">
let db_url = undefined,
db_user = undefined,
db_pass = undefined;
$('.setting').click(function() {
//get_data();
let connection_string = prompt('connection string');
while (connection_string.length === 0 || connection_string.split(';').length != 3)
connection_string = prompt('connecton string');
let db_arr = connection_string.split(';');
db_url = db_arr[0].split('=')[1];
db_user = db_arr[1].split('=')[1];
db_pass = db_arr[2].split('=')[1];
console.log(db_url, db_user, db_pass);
get_data();
});
$('#product_fetch').click(() => {
get_data();
});
function get_data() {
db = `db_url=${db_url}&db_user=${db_user}&db_pass=${db_pass}`;
$.ajax({
url: `data.php?operation=get&${db}`,
success: function(result) {
if (result.error) {
alert(result.message);
return;
}
$('tbody').empty();
result.products.forEach(function(product) {
$('tbody').append(`
<tr data-id="${product.id}" data-name="${product.name}" data-quantity="${product.quantity}" data-price="${product.price}">
<td class="center">${product.name}</td>
<td class="center">${product.quantity}</td>
<td class="center">${product.price}</td>
<td class="center"><i class="edit green icon"></i></td>
<td class="center"><i class="trash alternate red icon"></i></td>
</tr>
`)
});
},
error: function(error) {
console.log(error);
alert(error.message);
}
});
}
// add
$('form').submit(function(event) {
event.preventDefault();
db = `db_url=${db_url}&db_user=${db_user}&db_pass=${db_pass}`;
$.ajax({
url: `data.php?operation=add&product_name=${$('#new_product_name').val()}&product_quantity=${$('#new_product_quantity').val()}&product_price=${$('#new_product_price').val()}&${db}`,
success: function(result) {
if (result.error) {
alert(result.message);
return;
}
get_data();
},
error: function(error) {
console.log(error);
alert(error.message);
}
});
});
//update
$(document).on('click', '.edit.icon', function() {
let tr = $(this).closest('tr')[0];
let product_id = $(tr).data('id'),
product_name = undefined,
product_quantity = undefined,
product_price = undefined;
while (!product_name || product_name.length === 0)
product_name = prompt('Product name');
while (!product_quantity || isNaN(product_quantity))
product_quantity = prompt('Product quantity');
while (!product_price || isNaN(product_price))
product_price = prompt('Product price');
db = `db_url=${db_url}&db_user=${db_user}&db_pass=${db_pass}`;
$.ajax({
url: `data.php?operation=update&product_id=${product_id}&product_name=${product_name}&product_quantity=${product_quantity}&product_price=${product_price}&${db}`,
success: function(result) {
if (result.error) {
alert(result.message);
return;
}
get_data();
},
error: function(error) {
console.log(error);
alert(error.message);
}
});
});
// delete
$(document).on('click', '.trash.icon', function() {
let tr = $(this).closest('tr')[0]
let product_id = $(tr).data('id')
db = `db_url=${db_url}&db_user=${db_user}&db_pass=${db_pass}`;
$.ajax({
url: `data.php?operation=delete&product_id=${product_id}&${db}`,
success: function(result) {
if (result.error) {
alert(result.message);
return;
}
$(tr).remove();
},
error: function(error) {
console.log(error);
alert(error.message);
}
});
});
</script>
</body>
</html>