-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchpanel.cpp
200 lines (174 loc) · 5.1 KB
/
searchpanel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#include "searchpanel.h"
SearchPanel::SearchPanel(QWidget *parent) : QWidget(parent)
{
createOuterLayout();
createGroupBox("Search");
createGroupBoxLayout();
createSearchFieldLayout();
createTextField();
createCompleter();
createExcludeDropDown();
createTagList();
relaySignals();
}
void SearchPanel::createOuterLayout()
{
outerLayout = new QStackedLayout;
this->setLayout(outerLayout);
}
void SearchPanel::createGroupBox(const QString& title)
{
groupBox = new QGroupBox(title);
outerLayout->addWidget(groupBox);
}
void SearchPanel::createGroupBoxLayout()
{
groupBoxLayout = new QVBoxLayout;
groupBox->setLayout(groupBoxLayout);
}
void SearchPanel::createSearchFieldLayout()
{
searchFieldLayout = new QHBoxLayout;
groupBoxLayout->addLayout(searchFieldLayout);
}
void SearchPanel::createTextField()
{
textField = new QLineEdit;
textField->setPlaceholderText("Enter tag");
searchFieldLayout->addWidget(textField);
}
void SearchPanel::createCompleter()
{
completer = new QCompleter(tagDictionary);
completer->setCaseSensitivity(Qt::CaseInsensitive);
completer->setCompletionMode(QCompleter::InlineCompletion);
textField->setCompleter(completer);
updateTagDictionary();
}
void SearchPanel::createExcludeDropDown()
{
excludeDropDown = new QComboBox;
excludeDropDown->addItem("Include");
excludeDropDown->addItem("Exclude");
excludeDropDown->setCurrentIndex(DropDownIndex::INCLUDE);
searchFieldLayout->addWidget(excludeDropDown);
}
void SearchPanel::createTagList()
{
tagList = new TagList;
groupBoxLayout->addWidget(tagList);
}
void SearchPanel::relaySignals()
{
connect(textField, SIGNAL (returnPressed()), this, SLOT (addTag()));
connect(tagList, SIGNAL (tagClicked(int)), this, SLOT (removeTagFromSearch(int)));
connect(tagList, SIGNAL (tagToBeRemovedFromSearch(int)), this, SLOT (removeTagFromSearch(int)));
}
void SearchPanel::updateTagDictionary()
{
Database* database = Database::getInstance();
tagDictionary = database->getAllTagNames();
QStringListModel* model = new QStringListModel(tagDictionary);
completer->setModel(model);
}
void SearchPanel::removeTagFromSearch(int tagId)
{
if (activeSearchTags.contains(tagId)) {
activeSearchTags.removeOne(tagId);
}
else {
activeExcludeTags.removeOne(tagId);
}
emit activeSearchTagsChanged(activeSearchTags, activeExcludeTags);
refreshTagList();
}
void SearchPanel::refreshTagList()
{
Database* database = Database::getInstance();
QList<TagTuple> tags = database->getTuplesOfTags(activeSearchTags);
QList<TagTuple> excludeTags = database->getTuplesOfTags(activeExcludeTags);
colorTagsRed(excludeTags);
populateTagList(tags, excludeTags);
}
void SearchPanel::colorTagsRed(QList<TagTuple>& tags)
{
for (TagTuple& tag : tags) {
tag.setColor(TagColor::RED);
}
}
void SearchPanel::populateTagList(QList<TagTuple> tags, QList<TagTuple> excludeTags)
{
tagList->clear();
QList<TagTuple> allTags = tags + excludeTags;
std::sort(allTags.begin(), allTags.end(), TagTuple::alphabeticalSort);
for (TagTuple tag : allTags) {
tagList->addTag(tag);
}
}
void SearchPanel::addTag()
{
QString tag = textField->text();
textField->clear();
if (tagIsValid(tag)) {
tag = cleanUp(tag);
Database* database = Database::getInstance();
try {
int id = database->getIdOfTag(tag);
if (!activeSearchTags.contains(id) && !activeExcludeTags.contains(id)) {
switch (excludeDropDown->currentIndex()) {
case DropDownIndex::INCLUDE:
activeSearchTags.append(id);
break;
case DropDownIndex::EXCLUDE:
activeExcludeTags.append(id);
break;
}
refreshTagList();
emit activeSearchTagsChanged(activeSearchTags, activeExcludeTags);
}
else {
Prompt::show("The tag '" + tag + "' is already in the search!");
}
}
catch (TagNameNotFoundException e) {
Prompt::show("The tag '" + tag + "' does not exist!");
}
}
}
bool SearchPanel::tagIsValid(const QString& tag)
{
bool isValid = true;
isValid &= !tag.isEmpty();
isValid &= hasNonWhitespaceCharacter(tag);
return isValid;
}
bool SearchPanel::hasNonWhitespaceCharacter(const QString& tag)
{
for (int i = 0; i < tag.length(); ++i) {
if (!tag[i].isSpace()) {
return true;
}
}
return false;
}
QString SearchPanel::cleanUp(QString tag)
{
tag = tag.simplified();
tag = tag.toLower();
return tag;
}
bool SearchPanel::searchIsEmpty()
{
return activeSearchTags.isEmpty() && activeExcludeTags.isEmpty();
}
void SearchPanel::toggleTagInSearch(int tagId)
{
if (!activeSearchTags.contains(tagId)) {
activeSearchTags.append(tagId);
refreshTagList();
emit activeSearchTagsChanged(activeSearchTags, activeExcludeTags);
}
else {
removeTagFromSearch(tagId);
}
}