Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/client/src/components/connect.vue

171 lines
3.8 KiB
Vue
Raw Normal View History

2020-01-23 06:16:40 +13:00
<template>
<div class="connect">
<div class="window">
<div class="logo">
2020-02-02 09:35:48 +13:00
<img src="@/assets/images/logo.svg" alt="n.eko" />
2020-01-23 06:16:40 +13:00
<span><b>n</b>.eko</span>
</div>
<form class="message" v-if="!connecting" @submit.stop.prevent="connect">
2020-01-24 04:23:26 +13:00
<span>Please Login</span>
<input type="text" placeholder="Display Name" v-model="username" />
2020-01-23 06:16:40 +13:00
<input type="password" placeholder="Password" v-model="password" />
2020-02-12 08:36:06 +13:00
<button type="submit" @click.stop.prevent="login">
2020-01-23 06:16:40 +13:00
Connect
</button>
</form>
<div class="loader" v-if="connecting">
<div class="bounce1"></div>
<div class="bounce2"></div>
</div>
</div>
</div>
</template>
<style lang="scss" scoped>
.connect {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba($color: $background-floating, $alpha: 0.8);
display: flex;
justify-content: center;
align-items: center;
.window {
width: 300px;
background: $background-secondary;
border-radius: 5px;
padding: 10px;
.logo {
width: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
img {
height: 90px;
margin-right: 10px;
}
span {
font-size: 30px;
line-height: 56px;
b {
font-weight: 900;
}
}
}
.message {
display: flex;
flex-direction: column;
span {
2020-01-24 04:23:26 +13:00
display: block;
2020-01-23 06:16:40 +13:00
text-align: center;
text-transform: uppercase;
2020-01-24 04:23:26 +13:00
line-height: 30px;
2020-01-23 06:16:40 +13:00
}
input {
border: none;
padding: 6px 8px;
line-height: 20px;
border-radius: 5px;
margin: 5px 0;
background: $background-tertiary;
color: $text-normal;
&::selection {
background: $text-link;
}
}
button {
cursor: pointer;
border-radius: 5px;
padding: 4px;
background: $style-primary;
color: $text-normal;
text-align: center;
text-transform: uppercase;
font-weight: bold;
line-height: 30px;
margin: 5px 0;
border: none;
}
}
.loader {
width: 90px;
height: 90px;
position: relative;
margin: 0 auto;
.bounce1,
.bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: $style-primary;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: bounce 2s infinite ease-in-out;
animation: bounce 2s infinite ease-in-out;
}
.bounce2 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
}
}
@keyframes bounce {
0%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
50% {
transform: scale(1);
-webkit-transform: scale(1);
}
}
}
</style>
<script lang="ts">
import { Component, Ref, Watch, Vue } from 'vue-property-decorator'
2020-01-24 04:23:26 +13:00
import { get, set } from '~/utils/localstorage'
2020-02-12 08:36:06 +13:00
2020-01-23 06:16:40 +13:00
@Component({ name: 'neko-connect' })
export default class extends Vue {
private username = ''
private password = ''
2020-02-12 08:36:06 +13:00
mounted() {
if (this.$accessor.username !== '' && this.$accessor.password !== '') {
this.$accessor.login({ username: this.$accessor.username, password: this.$accessor.password })
}
}
2020-01-23 06:16:40 +13:00
get connecting() {
return this.$accessor.connecting
}
2020-02-12 08:36:06 +13:00
login() {
this.$accessor.login({ username: this.username, password: this.password })
2020-01-23 06:16:40 +13:00
}
}
</script>