kontor-vue with tutorial implementation
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
VITE_API_URL=http://localhost:4000
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
/* eslint-env node */
|
||||||
|
module.exports = {
|
||||||
|
"root": true,
|
||||||
|
"extends": [
|
||||||
|
"plugin:vue/vue3-essential",
|
||||||
|
"eslint:recommended"
|
||||||
|
],
|
||||||
|
"env": {
|
||||||
|
"vue/setup-compiler-macros": true,
|
||||||
|
"vue/multi-word-component-names": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -8,15 +8,19 @@ pnpm-debug.log*
|
|||||||
lerna-debug.log*
|
lerna-debug.log*
|
||||||
|
|
||||||
node_modules
|
node_modules
|
||||||
|
.DS_Store
|
||||||
dist
|
dist
|
||||||
dist-ssr
|
dist-ssr
|
||||||
|
coverage
|
||||||
*.local
|
*.local
|
||||||
|
|
||||||
|
/cypress/videos/
|
||||||
|
/cypress/screenshots/
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
.vscode/*
|
.vscode/*
|
||||||
!.vscode/extensions.json
|
!.vscode/extensions.json
|
||||||
.idea
|
.idea
|
||||||
.DS_Store
|
|
||||||
*.suo
|
*.suo
|
||||||
*.ntvs*
|
*.ntvs*
|
||||||
*.njsproj
|
*.njsproj
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# Vue 3 + Vite
|
# vue-3-pinia-registration-login-example
|
||||||
|
|
||||||
This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
Vue 3 + Pinia - User Registration and Login Example & Tutorial
|
||||||
|
|
||||||
Learn more about IDE Support for Vue in the [Vue Docs Scaling up Guide](https://vuejs.org/guide/scaling-up/tooling.html#ide-support).
|
Documentation at https://jasonwatmore.com/post/2022/07/25/vue-3-pinia-user-registration-and-login-example-tutorial
|
||||||
+24
-8
@@ -1,13 +1,29 @@
|
|||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
|
||||||
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" href="/favicon.ico" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>kontor-vue</title>
|
<title>Vue 3 + Pinia - User Registration and Login Example & Tutorial</title>
|
||||||
</head>
|
|
||||||
<body>
|
<!-- bootstrap css -->
|
||||||
|
<link href="//netdna.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
<script type="module" src="/src/main.js"></script>
|
<script type="module" src="/src/main.js"></script>
|
||||||
</body>
|
|
||||||
</html>
|
<!-- credits -->
|
||||||
|
<div class="text-center mt-4">
|
||||||
|
<p>
|
||||||
|
<a href="https://jasonwatmore.com/post/2022/07/25/vue-3-pinia-user-registration-and-login-example-tutorial">Vue 3 + Pinia - User Registration and Login Example & Tutorial</a>
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://jasonwatmore.com">JasonWatmore.com</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
Generated
+3149
-1679
File diff suppressed because it is too large
Load Diff
+22
-28
@@ -1,29 +1,23 @@
|
|||||||
{
|
{
|
||||||
"name": "kontor-vue",
|
"name": "vue-3-pinia-registration-login-example",
|
||||||
"private": true,
|
"version": "0.0.0",
|
||||||
"version": "0.0.0",
|
"scripts": {
|
||||||
"type": "module",
|
"dev": "vite",
|
||||||
"scripts": {
|
"build": "vite build",
|
||||||
"dev": "vite",
|
"preview": "vite preview --port 5050",
|
||||||
"build": "vite build",
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
|
||||||
"preview": "vite preview"
|
},
|
||||||
},
|
"dependencies": {
|
||||||
"dependencies": {
|
"pinia": "^2.0.13",
|
||||||
"@fortawesome/fontawesome-svg-core": "^7.2.0",
|
"vee-validate": "^4.5.11",
|
||||||
"@fortawesome/free-solid-svg-icons": "^7.2.0",
|
"vue": "^3.2.33",
|
||||||
"@fortawesome/vue-fontawesome": "^3.1.3",
|
"vue-router": "^4.0.14",
|
||||||
"axios": "^1.14.0",
|
"yup": "^0.32.11"
|
||||||
"bootstrap": "^5.3.8",
|
},
|
||||||
"jquery": "^4.0.0",
|
"devDependencies": {
|
||||||
"popper.js": "^1.16.1",
|
"@vitejs/plugin-vue": "^2.3.1",
|
||||||
"vee-validate": "^4.15.1",
|
"eslint": "^8.5.0",
|
||||||
"vue": "^3.5.30",
|
"eslint-plugin-vue": "^8.2.0",
|
||||||
"vue-router": "^4.6.4",
|
"vite": "^2.9.5"
|
||||||
"vuex": "^4.1.0",
|
}
|
||||||
"yup": "^1.7.1"
|
}
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@vitejs/plugin-vue": "^6.0.5",
|
|
||||||
"vite": "^8.0.1"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 9.3 KiB |
@@ -1,24 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<symbol id="bluesky-icon" viewBox="0 0 16 17">
|
|
||||||
<g clip-path="url(#bluesky-clip)"><path fill="#08060d" d="M7.75 7.735c-.693-1.348-2.58-3.86-4.334-5.097-1.68-1.187-2.32-.981-2.74-.79C.188 2.065.1 2.812.1 3.251s.241 3.602.398 4.13c.52 1.744 2.367 2.333 4.07 2.145-2.495.37-4.71 1.278-1.805 4.512 3.196 3.309 4.38-.71 4.987-2.746.608 2.036 1.307 5.91 4.93 2.746 2.72-2.746.747-4.143-1.747-4.512 1.702.189 3.55-.4 4.07-2.145.156-.528.397-3.691.397-4.13s-.088-1.186-.575-1.406c-.42-.19-1.06-.395-2.741.79-1.755 1.24-3.64 3.752-4.334 5.099"/></g>
|
|
||||||
<defs><clipPath id="bluesky-clip"><path fill="#fff" d="M.1.85h15.3v15.3H.1z"/></clipPath></defs>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="discord-icon" viewBox="0 0 20 19">
|
|
||||||
<path fill="#08060d" d="M16.224 3.768a14.5 14.5 0 0 0-3.67-1.153c-.158.286-.343.67-.47.976a13.5 13.5 0 0 0-4.067 0c-.128-.306-.317-.69-.476-.976A14.4 14.4 0 0 0 3.868 3.77C1.546 7.28.916 10.703 1.231 14.077a14.7 14.7 0 0 0 4.5 2.306q.545-.748.965-1.587a9.5 9.5 0 0 1-1.518-.74q.191-.14.372-.293c2.927 1.369 6.107 1.369 8.999 0q.183.152.372.294-.723.437-1.52.74.418.838.963 1.588a14.6 14.6 0 0 0 4.504-2.308c.37-3.911-.63-7.302-2.644-10.309m-9.13 8.234c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.894 0 1.614.82 1.599 1.82.001 1-.705 1.82-1.6 1.82m5.91 0c-.878 0-1.599-.82-1.599-1.82 0-.998.705-1.82 1.6-1.82.893 0 1.614.82 1.599 1.82 0 1-.706 1.82-1.6 1.82"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="documentation-icon" viewBox="0 0 21 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="m15.5 13.333 1.533 1.322c.645.555.967.833.967 1.178s-.322.623-.967 1.179L15.5 18.333m-3.333-5-1.534 1.322c-.644.555-.966.833-.966 1.178s.322.623.966 1.179l1.534 1.321"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M17.167 10.836v-4.32c0-1.41 0-2.117-.224-2.68-.359-.906-1.118-1.621-2.08-1.96-.599-.21-1.349-.21-2.848-.21-2.623 0-3.935 0-4.983.369-1.684.591-3.013 1.842-3.641 3.428C3 6.449 3 7.684 3 10.154v2.122c0 2.558 0 3.838.706 4.726q.306.383.713.671c.76.536 1.79.64 3.581.66"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M3 10a2.78 2.78 0 0 1 2.778-2.778c.555 0 1.209.097 1.748-.047.48-.129.854-.503.982-.982.145-.54.048-1.194.048-1.749a2.78 2.78 0 0 1 2.777-2.777"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="github-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M9.356 1.85C5.05 1.85 1.57 5.356 1.57 9.694a7.84 7.84 0 0 0 5.324 7.44c.387.079.528-.168.528-.376 0-.182-.013-.805-.013-1.454-2.165.467-2.616-.935-2.616-.935-.349-.91-.864-1.143-.864-1.143-.71-.48.051-.48.051-.48.787.051 1.2.805 1.2.805.695 1.194 1.817.857 2.268.649.064-.507.27-.857.49-1.052-1.728-.182-3.545-.857-3.545-3.87 0-.857.31-1.558.8-2.104-.078-.195-.349-1 .077-2.078 0 0 .657-.208 2.14.805a7.5 7.5 0 0 1 1.946-.26c.657 0 1.328.092 1.946.26 1.483-1.013 2.14-.805 2.14-.805.426 1.078.155 1.883.078 2.078.502.546.799 1.247.799 2.104 0 3.013-1.818 3.675-3.558 3.87.284.247.528.714.528 1.454 0 1.052-.012 1.896-.012 2.156 0 .208.142.455.528.377a7.84 7.84 0 0 0 5.324-7.441c.013-4.338-3.48-7.844-7.773-7.844" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="social-icon" viewBox="0 0 20 20">
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M12.5 6.667a4.167 4.167 0 1 0-8.334 0 4.167 4.167 0 0 0 8.334 0"/>
|
|
||||||
<path fill="none" stroke="#aa3bff" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.35" d="M2.5 16.667a5.833 5.833 0 0 1 8.75-5.053m3.837.474.513 1.035c.07.144.257.282.414.309l.93.155c.596.1.736.536.307.965l-.723.73a.64.64 0 0 0-.152.531l.207.903c.164.715-.213.991-.84.618l-.872-.52a.63.63 0 0 0-.577 0l-.872.52c-.624.373-1.003.094-.84-.618l.207-.903a.64.64 0 0 0-.152-.532l-.723-.729c-.426-.43-.289-.864.306-.964l.93-.156a.64.64 0 0 0 .412-.31l.513-1.034c.28-.562.735-.562 1.012 0"/>
|
|
||||||
</symbol>
|
|
||||||
<symbol id="x-icon" viewBox="0 0 19 19">
|
|
||||||
<path fill="#08060d" fill-rule="evenodd" d="M1.893 1.98c.052.072 1.245 1.769 2.653 3.77l2.892 4.114c.183.261.333.48.333.486s-.068.089-.152.183l-.522.593-.765.867-3.597 4.087c-.375.426-.734.834-.798.905a1 1 0 0 0-.118.148c0 .01.236.017.664.017h.663l.729-.83c.4-.457.796-.906.879-.999a692 692 0 0 0 1.794-2.038c.034-.037.301-.34.594-.675l.551-.624.345-.392a7 7 0 0 1 .34-.374c.006 0 .93 1.306 2.052 2.903l2.084 2.965.045.063h2.275c1.87 0 2.273-.003 2.266-.021-.008-.02-1.098-1.572-3.894-5.547-2.013-2.862-2.28-3.246-2.273-3.266.008-.019.282-.332 2.085-2.38l2-2.274 1.567-1.782c.022-.028-.016-.03-.65-.03h-.674l-.3.342a871 871 0 0 1-1.782 2.025c-.067.075-.405.458-.75.852a100 100 0 0 1-.803.91c-.148.172-.299.344-.99 1.127-.304.343-.32.358-.345.327-.015-.019-.904-1.282-1.976-2.808L6.365 1.85H1.8zm1.782.91 8.078 11.294c.772 1.08 1.413 1.973 1.425 1.984.016.017.241.02 1.05.017l1.03-.004-2.694-3.766L7.796 5.75 5.722 2.852l-1.039-.004-1.039-.004z" clip-rule="evenodd"/>
|
|
||||||
</symbol>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB |
+16
-80
@@ -1,84 +1,20 @@
|
|||||||
|
<script setup>
|
||||||
|
import { Nav, Alert } from '@/components';
|
||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div class="app-container" :class="authStore.user && 'bg-light'">
|
||||||
<nav class="navbar navbar-expand navbar-dark bg-dark">
|
<Nav />
|
||||||
<a href="/" class="navbar-brand">Kontor</a>
|
<Alert />
|
||||||
<div class="navbar-nav mr-auto">
|
<div class="container pt-4 pb-4">
|
||||||
<li class="nav-item">
|
<router-view />
|
||||||
<router-link to="/home" class="nav-link">
|
</div>
|
||||||
<font-awesome-icon icon="home" /> Home
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<li v-if="showAdminBoard" class="nav-item">
|
|
||||||
<router-link to="/admin" class="nav-link">Admin Board</router-link>
|
|
||||||
</li>
|
|
||||||
<li v-if="showModeratorBoard" class="nav-item">
|
|
||||||
<router-link to="/mod" class="nav-link">Moderator Board</router-link>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<router-link v-if="currentUser" to="/user" class="nav-link">User</router-link>
|
|
||||||
</li>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="!currentUser" class="navbar-nav ml-auto">
|
|
||||||
<li class="nav-item">
|
|
||||||
<router-link to="/register" class="nav-link">
|
|
||||||
<font-awesome-icon icon="user-plus" /> Sign Up
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<router-link to="/login" class="nav-link">
|
|
||||||
<font-awesome-icon icon="sign-in-alt" /> Login
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div v-if="currentUser" class="navbar-nav ml-auto">
|
|
||||||
<li class="nav-item">
|
|
||||||
<router-link to="/profile" class="nav-link">
|
|
||||||
<font-awesome-icon icon="user" />
|
|
||||||
{{ currentUser.username }}
|
|
||||||
</router-link>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" @click.prevent="logOut">
|
|
||||||
<font-awesome-icon icon="sign-out-alt" /> LogOut
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<router-view />
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<style>
|
||||||
export default {
|
@import '@/assets/base.css';
|
||||||
computed: {
|
</style>
|
||||||
currentUser() {
|
|
||||||
return this.$store.state.auth.user;
|
|
||||||
},
|
|
||||||
showAdminBoard() {
|
|
||||||
if (this.currentUser && this.currentUser['roles']) {
|
|
||||||
return this.currentUser['roles'].includes('ROLE_ADMIN');
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
showModeratorBoard() {
|
|
||||||
if (this.currentUser && this.currentUser['roles']) {
|
|
||||||
return this.currentUser['roles'].includes('ROLE_MODERATOR');
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
logOut() {
|
|
||||||
this.$store.dispatch('auth/logout');
|
|
||||||
this.$router.push('/login');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
.app-container {
|
||||||
|
min-height: 350px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-delete-user {
|
||||||
|
width: 40px;
|
||||||
|
text-align: center;
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 44 KiB |
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 8.5 KiB |
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
|
||||||
|
Before Width: | Height: | Size: 496 B |
@@ -0,0 +1,19 @@
|
|||||||
|
<script setup>
|
||||||
|
import { storeToRefs } from 'pinia';
|
||||||
|
|
||||||
|
import { useAlertStore } from '@/stores';
|
||||||
|
|
||||||
|
const alertStore = useAlertStore();
|
||||||
|
const { alert } = storeToRefs(alertStore);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div v-if="alert" class="container">
|
||||||
|
<div class="m-3">
|
||||||
|
<div class="alert alert-dismissable" :class="alert.type">
|
||||||
|
<button @click="alertStore.clear()" class="btn btn-link close">×</button>
|
||||||
|
{{alert.message}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
<template>
|
|
||||||
<div class="container">
|
|
||||||
<header class="jumbotron">
|
|
||||||
<h3>{{ content }}</h3>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import UserService from "../services/user.service";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "Admin",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
content: "",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
UserService.getAdminBoard().then(
|
|
||||||
(response) => {
|
|
||||||
this.content = response.data;
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
this.content =
|
|
||||||
(error.response &&
|
|
||||||
error.response.data &&
|
|
||||||
error.response.data.message) ||
|
|
||||||
error.message ||
|
|
||||||
error.toString();
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
|
|
||||||
<template>
|
|
||||||
<div class="container">
|
|
||||||
<header class="jumbotron">
|
|
||||||
<h3>{{ content }}</h3>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import UserService from "../services/user.service";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "Moderator",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
content: "",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
UserService.getModeratorBoard().then(
|
|
||||||
(response) => {
|
|
||||||
this.content = response.data;
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
this.content =
|
|
||||||
(error.response &&
|
|
||||||
error.response.data &&
|
|
||||||
error.response.data.message) ||
|
|
||||||
error.message ||
|
|
||||||
error.toString();
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="container">
|
|
||||||
<header class="jumbotron">
|
|
||||||
<h3>{{ content }}</h3>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import UserService from "../services/user.service";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "User",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
content: "",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
UserService.getUserBoard().then(
|
|
||||||
(response) => {
|
|
||||||
this.content = response.data;
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
this.content =
|
|
||||||
(error.response &&
|
|
||||||
error.response.data &&
|
|
||||||
error.response.data.message) ||
|
|
||||||
error.message ||
|
|
||||||
error.toString();
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,85 +0,0 @@
|
|||||||
<script setup>
|
|
||||||
import { ref } from 'vue'
|
|
||||||
import viteLogo from '../assets/vite.svg'
|
|
||||||
import heroImg from '../assets/hero.png'
|
|
||||||
import vueLogo from '../assets/vue.svg'
|
|
||||||
|
|
||||||
const count = ref(0)
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<template>
|
|
||||||
<section id="center">
|
|
||||||
<div class="hero">
|
|
||||||
<img :src="heroImg" class="base" width="170" height="179" alt="" />
|
|
||||||
<img :src="vueLogo" class="framework" alt="Vue logo" />
|
|
||||||
<img :src="viteLogo" class="vite" alt="Vite logo" />
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h1>Get started</h1>
|
|
||||||
<p>Edit <code>src/App.vue</code> and save to test <code>HMR</code></p>
|
|
||||||
</div>
|
|
||||||
<button class="counter" @click="count++">Count is {{ count }}</button>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div class="ticks"></div>
|
|
||||||
|
|
||||||
<section id="next-steps">
|
|
||||||
<div id="docs">
|
|
||||||
<svg class="icon" role="presentation" aria-hidden="true">
|
|
||||||
<use href="/icons.svg#documentation-icon"></use>
|
|
||||||
</svg>
|
|
||||||
<h2>Documentation</h2>
|
|
||||||
<p>Your questions, answered</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href="https://vite.dev/" target="_blank">
|
|
||||||
<img class="logo" :src="viteLogo" alt="" />
|
|
||||||
Explore Vite
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://vuejs.org/" target="_blank">
|
|
||||||
<img class="button-icon" :src="vueLogo" alt="" />
|
|
||||||
Learn more
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div id="social">
|
|
||||||
<svg class="icon" role="presentation" aria-hidden="true">
|
|
||||||
<use href="/icons.svg#social-icon"></use>
|
|
||||||
</svg>
|
|
||||||
<h2>Connect with us</h2>
|
|
||||||
<p>Join the Vite community</p>
|
|
||||||
<ul>
|
|
||||||
<li>
|
|
||||||
<a href="https://github.com/vitejs/vite" target="_blank">
|
|
||||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
||||||
<use href="/icons.svg#github-icon"></use>
|
|
||||||
</svg>
|
|
||||||
GitHub
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://chat.vite.dev/" target="_blank">
|
|
||||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
||||||
<use href="/icons.svg#discord-icon"></use>
|
|
||||||
</svg>
|
|
||||||
Discord
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a href="https://x.com/vite_js" target="_blank">
|
|
||||||
<svg class="button-icon" role="presentation" aria-hidden="true">
|
|
||||||
<use href="/icons.svg#x-icon"></use>
|
|
||||||
</svg>
|
|
||||||
X.com
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div class="ticks"></div>
|
|
||||||
<section id="spacer"></section>
|
|
||||||
</template>
|
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="container">
|
|
||||||
<header class="jumbotron">
|
|
||||||
<h3>{{ content }}</h3>
|
|
||||||
</header>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import UserService from "../services/user.service";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "Home",
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
content: "",
|
|
||||||
};
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
UserService.getPublicContent().then(
|
|
||||||
(response) => {
|
|
||||||
this.content = response.data;
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
this.content =
|
|
||||||
(error.response &&
|
|
||||||
error.response.data &&
|
|
||||||
error.response.data.message) ||
|
|
||||||
error.message ||
|
|
||||||
error.toString();
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="card card-container">
|
|
||||||
<img
|
|
||||||
id="profile-img"
|
|
||||||
src="//ssl.gstatic.com/accounts/ui/avatar_2x.png"
|
|
||||||
class="profile-img-card"
|
|
||||||
/>
|
|
||||||
<Form @submit="handleLogin" :validation-schema="schema">
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="username">Username</label>
|
|
||||||
<Field name="username" type="text" class="form-control" />
|
|
||||||
<ErrorMessage name="username" class="error-feedback" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="password">Password</label>
|
|
||||||
<Field name="password" type="password" class="form-control" />
|
|
||||||
<ErrorMessage name="password" class="error-feedback" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<button class="btn btn-primary btn-block" :disabled="loading">
|
|
||||||
<span
|
|
||||||
v-show="loading"
|
|
||||||
class="spinner-border spinner-border-sm"
|
|
||||||
></span>
|
|
||||||
<span>Login</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<div v-if="message" class="alert alert-danger" role="alert">
|
|
||||||
{{ message }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { Form, Field, ErrorMessage } from "vee-validate";
|
|
||||||
import * as yup from "yup";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "Login",
|
|
||||||
components: {
|
|
||||||
Form,
|
|
||||||
Field,
|
|
||||||
ErrorMessage,
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
const schema = yup.object().shape({
|
|
||||||
username: yup.string().required("Username is required!"),
|
|
||||||
password: yup.string().required("Password is required!"),
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
loading: false,
|
|
||||||
message: "",
|
|
||||||
schema,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
loggedIn() {
|
|
||||||
return this.$store.state.auth.status.loggedIn;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
created() {
|
|
||||||
if (this.loggedIn) {
|
|
||||||
this.$router.push("/profile");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleLogin(user) {
|
|
||||||
this.loading = true;
|
|
||||||
|
|
||||||
this.$store.dispatch("auth/login", user).then(
|
|
||||||
() => {
|
|
||||||
this.$router.push("/profile");
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
this.loading = false;
|
|
||||||
this.message =
|
|
||||||
(error.response &&
|
|
||||||
error.response.data &&
|
|
||||||
error.response.data.message) ||
|
|
||||||
error.message ||
|
|
||||||
error.toString();
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
|
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
<script setup>
|
||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<nav v-show="authStore.user" class="navbar navbar-expand navbar-dark bg-dark">
|
||||||
|
<div class="navbar-nav">
|
||||||
|
<router-link to="/" class="nav-item nav-link">Home</router-link>
|
||||||
|
<router-link to="/comics" class="nav-item nav-link">Comics</router-link>
|
||||||
|
<router-link to="/Media" class="nav-item nav-link">Media</router-link>
|
||||||
|
<router-link to="/users" class="nav-item nav-link">Users</router-link>
|
||||||
|
<button @click="authStore.logout()" class="btn btn-link nav-item nav-link">Logout</button>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</template>
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="container">
|
|
||||||
<header class="jumbotron">
|
|
||||||
<h3>
|
|
||||||
<strong>{{currentUser.username}}</strong> Profile
|
|
||||||
</h3>
|
|
||||||
</header>
|
|
||||||
<p>
|
|
||||||
<strong>Token:</strong>
|
|
||||||
{{currentUser.accessToken.substring(0, 20)}} ... {{currentUser.accessToken.substr(currentUser.accessToken.length - 20)}}
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>Id:</strong>
|
|
||||||
{{currentUser.id}}
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>Email:</strong>
|
|
||||||
{{currentUser.email}}
|
|
||||||
</p>
|
|
||||||
<strong>Authorities:</strong>
|
|
||||||
<ul>
|
|
||||||
<li v-for="role in currentUser.roles" :key="role">{{role}}</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'Profile',
|
|
||||||
computed: {
|
|
||||||
currentUser() {
|
|
||||||
return this.$store.state.auth.user;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
if (!this.currentUser) {
|
|
||||||
this.$router.push('/login');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -1,123 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="col-md-12">
|
|
||||||
<div class="card card-container">
|
|
||||||
<img
|
|
||||||
id="profile-img"
|
|
||||||
src="//ssl.gstatic.com/accounts/ui/avatar_2x.png"
|
|
||||||
class="profile-img-card"
|
|
||||||
/>
|
|
||||||
<Form @submit="handleRegister" :validation-schema="schema">
|
|
||||||
<div v-if="!successful">
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="username">Username</label>
|
|
||||||
<Field name="username" type="text" class="form-control" />
|
|
||||||
<ErrorMessage name="username" class="error-feedback" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="email">Email</label>
|
|
||||||
<Field name="email" type="email" class="form-control" />
|
|
||||||
<ErrorMessage name="email" class="error-feedback" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="password">Password</label>
|
|
||||||
<Field name="password" type="password" class="form-control" />
|
|
||||||
<ErrorMessage name="password" class="error-feedback" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<button class="btn btn-primary btn-block" :disabled="loading">
|
|
||||||
<span
|
|
||||||
v-show="loading"
|
|
||||||
class="spinner-border spinner-border-sm"
|
|
||||||
></span>
|
|
||||||
Sign Up
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</Form>
|
|
||||||
|
|
||||||
<div
|
|
||||||
v-if="message"
|
|
||||||
class="alert"
|
|
||||||
:class="successful ? 'alert-success' : 'alert-danger'"
|
|
||||||
>
|
|
||||||
{{ message }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import { Form, Field, ErrorMessage } from "vee-validate";
|
|
||||||
import * as yup from "yup";
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: "Register",
|
|
||||||
components: {
|
|
||||||
Form,
|
|
||||||
Field,
|
|
||||||
ErrorMessage,
|
|
||||||
},
|
|
||||||
data() {
|
|
||||||
const schema = yup.object().shape({
|
|
||||||
username: yup
|
|
||||||
.string()
|
|
||||||
.required("Username is required!")
|
|
||||||
.min(3, "Must be at least 3 characters!")
|
|
||||||
.max(20, "Must be maximum 20 characters!"),
|
|
||||||
email: yup
|
|
||||||
.string()
|
|
||||||
.required("Email is required!")
|
|
||||||
.email("Email is invalid!")
|
|
||||||
.max(50, "Must be maximum 50 characters!"),
|
|
||||||
password: yup
|
|
||||||
.string()
|
|
||||||
.required("Password is required!")
|
|
||||||
.min(6, "Must be at least 6 characters!")
|
|
||||||
.max(40, "Must be maximum 40 characters!"),
|
|
||||||
});
|
|
||||||
|
|
||||||
return {
|
|
||||||
successful: false,
|
|
||||||
loading: false,
|
|
||||||
message: "",
|
|
||||||
schema,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
loggedIn() {
|
|
||||||
return this.$store.state.auth.status.loggedIn;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
if (this.loggedIn) {
|
|
||||||
this.$router.push("/profile");
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleRegister(user) {
|
|
||||||
this.message = "";
|
|
||||||
this.successful = false;
|
|
||||||
this.loading = true;
|
|
||||||
|
|
||||||
this.$store.dispatch("auth/register", user).then(
|
|
||||||
(data) => {
|
|
||||||
this.message = data.message;
|
|
||||||
this.successful = true;
|
|
||||||
this.loading = false;
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
this.message =
|
|
||||||
(error.response &&
|
|
||||||
error.response.data &&
|
|
||||||
error.response.data.message) ||
|
|
||||||
error.message ||
|
|
||||||
error.toString();
|
|
||||||
this.successful = false;
|
|
||||||
this.loading = false;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
export { default as Alert } from './Alert.vue';
|
||||||
|
export { default as Nav } from './Nav.vue';
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
export { fakeBackend };
|
||||||
|
|
||||||
|
// array in local storage for registered users
|
||||||
|
const usersKey = 'vue-3-pinia-registration-login-example-users';
|
||||||
|
let users = JSON.parse(localStorage.getItem(usersKey)) || [];
|
||||||
|
|
||||||
|
function fakeBackend() {
|
||||||
|
let realFetch = window.fetch;
|
||||||
|
window.fetch = function (url, opts) {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
// wrap in timeout to simulate server api call
|
||||||
|
setTimeout(handleRoute, 500);
|
||||||
|
|
||||||
|
function handleRoute() {
|
||||||
|
switch (true) {
|
||||||
|
case url.endsWith('/users/authenticate') && opts.method === 'POST':
|
||||||
|
return authenticate();
|
||||||
|
case url.endsWith('/users/register') && opts.method === 'POST':
|
||||||
|
return register();
|
||||||
|
case url.endsWith('/users') && opts.method === 'GET':
|
||||||
|
return getUsers();
|
||||||
|
case url.match(/\/users\/\d+$/) && opts.method === 'GET':
|
||||||
|
return getUserById();
|
||||||
|
case url.match(/\/users\/\d+$/) && opts.method === 'PUT':
|
||||||
|
return updateUser();
|
||||||
|
case url.match(/\/users\/\d+$/) && opts.method === 'DELETE':
|
||||||
|
return deleteUser();
|
||||||
|
default:
|
||||||
|
// pass through any requests not handled above
|
||||||
|
return realFetch(url, opts)
|
||||||
|
.then(response => resolve(response))
|
||||||
|
.catch(error => reject(error));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// route functions
|
||||||
|
|
||||||
|
function authenticate() {
|
||||||
|
const { username, password } = body();
|
||||||
|
const user = users.find(x => x.username === username && x.password === password);
|
||||||
|
|
||||||
|
if (!user) return error('Username or password is incorrect');
|
||||||
|
|
||||||
|
return ok({
|
||||||
|
...basicDetails(user),
|
||||||
|
token: 'fake-jwt-token'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function register() {
|
||||||
|
const user = body();
|
||||||
|
|
||||||
|
if (users.find(x => x.username === user.username)) {
|
||||||
|
return error('Username "' + user.username + '" is already taken')
|
||||||
|
}
|
||||||
|
|
||||||
|
user.id = users.length ? Math.max(...users.map(x => x.id)) + 1 : 1;
|
||||||
|
users.push(user);
|
||||||
|
localStorage.setItem(usersKey, JSON.stringify(users));
|
||||||
|
return ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getUsers() {
|
||||||
|
if (!isAuthenticated()) return unauthorized();
|
||||||
|
return ok(users.map(x => basicDetails(x)));
|
||||||
|
}
|
||||||
|
|
||||||
|
function getUserById() {
|
||||||
|
if (!isAuthenticated()) return unauthorized();
|
||||||
|
|
||||||
|
const user = users.find(x => x.id === idFromUrl());
|
||||||
|
return ok(basicDetails(user));
|
||||||
|
}
|
||||||
|
|
||||||
|
function updateUser() {
|
||||||
|
if (!isAuthenticated()) return unauthorized();
|
||||||
|
|
||||||
|
let params = body();
|
||||||
|
let user = users.find(x => x.id === idFromUrl());
|
||||||
|
|
||||||
|
// only update password if entered
|
||||||
|
if (!params.password) {
|
||||||
|
delete params.password;
|
||||||
|
}
|
||||||
|
|
||||||
|
// if username changed check if taken
|
||||||
|
if (params.username !== user.username && users.find(x => x.username === params.username)) {
|
||||||
|
return error('Username "' + params.username + '" is already taken')
|
||||||
|
}
|
||||||
|
|
||||||
|
// update and save user
|
||||||
|
Object.assign(user, params);
|
||||||
|
localStorage.setItem(usersKey, JSON.stringify(users));
|
||||||
|
|
||||||
|
return ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
function deleteUser() {
|
||||||
|
if (!isAuthenticated()) return unauthorized();
|
||||||
|
|
||||||
|
users = users.filter(x => x.id !== idFromUrl());
|
||||||
|
localStorage.setItem(usersKey, JSON.stringify(users));
|
||||||
|
return ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
// helper functions
|
||||||
|
|
||||||
|
function ok(body) {
|
||||||
|
resolve({ ok: true, ...headers(), json: () => Promise.resolve(body) })
|
||||||
|
}
|
||||||
|
|
||||||
|
function unauthorized() {
|
||||||
|
resolve({ status: 401, ...headers(), json: () => Promise.resolve({ message: 'Unauthorized' }) })
|
||||||
|
}
|
||||||
|
|
||||||
|
function error(message) {
|
||||||
|
resolve({ status: 400, ...headers(), json: () => Promise.resolve({ message }) })
|
||||||
|
}
|
||||||
|
|
||||||
|
function basicDetails(user) {
|
||||||
|
const { id, username, firstName, lastName } = user;
|
||||||
|
return { id, username, firstName, lastName };
|
||||||
|
}
|
||||||
|
|
||||||
|
function isAuthenticated() {
|
||||||
|
return opts.headers['Authorization'] === 'Bearer fake-jwt-token';
|
||||||
|
}
|
||||||
|
|
||||||
|
function body() {
|
||||||
|
return opts.body && JSON.parse(opts.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
function idFromUrl() {
|
||||||
|
const urlParts = url.split('/');
|
||||||
|
return parseInt(urlParts[urlParts.length - 1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function headers() {
|
||||||
|
return {
|
||||||
|
headers: {
|
||||||
|
get(key) {
|
||||||
|
return ['application/json'];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,56 @@
|
|||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
|
||||||
|
export const fetchWrapper = {
|
||||||
|
get: request('GET'),
|
||||||
|
post: request('POST'),
|
||||||
|
put: request('PUT'),
|
||||||
|
delete: request('DELETE')
|
||||||
|
};
|
||||||
|
|
||||||
|
function request(method) {
|
||||||
|
return (url, body) => {
|
||||||
|
const requestOptions = {
|
||||||
|
method,
|
||||||
|
headers: authHeader(url)
|
||||||
|
};
|
||||||
|
if (body) {
|
||||||
|
requestOptions.headers['Content-Type'] = 'application/json';
|
||||||
|
requestOptions.body = JSON.stringify(body);
|
||||||
|
}
|
||||||
|
return fetch(url, requestOptions).then(handleResponse);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// helper functions
|
||||||
|
|
||||||
|
function authHeader(url) {
|
||||||
|
// return auth header with jwt if user is logged in and request is to the api url
|
||||||
|
const { user } = useAuthStore();
|
||||||
|
const isLoggedIn = !!user?.token;
|
||||||
|
const isApiUrl = url.startsWith(import.meta.env.VITE_API_URL);
|
||||||
|
if (isLoggedIn && isApiUrl) {
|
||||||
|
return { Authorization: `Bearer ${user.token}` };
|
||||||
|
} else {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function handleResponse(response) {
|
||||||
|
const isJson = response.headers?.get('content-type')?.includes('application/json');
|
||||||
|
const data = isJson ? await response.json() : null;
|
||||||
|
|
||||||
|
// check for error response
|
||||||
|
if (!response.ok) {
|
||||||
|
const { user, logout } = useAuthStore();
|
||||||
|
if ([401, 403].includes(response.status) && user) {
|
||||||
|
// auto logout if 401 Unauthorized or 403 Forbidden response returned from api
|
||||||
|
logout();
|
||||||
|
}
|
||||||
|
|
||||||
|
// get error message from body or default to response status
|
||||||
|
const error = (data && data.message) || response.status;
|
||||||
|
return Promise.reject(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
return data;
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './fake-backend';
|
||||||
|
export * from './fetch-wrapper';
|
||||||
+15
-13
@@ -1,14 +1,16 @@
|
|||||||
import { createApp } from "vue";
|
import { createApp } from 'vue';
|
||||||
import "./style.css";
|
import { createPinia } from 'pinia';
|
||||||
import App from "./App.vue";
|
|
||||||
import router from "./router";
|
|
||||||
import store from "./store";
|
|
||||||
import "bootstrap";
|
|
||||||
import "bootstrap/dist/css/bootstrap.min.css";
|
|
||||||
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
|
|
||||||
|
|
||||||
createApp(App)
|
import App from './App.vue';
|
||||||
.use(router)
|
import { router } from './router';
|
||||||
.use(store)
|
|
||||||
.component("font-awesome-icon", FontAwesomeIcon)
|
// setup fake backend
|
||||||
.mount("#app");
|
import { fakeBackend } from './helpers';
|
||||||
|
fakeBackend();
|
||||||
|
|
||||||
|
const app = createApp(App);
|
||||||
|
|
||||||
|
app.use(createPinia());
|
||||||
|
app.use(router);
|
||||||
|
|
||||||
|
app.mount('#app');
|
||||||
|
|||||||
@@ -1,60 +0,0 @@
|
|||||||
import { createWebHistory, createRouter } from "vue-router";
|
|
||||||
import Home from "./components/Home.vue";
|
|
||||||
import Login from "./components/Login.vue";
|
|
||||||
import Register from "./components/Register.vue";
|
|
||||||
// lazy-loaded
|
|
||||||
const Profile = () => import("./components/Profile.vue");
|
|
||||||
const BoardAdmin = () => import("./components/BoardAdmin.vue");
|
|
||||||
const BoardModerator = () => import("./components/BoardModerator.vue");
|
|
||||||
const BoardUser = () => import("./components/BoardUser.vue");
|
|
||||||
|
|
||||||
const routes = [
|
|
||||||
{
|
|
||||||
path: "/",
|
|
||||||
name: "home",
|
|
||||||
component: Home,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/home",
|
|
||||||
component: Home,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/login",
|
|
||||||
component: Login,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/register",
|
|
||||||
component: Register,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/profile",
|
|
||||||
name: "profile",
|
|
||||||
// lazy-loaded
|
|
||||||
component: Profile,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/admin",
|
|
||||||
name: "admin",
|
|
||||||
// lazy-loaded
|
|
||||||
component: BoardAdmin,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/mod",
|
|
||||||
name: "moderator",
|
|
||||||
// lazy-loaded
|
|
||||||
component: BoardModerator,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "/user",
|
|
||||||
name: "user",
|
|
||||||
// lazy-loaded
|
|
||||||
component: BoardUser,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
const router = createRouter({
|
|
||||||
history: createWebHistory(),
|
|
||||||
routes,
|
|
||||||
});
|
|
||||||
|
|
||||||
export default router;
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { Layout, Login, Register } from '@/views/account';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: '/account',
|
||||||
|
component: Layout,
|
||||||
|
children: [
|
||||||
|
{ path: '', redirect: 'login' },
|
||||||
|
{ path: 'login', component: Login },
|
||||||
|
{ path: 'register', component: Register }
|
||||||
|
]
|
||||||
|
};
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
import { createRouter, createWebHistory } from 'vue-router';
|
||||||
|
|
||||||
|
import { useAuthStore, useAlertStore } from '@/stores';
|
||||||
|
import { Home } from '@/views';
|
||||||
|
import accountRoutes from './account.routes';
|
||||||
|
import usersRoutes from './users.routes';
|
||||||
|
|
||||||
|
export const router = createRouter({
|
||||||
|
history: createWebHistory(import.meta.env.BASE_URL),
|
||||||
|
linkActiveClass: 'active',
|
||||||
|
routes: [
|
||||||
|
{ path: '/', component: Home },
|
||||||
|
{ ...accountRoutes },
|
||||||
|
{ ...usersRoutes },
|
||||||
|
// catch all redirect to home page
|
||||||
|
{ path: '/:pathMatch(.*)*', redirect: '/' }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
router.beforeEach(async (to) => {
|
||||||
|
// clear alert on route change
|
||||||
|
const alertStore = useAlertStore();
|
||||||
|
alertStore.clear();
|
||||||
|
|
||||||
|
// redirect to login page if not logged in and trying to access a restricted page
|
||||||
|
const publicPages = ['/account/login', '/account/register'];
|
||||||
|
const authRequired = !publicPages.includes(to.path);
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
|
||||||
|
if (authRequired && !authStore.user) {
|
||||||
|
authStore.returnUrl = to.fullPath;
|
||||||
|
return '/account/login';
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
import { Layout, List, AddEdit } from '@/views/users';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: '/users',
|
||||||
|
component: Layout,
|
||||||
|
children: [
|
||||||
|
{ path: '', component: List },
|
||||||
|
{ path: 'add', component: AddEdit },
|
||||||
|
{ path: 'edit/:id', component: AddEdit }
|
||||||
|
]
|
||||||
|
};
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
export default function authHeader() {
|
|
||||||
let user = JSON.parse(localStorage.getItem("user"));
|
|
||||||
|
|
||||||
if (user && user.accessToken) {
|
|
||||||
return { Authorization: "Bearer " + user.accessToken };
|
|
||||||
} else {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
|
|
||||||
const API_URL = "http://localhost:8200/";
|
|
||||||
|
|
||||||
class AuthService {
|
|
||||||
login(user) {
|
|
||||||
return axios
|
|
||||||
.post(API_URL + "login", {
|
|
||||||
email: user.username,
|
|
||||||
password: user.password,
|
|
||||||
})
|
|
||||||
.then((response) => {
|
|
||||||
if (response.data.accessToken) {
|
|
||||||
localStorage.setItem("user", JSON.stringify(response.data));
|
|
||||||
}
|
|
||||||
return response.data;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
logout() {
|
|
||||||
localStorage.removeItem("user");
|
|
||||||
}
|
|
||||||
|
|
||||||
register(user) {
|
|
||||||
return axios.post(API_URL + "signup", {
|
|
||||||
username: user.username,
|
|
||||||
email: user.email,
|
|
||||||
password: user.password,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new AuthService();
|
|
||||||
@@ -1,24 +0,0 @@
|
|||||||
import axios from "axios";
|
|
||||||
import authHeader from "./auth-header";
|
|
||||||
|
|
||||||
const API_URL = "http://localhost:8200/api/user/";
|
|
||||||
|
|
||||||
class UserService {
|
|
||||||
getPublicContent() {
|
|
||||||
return axios.get(API_URL + "profiles");
|
|
||||||
}
|
|
||||||
|
|
||||||
getUserBoard() {
|
|
||||||
return axios.get(API_URL + "user", { headers: authHeader() });
|
|
||||||
}
|
|
||||||
|
|
||||||
getModeratorBoard() {
|
|
||||||
return axios.get(API_URL + "mod", { headers: authHeader() });
|
|
||||||
}
|
|
||||||
|
|
||||||
getAdminBoard() {
|
|
||||||
return axios.get(API_URL + "admin", { headers: authHeader() });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default new UserService();
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
import AuthService from "../services/auth.service";
|
|
||||||
|
|
||||||
const user = JSON.parse(localStorage.getItem("user"));
|
|
||||||
const initialState = user
|
|
||||||
? { status: { loggedIn: true }, user }
|
|
||||||
: { status: { loggedIn: false }, user: null };
|
|
||||||
|
|
||||||
export const auth = {
|
|
||||||
namespaced: true,
|
|
||||||
state: initialState,
|
|
||||||
actions: {
|
|
||||||
login({ commit }, user) {
|
|
||||||
return AuthService.login(user).then(
|
|
||||||
(user) => {
|
|
||||||
commit("loginSuccess", user);
|
|
||||||
return Promise.resolve(user);
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
commit("loginFailure");
|
|
||||||
return Promise.reject(error);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
logout({ commit }) {
|
|
||||||
AuthService.logout();
|
|
||||||
commit("logout");
|
|
||||||
},
|
|
||||||
register({ commit }, user) {
|
|
||||||
return AuthService.register(user).then(
|
|
||||||
(response) => {
|
|
||||||
commit("registerSuccess");
|
|
||||||
return Promise.resolve(response.data);
|
|
||||||
},
|
|
||||||
(error) => {
|
|
||||||
commit("registerFailure");
|
|
||||||
return Promise.reject(error);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
mutations: {
|
|
||||||
loginSuccess(state, user) {
|
|
||||||
state.status.loggedIn = true;
|
|
||||||
state.user = user;
|
|
||||||
},
|
|
||||||
loginFailure(state) {
|
|
||||||
state.status.loggedIn = false;
|
|
||||||
state.user = null;
|
|
||||||
},
|
|
||||||
logout(state) {
|
|
||||||
state.status.loggedIn = false;
|
|
||||||
state.user = null;
|
|
||||||
},
|
|
||||||
registerSuccess(state) {
|
|
||||||
state.status.loggedIn = false;
|
|
||||||
},
|
|
||||||
registerFailure(state) {
|
|
||||||
state.status.loggedIn = false;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
import { createStore } from "vuex";
|
|
||||||
import { auth } from "./auth.module";
|
|
||||||
|
|
||||||
const store = createStore({
|
|
||||||
modules: {
|
|
||||||
auth,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
export default store;
|
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
import { defineStore } from 'pinia';
|
||||||
|
|
||||||
|
export const useAlertStore = defineStore({
|
||||||
|
id: 'alert',
|
||||||
|
state: () => ({
|
||||||
|
alert: null
|
||||||
|
}),
|
||||||
|
actions: {
|
||||||
|
success(message) {
|
||||||
|
this.alert = { message, type: 'alert-success' };
|
||||||
|
},
|
||||||
|
error(message) {
|
||||||
|
this.alert = { message, type: 'alert-danger' };
|
||||||
|
},
|
||||||
|
clear() {
|
||||||
|
this.alert = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
import { defineStore } from 'pinia';
|
||||||
|
|
||||||
|
import { fetchWrapper } from '@/helpers';
|
||||||
|
import { router } from '@/router';
|
||||||
|
import { useAlertStore } from '@/stores';
|
||||||
|
|
||||||
|
const baseUrl = `${import.meta.env.VITE_API_URL}/users`;
|
||||||
|
|
||||||
|
export const useAuthStore = defineStore({
|
||||||
|
id: 'auth',
|
||||||
|
state: () => ({
|
||||||
|
// initialize state from local storage to enable user to stay logged in
|
||||||
|
user: JSON.parse(localStorage.getItem('user')),
|
||||||
|
returnUrl: null
|
||||||
|
}),
|
||||||
|
actions: {
|
||||||
|
async login(username, password) {
|
||||||
|
try {
|
||||||
|
const user = await fetchWrapper.post(`${baseUrl}/authenticate`, { username, password });
|
||||||
|
|
||||||
|
// update pinia state
|
||||||
|
this.user = user;
|
||||||
|
|
||||||
|
// store user details and jwt in local storage to keep user logged in between page refreshes
|
||||||
|
localStorage.setItem('user', JSON.stringify(user));
|
||||||
|
|
||||||
|
// redirect to previous url or default to home page
|
||||||
|
router.push(this.returnUrl || '/');
|
||||||
|
} catch (error) {
|
||||||
|
const alertStore = useAlertStore();
|
||||||
|
alertStore.error(error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
logout() {
|
||||||
|
this.user = null;
|
||||||
|
localStorage.removeItem('user');
|
||||||
|
router.push('/account/login');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export * from './alert.store';
|
||||||
|
export * from './auth.store';
|
||||||
|
export * from './users.store';
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
import { defineStore } from 'pinia';
|
||||||
|
|
||||||
|
import { fetchWrapper } from '@/helpers';
|
||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
|
||||||
|
const baseUrl = `${import.meta.env.VITE_API_URL}/users`;
|
||||||
|
|
||||||
|
export const useUsersStore = defineStore({
|
||||||
|
id: 'users',
|
||||||
|
state: () => ({
|
||||||
|
users: {},
|
||||||
|
user: {}
|
||||||
|
}),
|
||||||
|
actions: {
|
||||||
|
async register(user) {
|
||||||
|
await fetchWrapper.post(`${baseUrl}/register`, user);
|
||||||
|
},
|
||||||
|
async getAll() {
|
||||||
|
this.users = { loading: true };
|
||||||
|
try {
|
||||||
|
this.users = await fetchWrapper.get(baseUrl);
|
||||||
|
} catch (error) {
|
||||||
|
this.users = { error };
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async getById(id) {
|
||||||
|
this.user = { loading: true };
|
||||||
|
try {
|
||||||
|
this.user = await fetchWrapper.get(`${baseUrl}/${id}`);
|
||||||
|
} catch (error) {
|
||||||
|
this.user = { error };
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async update(id, params) {
|
||||||
|
await fetchWrapper.put(`${baseUrl}/${id}`, params);
|
||||||
|
|
||||||
|
// update stored user if the logged in user updated their own record
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
if (id === authStore.user.id) {
|
||||||
|
// update local storage
|
||||||
|
const user = { ...authStore.user, ...params };
|
||||||
|
localStorage.setItem('user', JSON.stringify(user));
|
||||||
|
|
||||||
|
// update auth user in pinia state
|
||||||
|
authStore.user = user;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async delete(id) {
|
||||||
|
// add isDeleting prop to user being deleted
|
||||||
|
this.users.find(x => x.id === id).isDeleting = true;
|
||||||
|
|
||||||
|
await fetchWrapper.delete(`${baseUrl}/${id}`);
|
||||||
|
|
||||||
|
// remove user from list after deleted
|
||||||
|
this.users = this.users.filter(x => x.id !== id);
|
||||||
|
|
||||||
|
// auto logout if the logged in user deleted their own record
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
if (id === authStore.user.id) {
|
||||||
|
authStore.logout();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
@@ -1,296 +0,0 @@
|
|||||||
:root {
|
|
||||||
--text: #6b6375;
|
|
||||||
--text-h: #08060d;
|
|
||||||
--bg: #fff;
|
|
||||||
--border: #e5e4e7;
|
|
||||||
--code-bg: #f4f3ec;
|
|
||||||
--accent: #aa3bff;
|
|
||||||
--accent-bg: rgba(170, 59, 255, 0.1);
|
|
||||||
--accent-border: rgba(170, 59, 255, 0.5);
|
|
||||||
--social-bg: rgba(244, 243, 236, 0.5);
|
|
||||||
--shadow:
|
|
||||||
rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
|
|
||||||
|
|
||||||
--sans: system-ui, 'Segoe UI', Roboto, sans-serif;
|
|
||||||
--heading: system-ui, 'Segoe UI', Roboto, sans-serif;
|
|
||||||
--mono: ui-monospace, Consolas, monospace;
|
|
||||||
|
|
||||||
font: 18px/145% var(--sans);
|
|
||||||
letter-spacing: 0.18px;
|
|
||||||
color-scheme: light dark;
|
|
||||||
color: var(--text);
|
|
||||||
background: var(--bg);
|
|
||||||
font-synthesis: none;
|
|
||||||
text-rendering: optimizeLegibility;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
:root {
|
|
||||||
--text: #9ca3af;
|
|
||||||
--text-h: #f3f4f6;
|
|
||||||
--bg: #16171d;
|
|
||||||
--border: #2e303a;
|
|
||||||
--code-bg: #1f2028;
|
|
||||||
--accent: #c084fc;
|
|
||||||
--accent-bg: rgba(192, 132, 252, 0.15);
|
|
||||||
--accent-border: rgba(192, 132, 252, 0.5);
|
|
||||||
--social-bg: rgba(47, 48, 58, 0.5);
|
|
||||||
--shadow:
|
|
||||||
rgba(0, 0, 0, 0.4) 0 10px 15px -3px, rgba(0, 0, 0, 0.25) 0 4px 6px -2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#social .button-icon {
|
|
||||||
filter: invert(1) brightness(2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2 {
|
|
||||||
font-family: var(--heading);
|
|
||||||
font-weight: 500;
|
|
||||||
color: var(--text-h);
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 56px;
|
|
||||||
letter-spacing: -1.68px;
|
|
||||||
margin: 32px 0;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
font-size: 36px;
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
font-size: 24px;
|
|
||||||
line-height: 118%;
|
|
||||||
letter-spacing: -0.24px;
|
|
||||||
margin: 0 0 8px;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
|
||||||
.counter {
|
|
||||||
font-family: var(--mono);
|
|
||||||
display: inline-flex;
|
|
||||||
border-radius: 4px;
|
|
||||||
color: var(--text-h);
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-size: 15px;
|
|
||||||
line-height: 135%;
|
|
||||||
padding: 4px 8px;
|
|
||||||
background: var(--code-bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.counter {
|
|
||||||
font-size: 16px;
|
|
||||||
padding: 5px 10px;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: var(--accent);
|
|
||||||
background: var(--accent-bg);
|
|
||||||
border: 2px solid transparent;
|
|
||||||
transition: border-color 0.3s;
|
|
||||||
margin-bottom: 24px;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
border-color: var(--accent-border);
|
|
||||||
}
|
|
||||||
&:focus-visible {
|
|
||||||
outline: 2px solid var(--accent);
|
|
||||||
outline-offset: 2px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.hero {
|
|
||||||
position: relative;
|
|
||||||
|
|
||||||
.base,
|
|
||||||
.framework,
|
|
||||||
.vite {
|
|
||||||
inset-inline: 0;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.base {
|
|
||||||
width: 170px;
|
|
||||||
position: relative;
|
|
||||||
z-index: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.framework,
|
|
||||||
.vite {
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.framework {
|
|
||||||
z-index: 1;
|
|
||||||
top: 34px;
|
|
||||||
height: 28px;
|
|
||||||
transform: perspective(2000px) rotateZ(300deg) rotateX(44deg) rotateY(39deg)
|
|
||||||
scale(1.4);
|
|
||||||
}
|
|
||||||
|
|
||||||
.vite {
|
|
||||||
z-index: 0;
|
|
||||||
top: 107px;
|
|
||||||
height: 26px;
|
|
||||||
width: auto;
|
|
||||||
transform: perspective(2000px) rotateZ(300deg) rotateX(40deg) rotateY(39deg)
|
|
||||||
scale(0.8);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#app {
|
|
||||||
width: 1126px;
|
|
||||||
max-width: 100%;
|
|
||||||
margin: 0 auto;
|
|
||||||
text-align: center;
|
|
||||||
border-inline: 1px solid var(--border);
|
|
||||||
min-height: 100svh;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
#center {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
gap: 25px;
|
|
||||||
place-content: center;
|
|
||||||
place-items: center;
|
|
||||||
flex-grow: 1;
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
padding: 32px 20px 24px;
|
|
||||||
gap: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#next-steps {
|
|
||||||
display: flex;
|
|
||||||
border-top: 1px solid var(--border);
|
|
||||||
text-align: left;
|
|
||||||
|
|
||||||
& > div {
|
|
||||||
flex: 1 1 0;
|
|
||||||
padding: 32px;
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
padding: 24px 20px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
margin-bottom: 16px;
|
|
||||||
width: 22px;
|
|
||||||
height: 22px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
flex-direction: column;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#docs {
|
|
||||||
border-right: 1px solid var(--border);
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
border-right: none;
|
|
||||||
border-bottom: 1px solid var(--border);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#next-steps ul {
|
|
||||||
list-style: none;
|
|
||||||
padding: 0;
|
|
||||||
display: flex;
|
|
||||||
gap: 8px;
|
|
||||||
margin: 32px 0 0;
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
height: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--text-h);
|
|
||||||
font-size: 16px;
|
|
||||||
border-radius: 6px;
|
|
||||||
background: var(--social-bg);
|
|
||||||
display: flex;
|
|
||||||
padding: 6px 12px;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
text-decoration: none;
|
|
||||||
transition: box-shadow 0.3s;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
box-shadow: var(--shadow);
|
|
||||||
}
|
|
||||||
.button-icon {
|
|
||||||
height: 18px;
|
|
||||||
width: 18px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
margin-top: 20px;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
|
||||||
|
|
||||||
li {
|
|
||||||
flex: 1 1 calc(50% - 8px);
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
width: 100%;
|
|
||||||
justify-content: center;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#spacer {
|
|
||||||
height: 88px;
|
|
||||||
border-top: 1px solid var(--border);
|
|
||||||
@media (max-width: 1024px) {
|
|
||||||
height: 48px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.ticks {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
&::before,
|
|
||||||
&::after {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: -4.5px;
|
|
||||||
border: 5px solid transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
&::before {
|
|
||||||
left: 0;
|
|
||||||
border-left-color: var(--border);
|
|
||||||
}
|
|
||||||
&::after {
|
|
||||||
right: 0;
|
|
||||||
border-right-color: var(--border);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
<script setup>
|
||||||
|
import { storeToRefs } from 'pinia';
|
||||||
|
|
||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
const { user } = storeToRefs(authStore);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div v-if="user">
|
||||||
|
<h1>Hi {{user.firstName}}!</h1>
|
||||||
|
<p>You're logged in with Vue 3 + Pinia & JWT!!</p>
|
||||||
|
<p><router-link to="/users">Manage Users</router-link></p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
<script setup>
|
||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
import { router } from '@/router';
|
||||||
|
|
||||||
|
// redirect home if already logged in
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
if (authStore.user) {
|
||||||
|
router.push('/');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-8 offset-sm-2 mt-5">
|
||||||
|
<router-view />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
<script setup>
|
||||||
|
import { Form, Field } from 'vee-validate';
|
||||||
|
import * as Yup from 'yup';
|
||||||
|
|
||||||
|
import { useAuthStore } from '@/stores';
|
||||||
|
|
||||||
|
const schema = Yup.object().shape({
|
||||||
|
username: Yup.string().required('Username is required'),
|
||||||
|
password: Yup.string().required('Password is required')
|
||||||
|
});
|
||||||
|
|
||||||
|
async function onSubmit(values) {
|
||||||
|
const authStore = useAuthStore();
|
||||||
|
const { username, password } = values;
|
||||||
|
await authStore.login(username, password);
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="card m-3">
|
||||||
|
<h4 class="card-header">Login</h4>
|
||||||
|
<div class="card-body">
|
||||||
|
<Form @submit="onSubmit" :validation-schema="schema" v-slot="{ errors, isSubmitting }">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Username</label>
|
||||||
|
<Field name="username" type="text" class="form-control" :class="{ 'is-invalid': errors.username }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.username }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Password</label>
|
||||||
|
<Field name="password" type="password" class="form-control" :class="{ 'is-invalid': errors.password }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.password }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<button class="btn btn-primary" :disabled="isSubmitting">
|
||||||
|
<span v-show="isSubmitting" class="spinner-border spinner-border-sm mr-1"></span>
|
||||||
|
Login
|
||||||
|
</button>
|
||||||
|
<router-link to="register" class="btn btn-link">Register</router-link>
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
<script setup>
|
||||||
|
import { Form, Field } from 'vee-validate';
|
||||||
|
import * as Yup from 'yup';
|
||||||
|
|
||||||
|
import { useUsersStore, useAlertStore } from '@/stores';
|
||||||
|
import { router } from '@/router';
|
||||||
|
|
||||||
|
const schema = Yup.object().shape({
|
||||||
|
firstName: Yup.string()
|
||||||
|
.required('First Name is required'),
|
||||||
|
lastName: Yup.string()
|
||||||
|
.required('Last Name is required'),
|
||||||
|
username: Yup.string()
|
||||||
|
.required('Username is required'),
|
||||||
|
password: Yup.string()
|
||||||
|
.required('Password is required')
|
||||||
|
.min(6, 'Password must be at least 6 characters')
|
||||||
|
});
|
||||||
|
|
||||||
|
async function onSubmit(values) {
|
||||||
|
const usersStore = useUsersStore();
|
||||||
|
const alertStore = useAlertStore();
|
||||||
|
try {
|
||||||
|
await usersStore.register(values);
|
||||||
|
await router.push('/account/login');
|
||||||
|
alertStore.success('Registration successful');
|
||||||
|
} catch (error) {
|
||||||
|
alertStore.error(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="card m-3">
|
||||||
|
<h4 class="card-header">Register</h4>
|
||||||
|
<div class="card-body">
|
||||||
|
<Form @submit="onSubmit" :validation-schema="schema" v-slot="{ errors, isSubmitting }">
|
||||||
|
<div class="form-group">
|
||||||
|
<label>First Name</label>
|
||||||
|
<Field name="firstName" type="text" class="form-control" :class="{ 'is-invalid': errors.firstName }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.firstName }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Last Name</label>
|
||||||
|
<Field name="lastName" type="text" class="form-control" :class="{ 'is-invalid': errors.lastName }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.lastName }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Username</label>
|
||||||
|
<Field name="username" type="text" class="form-control" :class="{ 'is-invalid': errors.username }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.username }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<label>Password</label>
|
||||||
|
<Field name="password" type="password" class="form-control" :class="{ 'is-invalid': errors.password }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.password }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<button class="btn btn-primary" :disabled="isSubmitting">
|
||||||
|
<span v-show="isSubmitting" class="spinner-border spinner-border-sm mr-1"></span>
|
||||||
|
Register
|
||||||
|
</button>
|
||||||
|
<router-link to="login" class="btn btn-link">Cancel</router-link>
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export { default as Layout } from './Layout.vue';
|
||||||
|
export { default as Login } from './Login.vue';
|
||||||
|
export { default as Register } from './Register.vue';
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export { default as Home } from './Home.vue';
|
||||||
@@ -0,0 +1,106 @@
|
|||||||
|
<script setup>
|
||||||
|
import { Form, Field } from 'vee-validate';
|
||||||
|
import * as Yup from 'yup';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { storeToRefs } from 'pinia';
|
||||||
|
|
||||||
|
import { useUsersStore, useAlertStore } from '@/stores';
|
||||||
|
import { router } from '@/router';
|
||||||
|
|
||||||
|
const usersStore = useUsersStore();
|
||||||
|
const alertStore = useAlertStore();
|
||||||
|
const route = useRoute();
|
||||||
|
const id = route.params.id;
|
||||||
|
|
||||||
|
let title = 'Add User';
|
||||||
|
let user = null;
|
||||||
|
if (id) {
|
||||||
|
// edit mode
|
||||||
|
title = 'Edit User';
|
||||||
|
({ user } = storeToRefs(usersStore));
|
||||||
|
usersStore.getById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
const schema = Yup.object().shape({
|
||||||
|
firstName: Yup.string()
|
||||||
|
.required('First Name is required'),
|
||||||
|
lastName: Yup.string()
|
||||||
|
.required('Last Name is required'),
|
||||||
|
username: Yup.string()
|
||||||
|
.required('Username is required'),
|
||||||
|
password: Yup.string()
|
||||||
|
.transform(x => x === '' ? undefined : x)
|
||||||
|
// password optional in edit mode
|
||||||
|
.concat(user ? null : Yup.string().required('Password is required'))
|
||||||
|
.min(6, 'Password must be at least 6 characters')
|
||||||
|
});
|
||||||
|
|
||||||
|
async function onSubmit(values) {
|
||||||
|
try {
|
||||||
|
let message;
|
||||||
|
if (user) {
|
||||||
|
await usersStore.update(user.value.id, values)
|
||||||
|
message = 'User updated';
|
||||||
|
} else {
|
||||||
|
await usersStore.register(values);
|
||||||
|
message = 'User added';
|
||||||
|
}
|
||||||
|
await router.push('/users');
|
||||||
|
alertStore.success(message);
|
||||||
|
} catch (error) {
|
||||||
|
alertStore.error(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>{{title}}</h1>
|
||||||
|
<template v-if="!(user?.loading || user?.error)">
|
||||||
|
<Form @submit="onSubmit" :validation-schema="schema" :initial-values="user" v-slot="{ errors, isSubmitting }">
|
||||||
|
<div class="form-row">
|
||||||
|
<div class="form-group col">
|
||||||
|
<label>First Name</label>
|
||||||
|
<Field name="firstName" type="text" class="form-control" :class="{ 'is-invalid': errors.firstName }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.firstName }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group col">
|
||||||
|
<label>Last Name</label>
|
||||||
|
<Field name="lastName" type="text" class="form-control" :class="{ 'is-invalid': errors.lastName }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.lastName }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-row">
|
||||||
|
<div class="form-group col">
|
||||||
|
<label>Username</label>
|
||||||
|
<Field name="username" type="text" class="form-control" :class="{ 'is-invalid': errors.username }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.username }}</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group col">
|
||||||
|
<label>
|
||||||
|
Password
|
||||||
|
<em v-if="user">(Leave blank to keep the same password)</em>
|
||||||
|
</label>
|
||||||
|
<Field name="password" type="password" class="form-control" :class="{ 'is-invalid': errors.password }" />
|
||||||
|
<div class="invalid-feedback">{{ errors.password }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="form-group">
|
||||||
|
<button class="btn btn-primary" :disabled="isSubmitting">
|
||||||
|
<span v-show="isSubmitting" class="spinner-border spinner-border-sm mr-1"></span>
|
||||||
|
Save
|
||||||
|
</button>
|
||||||
|
<router-link to="/users" class="btn btn-link">Cancel</router-link>
|
||||||
|
</div>
|
||||||
|
</Form>
|
||||||
|
</template>
|
||||||
|
<template v-if="user?.loading">
|
||||||
|
<div class="text-center m-5">
|
||||||
|
<span class="spinner-border spinner-border-lg align-center"></span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-if="user?.error">
|
||||||
|
<div class="text-center m-5">
|
||||||
|
<div class="text-danger">Error loading user: {{user.error}}</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<template>
|
||||||
|
<div class="p-4">
|
||||||
|
<div class="container">
|
||||||
|
<router-view />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
<script setup>
|
||||||
|
import { storeToRefs } from 'pinia';
|
||||||
|
|
||||||
|
import { useUsersStore } from '@/stores';
|
||||||
|
|
||||||
|
const usersStore = useUsersStore();
|
||||||
|
const { users } = storeToRefs(usersStore);
|
||||||
|
|
||||||
|
usersStore.getAll();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>Users</h1>
|
||||||
|
<router-link to="/users/add" class="btn btn-sm btn-success mb-2">Add User</router-link>
|
||||||
|
<table class="table table-striped">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th style="width: 30%">First Name</th>
|
||||||
|
<th style="width: 30%">Last Name</th>
|
||||||
|
<th style="width: 30%">Username</th>
|
||||||
|
<th style="width: 10%"></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<template v-if="users.length">
|
||||||
|
<tr v-for="user in users" :key="user.id">
|
||||||
|
<td>{{ user.firstName }}</td>
|
||||||
|
<td>{{ user.lastName }}</td>
|
||||||
|
<td>{{ user.username }}</td>
|
||||||
|
<td style="white-space: nowrap">
|
||||||
|
<router-link :to="`/users/edit/${user.id}`" class="btn btn-sm btn-primary mr-1">Edit</router-link>
|
||||||
|
<button @click="usersStore.delete(user.id)" class="btn btn-sm btn-danger btn-delete-user" :disabled="user.isDeleting">
|
||||||
|
<span v-if="user.isDeleting" class="spinner-border spinner-border-sm"></span>
|
||||||
|
<span v-else>Delete</span>
|
||||||
|
</button>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
|
<tr v-if="users.loading">
|
||||||
|
<td colspan="4" class="text-center">
|
||||||
|
<span class="spinner-border spinner-border-lg align-center"></span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr v-if="users.error">
|
||||||
|
<td colspan="4">
|
||||||
|
<div class="text-danger">Error loading users: {{users.error}}</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</template>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
export { default as AddEdit } from './AddEdit.vue';
|
||||||
|
export { default as Layout } from './Layout.vue';
|
||||||
|
export { default as List } from './List.vue';
|
||||||
@@ -1,7 +1,14 @@
|
|||||||
import { defineConfig } from 'vite'
|
import { fileURLToPath, URL } from 'url';
|
||||||
import vue from '@vitejs/plugin-vue'
|
|
||||||
|
|
||||||
// https://vite.dev/config/
|
import { defineConfig } from 'vite';
|
||||||
|
import vue from '@vitejs/plugin-vue';
|
||||||
|
|
||||||
|
// https://vitejs.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [vue()],
|
plugins: [vue()],
|
||||||
})
|
resolve: {
|
||||||
|
alias: {
|
||||||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user