argdialog.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. #include "argdialog.h"
  2. #include "ui_argdialog.h"
  3. #include <algorithm>
  4. #include <QDebug>
  5. #include <QStringList>
  6. #include <QIODevice>
  7. #include <vector>
  8. #include <QTableWidgetItem>
  9. #include <QDateTime>
  10. #include <QCalendarWidget>
  11. ArgDialog::ArgDialog(QWidget *parent) :
  12. QDialog(parent),
  13. ui(new Ui::ArgDialog),
  14. m_task(Task{}),
  15. m_ig_post(IGPost{})
  16. {
  17. ui->setupUi(this);
  18. QObject::connect(ui->addFile, &QPushButton::clicked, this, [this]() {
  19. auto file_path = QFileDialog::getOpenFileName(this,
  20. tr("Open File"), "~", tr("All Files (*.*)"));
  21. qDebug() << "Selected file:" << file_path;
  22. if (file_path.size() > 0) {
  23. QFile file(file_path);
  24. // std::vector<char> byte_array{};
  25. // if (file.open(QIODevice::ReadOnly)) {
  26. // QByteArray bytes = file.readAll();
  27. // emit ArgDialog::uploadFile(bytes);
  28. // }
  29. }
  30. auto slash_index = file_path.lastIndexOf("/") + 1;
  31. QString file_name = file_path.right(file_path.size() - slash_index);
  32. addItem(file_name, "file");
  33. m_ig_post.video.name = file_name.toUtf8().constData();
  34. m_ig_post.video.path = file_path.toUtf8().constData();
  35. });
  36. ui->argList->setHorizontalHeaderLabels(QStringList{"Value", "Type"});
  37. ui->argList->setColumnWidth(0, 400);
  38. ui->argList->setColumnWidth(1, 40);
  39. ui->argList->verticalHeader()->setDefaultSectionSize(100);
  40. QObject::connect(ui->addArgument, &QPushButton::clicked, this, [this]() {
  41. QString text = ui->argInput->toPlainText();
  42. QList<QListWidgetItem*> types = ui->argType->selectedItems();
  43. auto type = types.size() > 0 ? types.at(0)->text() : "Unknown type";
  44. if (text.size() > 0) {
  45. addItem(text, type);
  46. if (type == Args::HASHTAG_TYPE) {
  47. addHashtag(text);
  48. } else if (type == Args::DESCRIPTION_TYPE) {
  49. m_ig_post.description = text.toUtf8().constData();
  50. }
  51. ui->argInput->clear();
  52. }
  53. });
  54. ui->argType->setItemSelected(ui->argType->item(0), true);
  55. QDateTime date_time = QDateTime::currentDateTime();
  56. // date_time.
  57. ui->dateTime->setDateTime(QDateTime::currentDateTime());
  58. QObject::connect(ui->dateTime, &QDateTimeEdit::dateTimeChanged, this, [this]() {
  59. auto date_time = ui->dateTime->dateTime();
  60. qDebug() << "Time changed to" << date_time;
  61. });
  62. }
  63. void ArgDialog::addItem(QString value, QString type) {
  64. QTableWidgetItem* item = new QTableWidgetItem(value);
  65. QTableWidgetItem* item2 = new QTableWidgetItem(type);
  66. auto row = ui->argList->rowCount();
  67. ui->argList->insertRow(row);
  68. ui->argList->setItem(row, 0, item);
  69. ui->argList->setItem(row, 1, item2);
  70. }
  71. void ArgDialog::clearPost() {
  72. m_ig_post.video = KFile{};
  73. m_ig_post.datetime = "";
  74. m_ig_post.hashtags = {};
  75. m_ig_post.description = "";
  76. m_ig_post.link_in_bio = "";
  77. m_ig_post.requested_by = {};
  78. m_ig_post.promote_share = "";
  79. m_ig_post.requested_by_phrase = "";
  80. }
  81. void ArgDialog::clearTask() {
  82. m_task.args = {};
  83. m_task.mask = -1;
  84. m_task.time = "";
  85. }
  86. void ArgDialog::addHashtag(QString tag) {
  87. if (std::find(m_ig_post.hashtags.begin(), m_ig_post.hashtags.end(), tag.toUtf8().constData()) == m_ig_post.hashtags.end()) {
  88. m_ig_post.hashtags.push_back(tag.toUtf8().constData());
  89. } else {
  90. const char* message = "Can't add the same hashtag twice";
  91. qDebug() << message;
  92. QMessageBox::warning(
  93. this,
  94. tr("Hashtags"),
  95. tr(message)
  96. );
  97. }
  98. }
  99. ArgDialog::~ArgDialog()
  100. {
  101. delete ui;
  102. }