mirror of https://github.com/procxx/kepka.git
[WIP] Create first custom autocomplete for GH
This commit adds the simple logic for numeric hashtags (like #30) and suggests the URL to Kepka's issue. Right now the link generation is stupid and does not respects the actual existence of issue. Related to #137.
This commit is contained in:
parent
ed0e5b9958
commit
4a5f4670fa
|
@ -234,13 +234,24 @@ void FieldAutocomplete::updateFiltered(bool resetScroll) {
|
||||||
}
|
}
|
||||||
} else if (_type == Type::Hashtags) {
|
} else if (_type == Type::Hashtags) {
|
||||||
bool listAllSuggestions = _filter.isEmpty();
|
bool listAllSuggestions = _filter.isEmpty();
|
||||||
|
bool isInteger = false;
|
||||||
|
int ghTextIssueId = _filter.toInt(&isInteger);
|
||||||
|
int size = 0;
|
||||||
|
if (isInteger) {
|
||||||
|
size++;
|
||||||
|
}
|
||||||
auto &recent(cRecentWriteHashtags());
|
auto &recent(cRecentWriteHashtags());
|
||||||
hrows.reserve(recent.size());
|
hrows.reserve(recent.size() + size);
|
||||||
for (auto i = recent.cbegin(), e = recent.cend(); i != e; ++i) {
|
if (isInteger) {
|
||||||
if (!listAllSuggestions && (!i->first.startsWith(_filter, Qt::CaseInsensitive) || i->first.size() == _filter.size())) {
|
hrows.push_back(QString("github.com/procxx/kepka/issues/%1").arg(_filter));
|
||||||
|
}
|
||||||
|
if (listAllSuggestions) {
|
||||||
|
for_const (auto &i, recent) {
|
||||||
|
if (!i.first.startsWith(_filter, Qt::CaseInsensitive) || i.first.size() == _filter.size()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
hrows.push_back(i->first);
|
hrows.push_back("#" + i.first);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (_type == Type::BotCommands) {
|
} else if (_type == Type::BotCommands) {
|
||||||
bool listAllSuggestions = _filter.isEmpty();
|
bool listAllSuggestions = _filter.isEmpty();
|
||||||
|
@ -629,8 +640,8 @@ void FieldAutocompleteInner::paintEvent(QPaintEvent *e) {
|
||||||
}
|
}
|
||||||
} else if (!_hrows->isEmpty()) {
|
} else if (!_hrows->isEmpty()) {
|
||||||
QString hrow = _hrows->at(i);
|
QString hrow = _hrows->at(i);
|
||||||
QString first = filterIsEmpty ? QString() : ('#' + hrow.mid(0, filterSize));
|
QString first = filterIsEmpty ? QString() : (/*'#' + */hrow.mid(0, filterSize));
|
||||||
QString second = filterIsEmpty ? ('#' + hrow) : hrow.mid(filterSize);
|
QString second = filterIsEmpty ? (/*'#' + */hrow) : hrow.mid(filterSize);
|
||||||
qint32 firstwidth = st::mentionFont->width(first), secondwidth = st::mentionFont->width(second);
|
qint32 firstwidth = st::mentionFont->width(first), secondwidth = st::mentionFont->width(second);
|
||||||
if (htagwidth < firstwidth + secondwidth) {
|
if (htagwidth < firstwidth + secondwidth) {
|
||||||
if (htagwidth < firstwidth + st::mentionFont->elidew) {
|
if (htagwidth < firstwidth + st::mentionFont->elidew) {
|
||||||
|
@ -742,7 +753,7 @@ bool FieldAutocompleteInner::chooseSelected(FieldAutocomplete::ChooseMethod meth
|
||||||
}
|
}
|
||||||
} else if (!_hrows->isEmpty()) {
|
} else if (!_hrows->isEmpty()) {
|
||||||
if (_sel >= 0 && _sel < _hrows->size()) {
|
if (_sel >= 0 && _sel < _hrows->size()) {
|
||||||
emit hashtagChosen('#' + _hrows->at(_sel), method);
|
emit hashtagChosen(/*'#' + */_hrows->at(_sel), method);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} else if (!_brows->isEmpty()) {
|
} else if (!_brows->isEmpty()) {
|
||||||
|
|
Loading…
Reference in New Issue