|
|
<template> <div class="tw-bg-white tw-mt-[30px] md:tw-rounded-[24px] md:tw-pt-[60px] md:tw-pb-[150px] md:tw-px-[30px]"> <h1 class="tw-text-[40px] tw-font-bold tw-mb-[20px] md:tw-text-[24px]">{{ $t('Login') }}</h1> <p class="tw-body-3 tw-text-neutral-400 tw-mb-[16px] md:tw-mb-[12px]"> {{ $t('Welcome back! Please enter your details') }} </p> <p class="tw-body-3 tw-mb-[24px] md:tw-mb-[32px]">{{ $t('Not a member?') }} <nuxt-link :to="localePath('/user/signup')" class="primary--text text-decoration-none">{{ $t('Sign up') }}</nuxt-link> </p> <!-- <div class="tw-grid tw-grid-cols-1 tw-gap-[10px] tw-mb-[30px] md:tw-gap-[12px] md:tw-mb-[12px]"> <button @click="googleLogin" class="tw-block tw-w-full tw-py-[8px] tw-rounded-[16px] tw-border tw-border-solid tw-text-black tw-border-neutrals-200"><img width="20px" height="20px" src="~/assets/img/g-normal.png" class="mr-5" />{{ $t('Login with Google') }}</button> <button @click="facebookLogin" class="tw-block tw-w-full tw-py-[8px] tw-rounded-[16px] tw-border tw-border-solid tw-text-black tw-border-neutrals-200"><img width="20px" height="20px" src="~/assets/img/f_logo_RGB-Blue_72.png" class="mr-5" /> {{ $t("Login with Facebook") }}</button> </div> <div class="tw-grid tw-grid-cols-[auto_16px_auto] tw-gap-[28px] tw-mb-[6px]"> <div class="tw-flex tw-justify-center tw-items-center"> <div class="tw-w-full tw-h-[1px] tw-bg-neutral-200"></div> </div> <div class="tw-text-neutral-400 tw-body-3 tw-font-normal">{{ $t("or") }}</div> <div class="tw-flex tw-justify-center tw-items-center"> <div class="tw-w-full tw-h-[1px] tw-bg-neutral-200"></div> </div> </div> --> <div v-if="wrongMessageActive" class="warning--text text-size-14 ps-1 mb-3"> {{ $t('The username or password entered is incorrect') }} </div> <v-form ref="loginFormRef" lazy-validation> <!-- <div v-if="$auth.$storage.getUniversal('userAccount') && $auth.$storage.getUniversal('userPassword')"></div> <div v-else></div> --> <v-text-field v-model="userData.Account" background-color="neutrals darken-1" :label="this.$t('Email')" :placeholder="this.$t('Email')" height="40px" filled rounded dense single-line persistent-placeholder :rules="[rules.email,rules.require]" v-on:input="updateValid" /> <v-text-field v-model="userData.Password" background-color="neutrals darken-1" :label="this.$t('Password')" :type=" showPass ? 'text' : 'password'" :placeholder="this.$t('Password')" filled rounded dense single-line persistent-placeholder :append-icon=" showPass ? 'mdi-eye' : 'mdi-eye-off'" @click:append="showPass = !showPass" :rules="[rules.checkPassword,rules.require]" v-on:input="updateValid" /> </v-form> <div class="tw-flex tw-justify-between tw-items-center tw-mb-[28px] md:tw-mb-[32px]"> <div class="tw-flex tw-items-center"> <div class="tw-flex tw-items-center"> <div class="tw-flex tw-flex-col"> <label class="tw-body-4 container-checkbox" for="remember"> {{ $t('Remember me') }} <input id="remember" type="checkbox" value="remember" v-model="remember" /> <span class="checkmark"></span> </label> </div> </div> </div> <div class="tw-flex tw-items-center"> <nuxt-link class="complementary--text text-decoration-none text-size-14" :to="localePath('/user/forgot')">{{ $t('Forgot Password?') }}</nuxt-link> </div> </div> <div class="md:tw-flex md:tw-justify-center md:tw-items-center"> <button @click="userLogin" :disabled="!valid" :class="['tw-block tw-w-full tw-py-[10px] tw-rounded-[16px] tw-border tw-border-solid tw-body-3 tw-font-normal tw-transition-all tw-duration-200 tw-ease-in-out',valid?'tw-text-white tw-bg-primary-default tw-border-primary-default':'tw-text-base-disable tw-bg-neutral-100 tw-border-neutral-100']">{{ $t("Login") }}</button></div> <v-dialog v-model="dialog" :width="$vuetify.breakpoint.smAndUp ? 423 : 294" @click:outside="$router.push(localePath('/user'))"> <v-card class="tw-p-[30px]" :height="$vuetify.breakpoint.smAndUp ? 289 : 290"> <v-spacer class="d-flex align-center tw-justify-between tw-mb-[30px]"> <div class="tw-text-[20px] tw-font-bold tw-text-black"> {{ $t("Verify your email") }} </div> <v-btn @click="$router.push(localePath('/user'))" icon> <v-icon> mdi-close </v-icon> </v-btn> </v-spacer> <v-spacer class="tw-mb-[40px]"> <div class="tw-text-[16px] tw-text-neutrals-800"> {{ $t("Oops! Seems like you haven't verified your email,please click the button below to resend a verification email.")}} </div> </v-spacer> <button @click="resendVerifyEmail()" class="tw-bg-primary-1 hover:tw-bg-primary-light tw-text-white tw-text-[18px] tw-rounded-[16px] tw-px-[77px] tw-py-[13px]"> {{ $t("Resend verification email") }} </button> <!-- <v-btn @click="resendVerifyEmail" class="primary tw-text-[18px] tw-w-auto" rounded :disabled="countdown > 0"> <span v-if="countdown > 0"> {{ `(${this.countdown})` }} </span> </v-btn> --> </v-card> </v-dialog> <v-dialog v-model="deleteDialog" :width="$vuetify.breakpoint.smAndUp ? 423 : 294" @click:outside="$router.push(localePath('/user'))"> <v-card class="tw-p-[30px]" :height="$vuetify.breakpoint.smAndUp ? 289 : 290"> <v-spacer class="d-flex tw-justify-between align-center tw-mb-[30px]"> <div class="tw-text-[20px] tw-text-black tw-font-bold"> {{ $t("Reactivate your account") }} </div> <v-btn @click="$router.push(localePath('/user'))" icon> <v-icon> mdi-close </v-icon> </v-btn> </v-spacer> <v-spacer class="tw-mb-[40px]"> <div class="tw-text-[16px] tw-text-neutrals-800 tw-font-bold"> {{ $t("Welcome back!")}} </div> <div class="tw-text-[16px] tw-text-neutrals-800"> {{ $t("Looks like your account has been deactivated.")}} <br /> {{ $t("Would you like to reactivate this account?")}} </div> </v-spacer> <button class="tw-bg-primary-1 tw-text-white hover:tw-bg-primary-light tw-text-[18px] tw-rounded-[16px] tw-px-[86px] tw-py-[13px]"> {{ $t("Reactivate my account") }} </button> <!-- <v-btn class="primary tw-w-auto" rounded :disabled="countdown > 0"> <span v-if="countdown > 0"> {{ `(${this.countdown})` }} </span> </v-btn> --> </v-card> </v-dialog> </div> </template> <script> import { getCurrentTime } from "~/utils/assist"; export default { name: "login", layout: "login", auth: false, data() { return { timer: null, showPass: false, resendDialog: false, wrongMessageActive: false, verifyEmailSent: false, valid: false, remember: false, countdown: 0, userData: { Account: '', Password: '', }, rules: { require: value => !!value || this.$t('Required.'), email: v => /^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$/.test(v) || this.$t('Invalid email'), // checkPassword: v => (/(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])/.test(v) && v.length >= 8 && v.length <= 20) || '請輸入密碼',
checkPassword: v => v.length >= 1 || '請輸入密碼', }, deleteDialog: false, dialog: false, } }, watch: { remember: { handler: function () { if (this.remember == true) { this.$auth.$storage.setUniversal("userPassword", this.userData.Password); this.$auth.$storage.setUniversal("userAccount", this.userData.Account); }else{ this.$auth.$storage.removeUniversal("userPassword"); this.$auth.$storage.removeUniversal("userAccount", this.userData.Account); } }, }, },
mounted(){ var userAccount = this.$auth.$storage.getUniversal('userAccount'); var userPassword = this.$auth.$storage.getUniversal('userPassword');
this.userData.Account = userAccount ? userAccount : ''; this.userData.Password = userPassword ? userPassword : '';
if(this.userData.Account !=='' && this.userData.Password !==''){ this.valid = true; }else{ this.valid = false; }
}, methods: { async userLogin() { let that = this; if (!that.$refs.loginFormRef.validate()) return; console.log("測試登錄接口請求開始:" + getCurrentTime()); try { const response =await that.$auth.loginWith('local', { data: that.userData }); that.$auth.$storage.removeUniversal('authtoken'); console.log("測試登錄接口請求結束:" + getCurrentTime()); if(response.data.STATUSCODE==200){ let data = response.data.DATA; console.log(JSON.stringify(data.authtoken)); if(data.authtoken){ const authtoken = data.authtoken; that.$auth.$storage.setUniversal('authtoken', authtoken); that.$auth.loggedIn ? that.$router.push(that.$auth.$storage.getUniversal('userBeforePath')) : that.$auth.redirect('login'); } }else if(response.data.STATUSCODE==500){ that.$auth.redirect('login'); }else if(response.data.STATUSCODE==401){ if(response.data.MSG == "0"){ this.dialog = true; }else if(response.data.MSG == "2"){ this.deleteDialog = true; }else if(response.data.MSG == "帳號或密碼不正確"){ this.wrongMessageActive = true; } }else{ // that.resendDialog = !that.resendDialog;
that.wrongMessageActive = true; } } catch(err) { console.log(err); // if(err && err.response && err.response.status){
// err.response.status === 403 ? that.resendDialog = !that.resendDialog : err.response.status === 401 ? that.wrongMessageActive = true : that.resendDialog;
// }
} }, resendVerifyEmail() { this.countdown = 60; this.$axios .post( `/trending/api/Signup/ReSendVerifyMail?Email=${this.userData.Account}` ) .then((response) => { //console.log(JSON.stringify(response))
if(response && response.data){
clearInterval(this.timer); this.timer = setInterval(() => { if (this.countdown > 0) { this.countdown--; } if (this.countdown === 0) { clearInterval(this.timer); } }, 1000); } }) .catch((error) => { console.log(error); }); }, updateValid(){ if(this.userData.Account !=='' && this.userData.Password !==''){ this.valid = true; }else{ this.valid = false; } }, }, beforeUnmount() { if(this.timer!=null){ clearInterval(this.timer); } }, beforeRouteEnter(to, from, next) { next(vm => { if (from.name) { if (!from.path.includes('user')) { vm.$auth.$storage.setUniversal("userBeforePath", from.fullPath, true) } } if (vm.$auth.loggedIn) { vm.$router.push(vm.$auth.$storage.getUniversal('userBeforePath') || '/') } else { next() } }) }, } </script> <style lang="scss" scoped> $border-style: 1px solid #E5E5E5; .title { font-weight: 700; font-size: 26px; line-height: 34px; letter-spacing: 0.02em; color: #232323; } .btn-border { border: $border-style; } .seperator { border-bottom: $border-style; text-align: center; height: 12px; margin: 20px 0 30px; } :deep(.v-text-field.v-text-field--enclosed .v-text-field__details) { margin-bottom: 0; padding: 0; .v-messages { display: none; } .v-messages.error--text { display: block; margin-top: 4px; margin-bottom: 16px; } } /* The container */ .container-checkbox { display: block; position: relative; padding-left: 28px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } /* Hide the browser's default checkbox */ .container-checkbox input { position: absolute; opacity: 0; cursor: pointer; } /* Create a custom checkbox */ .container-checkbox .checkmark { position: absolute; top: 0; left: 0; height: 18px; width: 18px; background-color: transparent; border: 1px solid #f48800; border-radius: 4px; } /* On mouse-over, add a grey background color */ .container-checkbox:hover input~.checkmark { border-color: #f48800; } /* When the checkbox is checked, add a blue background */ .container-checkbox input:checked~.checkmark { background-color: #f48800; border-color: #f48800; } /* Create the checkmark/indicator (hidden when not checked) */ .container-checkbox .checkmark:after { content: ""; position: absolute; display: none; } /* Show the checkmark when checked */ .container-checkbox input:checked~.checkmark:after { display: block; } /* Style the checkmark/indicator */ .container-checkbox .checkmark:after { left: 5px; top: 2px; width: 5px; height: 10px; border: solid #ffffff; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } </style>
|