0.5.6 • Published 4 years ago

@apsel/apsel-ui-authentication v0.5.6

Weekly downloads
237
License
-
Repository
-
Last release
4 years ago

apsel-ui-authentication

(WORK IN PROGRESS: DO NOT USE IN PRODUCTION) Embeddable Authentication module for the Apsel Platform

Project setup

yarn install @apsel/apsel-ui-authentication

How to use

See apsel-ui-test-app for a working demo.

Pre-requisite

Your vue app must use vue-router and vuex as this components depends on creating routes and a store

Notes:

  • Make sure your Vue router is in 'history' mode

Route set-up

Wherever you setup your routes you want to add a the special route to the component. (/authentication and /oauth_result)

import { Authentication, routes as login_routes } from 'apsel-ui-authentication';

// Append the authentication specific routes
myOtherRoutes.push(...login_routes);

Then you link to the component; wherever you need it.

The component expects to receive the return route as the query parameter routes. Upon successful login the user will be redirected to that route. You can add query parameters or params to pass some state information along

With a router link:

<router-link :to="{ name: 'authenticate', query: {
                    routes: JSON.stringify({
                        success: { name: 'buy_product', query: { product_id: 12 } },
                    })
                }}" >Login</router-link>

With a router.push

this.$router.push(
    { 
        name: 'authenticate', 
        query: {
            routes: JSON.stringify({
                // Up successfull login the user will be redirect to the route named
                // 'buy_product' with the query parameter '?product_id=12`
                // ==> Adapt this to your need.
                success: { name: 'buy_product', query: { product_id: 12 } },
            })
        }
    }
);

Vuex set-up

TODO()

Upon successfull login the information related to the login will be stored to the auth store. and persisted to the localStorage if available.

It can be accessed the usual way for a store:

this.$store.auth.accessToken
this.$store.auth.userId
this.$store.auth.sessionId

Troubleshooting import

The module include a Simple component that can be used to check if importing from the library works properly.

// This is just a test component to check if it works
import { Simple } from 'apsel-ui-authentication';

myOtherRoutes.push( {   name: 'simple',
                  path: '/simple',
                  component: Simple });
0.5.6

4 years ago

0.5.5

4 years ago

0.5.4

4 years ago

0.5.3

4 years ago

0.5.2

4 years ago

0.3.53

4 years ago

0.5.1

4 years ago

0.3.52

4 years ago

0.3.51

4 years ago

0.3.50

4 years ago

0.3.49

4 years ago

0.3.48

4 years ago

0.3.47

4 years ago

0.3.45

5 years ago

0.3.44

5 years ago

0.3.43

5 years ago

0.3.42

5 years ago

0.3.41

5 years ago

0.3.40

5 years ago

0.3.39

5 years ago

0.3.38

5 years ago

0.3.37

5 years ago

0.3.36

5 years ago

0.3.35

5 years ago

0.3.34

5 years ago

0.3.33

5 years ago

0.3.32

5 years ago

0.3.31

5 years ago

0.3.30

5 years ago

0.3.29

5 years ago

0.3.28

5 years ago

0.3.27

5 years ago

0.3.26

5 years ago

0.3.25

5 years ago

0.3.24

5 years ago

0.3.23

5 years ago

0.3.22

5 years ago

0.3.21

5 years ago

0.3.20

5 years ago

0.3.19

5 years ago

0.3.18

5 years ago

0.3.17

5 years ago

0.3.16

5 years ago

0.3.15

5 years ago

0.3.14

5 years ago

0.3.13

5 years ago

0.3.12

5 years ago

0.3.11

5 years ago

0.3.10

5 years ago

0.3.9

5 years ago

0.3.8

5 years ago

0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago