forked from datnv-0906/Sun-Hackathon-Underfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conflict.html
365 lines (315 loc) · 11.7 KB
/
conflict.html
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<!doctype html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<title>RnD.Underfit's Drugs' Interactions Lookup</title>
<script type="text/javascript">
function submit() {
let form = document.getElementsByTagName("form")[0];
let elem = document.getElementById('output');
let drugs = [];
let files = [];
// vỉ thuốc là 1, đơn thuốc là 0
let imgtype = [];
let value = "";
for (let e of form.elements) {
if (e.tagName === "INPUT") {
if (e.type === "text") {
value = e.value;
if (e.value !== "")
drugs.push(value);
}
if (e.type === "file") {
value = e.value;
if (e.value !== "") {
imgtype.push(e.nextElementSibling.classList.contains("actual-pill"));
files.push(value);
}
}
}
}
elem.innerHTML = "các thuốc đã được nhập:<ul>";
for (value of drugs)
elem.innerHTML += ("<li>"+value+"</li>");
elem.innerHTML += "</ul><br>"
elem.innerHTML += "các ảnh đã được nhập:<ul>";
for (value of files)
elem.innerHTML += ("<li>"+value+"</li>");
elem.innerHTML += "</ul>";
}
function on_hover() {
let elems = document.getElementsByClassName('selected');
for (let elem of elems) {
elem.style["box-shadow"] = "none";
elem.style.opacity = 0.3;
}
elem = document.getElementsByClassName('unselected')[0];
elem.style["box-shadow"] = "0 2px 0px 0px red";
}
function on_out() {
let elems = document.getElementsByClassName('selected');
for (let elem of elems) {
elem.style["box-shadow"] = "0 2px 0px 0px red";
elem.style.opacity = 1;
}
elem = document.getElementsByClassName('unselected')[0];
elem.style["box-shadow"] = "none";
}
function add_row(elem, box) {
elem.removeAttribute("onclick");
elem.setAttribute("onclick", "delete_row(this)");
elem.innerHTML = "x";
let container = document.createElement("div");
container.classList.add("row");
container.style.margin = "1em 0em"
if (box === "text-entry") {
container.innerHTML =
`<input type="text" class="form-control col-md" name="drug_name" placeholder="nhập tên thuốc vào đây." autofocus>
<button type="button" class="btn col-md-auto" style="margin-left:1em" onclick="add_row(this, '` + box + "')\">+</button>";
}
if (box === "image-entry") {
container.innerHTML =
`
<button type="button" class="btn-primary col-md-6" onclick="pic_choose(this)">Chọn ảnh tải lên</button>
<input type="file" style="display:none" accept="image/*" onchange="upload_to_cancel(this)"/>
<button type="button" class="btn-secondary col-md prescription" onclick="toggle_type(this)" style="margin-left:1em">Đơn thuốc</button>
<button type="button" class="btn col-md-auto" style="margin-left:1em;" onclick="add_row(this, 'image-entry')">+</button>
`;
}
document.getElementById(box).appendChild(container);
if (box === "image-entry") {
container = document.createElement("img");
container.classList.add("row");
document.getElementById(box).appendChild(container);
}
}
function delete_row(elem) {
elem.parentNode.outerHTML = "";
}
function pic_choose(elem) {
elem.nextElementSibling.click();
}
function toggle_type(elem) {
if (elem.classList.contains("prescription")) {
elem.classList.remove("prescription");
elem.classList.add("actual-pill");
elem.innerText = "Vỉ/viên thuốc"
}
else {
elem.classList.add("prescription");
elem.classList.remove("actual-pill");
elem.innerText = "Đơn thuốc"
}
}
function upload_to_cancel(elem) {
let btn = elem.previousElementSibling;
btn.classList.remove("btn-primary");
btn.classList.add("btn-danger");
btn.innerText = "Huỷ ảnh đã nhận";
btn.removeAttribute("onclick");
btn.setAttribute("onclick", "cancel_to_upload(this)");
btn.setAttribute("onmouseenter", "show_image(this)");
btn.setAttribute("onmouseleave", "hide_image(this)");
btn.parentNode.nextElementSibling.src = URL.createObjectURL(elem.files[0]);
}
function cancel_to_upload(elem) {
elem.nextElementSibling.value = "";
elem.classList.add("btn-primary");
elem.classList.remove("btn-danger");
elem.innerText = "Chọn ảnh tải lên";
elem.removeAttribute("onclick");
elem.setAttribute("onclick", "pic_choose(this)");
elem.removeAttribute("onmouseleave");
elem.removeAttribute("onmouseenter");
let img = elem.parentNode.nextElementSibling
img.src = "";
img.style.opacity = 0;
}
function show_image(elem) {
elem.parentNode.nextElementSibling.style.opacity = 1;
}
function hide_image(elem) {
elem.parentNode.nextElementSibling.style.opacity = 0;
}
</script>
</head>
<style>
h1 {
text-align: center;
margin-top: 50px;
margin-bottom: 20px;
font-size: 40px;
}
code {
display: block;
white-space: pre-wrap
}
.btn {
border: 1px solid black;
}
.btn-submit:hover {
background-position: right center;
color: darkslategrey;
}
.btn-submit {
transition: 0.5s;
background-size: 200% auto;
background-image: linear-gradient(to right, #84fab0 0%, #8fd3f4 51%, #84fab0 100%);
color: black;
border: none;
margin: 1em 0em;
}
.options {
padding: 1em;
border-radius: 5px;
transition: opacity .2s, box-shadow .2s;
}
.selected {
box-shadow: 0 2px 0px 0px red;
margin-right: 1em;
}
.unselected:hover {
cursor: pointer;
}
img {
width: 100%;
height: auto;
max-height: auto;
border-radius: 5%;
position: absolute;
z-index: 1000;
opacity: 0;
box-shadow: 0 0 10px 1px #2f2f2f;
transition: opacity .2s;
pointer-events: none;
}
.disclaimer {
margin-top: 2em;
padding: 1.5em 2em 1em 2em;
border-radius: 2em;
background-color: #eeeeee;
margin-bottom: 2em;
}
table {
width: 100%;
}
th, td {
padding: 10px;
border-top: 1px solid #ccc;
}
.color-major::before {
font-family: "Webdings";
content: "= ";
color: red;
}
.color-major {
color: #b71c1c;
}
.color-moderate::before {
font-family: "Webdings";
content: "= ";
color: #f57c00;
}
.color-moderate {
color: #a23900;
}
.color-minor::before {
font-family: "Webdings";
content: "= ";
color: #fbc02d;
}
.color-minor {
color: #8a6600;
}
.color-unknown::before {
font-family: "Webdings";
content: "= ";
color: grey;
}
.color-unknown {
color: #484848;
}
#image-entry {
padding-right: 20px;
border-right: 1px solid #ccc;
}
#text-entry {
padding-left: 20px;
}
</style>
<html>
<body>
<h1>
Sun* RnD.Underfit's Health Portal
</h1>
<div class="container">
<div class="row justify-content-center" style="padding-bottom:2em;">
<div class="col-md-auto options selected">
<code>Tìm tương tác thuốc</code>
 theo danh sách thuốc hoặc ảnh.<br>
</div>
<div class="col-md-auto options unselected" onmouseenter="on_hover()" onmouseleave="on_out()" onclick="window.location.href='sidefx.html'">
<code>Tìm tác dụng phụ</code>
 theo một tên thuốc bất kỳ.<br>
</div>
</div>
<form action="javascript:submit()" method="POST">
<div class="row">
<div id="image-entry" class="col-md-6">
<div class="row">Tải lên ảnh thuốc hoặc đơn thuốc...</div>
<div class="row" style="margin: 1em 0em;">
<button type="button" class="btn-primary col-md-6" onclick="pic_choose(this)">Chọn ảnh tải lên</button>
<input type="file" style="display:none" accept="image/*" onchange="upload_to_cancel(this)"/>
<button type="button" class="btn-secondary col-md prescription" onclick="toggle_type(this)" style="margin-left:1em">Đơn thuốc</button>
<button type="button" class="btn col-md-auto" style="margin-left:1em;" onclick="add_row(this, 'image-entry')">+</button>
</div>
<img class="row"></img>
</div>
<div id="text-entry" class="col-md-6">
<div class="row" style="padding-left:20px">...hoặc nhập tên thuốc:</div>
<div class="row" style="margin: 1em 0em;">
<input type="text" class="form-control col-md" name="drug_name" placeholder="nhập tên thuốc vào đây." autofocus>
<button type="button" class="btn col-md-auto" style="margin-left:1em;" onclick="add_row(this, 'text-entry')">+</button>
</div>
</div>
</div>
<div class="row justify-content-center">
<button type="submit" class="btn btn-submit col-md-auto"> Nhập lên </button>
</div>
</form>
<h4>Output:</h4>
<div class="col-md-9 offset-md-1">
<code id="output">Các tương tác thuốc sẽ được liệt kê ra đây.</code>
</div>
<div class="disclaimer">
<h4>Phân loại tương tác thuốc:</h4>
<caption>Các phân loại trên đây chỉ dùng để tham khảo. Tương tác giữa các loại thuốc với từng cá nhân cụ thể rất khó để có thể xác định được chính xác. Luôn luôn xin tư vấn của nhà cung cấp dịch vụ sức khoẻ trước khi bắt đầu hay kết thúc một liều thuốc.</caption>
<table style="margin-top: 10px">
<tr>
<th scope="row" class="text-nowrap">
<span class="color-major">Nghiêm trọng</span>
</th>
<td>Tương tác đáng kể. Tránh sử dụng cùng lúc nếu có thể.</td>
</tr>
<tr>
<th scope="row" class="text-nowrap">
<span class="color-moderate">Tương đối</span>
</th>
<td>Tương tác tương đối. Chỉ nên sử dụng cùng lúc khi cấp thiết.</td>
</tr>
<tr>
<th scope="row" class="text-nowrap">
<span class="color-minor">Nhẹ</span>
</th>
<td>Tương tác thuốc nhẹ. Cần tối thiểu rủi ro, có thể đổi thuốc, hoặc/và phòng ngừa tương tác.</td>
</tr>
<tr>
<th scope="row" class="text-nowrap">
<span class="color-unknown">Không biết</span>
</th>
<td>Không tồn tại thông tin liên quan đên tương tác.</td>
</tr>
</table>
</div>
</div>
</body>
</html>