New ConverseJS (XMPP) app with broken source links?
-
@pparent It's not ideal for sure. But QML is to confusing for me to be able to implement the push notifications properly with the js code of conversejs. If you have any ideas how to do it exactly I will appreciate it.
-
It's basically doing the exact same thing I did in this pull request:
https://github.com/alefnode/ubports-apps/pull/44/commits
Although you can do something much simpler because, to make sure I don't miss a notification I've taken into account 3 sources: desktop notifications, title change, and sound. The first one may be enough in your case.
-
@pparent desktop notifications are enabled in covnerejs by default, but I don't know how to enable them in QML to be able to interact with your module.
-
Also make sure to allow your webview to receive desktop notifications in the first place:
onFeaturePermissionRequested: { grantFeaturePermission(securityOrigin, feature, true); } -
@wilson101 said in New ConverseJS (XMPP) app with broken source links?:
@pparent desktop notifications are enabled in covnerejs by default, but I don't know how to enable them in QML to be able to interact with your module.
Well first you add to your webview
onFeaturePermissionRequested: { grantFeaturePermission(securityOrigin, feature, true); }Then in the profile of the webview:
profile: WebEngineProfile { ...... onPresentNotification: (notification) => { helper.showNotificationMessage(notification.title, notification.message); } ....... }//End WebEngineProfileIt should be pretty straight forward.
-
@pparent I have a question about onFeaturePermissionRequested: {
grantFeaturePermission(securityOrigin, feature, true);
}
should I replace feature with notification or whatever name it has in qml or leave it like that ? -
I'm trying this now onFeaturePermissionRequested: {
grantFeaturePermission("http://127.0.0.1:9090/index.html", Notifications, true);
}I saw the examples here https://doc.qt.io/qt-6/qml-qtwebengine-webengineview-obsolete.html#featurePermissionRequested-signal
-
I'm doing something wrong the app froze
-
@wilson101 said in New ConverseJS (XMPP) app with broken source links?:
should I replace feature with notification or whatever name it has in qml or leave it like that ?
Yes you can allow only notifications permissions, but if I were you I would see that once you get notifications working in the first place.
Normally what you want to do would be something like that:
onFeaturePermissionRequested: function(securityOrigin, feature) { if (feature === WebEngineView.Notifications) { grantFeaturePermission(securityOrigin, feature, true); } else { grantFeaturePermission(securityOrigin, feature, false); } } -
@pparent The problem now is that I can't import your code. This is main.qml https://pastebin.com/raw/kt9cpWBz I get :/qml/Main.qml:37 NotificationHelper is not a type
-
I did ./setup-project.sh [PROJECT-PATH] so it must be installed.
-
-
@wilson101 said in New ConverseJS (XMPP) app with broken source links?:
I did ./setup-project.sh [PROJECT-PATH] so it must be installed.
Yes but you should check that the module gets indeed compiled and linked to your project.
-
said in New ConverseJS (XMPP) app with broken source links?:
import Pparent.Notifications 1.0
It's building and installing the app it runs but freezes.
-
You can always debug with
journalctl -rI don't see how the module could make the app freeze, but if the qml module was not built, or not linked to the project, then it could refuse to start QML.
-
@pparent ubuntu-phablet aa-exec[74446]: qrc:/qml/Main.qml:27:1: module "Pparent.Notifications" is not installed yes i see this in clickable logs
-
should I add to clickable.yaml here
clickable_minimum_required: 8.6.0
builder: rust
kill: conversejs
install_root_data:- manifest.json
- content-hub.json
- conversejs.apparmor
- conversejs.desktop
- assets
- www
the folder of the module?
-
@pparent said in New ConverseJS (XMPP) app with broken source links?:
Standard XMMP protocol does not allow to register a custom push server? If so it was poorly designed for a federated protocol...
I am no expert on the topic, but I think while you can of course register a custom push server from the client, UT's push implementation is significantly different from FCM or Apple's one that you would still need a custom proxy server.