summaryrefslogtreecommitdiff
path: root/controller.cxx
blob: 143e313984c2cbff71b3e6eb477689b87eafd513 (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
#include <QQmlApplicationEngine>
#include <QtQml>
#include <qrtclient/client.hxx>
#include <qrtclient/user.hxx>
#include "controller.hxx"

Controller::Controller(QObject* parent) : QObject{parent}
{
	auto client = new RTClient::Client{"https://darapsa.co.id/rt"};
	client->moveToThread(&thread);
	connect(&thread, &QThread::finished, client, &QObject::deleteLater);

	auto engine = static_cast<QQmlApplicationEngine*>(parent);
	auto rootObjects = engine->rootObjects();
	auto appWindow = rootObjects[0];

	auto onboardingView = appWindow->findChild<QObject*>("onboarding");
	connect(onboardingView, SIGNAL(logIn(QString, QString))
			, client, SLOT(logIn(QString, QString)));
	connect(client, SIGNAL(loggedIn(QString))
			, client, SLOT(userShow(QString)));
	connect(client, SIGNAL(userShown(rtclient_user*))
			, onboardingView, SLOT(pushProfile()));
	connect(onboardingView, SIGNAL(ticketNew(QString, QString))
			, client, SLOT(ticketNew(QString, QString)));
	connect(onboardingView, SIGNAL(ticketSearch(QString))
			, client, SLOT(ticketSearch(QString)));

	using RTClient::User;
	auto typeId = qmlRegisterSingletonType<User>("KelakonUser", 0, 1, "User"
			, [](QQmlEngine *engine,
				QJSEngine *scriptEngine) -> QObject* {
			Q_UNUSED(engine)
			Q_UNUSED(scriptEngine)
			return new User;
			});
	auto user = engine->singletonInstance<User*>(typeId);
	connect(client, SIGNAL(userShown(rtclient_user*))
			, user, SLOT(update(rtclient_user*)));

	taskList = new RTClient::TicketList;
	engine->rootContext()->setContextProperty("taskList", taskList);
	connect(client, SIGNAL(ticketSearched(rtclient_ticketlist*))
			, taskList, SLOT(update(rtclient_ticketlist*)));

	thread.start();
}

Controller::~Controller()
{
	thread.quit();
	thread.wait();
	delete taskList;
}