_
This commit is contained in:
parent
954ef22ca9
commit
526315d65c
@ -1,14 +1,22 @@
|
||||
|
||||
$(document).ready(function() {
|
||||
let base_url = "http://localhost:8000/";
|
||||
let base_url = "http://lohost:8000/";
|
||||
let ids_list = [];
|
||||
|
||||
$.get("ip.txt", function(data) {
|
||||
console.log(data);
|
||||
base_url = `http://${data}:8000/`;
|
||||
init_wesite();
|
||||
});
|
||||
|
||||
function append_element(image_urls, descriptions, title, id) {
|
||||
ids_list.push(id);
|
||||
|
||||
let template = `
|
||||
<div class="wsList hey">
|
||||
<div></div>
|
||||
<img src="${image_urls[0]}" alt="#" class="obrazok_small">
|
||||
<div class="list_item_holder">
|
||||
<div id="list_item_holder${id}" class="list_item_holder">
|
||||
<div class="title${id}">${title}</div>
|
||||
<div class="short_description">${descriptions[0]}</div>
|
||||
</div>
|
||||
@ -23,7 +31,7 @@ $(document).ready(function() {
|
||||
<div class="info_small"></div>
|
||||
</div>
|
||||
<!-- Veľké zobrazenie -->
|
||||
<div class="big">
|
||||
<div id="big${id}" class="big">
|
||||
<div class="imgBig"><img class="obrazok_big" src="${image_urls[1]}" alt="#"></div>
|
||||
<div class="text_big">${descriptions[1]}</div>
|
||||
<div class="sensors_big">
|
||||
@ -54,8 +62,23 @@ $(document).ready(function() {
|
||||
id.a();
|
||||
});
|
||||
|
||||
$(".list_item_holder").click(function() {
|
||||
let id = this.id;
|
||||
id = id.slice(id.length-1, id.length);
|
||||
|
||||
clear_big_display();
|
||||
$(`#big${id}`).show();
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function clear_big_display(){
|
||||
ids_list.forEach(function(id) {
|
||||
$(`#big${id}`).hide();
|
||||
});
|
||||
}
|
||||
|
||||
function init_wesite() {
|
||||
$.get(`${base_url}devices_list`, function(data) {
|
||||
|
||||
let connected_id = data[0]["connected_id"];
|
||||
@ -85,5 +108,7 @@ $(document).ready(function() {
|
||||
}
|
||||
|
||||
})
|
||||
}
|
||||
|
||||
init_wesite();
|
||||
})
|
||||
|
1
website/ip.txt
Normal file
1
website/ip.txt
Normal file
@ -0,0 +1 @@
|
||||
localhost
|
@ -1,8 +0,0 @@
|
||||
sf
|
||||
fsd
|
||||
f
|
||||
sdf
|
||||
sd
|
||||
fsd
|
||||
f
|
||||
sd
|
Loading…
Reference in New Issue
Block a user