flask_inference_api_g / plot_week.html
DmitrMakeev's picture
Update plot_week.html
adeeba4 verified
raw
history blame
7.65 kB
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/ico" href="https://huggingface.co/spaces/igs-img/stor/resolve/main/list.ico">
<title>Графики pH и EC</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
margin: 0;
padding: 0;
}
.container {
width: 100%;
max-width: 100%;
}
/* Шапка */
.header {
width: 100%;
padding: 5px 0;
display: flex;
justify-content: space-between;
align-items: center;
background-color: #f8f9fa;
border-bottom: 1px solid #ddd;
}
/* Кнопки и лейбл в шапке */
.header .buttons,
.header .label {
margin: 0;
}
/* Контейнер графика */
.graph-container {
width: 100%;
margin-bottom: 30px;
}
/* График */
.graph {
width: 100%;
height: 500px;
max-width: 100%;
}
/* Сообщение "нет данных" */
.no-data-message {
font-size: 18px;
color: red;
text-align: center;
margin-top: 20px;
}
/* Кнопки переключения недель */
.week-buttons {
display: flex;
justify-content: center;
margin: 20px 0;
}
/* Адаптивность для телефонов (до 768px) */
@media (max-width: 768px) {
.header {
flex-direction: column;
align-items: center;
}
.graph-container {
margin-bottom: 45px;
}
.graph {
height: 330px;
}
}
/* Адаптивность для маленьких телефонов (до 480px) */
@media (max-width: 480px) {
.graph-container {
margin-bottom: 50px;
}
.graph {
height: 280px;
}
}
</style>
</head>
<body>
<!-- Навигационная панель -->
<nav class="navbar navbar-light bg-light w-100">
<div class="container">
<a class="navbar-brand" href="/online">
<img src="https://huggingface.co/spaces/igs-img/stor/resolve/main/list.png" width="30" height="30" class="d-inline-block align-top" alt="">
MackorLab
</a>
<form class="form-inline">
<button id="st_onl" class="btn btn-outline-success" type="button">Онлайн</button>
<button id="st_set" class="btn btn-outline-success" type="button">Настройки</button>
<button id="st_plot" class="btn btn-success mr-2" type="button">Графики</button>
</form>
</div>
</nav>
<div class="container text-center mt-3">
<h1>Графики за <span id="week_number">{{ week_number }}</span>-ю неделю</h1>
</div>
<!-- Кнопки переключения недель -->
<div class="week-buttons mb-3">
<button id="prev_week" class="btn btn-success mr-2" onclick="navigateWeek(-1)">Предыдущая неделя</button>
<button id="next_week" class="btn btn-success" onclick="navigateWeek(1)">Следующая неделя</button>
</div>
{% if data %}
<!-- Графики -->
<div id="graph_container" style="height: 600px;"></div>
<script>
const data = {{ data | tojson }};
// Создаём несколько графиков в одном окне (с использованием subplot)
function createSubplotData() {
return [
// График PH
{
x: data.dates,
y: data.ph,
type: "scatter",
mode: "lines+markers",
name: "pH",
line: { color: "blue" },
hovertemplate: data.days_of_week.map((day, index) =>
`Неделя: ${data.week}<br>День: ${day}<br>pH: %{y}<br>Дата: ${data.dates[index]}`
)
},
// График EC
{
x: data.dates,
y: data.ec,
type: "scatter",
mode: "lines+markers",
name: "EC",
line: { color: "green" },
hovertemplate: data.days_of_week.map((day, index) =>
`Неделя: ${data.week}<br>День: ${day}<br>EC: %{y}<br>Дата: ${data.dates[index]}`
)
},
// График TS
{
x: data.dates,
y: data.tS,
type: "scatter",
mode: "lines+markers",
name: "TS",
line: { color: "purple" },
hovertemplate: data.days_of_week.map((day, index) =>
`Неделя: ${data.week}<br>День: ${day}<br>TS: %{y}<br>Дата: ${data.dates[index]}`
)
},
// График TA
{
x: data.dates,
y: data.ta,
type: "scatter",
mode: "lines+markers",
name: "TA",
line: { color: "red" },
hovertemplate: data.days_of_week.map((day, index) =>
`Неделя: ${data.week}<br>День: ${day}<br>TA: %{y}<br>Дата: ${data.dates[index]}`
)
},
];
}
// Создание графиков
function createPlot() {
const traces = createSubplotData();
const layout = {
title: `Графики за ${data.week}-ю неделю`,
xaxis: {
title: "Дата",
showticklabels: true
},
yaxis: {
title: "Значения",
titlefont: { size: 14 }
},
hovermode: "closest",
showlegend: true
};
Plotly.newPlot('graph_container', traces, layout);
}
// Обновляем графики
function updateCharts() {
$.get("/plot_week?week=" + {{ week_number }}, function(data) {
createPlot();
});
}
setInterval(updateCharts, 10000); // Обновление графиков каждые 10 секунд
</script>
{% else %}
<div class="no-data-message">
{{ message if message else 'Данных за эту неделю нет в базе данных.' }}
</div>
{% endif %}
<!-- Скрипты навигации -->
<script>
let weekNumber = {{ week_number }};
// Функция переключения недели
function navigateWeek(change) {
const newWeek = weekNumber + change;
if (newWeek >= 1 && newWeek <= 30) {
window.location.href = `/plot_week?week=${newWeek}`;
}
}
</script>
<!-- Скрипты перехода на страницы -->
<script>
document.getElementById("st_onl").addEventListener("click", function() {
var baseUrl = window.location.origin;
var targetUrl = baseUrl + "/online";
window.location.href = targetUrl;
});
document.getElementById("st_set").addEventListener("click", function() {
var baseUrl = window.location.origin;
var targetUrl = baseUrl + "/settings";
window.location.href = targetUrl;
});
document.getElementById("st_plot").addEventListener("click", function() {
var baseUrl = window.location.origin;
var targetUrl = baseUrl + "/plot_week";
window.location.href = targetUrl;
});
</script>
</body>
</html>