2023-02-07 13:50:24 +00:00
|
|
|
<template>
|
|
|
|
<q-page>
|
|
|
|
<StandardCenteredPage v-if="user">
|
|
|
|
<h3>{{ user?.name }}</h3>
|
2023-02-16 07:11:48 +00:00
|
|
|
|
2023-02-07 13:50:24 +00:00
|
|
|
<p>{{ user?.email }}</p>
|
|
|
|
<p v-if="isOwnUser">This is your account!</p>
|
2023-02-16 07:11:48 +00:00
|
|
|
|
|
|
|
<hr>
|
|
|
|
|
|
|
|
|
2023-02-07 13:50:24 +00:00
|
|
|
</StandardCenteredPage>
|
2023-02-08 07:30:16 +00:00
|
|
|
<StandardCenteredPage v-if="userNotFound">
|
|
|
|
<h3>{{ $t('userPage.notFound.title') }}</h3>
|
|
|
|
<p>{{ $t('userPage.notFound.description') }}</p>
|
|
|
|
</StandardCenteredPage>
|
2023-02-07 13:50:24 +00:00
|
|
|
</q-page>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
import StandardCenteredPage from 'components/StandardCenteredPage.vue';
|
2023-02-16 07:11:48 +00:00
|
|
|
import {computed, onMounted, ref, Ref} from 'vue';
|
2023-02-07 13:50:24 +00:00
|
|
|
import {User} from 'src/api/main/auth';
|
|
|
|
import api from 'src/api/main';
|
|
|
|
import {useRoute} from 'vue-router';
|
|
|
|
import {useAuthStore} from 'stores/auth-store';
|
2023-02-16 07:11:48 +00:00
|
|
|
import { getUserRoute } from 'src/router/user-routing';
|
2023-02-07 13:50:24 +00:00
|
|
|
|
|
|
|
const route = useRoute();
|
|
|
|
const authStore = useAuthStore();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The user that this page displays information about.
|
|
|
|
*/
|
|
|
|
const user: Ref<User | undefined> = ref();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Flag that tells whether this user is the currently authenticated user.
|
|
|
|
*/
|
|
|
|
const isOwnUser = ref(false);
|
|
|
|
|
2023-02-08 07:30:16 +00:00
|
|
|
/**
|
|
|
|
* Flag used to indicate whether we should show a "not found" message instead
|
|
|
|
* of the usual user page.
|
|
|
|
*/
|
|
|
|
const userNotFound = ref(false);
|
|
|
|
|
2023-02-07 13:50:24 +00:00
|
|
|
onMounted(async () => {
|
|
|
|
const userId = route.params.userId as string;
|
2023-02-08 07:30:16 +00:00
|
|
|
try {
|
|
|
|
user.value = await api.auth.getUser(userId, authStore);
|
|
|
|
} catch (error: any) {
|
|
|
|
if (error.response && error.response.code === 404) {
|
|
|
|
userNotFound.value = true;
|
|
|
|
}
|
|
|
|
}
|
2023-02-16 07:11:48 +00:00
|
|
|
isOwnUser.value = authStore.loggedIn && user.value?.id === authStore.user?.id;
|
2023-02-07 13:50:24 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
</style>
|