UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    click on notification bubble

    Scheduled Pinned Locked Moved OS
    32 Posts 6 Posters 431 Views 3 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • G Offline
      gpatel-fr @mihael
      last edited by

      @mihael said:

      can't the "load" be included in the notification bubble as well? And then the UI adds the possibility for the user to interact with the bubble by tapping on it.

      I have looked at the spec for push notifications. Not the http notifications via the ubports push server, the notifications via d-bus, the so-called "low-level API", the 'postal message':

      helperoutput.png

      here is an exemple use from Dekko source code:

      
      QJsonObject NotificationWatcher::buildSummaryMessage(const QString &msg) {
      
      
          QString appDir = QCoreApplication::applicationDirPath();
          appDir.replace(QRegExp("dekko2.dekkoproject/.*"), "dekko2.dekkoproject/current/");
          QString icon = QString("file://").append(appDir).append("dekko.png");
      
          QJsonObject c;
          c["summary"] = msg;
          c["popup"] = true;
          c["persist"] = true;
          c["icon"] = icon;
          QJsonArray actions = QJsonArray();
          QString actionUri = QStringLiteral("appid://dekko2.dekkoproject/dekko/current-user-version");
          actions.append(actionUri);
          c["actions"] = actions;
      
          QJsonObject notification;
          notification["card"] = c;
          notification["sound"] = true;
          notification["vibrate"] = vibrate();
          QJsonObject message;
          message["notification"] = notification;
          return message;
      }   
      

      what is important is that Dekko does everything 'right' to allow for the system to activate it when clicking (pressing) the bubble notification. There is nothing that Dekko is purposely NOT doing to disable this capability that is said to be possible in plain english in the doco:

      If you add a URL, then bubble notifications are clickable and launch that URL.
      

      so it can be considered like a bug, yes. I'm changing my point of view here. Per the doc, it was designed to work like you want it to work, but obviously it don't (I checked again with Dekko).

      I guess that it has never worked like that though.

      For apps that are using the high level Api, I don't know if it's even possible to pass an activation URI so it's possible that this capability was not really wanted as it seemed just not doable.

      mihaelM K 2 Replies Last reply Reply Quote 1
      • mihaelM Offline
        mihael @gpatel-fr
        last edited by mihael

        @gpatel-fr Great find!

        I don't know where to search but maybe we need to inspect the code in the OS for handling the bubble.

        Some time ago I had to write a service worker for browsers and I had to specifically program what it is done when a notification is clicked.

        1 Reply Last reply Reply Quote 0
        • K Online
          kristatos @gpatel-fr
          last edited by

          @gpatel-fr said:

          I guess that it has never worked like that though.

          I'm not 100% sure, but AFAIR it was working like this in earlier UT-Versions (16.04, maybe 20.04)

          BQ Aquaris E4.5 (UT 16.04)
          Vollaphone (UT 24.04)
          Vollaphone 22 (UT 24.04)

          G 1 Reply Last reply Reply Quote 0
          • G Offline
            gpatel-fr @kristatos
            last edited by

            @kristatos

            interesting, unfortunately it's very unlikely that someone still running 16.04 is reading this, maybe someone running 20.04 could chime in ?

            P K 2 Replies Last reply Reply Quote 0
            • P Offline
              projectmoon @gpatel-fr
              last edited by

              @gpatel-fr said:

              @kristatos

              interesting, unfortunately it's very unlikely that someone still running 16.04 is reading this, maybe someone running 20.04 could chime in ?

              I have a Nexus 5 in a drawer... that might be running 16.04... Assuming it actually turns on, which is not a given.

              G 1 Reply Last reply Reply Quote 0
              • G Offline
                gpatel-fr @projectmoon
                last edited by

                @projectmoon said:

                I have a Nexus 5 in a drawer... that might be running 16.04

                interesting. Don't expect it to do any better in 26.04 (if it's supported one day). Notification bubbles don't work as per the doc in 26.04 either, it's not worth the bother to upgrade 🙂

                P 1 Reply Last reply Reply Quote 0
                • K Online
                  kristatos @gpatel-fr
                  last edited by

                  @gpatel-fr I still have my E4.5 in fully working condition. Maybe I'll test with a spare SIM-card if the notifications are working like expected 😉

                  BQ Aquaris E4.5 (UT 16.04)
                  Vollaphone (UT 24.04)
                  Vollaphone 22 (UT 24.04)

                  1 Reply Last reply Reply Quote 0
                  • P Offline
                    projectmoon @gpatel-fr
                    last edited by

                    @gpatel-fr would not upgrade it. Just test notifications. It is indeed 16.04 and turns on. Haven't tested yet though.

                    1 Reply Last reply Reply Quote 0
                    • mihaelM Offline
                      mihael
                      last edited by

                      I found my old phone (Meizu Pro5) with 16.04. I can confirm that I can click on the bubble when I receive a new email and it opens Dekko2.

                      G 1 Reply Last reply Reply Quote 0
                      • mihaelM Offline
                        mihael @CiberSheep
                        last edited by

                        @CiberSheep said:

                        No click on notification bubbles, please.

                        I don't want to get you upset, I am not trying to convince anybody of anything, I am just trying to understand... but it seems as if I touched a sensitive issue here: why are you against click on notification bubbles? - especially since you have them disabled, then it would not affect you in any way. Or will that somehow make the OS worse / slow / etc? - as I said, I am just trying to understand. Thank you.

                        1 Reply Last reply Reply Quote 0
                        • G Offline
                          gpatel-fr @mihael
                          last edited by

                          @mihael

                          thanks for the investigation, in this case it seems indeed a regression to add to the fact that it don't conform to the spec. I'm beginning to think to create an issue on Gitlab.

                          1 Reply Last reply Reply Quote 0
                          • mihaelM Offline
                            mihael
                            last edited by

                            Maybe @projectmoon and @kristatos can confirm? - @kristatos, you don't need to insert a sim, you just need to connect to wifi and then receive an email while having Dekko2 installed...

                            G 1 Reply Last reply Reply Quote 0
                            • G Offline
                              gpatel-fr @mihael
                              last edited by

                              @mihael said:

                              can confirm?

                              I hope that this question don't come from my musing about thinking to create an issue on Gitlab.

                              If I am thinking and not yet acting on it, it's not that I don't trust you, it's because I would like to take a look at the code if I see anything obvious (sometimes one get lucky) and in this case I'd not create an issue, I'd create directly a merge request. It's better to try to fix than just create yet another issue.

                              mihaelM 1 Reply Last reply Reply Quote 0
                              • mihaelM Offline
                                mihael @gpatel-fr
                                last edited by

                                @gpatel-fr Oh, noooo, not at all, I'm not that deep or intense 🙂
                                I just don't trust myself. I am quite tired and confused these days. I mean I tested it with Dekko, I tested with bubbles and with notifications but maybe I missed something. Who knows?... That is why I would feel better if someone else would confirm it for 16.04 - so that it would not be my experience only.

                                1 Reply Last reply Reply Quote 0
                                • K Online
                                  kristatos
                                  last edited by

                                  @gpatel-fr @mihael I've made a quick test with my Volla22 on 24.04-1.3: I set a calendar-event with notification and closed the calendar app. On the beginning of the event the notification comes up and when I tap on the bubble the calendar app starts and showed me the event. So it still seems to work for some applications on 24.04...

                                  BQ Aquaris E4.5 (UT 16.04)
                                  Vollaphone (UT 24.04)
                                  Vollaphone 22 (UT 24.04)

                                  1 Reply Last reply Reply Quote 0

                                  Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                  Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                  With your input, this post could be even better 💗

                                  Register Login
                                  • First post
                                    Last post