No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. ernestocuzcueta
    3. Posts
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 14
    • Best 0
    • Groups 0

    Posts made by ernestocuzcueta

    • PWA and multiple browser tabs

      Hi
      I developed a PWA using quasar , you can see it login in www.yoreparo.com.
      The point is, many users had the habit of open a new tab in the browser to see other post
      I think I can emulate this action (second mouse click) but my doubt is.

      Are the vars in the system independant between browser tabs or are the same?

      Regards and thansk for your time

      posted in Framework
      E
      ernestocuzcueta
    • RE: Problem when use History go back

      Thanks beets for yours ideas and your time, I will try

      posted in Framework
      E
      ernestocuzcueta
    • RE: Problem when use History go back

      Hi Beets

      If I I understook your idea is load the last page for the infinity scroll.
      If the user saw:
      1
      2
      3
      4
      5

      6
      7
      8
      9
      10

      11
      12
      13
      14
      15

      And he enter in the item 14, when go back the system will show

      11
      12
      13
      14
      15

      and not the original page with the 15 items. It is an interesting idea.

      posted in Framework
      E
      ernestocuzcueta
    • Problem when use History go back

      Hi people

      I have the following problem:
      In my home page the system list posts in a infinity scroll, the user can scroll and scroll and in a moment he can enter to see the post,
      He enter to the item using this code:

      this.$router.push(post.url)
      

      The problem is when the user click in the “go back button” of the browser. In the original version the system load the content of the infinity scroll and the user lost his position.
      I modified it, and changed the code:

      <keep-alive>
                <router-view :key="this.$route.fullPath />
      </keep-alive>
      

      This works well with the go back, but it never load more contents or reset the home, or never load the item page again if this was changed by other user

      “keep alive” seems to generate static content, I don’t need static content for all the pages.

      How can resolve the “go back” so the user can continues chcking his list

      Sorry for my english and thanks for your time

      Regards Ernesto

      posted in Framework
      E
      ernestocuzcueta
    • RE: PWA with white screen

      Hi dobbel

      Thanks, is in the first page in mobiles, tablets and desktop, in differents browsers and OS. I suppose the problem could be a slow internet connection, but I can’t debug it because in my zone works well.

      posted in Framework
      E
      ernestocuzcueta
    • PWA with white screen

      White screen for some users, I added Hotjar script to receive the feedback and they report to me the screen is only white. Generally the problem is with users with bad connection,
      How can validate this and add a relaod button or other thing?

      Thansk for your time!

      posted in Framework
      E
      ernestocuzcueta
    • RE: I'm not finding the configuration to install my PWA

      @dobbel Thanks for your help I will implement it.

      Regards

      posted in Quasar Play App
      E
      ernestocuzcueta
    • RE: How to use oneSignal for push notification with Quasar PWA ?

      @motia said in How to use oneSignal for push notification with Quasar PWA ?:

      ou will need to add the pwa mode to your quasar app. then modify the src-pwa/register-service-worker.js to register

      Thanks motia!
      I checked the package and installed it running:

      • npm install quasar-app-extension-onesignal
      • quasar ext invoke onesignal
        but I don’t know where insert the code wrote in teh documentation of the package
        Whre I should add: “$vm.$oneSignal === {…” in my quasar project?
      posted in Help
      E
      ernestocuzcueta
    • Get a cookie of a parent domain

      Hi everyone

      My original site: “sitedomain.com”, it setted a jwttoken cookie.
      I created a pwa with quasar in “m.sitedomain.com” and try to login using that cookie:

      var loginToken = Cookies.get(‘jwttoken’)
      But this cookie is null.

      I ran it:
      console.log('ALL: ')
      console.log(Cookies.getAll())

      and I found other cookies but not the jwttoken cookie setted with the system in the oparent domain

      I enter in the toolbar of chrome and I can see the cookie setted

      Thanks and regards

      posted in Help
      E
      ernestocuzcueta
    • I'm not finding the configuration to install my PWA

      Hi everybody
      I compile my first PWA and works well in my mobile, but I don’t find the way to install my PWA like an APP in my phone.
      I suppose it should be configure in the quasar.config.js but I didn’t find information about it

      Regards and thanks

      posted in Quasar Play App
      E
      ernestocuzcueta
    • RE: Q-uploader in a q-step, it lost the files list when go back to the upload step

      Hello @tof06

      THANKS!!! Thats works I added that properties in the stepper , I went go to the next and go back and I see the images attached.
      I researched all in the q-uploader but I didn’t think in read the documentation of the q-stepper container

      Thanks for your help

      posted in Help
      E
      ernestocuzcueta
    • Q-uploader in a q-step, it lost the files list when go back to the upload step

      Hi everyone

      This is my simple code:
      <q-stepper …
      …<q-step …
      …<q-step …
      … …<q-uploader …
      …<q-step …

      When I go back to the uploader step the list is empty. The list is empty in 2 cases: with the files send to the server or with the files pending to send

      Thanks for your time!

      posted in Help
      E
      ernestocuzcueta