npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gbv-login-client-vue

v1.0.0

Published

Vue 3 wrapper for login-client

Downloads

23

Readme

login-client-vue

Test and build GitHub package version NPM package name standard-readme compliant

Vue 3 wrapper for login-client.

Table of Contents

Development

git clone https://github.com/gbv/login-client-vue.git
cd login-client-vue
npm ci
npm run dev # for Vite dev server

The dev server should then be running on http://localhost:5173. However, check the console output to see the actual port since it will increment it if it's not available.

Ideally, you should have an instance of Login Server running on localhost:3004. The example served by the dev server will automatically use this instance.

Build

All builds will used the destination folder dist. Note that the folder will be emptied before each build.

# for Vite library build
npm run build
# for Vite app build
BUILD_MODE=app npm run build
# for Vite app build with different base
BUILD_MODE=app npm run build -- --base=/base/

Usage

Adding it to your project

The library can be used in the browser, for example via jsDelivr: Note that it requires Vue 3 and login-client to be included as well. Please refer to the full HTML example here.

If you are using it via Node (the preferred method), first install it via npm:

npm install gbv-login-client-vue

This library consists of two parts:

  1. Login plugin
  2. UserStatus component

You can add one or both of these globally in src/main.js:

import { createApp } from 'vue'
import App from './App.vue'

const app = createApp(App)

// Add stylesheet (always necessary for the UserStatus component, as of v1.0.0)
import "gbv-login-client-vue/styles"

// Add both
import * as LoginClientVue from "gbv-login-client-vue"
app.use(LoginClientVue)

// Alternative: Add individually
import { Login, UserStatus } from "gbv-login-client-vue"
app.use(Login)
app.use(UserStatus)

app.mount('#app')

Login Plugin

Source

The Login plugin provides an object to interact with a Login Server instance as well as some properties for the current status of the connection. All properties in the exported object are either reactive, read-only Vue variables or methods to interact with the server.

There are two ways to access this object:

  1. Add it globally (see above) and then use inject to access it (recommended):

    import { defineComponent, inject } from "vue"
    
    export default defineComponent({
      // ...
      setup() {
        // Option 1: Import the whole plugin with all properties as a reactive object
        const login = inject("login")
        // Option 2: Deconstruct particular properties
        // Note: If you are using these within the setup method, you need to use the `.value`
        // notation for reactive values (e.g. `connected.value`, etc.).
        // See below for which values are reactive.
        const { connected, user } = inject("login-refs")
        // ...
      },
    })

    If you are not using the new Composition API, then you can also used inject: ["login"] and access it via login in the template.

  2. Import it directly in the component:

    import { defineComponent, toRefs } from "vue"
    import { Login } from "gbv-login-client-vue"
    
    export default defineComponent({
      // ...
      setup() {
        // Option 1: Import the whole plugin with all properties
        const login = Login
        // Option 2: Deconstruct particular properties (will be read-only refs)
        // Note that in this case, ALL properties will be refs, i.e. have to be accessed using
        // the `.value` notation when used within the setup method.
        const { connected, user } = toRefs(login)
        // ...
      },
    })

Note that if you are not including individual properties, wrapping the object in reactive is recommended because you will be able to access the properties directly, both in the code and in the template.

The following reactive properties are provided:

  • connected - boolean whether the login server is connected
  • loggedIn - boolean whether the user is logged in
  • user - user object if logged in (null otherwise)
  • providers - a list of providers available at the Login Server
  • about - object with information about the Login Server
  • token - the latest JWT that can be used to authenticate requests
  • lastError - an error object of the last error (null if there has been no error)
  • client - direct access to the login-client instance (usually not needed)

The following non-reactive properties are provided:

  • errors - a list of error types
    • errors.NoInternetConnectionError
    • errors.ThirdPartyCookiesBlockedError
    • errors.ServerConnectionError
  • events - a list of possible events (usually not needed)

The following methods are provided:

  • connect(url, options) - connect to a Login Server; for options, refer to the login-client documentation (LoginClient constructor)
  • disconnect() - disconnects from the Login Server; usually not needed since connect will first disconnect before establishing the new connection
  • setName(name) - updates the user's name at the Login Server
  • openBaseWindow() - opens the Login Server's base page in a new window
  • openLoginWindow({ id: providerId, redirect = false } = {}) - opens the Login Server's login window, optionally for a certain provider ID and/or as a redirect in the same window
  • openLogoutWindow({ redirect = false } = {}) opens the Login Server's logout window, optionally with a redirect in the same window

It is recommended to establish the connection (via connect()) either in main.js or App.vue. If your application works with a single fixed Login Server instance, it should be sufficient to connect once since it will automatically reconnect if necessary.

Example:

import { Login } from "gbv-login-client-vue"
Login.connect("localhost:3004", { ssl: false })

For a more extensive example, you can also refer to this project's App.vue.

UserStatus Component

Source

The UserStatus component provides a simple way of adding a login button to an application. It offers a sign in, either in a separate window or in the same window with a redirect back to the application, as well as some status information in a dropdown.

It requires the Login plugin and depends on a successful connection (which can either be initiated in main.js or your App.vue, see above). If the connection is not successful, it will show an error in the dropdown.

There is only property redirect which is a boolean:

  • false (default) opens a new window for the user to sign in/out, which is closed automatically as soon as the action is completed.
  • true will redirect the current page to the Login Server instance and add the current URL to the redirect_uri parameter so that, after a successful login, the user is redirected back to your application.

If you don't want to add the component globally, you can include it individually where needed:

import { defineComponent } from "vue"
import { UserStatus } from "gbv-login-client-vue"

export default defineComponent({
  // ...
  components: {
    UserStatus,
  },
  // ...
})

Publish

Please work on the dev branch during development (or better yet, develop in a feature branch and merge into dev when ready).

When a new release is ready (i.e. the features are finished, merged into dev, and all tests succeed), run the included release script (replace "patch" with "minor" or "major" if necessary):

npm run release:patch

This will:

  • Check that we are on dev
  • Run tests and build to make sure everything works
  • Make sure dev is up-to-date
  • Run npm version patch (or "minor"/"major")
  • Ask you to confirm the version
  • Push changes to dev
  • Switch to main
  • Merge changes from dev
  • Push main with tags
  • Switch back to dev

After running this, GitHub Actions will automatically publish the new version to npm. It will also create a new GitHub Release draft. Please edit and publish the release draft manually.

License

MIT Copyright (c) 2021 Verbundzentrale des GBV (VZG)