gbv-login-client-vue
v1.0.0
Published
Vue 3 wrapper for login-client
Downloads
23
Readme
login-client-vue
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:
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
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:
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 vialogin
in the template.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 connectedloggedIn
- boolean whether the user is logged inuser
- user object if logged in (null
otherwise)providers
- a list of providers available at the Login Serverabout
- object with information about the Login Servertoken
- the latest JWT that can be used to authenticate requestslastError
- 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 typeserrors.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 sinceconnect
will first disconnect before establishing the new connectionsetName(name)
- updates the user's name at the Login ServeropenBaseWindow()
- opens the Login Server's base page in a new windowopenLoginWindow({ 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 windowopenLogoutWindow({ 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
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 theredirect_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)