Clean up DecklistModel::addCard()
Split common functionality out of the if-else block.
This commit is contained in:
parent
875df01424
commit
401b34d22c
1 changed files with 4 additions and 8 deletions
|
@ -244,24 +244,20 @@ QModelIndex DeckListModel::addCard(const QString &cardName, const QString &zoneN
|
||||||
QString cardType = info->getMainCardType();
|
QString cardType = info->getMainCardType();
|
||||||
InnerDecklistNode *cardTypeNode = createNodeIfNeeded(cardType, zoneNode);
|
InnerDecklistNode *cardTypeNode = createNodeIfNeeded(cardType, zoneNode);
|
||||||
|
|
||||||
|
QModelIndex parentIndex = nodeToIndex(cardTypeNode);
|
||||||
DecklistModelCardNode *cardNode = dynamic_cast<DecklistModelCardNode *>(cardTypeNode->findChild(cardName));
|
DecklistModelCardNode *cardNode = dynamic_cast<DecklistModelCardNode *>(cardTypeNode->findChild(cardName));
|
||||||
if (!cardNode) {
|
if (!cardNode) {
|
||||||
DecklistCardNode *decklistCard = deckList->addCard(cardName, zoneName);
|
DecklistCardNode *decklistCard = deckList->addCard(cardName, zoneName);
|
||||||
QModelIndex parentIndex = nodeToIndex(cardTypeNode);
|
|
||||||
beginInsertRows(parentIndex, cardTypeNode->size(), cardTypeNode->size());
|
beginInsertRows(parentIndex, cardTypeNode->size(), cardTypeNode->size());
|
||||||
cardNode = new DecklistModelCardNode(decklistCard, cardTypeNode);
|
cardNode = new DecklistModelCardNode(decklistCard, cardTypeNode);
|
||||||
endInsertRows();
|
endInsertRows();
|
||||||
sort(lastKnownColumn, lastKnownOrder);
|
|
||||||
emitRecursiveUpdates(parentIndex);
|
|
||||||
return nodeToIndex(cardNode);
|
|
||||||
} else {
|
} else {
|
||||||
cardNode->setNumber(cardNode->getNumber() + 1);
|
cardNode->setNumber(cardNode->getNumber() + 1);
|
||||||
QModelIndex parentIndex = nodeToIndex(cardTypeNode);
|
|
||||||
sort(lastKnownColumn, lastKnownOrder);
|
|
||||||
emitRecursiveUpdates(parentIndex);
|
|
||||||
deckList->updateDeckHash();
|
deckList->updateDeckHash();
|
||||||
return nodeToIndex(cardNode);
|
|
||||||
}
|
}
|
||||||
|
sort(lastKnownColumn, lastKnownOrder);
|
||||||
|
emitRecursiveUpdates(parentIndex);
|
||||||
|
return nodeToIndex(cardNode);
|
||||||
}
|
}
|
||||||
|
|
||||||
QModelIndex DeckListModel::nodeToIndex(AbstractDecklistNode *node) const
|
QModelIndex DeckListModel::nodeToIndex(AbstractDecklistNode *node) const
|
||||||
|
|
Loading…
Reference in a new issue