Add sorting of HTML export

- Closes #6164
- Implement sorting support in HtmlExporter
- Add ExportDialog class and UI, which allows to configure export options.
This commit is contained in:
Patrick Sean Klein 2021-10-10 16:36:19 +02:00 committed by Jonathan White
parent d3b28f8651
commit 296cbf0df7
9 changed files with 369 additions and 89 deletions

View file

@ -30,6 +30,7 @@
#include "gui/FileDialog.h"
#include "gui/HtmlExporter.h"
#include "gui/MessageBox.h"
#include "gui/export/ExportDialog.h"
#ifdef Q_OS_MACOS
#include "gui/osutils/macutils/MacUtils.h"
#endif
@ -440,6 +441,11 @@ void DatabaseTabWidget::exportToCsv()
}
}
void DatabaseTabWidget::handleExportError(const QString& reason)
{
emit messageGlobal(tr("Writing the HTML file failed.").append("\n").append(reason), MessageWidget::Error);
}
void DatabaseTabWidget::exportToHtml()
{
auto db = databaseWidgetFromIndex(currentIndex())->database();
@ -448,23 +454,9 @@ void DatabaseTabWidget::exportToHtml()
return;
}
if (!warnOnExport()) {
return;
}
const QString fileName = fileDialog()->getSaveFileName(
this, tr("Export database to HTML file"), FileDialog::getLastDir("html"), tr("HTML file").append(" (*.html)"));
if (fileName.isEmpty()) {
return;
}
FileDialog::saveLastDir("html", fileName, true);
HtmlExporter htmlExporter;
if (!htmlExporter.exportDatabase(fileName, db)) {
emit messageGlobal(tr("Writing the HTML file failed.").append("\n").append(htmlExporter.errorString()),
MessageWidget::Error);
}
auto exportDialog = new ExportDialog(db, this);
connect(exportDialog, SIGNAL(exportFailed(QString)), SLOT(handleExportError(const QString&)));
exportDialog->exec();
}
bool DatabaseTabWidget::warnOnExport()