This commit is contained in:
nquidox 2025-09-09 23:19:17 +03:00
commit 72c796c429
21 changed files with 4956 additions and 0 deletions

9
.editorconfig Normal file
View file

@ -0,0 +1,9 @@
[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue,css,scss,sass,less,styl}]
charset = utf-8
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
max_line_length = 100

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
* text=auto eol=lf

30
.gitignore vendored Normal file
View file

@ -0,0 +1,30 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
/cypress/videos/
/cypress/screenshots/
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.tsbuildinfo

6
.prettierrc.json Normal file
View file

@ -0,0 +1,6 @@
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"singleQuote": true,
"printWidth": 100
}

35
README.md Normal file
View file

@ -0,0 +1,35 @@
# frontend-v2
This template should help get you started developing with Vue 3 in Vite.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Customize configuration
See [Vite Configuration Reference](https://vite.dev/config/).
## Project Setup
```sh
npm install
```
### Compile and Hot-Reload for Development
```sh
npm run dev
```
### Compile and Minify for Production
```sh
npm run build
```
### Lint with [ESLint](https://eslint.org/)
```sh
npm run lint
```

28
eslint.config.js Normal file
View file

@ -0,0 +1,28 @@
import js from '@eslint/js'
import pluginVue from 'eslint-plugin-vue'
import globals from 'globals'
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
export default [
{
name: 'app/files-to-lint',
files: ['**/*.{js,mjs,jsx,vue}'],
},
{
name: 'app/files-to-ignore',
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'],
},
{
languageOptions: {
globals: {
...globals.browser,
},
},
},
js.configs.recommended,
...pluginVue.configs['flat/essential'],
skipFormatting,
]

13
index.html Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>

8
jsconfig.json Normal file
View file

@ -0,0 +1,8 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}

4608
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

32
package.json Normal file
View file

@ -0,0 +1,32 @@
{
"name": "frontend-v2",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"axios": "^1.11.0",
"pinia": "^3.0.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.2.0",
"eslint": "^9.21.0",
"eslint-plugin-vue": "~10.0.0",
"globals": "^16.0.0",
"naive-ui": "^2.41.0",
"prettier": "3.5.3",
"vfonts": "^0.0.3",
"vite": "^6.2.1",
"vite-plugin-vue-devtools": "^7.7.2"
}
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

11
src/App.vue Normal file
View file

@ -0,0 +1,11 @@
<script setup>
</script>
<template>
<router-link :to="{ name: 'home' }"> Home </router-link>
<router-link :to="{ name: 'login' }"> Login </router-link>
<hr>
<router-view />
</template>
<style scoped>
</style>

14
src/main.js Normal file
View file

@ -0,0 +1,14 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import router from './router'
import { setupAuthInterceptor } from '@/services/setupInterceptors.js'
const app = createApp(App)
app.use(createPinia())
app.use(router)
setupAuthInterceptor()
app.mount('#app')

21
src/router/index.js Normal file
View file

@ -0,0 +1,21 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import LoginView from '@/views/LoginView.vue'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: HomeView,
},
{
path: '/login',
name: 'login',
component: LoginView,
}
],
})
export default router

11
src/services/apiClient.js Normal file
View file

@ -0,0 +1,11 @@
import axios from 'axios'
const apiClient = axios.create({
baseURL: 'http://localhost:9000/api/v2',
timeout: 5000,
headers: {
'Content-Type': 'application/json',
}
})
export default apiClient

View file

@ -0,0 +1,12 @@
import apiClient from '@/services/apiClient'
import { useAuthStore } from '@/stores/authStore'
export function setupAuthInterceptor() {
apiClient.interceptors.request.use((config) => {
const authStore = useAuthStore()
if (authStore.accessToken) {
config.headers.Authorization = `Bearer ${authStore.accessToken}`
}
return config
})
}

41
src/stores/authStore.js Normal file
View file

@ -0,0 +1,41 @@
import { defineStore } from 'pinia';
import { computed, ref } from 'vue';
import apiClient from '@/services/apiClient';
export const useAuthStore = defineStore('auth', () => {
// state
const accessToken = ref(null)
const user = ref(null)
// getters
const isAuthenticated = computed(() => !!accessToken.value)
// actions
const login = async (email, password) => {
try {
const response = await apiClient.post(
"/user/login",
{ email, password }
)
const { access_token } = response.data
accessToken.value = access_token
console.log('Email', email)
console.log('Password', password)
} catch (error) {
console.log(error)
}
}
const logout = () => {
console.log('logout placeholder')
}
return {
accessToken,
user,
isAuthenticated,
login,
logout
}
})

12
src/stores/counter.js Normal file
View file

@ -0,0 +1,12 @@
import { ref, computed } from 'vue'
import { defineStore } from 'pinia'
export const useCounterStore = defineStore('counter', () => {
const count = ref(0)
const doubleCount = computed(() => count.value * 2)
function increment() {
count.value++
}
return { count, doubleCount, increment }
})

7
src/views/HomeView.vue Normal file
View file

@ -0,0 +1,7 @@
<script setup>
</script>
<template>
Home view
</template>

39
src/views/LoginView.vue Normal file
View file

@ -0,0 +1,39 @@
<script setup lang="js">
import { ref } from 'vue';
import { useAuthStore} from '@/stores/authStore.js';
const store = useAuthStore();
const email = ref('');
const password = ref('');
const onSubmit = () => {
store.login(email.value, password.value);
};
</script>
<template>
<h1> Login view </h1>
<div>
<form @submit.prevent="onSubmit">
<div>
<label for="email">Email</label>
<input type="email" name="email" v-model="email">
</div>
<div>
<label for="password">Password</label>
<input type="password" name="password" v-model="password">
</div>
<div>
<button type="submit">Login</button>
</div>
</form>
</div>
</template>
<style scoped>
</style>

18
vite.config.js Normal file
View file

@ -0,0 +1,18 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
})