login-v1.vue 3.37 KB
<!-- eslint-disable @typescript-eslint/no-unused-vars -->
<script setup lang="ts">
import type { VForm } from 'vuetify/components/VForm'

import authV2MaskDark from '@images/dstipro/mask-v2-dark.png'
import authV2MaskLight from '@images/dstipro/mask-v2-light.png'

import authV2LoginBgYellowDark from '@images/dstipro/auth-bg-yellow-dark.png'
import authV2LoginBgYellowLight from '@images/dstipro/auth-bg-yellow-light.png'
import authV2LoginLogoLight from '@images/dstipro/ui-logo-light.png'

import { useKeycloakStore } from '@core/stores/keycloakStore'
import SSOButton from '@/views/dstipro/beranda/authentication/SSOButton.vue'

const keycloakStore = useKeycloakStore()
const data = ref<Record<string, any> | null>(null)
const error = ref<Record<string, any> | null>(null)

const authThemeImg = useGenerateImageVariant(
  authV2LoginLogoLight,
  authV2LoginLogoLight,
)

const authThemeColor = useGenerateColorVariant(
  '#4f4f4f',
  'transparent',
)

const authThemeBg = useGenerateImageVariant(
  authV2LoginBgYellowLight,
  authV2LoginBgYellowDark,
)

const authThemeMask = useGenerateImageVariant(authV2MaskLight, authV2MaskDark)

definePageMeta({
  layout: 'blank',
  unauthenticatedOnly: true,

})

const isPasswordVisible = ref(false)

const route = useRoute()
const router = useRouter()

const ability = useAbility()

const errors = ref<Record<string, string | undefined>>({
  email: undefined,
  password: undefined,
})

const refVForm = ref<VForm>()

const credentials = ref({
  email: 'admin@demo.com',
  password: 'admin',
})

const rememberMe = ref(false)

const login = async () => {
  try {
    const res = await $api('/auth/login', {
      method: 'POST',
      body: {
        email: credentials.value.email,
        password: credentials.value.password,
      },
      onResponseError({ response }) {
        errors.value = response._data.errors
      },
    })

    const { accessToken, userData, userAbilityRules } = res

    useCookie('userAbilityRules').value = userAbilityRules
    ability.update(userAbilityRules)

    useCookie('userData').value = userData
    useCookie('accessToken').value = accessToken

    console.log('Ini userdata: ', userData)
    console.log('Ini accesstoken: ', accessToken)
    console.log('Ini route: ', route.query.to)

    // Redirect to `to` query if exist or redirect to index route
    // ❗ nextTick is required to wait for DOM updates and later redirect
    await nextTick(() => {
      router.replace(route.query.to ? String(route.query.to) : '/')
    })
  }
  catch (err) {
    console.error(err)
  }
}

const onSubmit = () => {
  refVForm.value?.validate().then(({ valid: isValid }) => {
    if (isValid)
      login()
  })
}
</script>

<template>
  <body
    :style="{ backgroundImage: `url(${authThemeBg})` }"
    class="body-2"
  >
    <section class="global-main-login-component-3">
      <div
        :style="{ backgroundColor: `${authThemeColor}` }"
        class="card-main-login-component-3"
      >
        <div class="logo-login-component-3">
          <VImg
            :src="authThemeImg"
            class="image-10-3 lazyload"
          />
        </div>
        <div class="form-login-component-3">
          <VCol
            cols="12"
            class="text-center"
          >
            <SSOButton />
          </VCol>
        </div>
      </div>
    </section>
  </body>
</template>

<style lang="scss">
@use "@core/scss/template/pages/page-auth";
</style>