2020-05-06 17:40:00 +00:00
|
|
|
import NimQml
|
2020-05-15 21:10:00 +00:00
|
|
|
import application/applicationView
|
|
|
|
import chat/core as chat
|
|
|
|
import wallet/core as wallet
|
|
|
|
import node/core as node
|
2020-05-08 22:12:32 +00:00
|
|
|
import state
|
2020-05-13 15:37:12 +00:00
|
|
|
|
|
|
|
import status/core as status
|
2020-05-15 21:10:00 +00:00
|
|
|
# import status/chat as status_chat
|
2020-05-13 15:37:12 +00:00
|
|
|
import status/test as status_test
|
2020-05-15 21:10:00 +00:00
|
|
|
import status/types
|
2020-05-11 17:31:07 +00:00
|
|
|
|
2020-05-06 17:40:00 +00:00
|
|
|
proc mainProc() =
|
2020-05-10 23:24:06 +00:00
|
|
|
# From QT docs:
|
2020-05-11 21:24:08 +00:00
|
|
|
# For any GUI application using Qt, there is precisely one QApplication object,
|
|
|
|
# no matter whether the application has 0, 1, 2 or more windows at any given time.
|
|
|
|
# For non-QWidget based Qt applications, use QGuiApplication instead, as it does
|
2020-05-10 23:24:06 +00:00
|
|
|
# not depend on the QtWidgets library. Use QCoreApplication for non GUI apps
|
|
|
|
var app = newQApplication()
|
2020-05-11 21:24:08 +00:00
|
|
|
defer: app.delete() # Defer will run this just before mainProc() function ends
|
2020-05-06 17:40:00 +00:00
|
|
|
|
|
|
|
var engine = newQQmlApplicationEngine()
|
|
|
|
defer: engine.delete()
|
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
var appState = state.newAppState()
|
|
|
|
echo appState.title
|
|
|
|
|
2020-05-13 20:20:50 +00:00
|
|
|
status.init(appState)
|
2020-05-11 17:31:07 +00:00
|
|
|
|
2020-05-13 15:37:12 +00:00
|
|
|
status_test.setupNewAccount()
|
|
|
|
discard status_test.addPeer("enode://2c8de3cbb27a3d30cbb5b3e003bc722b126f5aef82e2052aaef032ca94e0c7ad219e533ba88c70585ebd802de206693255335b100307645ab5170e88620d2a81@47.244.221.14:443")
|
2020-05-11 17:31:07 +00:00
|
|
|
echo status.callPrivateRPC("{\"jsonrpc\":\"2.0\", \"method\":\"wakuext_requestMessages\", \"params\":[{\"topics\": [\"0x7998f3c8\"]}], \"id\": 1}")
|
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
let applicationView = newApplicationView(app)
|
|
|
|
defer: applicationView.delete
|
2020-05-13 23:02:23 +00:00
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
status.startMessenger()
|
2020-05-11 17:31:07 +00:00
|
|
|
|
2020-05-15 21:40:05 +00:00
|
|
|
var wallet = wallet.newController()
|
2020-05-15 21:10:00 +00:00
|
|
|
wallet.init()
|
2020-05-15 21:40:05 +00:00
|
|
|
engine.setRootContextProperty("assetsModel", wallet.variant)
|
2020-05-13 19:14:35 +00:00
|
|
|
|
2020-05-15 21:40:05 +00:00
|
|
|
var chat = chat.newController()
|
2020-05-15 21:10:00 +00:00
|
|
|
chat.init()
|
2020-05-15 21:40:05 +00:00
|
|
|
engine.setRootContextProperty("chatsModel", chat.variant)
|
2020-05-11 21:24:08 +00:00
|
|
|
|
2020-05-15 21:40:05 +00:00
|
|
|
var node = node.newController()
|
2020-05-15 21:10:00 +00:00
|
|
|
node.init()
|
2020-05-15 21:40:05 +00:00
|
|
|
engine.setRootContextProperty("nodeModel", node.variant)
|
2020-05-06 17:40:00 +00:00
|
|
|
|
2020-05-15 21:10:00 +00:00
|
|
|
engine.load("../ui/main.qml")
|
2020-05-08 22:12:32 +00:00
|
|
|
|
|
|
|
appState.subscribe(proc () =
|
2020-05-15 21:10:00 +00:00
|
|
|
# chatsModel.names = @[]
|
2020-05-08 22:12:32 +00:00
|
|
|
for channel in appState.channels:
|
|
|
|
echo channel.name
|
2020-05-15 21:10:00 +00:00
|
|
|
# chatsModel.addNameTolist(channel.name)
|
|
|
|
chat.join(channel.name)
|
2020-05-08 22:12:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
appState.addChannel("test")
|
|
|
|
appState.addChannel("test2")
|
2020-05-08 22:04:53 +00:00
|
|
|
|
2020-05-13 20:20:50 +00:00
|
|
|
# EXAMPLE: this will be triggered once a message is received
|
|
|
|
appState.onSignal(SignalType.Message, proc(myMessage: string): void =
|
|
|
|
echo "I received a message: ", myMessage
|
|
|
|
);
|
|
|
|
|
|
|
|
# Handle signals as part of the state
|
|
|
|
var signalWorker: Thread[AppState]
|
|
|
|
signalWorker.createThread(proc(s:AppState) = s.processSignals, appState)
|
|
|
|
defer: signalWorker.joinThread()
|
2020-05-15 21:10:00 +00:00
|
|
|
|
2020-05-10 23:24:06 +00:00
|
|
|
# Qt main event loop is entered here
|
|
|
|
# The termination of the loop will be performed when exit() or quit() is called
|
2020-05-06 17:40:00 +00:00
|
|
|
app.exec()
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
mainProc()
|
|
|
|
GC_fullcollect()
|