hardlounge/client/components/Windows/SignIn.vue

106 lines
2.2 KiB
Vue
Raw Normal View History

2019-02-18 04:18:32 -05:00
<template>
2019-08-03 15:03:45 -04:00
<div id="sign-in" class="window" role="tabpanel" aria-label="Sign-in">
<form class="container" method="post" action="" @submit="onSubmit">
2019-02-18 04:18:32 -05:00
<img
src="img/logo-vertical-transparent-bg.svg"
class="logo"
alt="The Lounge"
width="256"
2019-03-01 09:18:16 -05:00
height="170"
2019-08-03 15:03:45 -04:00
/>
2019-02-18 04:18:32 -05:00
<img
src="img/logo-vertical-transparent-bg-inverted.svg"
class="logo-inverted"
alt="The Lounge"
width="256"
2019-03-01 09:18:16 -05:00
height="170"
2019-08-03 15:03:45 -04:00
/>
2019-02-18 04:18:32 -05:00
<label for="signin-username">Username</label>
<input
id="signin-username"
ref="username"
class="input"
type="text"
name="username"
autocapitalize="none"
autocorrect="off"
autocomplete="username"
:value="getStoredUser()"
required
2019-03-01 09:18:16 -05:00
autofocus
2019-08-03 15:03:45 -04:00
/>
2019-02-18 04:18:32 -05:00
<div class="password-container">
<label for="signin-password">Password</label>
<RevealPassword v-slot:default="slotProps">
<input
id="signin-password"
ref="password"
:type="slotProps.isVisible ? 'text' : 'password'"
name="password"
class="input"
autocapitalize="none"
autocorrect="off"
autocomplete="current-password"
2019-03-01 09:18:16 -05:00
required
2019-08-03 15:03:45 -04:00
/>
2019-02-18 04:18:32 -05:00
</RevealPassword>
</div>
2019-08-03 15:03:45 -04:00
<div v-if="errorShown" class="error">Authentication failed.</div>
2019-02-18 04:18:32 -05:00
2019-08-03 15:03:45 -04:00
<button :disabled="inFlight" type="submit" class="btn">Sign in</button>
2019-02-18 04:18:32 -05:00
</form>
</div>
</template>
<script>
2019-11-16 12:24:03 -05:00
import storage from "../../js/localStorage";
2019-02-18 04:18:32 -05:00
import socket from "../../js/socket";
import RevealPassword from "../RevealPassword.vue";
export default {
name: "SignIn",
components: {
RevealPassword,
},
data() {
return {
inFlight: false,
errorShown: false,
};
},
mounted() {
2019-11-12 06:09:12 -05:00
socket.on("auth:failed", this.onAuthFailed);
},
beforeDestroy() {
2019-11-12 06:09:12 -05:00
socket.off("auth:failed", this.onAuthFailed);
},
2019-02-18 04:18:32 -05:00
methods: {
onAuthFailed() {
this.inFlight = false;
this.errorShown = true;
},
2019-02-18 04:18:32 -05:00
onSubmit(event) {
event.preventDefault();
this.inFlight = true;
this.errorShown = false;
const values = {
user: this.$refs.username.value,
password: this.$refs.password.value,
};
storage.set("user", values.user);
2019-11-05 14:29:51 -05:00
socket.emit("auth:perform", values);
2019-02-18 04:18:32 -05:00
},
getStoredUser() {
return storage.get("user");
},
},
};
</script>