Git Product home page Git Product logo

Comments (3)

BernardZhao avatar BernardZhao commented on June 4, 2024 4

I think that to support server side rendering this plugin has to take more than just window into account, because things like fetching the /config from the site itself doesn't really make sense when the site is being rendered. It should really be done on the client, and therefore init must be done there as well. The problem here is that if the keycloak object is only created then, putting references to the $keycloak property with things like login and logout into your code wouldn't resolve when being rendered. I believe this is why in @stevenferrer's case even when running the plugin on the client side only it still fails, and I tried running the plugin client side only on Gridsome and got the same issue. I would make a PR myself if this was an easy fix, but I can't think of a simple way of making this work.

from vue-keycloak-js.

nlien avatar nlien commented on June 4, 2024

You're right. The plugin doesn't take SSR into account. This is something I hope to get implemented. Can't really say when at the moment...

from vue-keycloak-js.

stevenferrer avatar stevenferrer commented on June 4, 2024

Here's my setup:

plugin/vue-keycloak.js

import Vue from 'vue'
import VueKeyCloak from '@dsb-norge/vue-keycloak-js'

// You can also pass in options. Check options reference below.
Vue.use(VueKeyCloak, {
  config: {
    url: 'http://keycloakserver/auth',
    realm: 'my-realm',
    clientId: 'my-client'
  },
  init: {
    onLoad: 'login-required',
    checkLoginIframe: false
  },
  onReady(keycloak) {
    
  }
})

nuxt.config.js

{
  ...
  plugins: [
    { src: '~/plugins/vue-keycloak.js', mode: 'client' }
  ]
  ...
}

I'm also getting warnings with Nuxt.js like the one below:

[Vue warn]: The client-side rendered virtual DOM tree is not matching server-rendered content. This is likely caused by incorrect HTML markup, for example nesting block-level elements inside <p>, or missing <tbody>. Bailing hydration and performing full client-side render.

For now, I'm using the non-ssr mode of Nuxt to get around this.

Nuxt.js v2.11.0
Keycloak v8.0.1

from vue-keycloak-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.