summaryrefslogtreecommitdiff
path: root/catalog.cxx
blob: 3a9e901c84b941071a3328791523712d48facad1 (plain)
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
#include <cstddef>
#include "interchange/catalog.hxx"

namespace QInterchange {

	Catalog::Catalog(struct interchange_catalog catalog, QObject* parent) :
		QAbstractListModel{parent}
	{
		for (size_t i = 0; i < catalog.length; i++)
			addProduct(Product{&catalog.products[i]});
	}

	int Catalog::rowCount(QModelIndex const& parent) const
	{
		Q_UNUSED(parent)
		return products.count();
	}

	QVariant Catalog::data(QModelIndex const& index, int role) const
	{
		auto row = index.row();
		if (row < 0 || row >= products.count()) return QVariant();
		auto product = products[row];
		switch (role) {
			case Product::SkuRole:
				return product.sku;
			case Product::DescriptionRole:
				return product.description;
			case Product::TitleRole:
				return product.title;
			case Product::CommentRole:
				return product.comment;
			case Product::ThumbRole:
				return product.thumb;
			case Product::ImageRole:
				return product.image;
			case Product::PriceRole:
				return product.price;
			case Product::ProdGroupRole:
				return product.prodGroup;
			case Product::CategoryRole:
				return product.category;
			case Product::WeightRole:
				return product.weight;
			case Product::OptionTypeRole:
				return product.optionType;
			case Product::AuthorRole:
				return product.author;
			case Product::CrossSellRole:
				return product.crossSell;
			case Product::ImageLargeRole:
				return product.imageLarge;
			default:
				return QVariant();
		}
	}

	QHash<int, QByteArray> Catalog::roleNames() const
	{
		return QHash<int, QByteArray>{
			{ Product::SkuRole, "sku" },
			{ Product::DescriptionRole, "description" },
			{ Product::TitleRole, "title" },
			{ Product::CommentRole, "comment" },
			{ Product::ThumbRole, "thumb" },
			{ Product::ImageRole, "image" },
			{ Product::PriceRole, "price" },
			{ Product::ProdGroupRole, "prodGroup" },
			{ Product::CategoryRole, "category" },
			{ Product::WeightRole, "weight" },
			{ Product::OptionTypeRole, "optionType" },
			{ Product::AuthorRole, "author" },
			{ Product::CrossSellRole, "crossSell" },
			{ Product::ImageLargeRole, "imageLarge" }
		};
	}

	void Catalog::addProduct(Product const& product)
	{
		beginInsertRows(QModelIndex(), rowCount(), rowCount());
		products << product;
		endInsertRows();
	}

}