142 lines
3.5 KiB
Vue
142 lines
3.5 KiB
Vue
<script setup>
|
|
|
|
import VersionRender from '@/views/others/VersionRender.vue'
|
|
import ErrorMessage from '@/views/others/ErrorMessage.vue'
|
|
import SuccessMessage from '@/views/others/SuccessMessage.vue'
|
|
|
|
import { onMounted, onUpdated, ref } from 'vue';
|
|
import { SetupHandle, SetSize, SetPosition, ResetPosition } from '@/services/Windows';
|
|
import { SetUser, GetUser } from '@/services/User'
|
|
|
|
import Api from '@/services/Api.js'
|
|
|
|
import WindowHandle from '@/views/partials/WindowHandle.vue';
|
|
import { ClearWindows, CreateWindow } from '../../services/Windows';
|
|
import { DisplayToast } from '../../services/Dragonroll';
|
|
|
|
const handle = ref(null);
|
|
|
|
const username = ref("");
|
|
const password = ref("");
|
|
const errorMessage = ref("");
|
|
const successMessage = ref("");
|
|
|
|
const props = defineProps(['data']);
|
|
|
|
const data = props.data;
|
|
|
|
let id = data.id;
|
|
let title = data.title;
|
|
let success = data.msg;
|
|
|
|
onMounted(() => {
|
|
successMessage.value = success;
|
|
|
|
SetupHandle(id, handle);
|
|
SetSize(id, {x: 450, y: 500});
|
|
ResetPosition(id, "center");
|
|
});
|
|
|
|
function login(){
|
|
Api().post('/user/login', { username: username.value, password: password.value }).then((response) => {
|
|
const data = response.data;
|
|
|
|
if(data.error){
|
|
errorMessage.value = data.msg;
|
|
} else {
|
|
errorMessage.value = "";
|
|
SetUser(data.token);
|
|
|
|
ShowMainMenu();
|
|
}
|
|
}).catch((error) => {
|
|
console.log(error);
|
|
if(error.response.status == 429){
|
|
// errorMessage.value = error.response.data;
|
|
} else {
|
|
// errorMessage.value = "Hi ha hagut un error intern, torna'ho a provar més tard";
|
|
console.log(error);
|
|
}
|
|
});
|
|
}
|
|
|
|
function ShowRegister(){
|
|
ClearWindows({type: "login"});
|
|
CreateWindow('register');
|
|
}
|
|
|
|
function ShowMainMenu(){
|
|
ClearWindows({type: "login"});
|
|
CreateWindow('main_menu');
|
|
DisplayToast('green', 'Logged in successfully as ' + GetUser().username + '!', 3000)
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
<template>
|
|
<div class="window-wrapper" :id="'window-wrapper-' + id">
|
|
<WindowHandle :window="id" ref="handle"></WindowHandle>
|
|
|
|
<img src="img/logo-splash.png" class="splash-image" draggable="false">
|
|
|
|
<form v-on:submit.prevent="login">
|
|
<div class="form-field">
|
|
<label for="username">Username</label>
|
|
<input id="username-field" type="text" placeholder="Enter your username here..." name="username" v-model="username" autocomplete="off" >
|
|
</div>
|
|
<div class="form-field">
|
|
<label for="password">Password</label>
|
|
<input id="password-field" type="password" placeholder="Enter your password..." name="password" v-model="password" autocomplete="off" >
|
|
</div>
|
|
<div class="form-field">
|
|
<button class="btn-primary sound-click">Log in</button>
|
|
</div>
|
|
</form>
|
|
|
|
<p>Don't have an account? <a v-on:click.prevent="ShowRegister">Register here</a></p>
|
|
<ErrorMessage v-if="errorMessage">{{ errorMessage }}</ErrorMessage>
|
|
<SuccessMessage v-if="successMessage">{{ successMessage }}</SuccessMessage>
|
|
<!-- <VersionRender></VersionRender> -->
|
|
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<style scoped>
|
|
p {
|
|
user-select: none;
|
|
}
|
|
|
|
.window-wrapper {
|
|
user-select: none;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.splash-image {
|
|
width: 450px;
|
|
}
|
|
|
|
form {
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.form-field {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: left;
|
|
flex-direction: column;
|
|
justify-content: left;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
label {
|
|
text-align: left;
|
|
}
|
|
|
|
</style>
|