login-v4.vue 6.01 KB
<script setup lang="ts">
import { VForm } from 'vuetify/components/VForm'

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 AuthProvider from '@/views/dstipro/beranda/authentication/AuthProvider.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(
  '#ffffff',
  'transparent',
)

const authThemeBg = useGenerateImageVariant(
  authV2LoginBgYellowLight,
  authV2LoginBgYellowDark,
)

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()
  })
}

// Watch perubahan accessToken, panggil ulang useAuthFetch
watchEffect(async () => {
  if (!keycloakStore.accessToken)
    return // Hindari fetch jika token masih kosong
  console.log('Fetching data dengan token baru...')

  const { data: newData, error: newError } = await useAuthFetch('https://api.ui.ac.id/my/ac/st')

  data.value = newData.value || null
  error.value = newError.value || null
})
</script>

<template>
  <!-- <VRow no-gutters class="auth-wrapper d-flex align-center"> -->

  <body
    :style="{ backgroundImage: `url(${authThemeBg})` }"
    class="body-2"
  >
    <section class="global-main-login-component">
      <div
        :style="{ backgroundColor: `${authThemeColor}` }"
        class="card-main-login-component"
      >
        <div class="logo-login-component">
          <VImg
            :src="authThemeImg"
            max-height="100"
            class="image-10 lazyload"
          />
        </div>
        <div class="form-login-component">
          <h2 class="heading-8">
            SSO
          </h2>
          <h2 class="heading-7">
            Single Sign On
          </h2>
          <div class="form-block w-form">
            <VForm
              ref="refVForm"
              @submit.prevent="onSubmit"
            >
              <VRow>
                <!-- email -->
                <VCol cols="12">
                  <VTextField
                    v-model="credentials.email"
                    label="Email"
                    placeholder="johndoe@email.com"
                    type="email"
                    autofocus
                    :rules="[requiredValidator, emailValidator]"
                    :error-messages="errors.email"
                  />
                </VCol>

                <!-- password -->
                <VCol cols="12">
                  <VTextField
                    v-model="credentials.password"
                    label="Password"
                    placeholder="············"
                    :rules="[requiredValidator]"
                    :type="isPasswordVisible ? 'text' : 'password'"
                    :error-messages="errors.password"
                    :append-inner-icon="isPasswordVisible ? 'ri-eye-off-line' : 'ri-eye-line'"
                    @click:append-inner="isPasswordVisible = !isPasswordVisible"
                  />

                  <div class="d-flex align-center flex-wrap justify-space-between mb-5">
                    <VCheckbox
                      v-model="rememberMe"
                      label="Remember me"
                    />
                    <RouterLink
                      class="text-primary"
                      :to="{ name: 'forgot-password' }"
                    >
                      Forgot Password?
                    </RouterLink>
                  </div>

                  <VBtn
                    block
                    type="submit"
                  >
                    Login
                  </VBtn>
                </VCol>

                <VCol
                  cols="12"
                  class="d-flex align-center"
                >
                  <VDivider />
                  <span class="mx-4">or</span>
                  <VDivider />
                </VCol>

                <!-- auth providers -->
                <VCol
                  cols="12"
                  class="text-center"
                >
                  <AuthProvider />
                </VCol>
              </VRow>
            </VForm>
          </div>
          <p> {{ data, errorMessage }}</p>
        </div>
      </div>
    </section>
  </body>
  <!-- </VRow> -->
</template>

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