2024-11-24 09:48:52 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "./ui_mainwindow.h"
|
2024-12-16 08:38:04 +00:00
|
|
|
#include "sensordialog.h"
|
2024-12-10 08:02:54 +00:00
|
|
|
#include "flowlayout.h"
|
2024-12-16 08:38:04 +00:00
|
|
|
#include "paginationbar.h"
|
2024-11-24 09:48:52 +00:00
|
|
|
|
2024-11-28 18:34:00 +00:00
|
|
|
#include <QComboBox>
|
2024-11-24 21:46:29 +00:00
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QResizeEvent>
|
2024-11-28 08:02:59 +00:00
|
|
|
#include <QScrollArea>
|
2024-12-16 08:38:04 +00:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QStackedWidget>
|
|
|
|
|
2024-11-28 08:02:59 +00:00
|
|
|
|
|
|
|
#include <QDebug>
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-11-24 09:48:52 +00:00
|
|
|
MainWindow::MainWindow(QWidget *parent)
|
|
|
|
: QMainWindow(parent)
|
|
|
|
, ui(new Ui::MainWindow)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2024-11-28 08:02:59 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
httpClient = new HttpClient(this);
|
|
|
|
sensorService = new SensorService(httpClient, this);
|
|
|
|
|
|
|
|
//sensor tab
|
|
|
|
SetupSensorTab();
|
|
|
|
startSensorTabRefreshTimer();
|
|
|
|
|
|
|
|
QTreeWidgetItem *group1 = new QTreeWidgetItem(ui->treeWidget);
|
|
|
|
group1->setText(0, "1 Группа");
|
|
|
|
|
|
|
|
QTreeWidgetItem *group2 = new QTreeWidgetItem(ui->treeWidget);
|
|
|
|
group2->setText(0, "2 Группа");
|
|
|
|
|
|
|
|
QTreeWidgetItem *group3 = new QTreeWidgetItem(ui->treeWidget);
|
|
|
|
group3->setText(0, "3 Группа");
|
|
|
|
|
|
|
|
for (int i = 1; i <= 8; ++i) {
|
|
|
|
QTreeWidgetItem *sensorItem = new QTreeWidgetItem(group2);
|
|
|
|
sensorItem->setText(0, QString("%1 Датчик").arg(i));
|
|
|
|
sensorItem->setCheckState(0, (i >= 2 && i <= 4) ? Qt::Checked : Qt::Unchecked);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 1; i <= 3; ++i) {
|
|
|
|
QTreeWidgetItem *sensorItem = new QTreeWidgetItem(group1);
|
|
|
|
sensorItem->setText(0, QString("%1 Датчик").arg(i));
|
|
|
|
sensorItem->setCheckState(0, (i >= 2 && i <= 4) ? Qt::Checked : Qt::Unchecked);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 1; i <= 4; ++i) {
|
|
|
|
QTreeWidgetItem *sensorItem = new QTreeWidgetItem(group3);
|
|
|
|
sensorItem->setText(0, QString("%1 Датчик").arg(i));
|
|
|
|
sensorItem->setCheckState(0, (i >= 2 && i <= 4) ? Qt::Checked : Qt::Unchecked);
|
|
|
|
}
|
|
|
|
|
|
|
|
int totalPages = 100;
|
|
|
|
auto *paginationBar = new PaginationBar(totalPages, this);
|
|
|
|
|
|
|
|
ui->paginationBarLayout->addStretch();
|
|
|
|
ui->paginationBarLayout->addWidget(paginationBar);
|
|
|
|
ui->paginationBarLayout->addStretch();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::SetupSensorTab() {
|
2024-11-28 18:34:00 +00:00
|
|
|
QScrollArea *scrollArea = new QScrollArea(this);
|
2024-12-16 08:38:04 +00:00
|
|
|
scrollArea->setStyleSheet(
|
|
|
|
"QScrollArea {"
|
|
|
|
" background: transparent;"
|
|
|
|
"}"
|
|
|
|
"QScrollBar:vertical {"
|
|
|
|
" background: #ebebeb;"
|
|
|
|
" width: 10px;"
|
|
|
|
" border-radius: 5px;"
|
|
|
|
"}"
|
|
|
|
"QScrollBar::handle:vertical {"
|
|
|
|
" background: #6d6d6d;"
|
|
|
|
" border-radius: 5px;"
|
|
|
|
" min-height: 20px;"
|
|
|
|
"}"
|
|
|
|
"QScrollBar::up-arrow:vertical, QScrollBar::down-arrow:vertical {"
|
|
|
|
" border: none;"
|
|
|
|
" background: none;"
|
|
|
|
" color: none;"
|
|
|
|
"}"
|
|
|
|
"QScrollBar::sub-line:vertical, QScrollBar::add-line:vertical {"
|
|
|
|
" background: transparent;"
|
|
|
|
" border: none;"
|
|
|
|
"}"
|
|
|
|
"QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {"
|
|
|
|
" background: transparent;"
|
|
|
|
"}"
|
|
|
|
);
|
2024-12-10 08:02:54 +00:00
|
|
|
scrollArea->setWidgetResizable(true);
|
|
|
|
scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
|
|
|
|
scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
2024-11-28 08:02:59 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
widgetContainer = new QWidget(scrollArea);
|
|
|
|
widgetContainer->setStyleSheet("background: transparent;");
|
|
|
|
layout = new FlowLayout(widgetContainer, 10, 10, 10);
|
2024-11-28 08:02:59 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
widgetContainer->setLayout(layout);
|
|
|
|
scrollArea->setWidget(widgetContainer);
|
|
|
|
ui->sensorsLayout->addWidget(scrollArea);
|
2024-12-09 08:30:43 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
connect(ui->search, &QLineEdit::textChanged, this, &MainWindow::onSearchTextChanged);
|
|
|
|
ui->showHiddenSelect->addItems({"Да", "Нет"});
|
|
|
|
connect(ui->groupSelect, QOverload<int>::of(&QComboBox::currentIndexChanged),
|
|
|
|
this, &MainWindow::onGroupSelected);
|
|
|
|
connect(ui->showHiddenSelect, QOverload<int>::of(&QComboBox::currentIndexChanged),
|
|
|
|
this, &MainWindow::onShowHiddenSelected);
|
|
|
|
|
|
|
|
loadSensorGroups();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::startSensorTabRefreshTimer() {
|
|
|
|
QTimer *refreshTimer = new QTimer(this);
|
|
|
|
|
|
|
|
connect(refreshTimer, &QTimer::timeout, this, [this]() {
|
|
|
|
if (ui->tabWidget->currentWidget() == ui->sensorsTab) {
|
|
|
|
updateDisplayedWidgets();
|
2024-11-28 08:02:59 +00:00
|
|
|
}
|
2024-12-16 08:38:04 +00:00
|
|
|
});
|
2024-11-28 08:02:59 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
refreshTimer->start(5000); //5 sec
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::showSensorDialog(SensorWidget *sensor)
|
|
|
|
{
|
|
|
|
SensorDialog *dialog = new SensorDialog(this, sensor, httpClient);
|
|
|
|
dialog->setWindowModality(Qt::ApplicationModal);
|
|
|
|
|
|
|
|
this->setStyleSheet("QMainWindow { background-color: rgba(0, 0, 0, 1); }");
|
|
|
|
|
|
|
|
connect(dialog, &SensorDialog::resultReady, this, &MainWindow::onSensorDialogFinished);
|
2024-12-09 08:30:43 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
dialog->exec();
|
2024-11-24 09:48:52 +00:00
|
|
|
}
|
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
void MainWindow::onSensorDialogFinished(int result)
|
2024-11-24 09:48:52 +00:00
|
|
|
{
|
2024-12-16 08:38:04 +00:00
|
|
|
this->setStyleSheet("");
|
|
|
|
|
|
|
|
switch (result) {
|
|
|
|
case SensorDialog::SaveSuccess:
|
|
|
|
updateDisplayedWidgets();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SensorDialog::SaveError:
|
|
|
|
QMessageBox::critical(nullptr, "Ошибка", "Данные не сохранены, попробуйте еще раз");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SensorDialog::NoSave:
|
|
|
|
updateDisplayedWidgets();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::loadSensorGroups() {
|
|
|
|
QStringList groups = sensorService->getSensorGroups();
|
|
|
|
|
|
|
|
if (groups.isEmpty()) {
|
|
|
|
QTimer::singleShot(5000, this, &MainWindow::loadSensorGroups);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
groups.sort(Qt::CaseInsensitive);
|
|
|
|
ui->groupSelect->clear();
|
|
|
|
ui->groupSelect->addItems(groups);
|
|
|
|
|
|
|
|
if (!groups.isEmpty()) {
|
|
|
|
loadSensors(groups.first());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::loadSensors(const QString& group) {
|
|
|
|
QList<Sensor> sensors = sensorService->getSensors(group);
|
|
|
|
|
|
|
|
const auto &existingWidgets = widgetContainer->findChildren<SensorWidget *>();
|
|
|
|
for (SensorWidget *widget : existingWidgets) {
|
|
|
|
delete widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
layout->clear();
|
|
|
|
|
|
|
|
for (const Sensor& sensor : sensors) {
|
|
|
|
SensorWidget* s = new SensorWidget(nullptr, sensor);
|
|
|
|
layout->addWidget(s);
|
|
|
|
|
|
|
|
connect(s, &SensorWidget::clicked, this, &MainWindow::showSensorDialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
widgetContainer->update();
|
2024-11-24 09:48:52 +00:00
|
|
|
}
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
void MainWindow::updateDisplayedWidgets()
|
|
|
|
{
|
|
|
|
QString selectedGroup = ui->groupSelect->currentText();
|
|
|
|
QString showHidden = ui->showHiddenSelect->currentText();
|
|
|
|
QString searchText = ui->search->text();
|
|
|
|
|
|
|
|
// Загружаем датчики только для выбранной группы
|
|
|
|
QList<Sensor> sensors = sensorService->getSensors(selectedGroup);
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
// Храним уже добавленные виджеты
|
|
|
|
QMap<QString, SensorWidget*> existingWidgets;
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
// Сохраняем существующие виджеты и их сенсоры для последующего обновления
|
|
|
|
const auto &widgets = widgetContainer->findChildren<SensorWidget *>();
|
|
|
|
for (SensorWidget *widget : widgets) {
|
|
|
|
existingWidgets[widget->getSensor().id] = widget;
|
|
|
|
}
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
layout->clear(); // Очищаем layout, но не удаляем сами виджеты
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
// Проходим по новым датчикам и добавляем их в layout, если они ещё не добавлены
|
|
|
|
for (const Sensor& sensor : sensors) {
|
|
|
|
SensorWidget* widget = nullptr;
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
// Проверяем, существует ли виджет для данного сенсора
|
|
|
|
if (existingWidgets.contains(sensor.id)) {
|
|
|
|
widget = existingWidgets[sensor.id];
|
|
|
|
widget->setSensor(sensor); // Обновляем данные существующего виджета
|
|
|
|
} else {
|
|
|
|
widget = new SensorWidget(nullptr, sensor);
|
|
|
|
connect(widget, &SensorWidget::clicked, this, &MainWindow::showSensorDialog);
|
|
|
|
}
|
2024-11-24 21:46:29 +00:00
|
|
|
|
2024-12-16 08:38:04 +00:00
|
|
|
// Применяем фильтрацию по условиям
|
|
|
|
bool matchesHidden = (showHidden == "Да") || !sensor.isHide;
|
|
|
|
bool matchesSearch = sensor.name.contains(searchText, Qt::CaseInsensitive);
|
|
|
|
|
|
|
|
if (matchesHidden && matchesSearch) {
|
|
|
|
layout->addWidget(widget);
|
|
|
|
widget->show();
|
|
|
|
} else {
|
|
|
|
widget->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
widgetContainer->update(); // Обновляем виджеты в контейнере
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::onGroupSelected(int index)
|
|
|
|
{
|
|
|
|
Q_UNUSED(index);
|
|
|
|
loadSensors(ui->groupSelect->currentText());
|
|
|
|
updateDisplayedWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::onShowHiddenSelected(int index)
|
|
|
|
{
|
|
|
|
Q_UNUSED(index);
|
|
|
|
updateDisplayedWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::onSearchTextChanged(const QString &text)
|
|
|
|
{
|
|
|
|
Q_UNUSED(text);
|
|
|
|
if (text.isEmpty()) {
|
|
|
|
ui->search->setStyleSheet(R"(
|
|
|
|
QLineEdit {
|
|
|
|
width: 778px;
|
|
|
|
height: 60px;
|
|
|
|
border: 2px solid #DCD174;
|
|
|
|
font-family: Inter;
|
|
|
|
font-size: 26px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 31.47px;
|
|
|
|
text-align: left;
|
|
|
|
background: #00000000;
|
|
|
|
color: #a6a6a6;
|
|
|
|
}
|
|
|
|
|
|
|
|
)");
|
|
|
|
} else {
|
|
|
|
ui->search->setStyleSheet(R"(
|
|
|
|
QLineEdit {
|
|
|
|
width: 778px;
|
|
|
|
height: 60px;
|
|
|
|
border: 2px solid #DCD174;
|
|
|
|
font-family: Inter;
|
|
|
|
font-size: 26px;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 31.47px;
|
|
|
|
text-align: left;
|
|
|
|
background: #00000000;
|
|
|
|
color: #13385F;
|
|
|
|
}
|
|
|
|
)");
|
|
|
|
}
|
|
|
|
updateDisplayedWidgets();
|
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|