QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
qmlpaging.h
1 #ifndef QTRESTCLIENT_QMLPAGING_H
2 #define QTRESTCLIENT_QMLPAGING_H
3 
4 #include <QtCore/QObject>
5 #include <QtQml/QJSValue>
6 #include <QtRestClient/IPaging>
7 #include <QtRestClient/RestReply>
8 #include <QtRestClient/RestClient>
9 #include <QJSEngine>
10 
11 #ifdef DOXYGEN_RUN
13 
18 class Paging
19 #else
20 namespace QtRestClient {
21 
22 class QmlPaging
23 #endif
24 {
25  Q_GADGET
26 
35  Q_PROPERTY(bool valid READ isValid CONSTANT)
45  Q_PROPERTY(QVariantList items READ items CONSTANT)
55  Q_PROPERTY(int total READ total CONSTANT)
65  Q_PROPERTY(int offset READ offset CONSTANT)
75  Q_PROPERTY(bool hasNext READ hasNext CONSTANT)
85  Q_PROPERTY(QUrl nextUrl READ nextUrl CONSTANT)
95  Q_PROPERTY(bool hasPrevious READ hasPrevious CONSTANT)
105  Q_PROPERTY(QUrl previousUrl READ previousUrl CONSTANT)
115  Q_PROPERTY(QVariantMap properties READ properties CONSTANT)
116 
117 public:
119  explicit QmlPaging() = default;
121  explicit QmlPaging(IPaging *iPaging, RestClient *client, QJSEngine *engine);
122 
124  static QmlPaging create(RestClient *client, QJSEngine *engine, const RestReply::DataType &data);
125 
127  bool isValid() const;
128 
130  Q_INVOKABLE QtRestClient::RestReply *next();
132  Q_INVOKABLE QtRestClient::RestReply *previous();
133 
135  QVariantList items() const;
137  int total() const;
139  int offset() const;
141  bool hasNext() const;
143  QUrl nextUrl() const;
145  bool hasPrevious() const;
147  QUrl previousUrl() const;
149  QVariantMap properties() const;
150 
151 public Q_SLOTS:
160  void iterate(const QJSValue &iterator,
161  int to = -1, int from = 0);
172  void iterate(const QJSValue &iterator,
173  const QJSValue &failureHandler,
174  const QJSValue &errorHandler,
175  int to = -1, int from = 0);
176 
177 private:
178  QJSEngine *_engine = nullptr;
179  RestClient *_client = nullptr;
180  QSharedPointer<IPaging> _paging;
181 
182  int internalIterate(QJSValue iterator, int from, int to) const;
183 };
184 
185 }
186 
187 Q_DECLARE_METATYPE(QtRestClient::QmlPaging)
188 
189 #endif // QTRESTCLIENT_QMLPAGING_H
de::skycoder42::QtRestClient::RestClient
The QML version of QtRestClient::RestClient.
Definition: qmlrestclient.h:16
QtRestClient
The Namespace containing all classes of the QtRestClient module.
Definition: genericrestreply.h:14
QUrl
de::skycoder42::QtRestClient::RestReply
The QML version of QtRestClient::RestReply.
Definition: qmlrestreply.h:22
de::skycoder42::QtRestClient::Paging::valid
bool valid
Definition: qmlpaging.h:35
QSharedPointer
de::skycoder42::QtRestClient
The QML import for the QtRestClient QML module.
Definition: qmlgenericrestreply.h:14
de::skycoder42::QtRestClient::Paging::previous
Q_INVOKABLE QtRestClient::RestReply * previous()
Performs a request for the previous paging object.
de::skycoder42::QtRestClient::Paging::iterate
void iterate(const QJSValue &iterator, int to=-1, int from=0)
QJSEngine
de::skycoder42::QtRestClient::Paging::next
Q_INVOKABLE QtRestClient::RestReply * next()
Performs a request for the next paging object.
QJSValue
de::skycoder42::QtRestClient::Paging
The QML version of QtRestClient::Paging.
Definition: qmlpaging.h:18