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

@resourge/vue3-use-authentication

v1.4.12

Published

Vue 3 use Authentication/Permissions hook

Downloads

378

Readme

Vue 3 Authentication

License

Description

Vue 3 Authentication is a Vue 3 composition API library for managing user authentication and permissions.

Table of Contents

Installation

To install use npm:

npm install @resourge/vue3-use-authentication
# or
yarn add @resourge/vue3-use-authentication

Usage

Configuration

In your main App.vue file, configure the AuthenticationProvider component. This component is responsible for managing authentication state throughout your application.

<script lang="ts" setup>
import { AuthenticationProvider } from '@resourge/vue3-use-authentication';
</script>

<template>
  <AuthenticationProvider :localStorageSessionKey="SESSION_STORAGE_KEY" encrypted :encryptedSecret="SOME_RANDOM_STRING">
    <RouterView />
  </AuthenticationProvider>
</template>

Replace SESSION_STORAGE_KEY and SOME_RANDOM_STRING with your actual session storage key and encrypted secret respectively.

Profile and Permissions

Define your user Profile and Permissions in your application. You can use TypeScript interfaces or classes to define your user profile and permissions.:

Profile.ts

export class Profile {
  id: string;
  name: string;
  email: string;
  
  constructor(id: string, name: string, email: string) {
    this.id = id;
    this.name = name;
    this.email = email;
  }
}

Wrapper for the useAuthentication to set the Profile and Permissions types.

import { useAuthentication as useAuthenticationBase } from '@resourge/vue3-use-authentication'
import Permissions from '../permissions/Permissions' // Replace with your actual file path from your permissions file
import { Profile } from './User' // Replace with your actual file path from you user profile

// Use the useAuthenticationBase function to access the authentication
export default function useAuthentication(){
    return useAuthenticationBase<Profile, Permissions>()
}

Permissions.ts

export default class Permissions {
  isAdmin: boolean;
  isUser: boolean;

  constructor(roles: string[] = []) {
    // Define your permissions here based on the user roles
    // Complete the implementation based on your application's requirements
  }
}

Wrapper for the usePermissions to set the Profile and Permissions types.

import { usePermissions as usePermissionsBase } from '@resourge/vue3-use-authentication'
import Permissions from '../permissions/Permissions' // Replace with your actual file path from your permissions file
import { Profile } from './User' // Replace with your actual file path from you user profile

// Use the usePermissionsBase function to access the permissions
export default function usePermissions(){
  return usePermissionsBase<Profile, Permissions>()
}

useAuthentication.ts can be used in your components to access the user's authentication state.

import { defineComponent } from 'vue';
import useAuthentication from './shared/authentication/user/useAuthentication'; // Replace with your actual file path

export default defineComponent({
  setup() {
    const { isAuthenticated, user } = useAuthentication();

    // Use isAuthenticated and user in your component

    return {
      isAuthenticated,
      user
    };
  }
});

usePermissions can be used in your components to check if a user has a specific permission.

import { defineComponent } from 'vue';
import usePermissions from './shared/authentication/user/usePermissions'; // Replace with your actual file path

export default defineComponent({
  setup() {
    const { isUser } = usePermissions();
    // Use hasPermission in your component
    return {
      isUser
    };
  }
});

useAuthenticationStorage can be used to access the user's authentication state outside of the components example (Router).

import { useAuthenticationStorage } from '@resourge/vue3-use-authentication';
import { Profile } from './User'; // Replace with your actual file path
import Permissions from './Permissions'; // Replace with your actual file path

const { isAuthenticated, user } = useAuthenticationStorage<Profile, Permissions>();

Login and Logout

You can use the useAuthentication hook to login and logout a user.

import { defineComponent } from 'vue';
import useAuthentication from './shared/authentication/user/useAuthentication'; // Replace with your actual file path

export default defineComponent({
  setup() {
    const { login, logout } = useAuthentication();

    // login example
    login(new Profile(), new Permissions(), 'token', 'cookie');

    // logout example
    logout();

    return {
      login,
      logout
    };
  }
});

For more detailed usage instructions, refer to the documentation.

Documentation

For comprehensive documentation and usage examples, visit the Vue 3 Authentication documentation.

Contributing

Contributions to Vue 3 Authentication are welcome! To contribute, please follow the contributing guidelines.

License

Vue 3 Authentication is licensed under the MIT License.

Contact

For questions or support, please contact the maintainers: