New Feature:Enable Changing User's profile Name from GUI Menu

This commit is contained in:
LoudSnorer 2023-12-01 19:56:31 -05:00
parent 514ade9848
commit 9e87179c2a
4 changed files with 47 additions and 14 deletions

View File

@ -2361,6 +2361,7 @@ void MainWindow::on_actionImport_Viatom_Data_triggered()
void MainWindow::GenerateStatistics() void MainWindow::GenerateStatistics()
{ {
reset_reportModeUi() ; reset_reportModeUi() ;
if (!p_profile) return;
Statistics stats; Statistics stats;
QString htmlStats = stats.GenerateHTML(); QString htmlStats = stats.GenerateHTML();

View File

@ -33,9 +33,11 @@ NewProfile::NewProfile(QWidget *parent, const QString *user) :
ui(new Ui::NewProfile) ui(new Ui::NewProfile)
{ {
ui->setupUi(this); ui->setupUi(this);
if (user) if (user) {
originalProfileName=*user;
ui->userNameEdit->setText(*user); ui->userNameEdit->setText(*user);
// ui->userNameEdit->setText(getUserName()); // ui->userNameEdit->setText(getUserName());
}
QLocale locale = QLocale::system(); QLocale locale = QLocale::system();
QString shortformat = locale.dateFormat(QLocale::ShortFormat); QString shortformat = locale.dateFormat(QLocale::ShortFormat);
@ -206,14 +208,23 @@ void NewProfile::on_nextButton_clicked()
ui->stackedWidget->setCurrentIndex(index); ui->stackedWidget->setCurrentIndex(index);
} else { } else {
// Finish button clicked. // Finish button clicked.
QString username = ui->userNameEdit->text().trimmed(); newProfileName = ui->userNameEdit->text().trimmed();
QString profileName;
if (originalProfileName.isEmpty() ) {
profileName = newProfileName;
} else {
profileName = originalProfileName;
ui->userNameEdit->setText(originalProfileName);
//QString profileName = originalProfileName.isEmpty()? newProfileName : originalProfileName;
}
//QString profileName = originalProfileName.isEmpty()? newProfileName : originalProfileName;
if (QMessageBox::question(this, tr("Profile Changes"), tr("Accept and save this information?"), if (QMessageBox::question(this, tr("Profile Changes"), tr("Accept and save this information?"),
QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) { QMessageBox::Yes, QMessageBox::No) == QMessageBox::Yes) {
Profile *profile = Profiles::Get(username);
Profile *profile = Profiles::Get(profileName);
if (!profile) { // No profile, create one. if (!profile) { // No profile, create one.
profile = Profiles::Create(username); profile = Profiles::Create(profileName);
} }
Profile &prof = *profile; Profile &prof = *profile;
@ -264,17 +275,33 @@ void NewProfile::on_nextButton_clicked()
// also call unitsChanged if height also changed. Need for update BMI. // also call unitsChanged if height also changed. Need for update BMI.
if (mainwin && mainwin->getDaily()) { mainwin->getDaily()->UnitsChanged(); } if (mainwin && mainwin->getDaily()) { mainwin->getDaily()->UnitsChanged(); }
} }
AppSetting->setProfileName(profileName);
AppSetting->setProfileName(username);
profile->Save(); profile->Save();
if ( !originalProfileName.isEmpty() && !newProfileName.isEmpty() && (originalProfileName != newProfileName)) {
if (mainwin) QString originalProfileFullName = p_pref->Get("{home}/Profiles/") + originalProfileName;
QString newProfileFullName = p_pref->Get("{home}/Profiles/") + newProfileName;
QFile file(originalProfileFullName);
if (file.exists()) {
bool status = file.rename(newProfileFullName);
if (status) { // successful rename
QCoreApplication::processEvents();
mainwin->RestartApplication(true,"-l");
exit(0);
} else {
QMessageBox::question(this, tr("Invalid User Name"), tr("Please Update User without special characters"), QMessageBox::Ok);
ui->stackedWidget->setCurrentIndex(1);
ui->userNameEdit->setText(newProfileName);
}
}
} else {
if (mainwin) {
mainwin->GenerateStatistics(); mainwin->GenerateStatistics();
}
this->accept(); this->accept();
} }
} }
}
if (index >= max_pages) { if (index >= max_pages) {
ui->nextButton->setText(tr("&Finish")); ui->nextButton->setText(tr("&Finish"));
@ -336,7 +363,7 @@ void NewProfile::edit(const QString name)
} }
ui->userNameEdit->setText(name); ui->userNameEdit->setText(name);
ui->userNameEdit->setReadOnly(true); // ui->userNameEdit->setReadOnly(true);
ui->firstNameEdit->setText(profile->user->firstName()); ui->firstNameEdit->setText(profile->user->firstName());
ui->lastNameEdit->setText(profile->user->lastName()); ui->lastNameEdit->setText(profile->user->lastName());

View File

@ -65,6 +65,8 @@ class NewProfile : public QDialog
double m_tmp_height_cm; double m_tmp_height_cm;
int m_firstPage; int m_firstPage;
bool m_passwordHashed; bool m_passwordHashed;
QString originalProfileName;
QString newProfileName;
}; };
#endif // NEWPROFILE_H #endif // NEWPROFILE_H

View File

@ -7,6 +7,9 @@
* License. See the file COPYING in the main directory of the source code * License. See the file COPYING in the main directory of the source code
* for more details. */ * for more details. */
#define TEST_MACROS_ENABLEDoff
#include <test_macros.h>
#include <QMessageBox> #include <QMessageBox>
#include "profileselector.h" #include "profileselector.h"
@ -302,7 +305,7 @@ void ProfileSelector::on_buttonEditProfile_clicked()
Profile * prof = Profiles::profiles[name]; Profile * prof = Profiles::profiles[name];
//SelectProfile(name); // may not be necessary... //SelectProfile(name); // may not be necessary...
NewProfile *newprof = new NewProfile(this); NewProfile *newprof = new NewProfile(this,&name);
newprof->edit(name); newprof->edit(name);
newprof->setWindowModality(Qt::ApplicationModal); newprof->setWindowModality(Qt::ApplicationModal);
newprof->setModal(true); newprof->setModal(true);