Skip to content
Snippets Groups Projects
Commit 2b21e91e authored by Julian's avatar Julian
Browse files

Display person avatar and make it clickable

parent 3ad62870
No related branches found
No related tags found
2 merge requests!1123Resolve "Finalise Vuetify app as SPA",!1066Translations update from Weblate
Pipeline #106493 failed
<template>
<v-dialog
v-model="overlay"
max-width="fit-content"
>
<template v-slot:activator="{ on, attrs }">
<v-card class="rounded-circle">
<v-responsive :aspect-ratio="1"
v-bind="attrs"
v-on="on">
<AvatarContent :id="id" class="rounded-circle"/>
</v-responsive>
</v-card>
</template>
<v-sheet class="d-flex justify-center align-center flex-column text-center transparent">
<AvatarContent :id="id" contain class="inDialog"/>
</v-sheet>
</v-dialog>
</template>
<script>
import AvatarContent from "./AvatarContent.vue";
export default {
name: "AvatarClickBox",
components: {AvatarContent},
data: () => ({
overlay: false,
}),
props: {
id: {
type: String,
required: false,
}
}
}
</script>
<style scoped>
.inDialog {
height: 80vmin;
width: 80vmin;
aspect-ratio: 1;
}
</style>
...@@ -17,6 +17,20 @@ ...@@ -17,6 +17,20 @@
</v-row> </v-row>
</template> </template>
<template v-else-if="data && data.person"> <template v-else-if="data && data.person">
<v-row>
<v-spacer />
<v-col
cols="6"
sm="4"
md="3"
lg="2"
max-width="220px"
>
<AvatarClickBox :id="id"/>
</v-col>
<v-spacer />
</v-row>
<h1 class="text-center">{{ data.person.firstName }} {{ data.person.lastName }} <h1 class="text-center">{{ data.person.firstName }} {{ data.person.lastName }}
<span v-if="data.person.username" class="text-h5 grey--text text--darken-2"> <span v-if="data.person.username" class="text-h5 grey--text text--darken-2">
{{ data.person.username }} {{ data.person.username }}
...@@ -181,12 +195,13 @@ ...@@ -181,12 +195,13 @@
</template> </template>
<script> <script>
import AvatarClickBox from "./AvatarClickBox.vue";
import GroupList from "../group/GroupList.vue"; import GroupList from "../group/GroupList.vue";
import PersonList from "./PersonList.vue"; import PersonList from "./PersonList.vue";
export default { export default {
name: "PersonOverview", name: "PersonOverview",
components: {GroupList, PersonList}, components: {AvatarClickBox, GroupList, PersonList},
props: { props: {
id: { id: {
type: String, type: String,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment