1.4.12 • Published 1 year ago

@resourge/vue3-use-authentication v1.4.12

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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:

1.4.6

1 year ago

1.4.5

1 year ago

1.4.4

1 year ago

1.4.3

1 year ago

1.4.2

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

1.4.9

1 year ago

1.4.11

1 year ago

1.4.8

1 year ago

1.4.10

1 year ago

1.4.7

1 year ago

1.4.12

1 year ago

1.2.0

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.2.1

1 year ago

1.0.0

1 year ago