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. DevinH
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 15
    • Best 2
    • Groups 0

    DevinH

    @DevinH

    2
    Reputation
    138
    Profile views
    15
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    DevinH Follow

    Best posts made by DevinH

    • Deploying a quasar SSR app, with font-awesome, to aws lambda

      I’m wondering if anyone has run into a situation where font-awesome icons not being decoded by the browser when deploying the application to AWS with a CloudFont/API Gateway stack. I’ve tried various things, like modifyng the BinaryMediaTypes and such, but couldn’t get anything working.

      For the time being, I’ve disabled letting Quasar manage font-awesome (by removing fontawesome from the ‘extras’ in the quasar config), and just threw up a link to the font-awesome js in the index.template.html.

      posted in Help
      D
      DevinH
    • Use of ssrContext with Vuex store export

      The documentation mentions that you have access to the ssrContext in two places, preFetch and plugins. However, I’ve noticed a third place:

      export default function (/* { ssrContext } */) {
      const Store = new Vuex.Store({
      modules: {
      example,
      }
      });

      return Store
      }

      So, I’m just curious… What’s an example of how one might make use of ssrContext there?

      posted in Help
      D
      DevinH

    Latest posts made by DevinH

    • RE: [v1] Quasar v1.0.0-beta.17 released!

      So if I understand correctly, this is just a windows things? I can continue using npm on linux?

      posted in Announcements
      D
      DevinH
    • RE: [v1] QDate & QTime does not have ok/cancel button to dismiss the dialog

      Reviewing the Material Design specs, this type of dialog is what’s known as a Simple Dialog.

      Simple dialogs without actions
      Simple dialogs allow users to act on selected elements, without action text. For example, users can simply select a list item to take action on it.

      I think a good future enhancement would be if we could pass a bool (probably named ‘simple’) to convert to/from a Simple Dialog

      posted in Framework
      D
      DevinH
    • RE: [v1] QDate & QTime does not have ok/cancel button to dismiss the dialog

      What if the user opens the dialog, but then decides not to make a change? I’d still think that clicking outside the dialog would suffice, but that’d be problematic for a full screen dialog. Unless clicking on the already-selected date would also close the dialog… not the most UX friendly.

      posted in Framework
      D
      DevinH
    • RE: Quasar v1.0 beta has arrived

      QSlideItem is one of my favorite additions. Something that’s common in most mobile applications, yet rare to find that feature in component frameworks. I’ve even considered switching to the iconic framework just for that feature alone.

      posted in Announcements
      D
      DevinH
    • RE: Quasar v1.0 beta1 in a few days

      Sure. I’m not advocating that Quasar support pre-rendering, I rarely build apps that are simple enough to be pre-rendered. I just noticed the confusion and wanted to clear that up.

      With that being said, There is integration with Nuxt on the quasar roadmap for v1.0
      “Alternative to Quasar SSR: Nuxt module (for ability to use Quasar + Nuxt)”
      I kind of assumed that’s what it was for (to leverage Nuxt pre-rendering in your Quasar app), because I don’t know of any other advantage of introducing that integration…

      posted in Announcements
      D
      DevinH
    • RE: Quasar v1.0 beta1 in a few days

      @s-molinari
      @pinalbhatt is talking about SPA pre-rendering. Nuxt supports both SSR and pre-rendering. Quasar (currently) only supports SSR
      https://nuxtjs.org/guide/#static-generated-pre-rendering-

      posted in Announcements
      D
      DevinH
    • RE: A Vue "Native" component set Vs. "JS" Component set

      I think you’re confusing the terms “framework” and “library”. I don’t think anyone was advocating mixing together frameworks. That would be a bit… crazy. But utilizing libraries is a very different thing. And not to get off topic, but vue-sticky does not have the desired features.

      posted in Framework
      D
      DevinH
    • RE: A Vue "Native" component set Vs. "JS" Component set

      I’d just like to add that it’s not necessarily a bad thing to mix direct dom manipulating components/widgets into your Vue app, as long you understand the potential problems and can verify that those components won’t cause such problems. The only thing you need to be careful about are situations in which both Vue and the non-Vue stuff are trying to update the same pieces of dom. When that happens, they’ll each overwrite each other’s changes because neither are aware of what the other is doing. But in many cases, the non-vue components (such as some jquery components) ‘own’ the sections of dom that are rendering that particular component, particularly if they’re configured to execute in Vue’s mounted hook, when Vue is done doing its thing for that render cycle, then they’re not stepping on each others toes.

      For example, I’ve used utilities like stickybits in more than a few Vue apps to aid in sticky positioned elements. StickyBits works by directly manipulating the dom and adding/removing classes to targeted elements. It’s completely safe to do so, so as long as you’re utilizing things like that in a Vue safe way. My point is, although there is a difference between vue rendered components and vue safe components, limiting yourself to only vue rendered components might unnecessarily prevent you from taking advantage of a vast library of useful stuff out there.

      posted in Framework
      D
      DevinH
    • RE: [solved] preFetch call depends on another preFetch results

      This appears to have been fixed with https://github.com/quasarframework/quasar-cli/issues/173. With that change, it appears that parent preFetches (such as those in App.vue) are fully resolved before child preFetches.

      posted in Help
      D
      DevinH
    • Use of ssrContext with Vuex store export

      The documentation mentions that you have access to the ssrContext in two places, preFetch and plugins. However, I’ve noticed a third place:

      export default function (/* { ssrContext } */) {
      const Store = new Vuex.Store({
      modules: {
      example,
      }
      });

      return Store
      }

      So, I’m just curious… What’s an example of how one might make use of ssrContext there?

      posted in Help
      D
      DevinH