UserProfileHeader.vue 12.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
<script lang="ts" setup>
import type { ProfileHeader } from '@db/dstipro/profile/types'
import profileImg from '@images/avatars/avatar-1.png'
import coverImg from '@images/pages/user-profile-header-bg.png'
import dayjs from 'dayjs'
import duration from 'dayjs/plugin/duration'
import PersonAvatar from '@/layouts/components/PersonAvatar.vue'
import keycloakInstance from '@/keycloak'
import { useKeycloakStore } from '@/@core/stores/keycloakStore'

dayjs.extend(duration)

const profileHeaderData = ref<ProfileHeader | null>(null)

const keycloakStore = useKeycloakStore()

// Gunakan computed agar selalu reaktif
const isAuthenticated = computed(() => keycloakStore.authenticated)

function login() {
  keycloakInstance.login()
}

const logoutUrl = ref(
  'https://login.ui.ac.id/realms/main/protocol/openid-connect/logout?client_id=vueplayground',
)

const logoutUser = () => {
  // Use window.location.origin for a dynamic base URL
  const redirectUri = window.location.origin

  // Redirect to logout URL with the dynamic origin
  window.location.href = `${logoutUrl.value}&post_logout_redirect_uri=${redirectUri}/login`
}

const items = ref<Record<string, any>>({})
const loading = ref(false)
const errordata = ref('')
const isBirthday = ref(false)
const parkirItems = ref(null)

async function getData() {
  loading.value = true
  errordata.value = ''
  try {
    const apiEndpoints = [
      'https://api.ui.ac.id/me',
      'https://api.ui.ac.id/my/parkir/aktif',
    ]

    const responses = await Promise.all(apiEndpoints.map(endpoint =>
      fetch(endpoint, {
        headers: {
          Authorization: `Bearer ${keycloakStore.accessToken}`,
        },
      }),
    ))

    for (const response of responses) {
      if (!response.ok)
        throw new Error('Gagal mengambil data')
    }

    const [dataku, parkirData] = await Promise.all(responses.map(res => res.json()))

    items.value = dataku

    // parkirItems.value = parkirData.data || {} // Store parkir data separately
    parkirItems.value = parkirData.data && Object.keys(parkirData.data).length ? parkirData.data : null
  }
  catch (err) {
    errordata.value = err.message || 'Terjadi kesalahan saat mengambil data'
  }
  finally {
    loading.value = false
  }
}

const daysLeft = computed(() => {
  if (!parkirItems.value)
    return 0

  const endDate = new Date(parkirItems.value.date_end_service)
  const now = new Date()

  return Math.max(0, Math.ceil((endDate - now) / (1000 * 60 * 60 * 24)))
})

const parkirStatus = computed(() => {
  return daysLeft.value > 0 ? 'Parkir Aktif' : 'Parkir Non Aktif'
})

const progress = computed(() => {
  if (!parkirItems.value)
    return 0

  const endDate = new Date(parkirItems.value.date_end_service)
  const startDate = new Date(parkirItems.value.date_start_service)
  const now = new Date()

  // Reverse the calculation: 100% when starting, 0% when ending
  return Math.max(0, Math.min(100, ((endDate - now) / (endDate - startDate)) * 100))
})

// Fetch data from API
onMounted(() => {
  getData()
})

// Fetch profile header
onMounted(() => {
  profileHeaderData.value = {
    coverImg,
    designation: 'UX Designer',
    fullName: 'Abdullah',
    joiningDate: 'April 2021',
    location: 'Madinah',
    profileImg,
  }
})

// Menentukan nilai tanggal lahir berdasarkan kondisi `civitas`
const tglLahir = computed(() => {
  return keycloakStore.civitas === 'mahasiswa' ? items.value?.TGL_LAHIR : items.value?.tgl_lahir
})

// Cek apakah hari ini adalah ulang tahun
function checkBirthday() {
  if (!tglLahir.value) {
    isBirthday.value = false

    return
  }

  const birthDate = dayjs(tglLahir.value)
  const today = dayjs()

  isBirthday.value = birthDate.format('MM-DD') === today.format('MM-DD')
}

// Panggil `checkBirthday` saat `tglLahir` berubah
watch(tglLahir, checkBirthday)

// Jalankan `checkBirthday` saat komponen dimuat
onMounted(checkBirthday)

// Fungsi untuk menghitung umur dalam tahun, bulan, dan hari
const umur = computed(() => {
  if (!tglLahir.value)
    return 'Data tidak tersedia'

  const birthDate = dayjs(tglLahir.value)
  if (!birthDate.isValid())
    return 'Format tanggal tidak valid'

  const today = dayjs()
  const diff = dayjs.duration(today.diff(birthDate))

  return `${diff.years()} tahun, ${diff.months()} bulan, ${diff.days()} hari`
})

// Fungsi untuk menghitung waktu menuju ulang tahun berikutnya
const ulangTahunBerikutnya = computed(() => {
  if (!tglLahir.value)
    return 'Data tidak tersedia'

  const birthDate = dayjs(tglLahir.value)
  if (!birthDate.isValid())
    return 'Format tanggal tidak valid'

  const today = dayjs()
  let nextBirthday = birthDate.year(today.year())

  // Jika ulang tahun sudah lewat tahun ini, ambil ulang tahun tahun depan
  if (nextBirthday.isBefore(today))
    nextBirthday = birthDate.year(today.year() + 1)

  const diff = dayjs.duration(nextBirthday.diff(today))

  return `${diff.months()} bulan, ${diff.days()} hari`
})

const goToParking = () => {
  window.open('https://parkir.ui.ac.id/apps/site/index', '_blank')
}
</script>

<template>
  <VCard v-if="profileHeaderData">
    <!-- Efek animasi Happy Birthday -->
    <VAlert
      v-if="isBirthday"
      type="info"
      class="happy-birthday"
    >
      🎉 Selamat Ulang Tahun! 🎉<br>
      🥳🎂🎈<br>
      🥳 Semoga harimu menyenangkan! 🥳
    </VAlert>

    <VImg
      :src="profileHeaderData.coverImg"
      min-height="125"
      max-height="250"
      cover
    />

    <VCardText
      v-if="isAuthenticated"
      class="d-flex align-bottom flex-sm-row flex-column justify-center gap-x-6"
    >
      <div class="d-flex h-0">
        <VAvatar
          rounded
          size="130"
          :image="profileHeaderData.profileImg"
          class="user-profile-avatar mx-auto"
        >
          <PersonAvatar style="block-size: 120px; inline-size: 120px;" />
        </VAvatar>
      </div>

      <div class="user-profile-info w-100 mt-16 pt-6 pt-sm-0 mt-sm-0">
        <h4 class="text-h4 text-center text-sm-start mb-2">
          {{ keycloakStore.name }}
        </h4>

        <div class="d-flex align-center justify-center justify-sm-space-between flex-wrap gap-4">
          <div class="d-flex flex-wrap justify-center justify-sm-start flex-grow-1 gap-6">
            <div class="d-flex align-center gap-x-2">
              <VIcon
                size="24"
                icon="ri-id-card-line"
              />
              <div class="text-body-1 font-weight-medium">
                <!-- {{ keycloakStore.civitas[0].toUpperCase() + keycloakStore.civitas.slice(1) }} -->
                {{ keycloakStore.civitas == 'dosen' ? 'STAF' : keycloakStore.civitas.toUpperCase() }}
              </div>
            </div>

            <div
              v-if="parkirItems"
              class="d-flex align-center gap-x-2"
            >
              <VIcon
                size="24"
                icon="ri-car-line"
              />
              <VBtn
                variant="tonal"
                :color="daysLeft > 0 ? 'primary' : 'error'"
                @click="goToParking"
              >
                {{ parkirStatus }}
                <VTooltip
                  activator="parent"
                  location="top"
                >
                  <div class="d-flex flex-column p-2">
                    <div class="d-flex align-center gap-x-2">
                      <VIcon
                        size="20"
                        icon="ri-calendar-line"
                      />
                      <span>Mulai: {{ parkirItems.date_start_service }}</span>
                    </div>
                    <div class="d-flex align-center gap-x-2">
                      <VIcon
                        size="20"
                        icon="ri-calendar-check-line"
                      />
                      <span>Berakhir: {{ parkirItems.date_end_service }}</span>
                    </div>
                    <div class="d-flex align-center gap-x-2">
                      <VIcon
                        size="20"
                        icon="ri-time-line"
                      />
                      <span>{{ daysLeft }} hari tersisa</span>
                    </div>
                    <VProgressLinear
                      :model-value="progress"
                      color="primary"
                      height="6"
                      rounded
                    />
                  </div>
                </VTooltip>
              </VBtn>
            </div>

            <div
              v-if="!isBirthday"
              class="d-flex align-center gap-x-2"
            >
              <VIcon
                size="24"
                icon="ri-cake-2-line"
              />
              <div class="text-body-1 font-weight-medium">
                <!-- {{ keycloakStore.civitas == 'mahasiswa' ? items?.TGL_LAHIR : items?.tgl_lahir }} -->
                {{ ulangTahunBerikutnya }}
              </div>
            </div>

            <div
              v-if="isBirthday"
              class="d-flex align-center gap-x-2"
            >
              <VIcon
                size="24"
                icon="ri-gift-line"
              />
              <div class="text-body-1 font-weight-medium">
                {{ umur }}
              </div>
            </div>

            <!-- tombol test aksi ultah -->
            <div class="d-flex align-center gap-x-2">
              <VBtn @click="isBirthday = true">
                <VIcon
                  size="24"
                  icon="ri-hand-heart-line"
                />
              </VBtn>
            </div>
          </div>

          <VBtn prepend-icon="ri-user-follow-line">
            Connected
          </VBtn>

          <VBtn
            class="bg-error"
            prepend-icon="ri-logout-box-r-line"
            @click="logoutUser"
          >
            Logout
          </VBtn>
        </div>
      </div>
    </VCardText>

    <VCardText
      v-else
      class="d-flex align-bottom flex-sm-row flex-column justify-center gap-x-6"
    >
      <div class="d-flex h-0">
        <VAvatar
          rounded
          size="130"
          :image="profileHeaderData.profileImg"
          class="user-profile-avatar mx-auto"
        >
          <VImg
            :src="profileHeaderData.profileImg"
            height="120"
            width="120"
          />
        </VAvatar>
      </div>

      <div class="user-profile-info w-100 mt-16 pt-6 pt-sm-0 mt-sm-0">
        <h4 class="text-h4 text-center text-sm-start mb-2">
          {{ profileHeaderData.fullName }}
        </h4>

        <div class="d-flex align-center justify-center justify-sm-space-between flex-wrap gap-4">
          <div class="d-flex flex-wrap justify-center justify-sm-start flex-grow-1 gap-6">
            <div class="d-flex align-center gap-x-2">
              <VIcon
                size="24"
                icon="ri-palette-line"
              />
              <div class="text-body-1 font-weight-medium">
                {{ profileHeaderData.designation }}
              </div>
            </div>

            <div class="d-flex align-center gap-x-2">
              <VIcon
                size="24"
                icon="ri-map-pin-line"
              />
              <div class="text-body-1 font-weight-medium">
                {{ profileHeaderData.location }}
              </div>
            </div>

            <div class="d-flex align-center gap-x-2">
              <VIcon
                size="24"
                icon="ri-calendar-line"
              />
              <div class="text-body-1 font-weight-medium">
                {{ profileHeaderData.joiningDate }}
              </div>
            </div>
          </div>

          <VBtn
            class="bg-error"
            prepend-icon="ri-user-follow-line"
          >
            Not Connected
          </VBtn>

          <VBtn
            class="bg-warning"
            prepend-icon="ri-login-box-line"
            @click="login"
          >
            Login
          </VBtn>
        </div>
      </div>
    </VCardText>
  </VCard>
</template>

<style lang="scss">
.user-profile-avatar {
  border: 5px solid rgb(var(--v-theme-surface));
  background-color: rgb(var(--v-theme-surface)) !important;
  inset-block-start: -3rem;

  .v-img__img {
    border-radius: 0.375rem;
  }
}

/* Animasi Happy Birthday */
.happy-birthday {
  animation: bounce 1.5s infinite alternate ease-in-out;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

@keyframes bounce {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-10px);
  }
}
</style>