argdialog.cpp 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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. auto slash_index = file_path.lastIndexOf("/") + 1;
  30. QString file_name = file_path.right(file_path.size() - slash_index);
  31. addItem(file_name, "file");
  32. m_ig_post.video.name = file_name.toUtf8().constData();
  33. m_ig_post.video.path = file_path.toUtf8().constData();
  34. }
  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. if (type == Args::HASHTAG_TYPE) {
  46. addHashtag(text);
  47. } else if (type == Args::DESCRIPTION_TYPE) {
  48. addItem(text, type);
  49. m_ig_post.description = text.toUtf8().constData();
  50. } else if (type == Args::PROMOTE_TYPE) {
  51. addOrReplaceInArgList(text, "promote/share");
  52. m_ig_post.promote_share = text.toUtf8().constData();
  53. } else if (type == Args::LINK_BIO_TYPE) {
  54. addOrReplaceInArgList(text, "link/bio");
  55. m_ig_post.link_in_bio = text.toUtf8().constData();
  56. } else if (type == Args::REQUESTED_BY_TYPE) {
  57. addRequestedBy(text);
  58. }
  59. ui->argInput->clear();
  60. }
  61. });
  62. ui->argType->setItemSelected(ui->argType->item(0), true);
  63. QDateTime date_time = QDateTime::currentDateTime();
  64. // date_time.
  65. ui->dateTime->setDateTime(QDateTime::currentDateTime());
  66. QObject::connect(ui->dateTime, &QDateTimeEdit::dateTimeChanged, this, [this]() {
  67. auto date_time = ui->dateTime->dateTime();
  68. qDebug() << "Time changed to" << date_time;
  69. });
  70. // QObject::connect(ui->ar)
  71. }
  72. void ArgDialog::addItem(QString value, QString type) {
  73. QTableWidgetItem* item = new QTableWidgetItem(value);
  74. QTableWidgetItem* item2 = new QTableWidgetItem(type);
  75. auto row = ui->argList->rowCount();
  76. ui->argList->insertRow(row);
  77. ui->argList->setItem(row, 0, item);
  78. ui->argList->setItem(row, 1, item2);
  79. }
  80. void ArgDialog::clearPost() {
  81. m_ig_post.video = KFile{};
  82. m_ig_post.datetime = "";
  83. m_ig_post.hashtags = {};
  84. m_ig_post.description = "";
  85. m_ig_post.link_in_bio = "";
  86. m_ig_post.requested_by = {};
  87. m_ig_post.promote_share = "";
  88. m_ig_post.requested_by_phrase = "";
  89. }
  90. void ArgDialog::clearTask() {
  91. m_task.args = {};
  92. m_task.mask = -1;
  93. m_task.time = "";
  94. }
  95. void ArgDialog::addRequestedBy(QString value) {
  96. if (std::find(m_ig_post.requested_by.begin(), m_ig_post.requested_by.end(), value.toUtf8().constData()) == m_ig_post.requested_by.end()) {
  97. m_ig_post.requested_by.push_back(value.toUtf8().constData());
  98. addToArgList(value, "requested_by");
  99. } else {
  100. const char* message = "You have already inputted this name under \"requested_by\"";
  101. qDebug() << message;
  102. QMessageBox::warning(
  103. this,
  104. tr("Requested By"),
  105. tr(message)
  106. );
  107. }
  108. }
  109. void ArgDialog::addToArgList(QString value, QString type) {
  110. for (int i = 0; i < ui->argList->rowCount(); i++) {
  111. auto item = ui->argList->item(i, 1);
  112. if (item) {
  113. if (QString::compare(item->text(), type) == 0) {
  114. auto text = ui->argList->item(i, 0)->text();
  115. text.append("\n");
  116. text += value;
  117. ui->argList->item(i, 0)->setText(text);
  118. return;
  119. }
  120. }
  121. }
  122. addItem(value, type);
  123. }
  124. void ArgDialog::addOrReplaceInArgList(QString value, QString type) {
  125. for (int i = 0; i < ui->argList->rowCount(); i++) {
  126. auto item = ui->argList->item(i, 1);
  127. if (item) {
  128. if (QString::compare(item->text(), type) == 0) {
  129. ui->argList->item(i, 0)->setText(value);
  130. return;
  131. }
  132. }
  133. }
  134. addItem(value, type);
  135. }
  136. void ArgDialog::addHashtag(QString tag) {
  137. if (std::find(m_ig_post.hashtags.begin(), m_ig_post.hashtags.end(), tag.toUtf8().constData()) == m_ig_post.hashtags.end()) {
  138. m_ig_post.hashtags.push_back(tag.toUtf8().constData());
  139. addToArgList(tag, "hashtag");
  140. } else {
  141. const char* message = "Can't add the same hashtag twice";
  142. qDebug() << message;
  143. QMessageBox::warning(
  144. this,
  145. tr("Hashtags"),
  146. tr(message)
  147. );
  148. }
  149. }
  150. ArgDialog::~ArgDialog()
  151. {
  152. delete ui;
  153. }